repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
stcarrez/etherscope
Ada
2,790
adb
----------------------------------------------------------------------- -- etherscope-analyzer-tcp -- TCP/IP packet analyzer -- Copyright (C) 2016 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Net.Headers; package body EtherScope.Analyzer.TCP is use type Net.Uint16; use type Net.Ip_Addr; use type EtherScope.Stats.Group_Count; -- ------------------------------ -- Analyze the packet and update the analysis. -- ------------------------------ procedure Analyze (Packet : in Net.Buffers.Buffer_Type; Result : in out Analysis) is TCP : constant Net.Headers.TCP_Header_Access := Packet.TCP; Sport : constant Net.Uint16 := Net.Headers.To_Host (TCP.Th_Sport); Dport : constant Net.Uint16 := Net.Headers.To_Host (TCP.Th_Dport); Port : constant Net.Uint16 := (if Sport < Dport then Sport else Dport); begin for I in 1 .. Result.Count loop if Result.Ports (I).Port = Port then EtherScope.Stats.Add (Result.Ports (I).TCP, Net.Uint32 (Packet.Get_Length)); return; end if; end loop; if Result.Count = Result.Ports'Last or (Port > 1024 and Port /= 8080) then return; end if; Result.Count := Result.Count + 1; Result.Ports (Result.Count).Port := Port; EtherScope.Stats.Add (Result.Ports (Result.Count).TCP, Net.Uint32 (Packet.Get_Length)); end Analyze; -- ------------------------------ -- Compute the bandwidth utilization for different devices and protocols. -- ------------------------------ procedure Update_Rates (Current : in out Analysis; Previous : in out Analysis; Dt : in Positive) is begin for I in 1 .. Current.Count loop if I <= Previous.Count then EtherScope.Stats.Update_Rate (Current.Ports (I).TCP, Previous.Ports (I).TCP, Dt); else Previous.Ports (I).TCP := Current.Ports (I).TCP; end if; end loop; Previous.Count := Current.Count; end Update_Rates; end EtherScope.Analyzer.TCP;
1Crazymoney/LearnAda
Ada
1,073
adb
with Garden_Pkg, tools; use Garden_Pkg, tools; procedure main is task Mantis; task Gardener; task body Mantis is pos : Position := GetRandPos; hp : Natural := 1; begin while hp > 0 loop if GetField(pos) = true then hp := hp - 1; Output.Puts("Mantis died - pos:" & Position'Image(pos), 1); else pos := GetRandPos; Output.Puts("Mantis jumped - pos:" & Position'Image(pos), 1); if GetField(pos) = true then hp := hp - 1; Output.Puts("Mantis died - pos:" & Position'Image(pos), 1); end if; end if; delay 0.1; end loop; end Mantis; task body Gardener is pos : Position := GetRandPos; begin while Mantis'Callable loop pos := GetRandPos; SprayField(pos); Output.Puts("Gardener sprayed - pos:" & Position'Image(pos), 1); delay 0.2; SprayAbsorbed; Output.Puts("Spray absorbed", 1); end loop; end Gardener; begin null; exception when others => Output.Puts("Catched an exception in main."); end main;
reznikmm/matreshka
Ada
1,164
adb
with Matreshka.Internals.Regexps.Compiler; with Matreshka.Internals.Strings; with Matreshka.Internals.Code_Point_Sets; with Matreshka.Internals.Graphs; with League.Strings; with League.Strings.Internals; with Matreshka.Internals.Finite_Automatons; with League.Character_Sets.Internals; with Ada.Text_IO; with Ada.Containers.Ordered_Maps; with Ada.Containers.Vectors; with Matreshka.Internals.Graphs; procedure Create_Set_Test is package Regexp_Compiler renames Matreshka.Internals.Regexps.Compiler; Input : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("(a|b)*abb"); Shared_String : constant Matreshka.Internals.Strings.Shared_String_Access := League.Strings.Internals.Internal (Input); AST : constant Matreshka.Internals.Regexps.Shared_Pattern_Access := Regexp_Compiler.Compile (Shared_String); DFA : Matreshka.Internals.Finite_Automatons.DFA := Matreshka.Internals.Finite_Automatons.Compile (AST); begin Matreshka.Internals.Finite_Automatons.Minimize (DFA); Ada.Text_IO.Put_Line (Matreshka.Internals.Finite_Automatons.State'Image (DFA.Start)); end Create_Set_Test;
zhmu/ananas
Ada
13,423
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- B I N D O . U N I T S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2019-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Bindo.Writers; use Bindo.Writers; use Bindo.Writers.Phase_Writers; package body Bindo.Units is ------------------- -- Signature set -- ------------------- package Signature_Sets is new Membership_Sets (Element_Type => Invocation_Signature_Id, "=" => "=", Hash => Hash_Invocation_Signature); ----------------- -- Global data -- ----------------- -- The following set stores all invocation signatures that appear in -- elaborable units. Elaborable_Constructs : Signature_Sets.Membership_Set := Signature_Sets.Nil; -- The following set stores all units the need to be elaborated Elaborable_Units : Unit_Sets.Membership_Set := Unit_Sets.Nil; ----------------------- -- Local subprograms -- ----------------------- function Corresponding_Unit (Nam : Name_Id) return Unit_Id; pragma Inline (Corresponding_Unit); -- Obtain the unit which corresponds to name Nam function Is_Stand_Alone_Library_Unit (U_Id : Unit_Id) return Boolean; pragma Inline (Is_Stand_Alone_Library_Unit); -- Determine whether unit U_Id is part of a stand-alone library procedure Process_Invocation_Construct (IC_Id : Invocation_Construct_Id); pragma Inline (Process_Invocation_Construct); -- Process invocation construct IC_Id by adding its signature to set -- Elaborable_Constructs_Set. procedure Process_Invocation_Constructs (U_Id : Unit_Id); pragma Inline (Process_Invocation_Constructs); -- Process all invocation constructs of unit U_Id for classification -- purposes. procedure Process_Unit (U_Id : Unit_Id); pragma Inline (Process_Unit); -- Process unit U_Id for unit classification purposes ------------------------------ -- Collect_Elaborable_Units -- ------------------------------ procedure Collect_Elaborable_Units is begin Start_Phase (Unit_Collection); for U_Id in ALI.Units.First .. ALI.Units.Last loop Process_Unit (U_Id); end loop; End_Phase (Unit_Collection); end Collect_Elaborable_Units; ------------------------ -- Corresponding_Body -- ------------------------ function Corresponding_Body (U_Id : Unit_Id) return Unit_Id is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin pragma Assert (U_Rec.Utype = Is_Spec); return U_Id - 1; end Corresponding_Body; ------------------------ -- Corresponding_Spec -- ------------------------ function Corresponding_Spec (U_Id : Unit_Id) return Unit_Id is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin pragma Assert (U_Rec.Utype = Is_Body); return U_Id + 1; end Corresponding_Spec; ------------------------ -- Corresponding_Unit -- ------------------------ function Corresponding_Unit (FNam : File_Name_Type) return Unit_Id is begin return Corresponding_Unit (Name_Id (FNam)); end Corresponding_Unit; ------------------------ -- Corresponding_Unit -- ------------------------ function Corresponding_Unit (Nam : Name_Id) return Unit_Id is begin return Unit_Id (Get_Name_Table_Int (Nam)); end Corresponding_Unit; ------------------------ -- Corresponding_Unit -- ------------------------ function Corresponding_Unit (UNam : Unit_Name_Type) return Unit_Id is begin return Corresponding_Unit (Name_Id (UNam)); end Corresponding_Unit; --------------- -- File_Name -- --------------- function File_Name (U_Id : Unit_Id) return File_Name_Type is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.Sfile; end File_Name; -------------------- -- Finalize_Units -- -------------------- procedure Finalize_Units is begin Signature_Sets.Destroy (Elaborable_Constructs); Unit_Sets.Destroy (Elaborable_Units); end Finalize_Units; ------------------------------ -- For_Each_Elaborable_Unit -- ------------------------------ procedure For_Each_Elaborable_Unit (Processor : Unit_Processor_Ptr) is Iter : Elaborable_Units_Iterator; U_Id : Unit_Id; begin Iter := Iterate_Elaborable_Units; while Has_Next (Iter) loop Next (Iter, U_Id); Processor.all (U_Id); end loop; end For_Each_Elaborable_Unit; ------------------- -- For_Each_Unit -- ------------------- procedure For_Each_Unit (Processor : Unit_Processor_Ptr) is begin for U_Id in ALI.Units.First .. ALI.Units.Last loop Processor.all (U_Id); end loop; end For_Each_Unit; -------------- -- Has_Next -- -------------- function Has_Next (Iter : Elaborable_Units_Iterator) return Boolean is begin return Unit_Sets.Has_Next (Unit_Sets.Iterator (Iter)); end Has_Next; ----------------------------- -- Has_No_Elaboration_Code -- ----------------------------- function Has_No_Elaboration_Code (U_Id : Unit_Id) return Boolean is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.No_Elab; end Has_No_Elaboration_Code; ------------------------------- -- Hash_Invocation_Signature -- ------------------------------- function Hash_Invocation_Signature (IS_Id : Invocation_Signature_Id) return Bucket_Range_Type is begin pragma Assert (Present (IS_Id)); return Bucket_Range_Type (IS_Id); end Hash_Invocation_Signature; --------------- -- Hash_Unit -- --------------- function Hash_Unit (U_Id : Unit_Id) return Bucket_Range_Type is begin pragma Assert (Present (U_Id)); return Bucket_Range_Type (U_Id); end Hash_Unit; ---------------------- -- Initialize_Units -- ---------------------- procedure Initialize_Units is begin Elaborable_Constructs := Signature_Sets.Create (Number_Of_Units); Elaborable_Units := Unit_Sets.Create (Number_Of_Units); end Initialize_Units; ------------------------------- -- Invocation_Graph_Encoding -- ------------------------------- function Invocation_Graph_Encoding (U_Id : Unit_Id) return Invocation_Graph_Encoding_Kind is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); U_ALI : ALIs_Record renames ALI.ALIs.Table (U_Rec.My_ALI); begin return U_ALI.Invocation_Graph_Encoding; end Invocation_Graph_Encoding; ------------------------------- -- Is_Dynamically_Elaborated -- ------------------------------- function Is_Dynamically_Elaborated (U_Id : Unit_Id) return Boolean is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.Dynamic_Elab; end Is_Dynamically_Elaborated; ---------------------- -- Is_Internal_Unit -- ---------------------- function Is_Internal_Unit (U_Id : Unit_Id) return Boolean is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.Internal; end Is_Internal_Unit; ------------------------ -- Is_Predefined_Unit -- ------------------------ function Is_Predefined_Unit (U_Id : Unit_Id) return Boolean is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.Predefined; end Is_Predefined_Unit; --------------------------------- -- Is_Stand_Alone_Library_Unit -- --------------------------------- function Is_Stand_Alone_Library_Unit (U_Id : Unit_Id) return Boolean is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.SAL_Interface; end Is_Stand_Alone_Library_Unit; ------------------------------ -- Iterate_Elaborable_Units -- ------------------------------ function Iterate_Elaborable_Units return Elaborable_Units_Iterator is begin return Elaborable_Units_Iterator (Unit_Sets.Iterate (Elaborable_Units)); end Iterate_Elaborable_Units; ---------- -- Name -- ---------- function Name (U_Id : Unit_Id) return Unit_Name_Type is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin return U_Rec.Uname; end Name; ----------------------- -- Needs_Elaboration -- ----------------------- function Needs_Elaboration (IS_Id : Invocation_Signature_Id) return Boolean is begin pragma Assert (Present (IS_Id)); return Signature_Sets.Contains (Elaborable_Constructs, IS_Id); end Needs_Elaboration; ----------------------- -- Needs_Elaboration -- ----------------------- function Needs_Elaboration (U_Id : Unit_Id) return Boolean is begin pragma Assert (Present (U_Id)); return Unit_Sets.Contains (Elaborable_Units, U_Id); end Needs_Elaboration; ---------- -- Next -- ---------- procedure Next (Iter : in out Elaborable_Units_Iterator; U_Id : out Unit_Id) is begin Unit_Sets.Next (Unit_Sets.Iterator (Iter), U_Id); end Next; -------------------------------- -- Number_Of_Elaborable_Units -- -------------------------------- function Number_Of_Elaborable_Units return Natural is begin return Unit_Sets.Size (Elaborable_Units); end Number_Of_Elaborable_Units; --------------------- -- Number_Of_Units -- --------------------- function Number_Of_Units return Natural is begin return Natural (ALI.Units.Last) - Natural (ALI.Units.First) + 1; end Number_Of_Units; ---------------------------------- -- Process_Invocation_Construct -- ---------------------------------- procedure Process_Invocation_Construct (IC_Id : Invocation_Construct_Id) is pragma Assert (Present (IC_Id)); IS_Id : constant Invocation_Signature_Id := Signature (IC_Id); pragma Assert (Present (IS_Id)); begin Signature_Sets.Insert (Elaborable_Constructs, IS_Id); end Process_Invocation_Construct; ----------------------------------- -- Process_Invocation_Constructs -- ----------------------------------- procedure Process_Invocation_Constructs (U_Id : Unit_Id) is pragma Assert (Present (U_Id)); U_Rec : Unit_Record renames ALI.Units.Table (U_Id); begin for IC_Id in U_Rec.First_Invocation_Construct .. U_Rec.Last_Invocation_Construct loop Process_Invocation_Construct (IC_Id); end loop; end Process_Invocation_Constructs; ------------------ -- Process_Unit -- ------------------ procedure Process_Unit (U_Id : Unit_Id) is begin pragma Assert (Present (U_Id)); -- A stand-alone library unit must not be elaborated as part of the -- current compilation because the library already carries its own -- elaboration code. if Is_Stand_Alone_Library_Unit (U_Id) then null; -- Otherwise the unit needs to be elaborated. Add it to the set -- of units that require elaboration, as well as all invocation -- signatures of constructs it declares. else Unit_Sets.Insert (Elaborable_Units, U_Id); Process_Invocation_Constructs (U_Id); end if; end Process_Unit; end Bindo.Units;
stcarrez/dynamo
Ada
3,513
adb
----------------------------------------------------------------------- -- gen-commands-layout -- Layout creation command for dynamo -- Copyright (C) 2011, 2012, 2013, 2014, 2017, 2018, 2019 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Text_IO; with Gen.Artifacts; with Util.Strings; with Util.Files; package body Gen.Commands.Layout is -- ------------------------------ -- Execute the command with the arguments. -- ------------------------------ overriding procedure Execute (Cmd : in out Command; Name : in String; Args : in Argument_List'Class; Generator : in out Gen.Generator.Handler) is function Get_Name return String; Dir : constant String := Generator.Get_Result_Directory; Layout_Dir : constant String := Util.Files.Compose (Dir, "web/WEB-INF/layouts"); function Get_Name return String is Name : constant String := (if Args.Get_Count > 0 then Args.Get_Argument (1) else ""); Pos : constant Natural := Util.Strings.Rindex (Name, '.'); begin if Pos = 0 then return Name; elsif Name (Pos .. Name'Last) = ".xhtml" then return Name (Name'First .. Pos - 1); elsif Name (Pos .. Name'Last) = ".html" then return Name (Name'First .. Pos - 1); else return Name; end if; end Get_Name; Page_Name : constant String := Get_Name; begin if Page_Name'Length = 0 then Cmd.Usage (Name, Generator); return; end if; Generator.Set_Force_Save (False); Generator.Set_Result_Directory (Layout_Dir); Generator.Set_Global ("pageName", Page_Name); Gen.Generator.Generate_All (Generator, Gen.Artifacts.ITERATION_TABLE, "layout"); end Execute; -- ------------------------------ -- Write the help associated with the command. -- ------------------------------ overriding procedure Help (Cmd : in out Command; Name : in String; Generator : in out Gen.Generator.Handler) is pragma Unreferenced (Cmd, Name, Generator); use Ada.Text_IO; begin Put_Line ("add-layout: Add a new layout page to the application"); Put_Line ("Usage: add-layout NAME"); New_Line; Put_Line (" The layout page allows to give a common look to a set of pages."); Put_Line (" You can create several layouts for your application."); Put_Line (" Each layout can reference one or several building blocks that are defined"); Put_Line (" in the original page."); New_Line; Put_Line (" The following files are generated:"); Put_Line (" web/WEB-INF/layouts/<name>.xhtml"); end Help; end Gen.Commands.Layout;
zhmu/ananas
Ada
33,331
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- C L E A N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with ALI; use ALI; with Make_Util; use Make_Util; with Namet; use Namet; with Opt; use Opt; with Osint; use Osint; with Osint.M; use Osint.M; with Switch; use Switch; with Table; with Targparm; with Types; use Types; with Ada.Command_Line; use Ada.Command_Line; with GNAT.Command_Line; use GNAT.Command_Line; with GNAT.Directory_Operations; use GNAT.Directory_Operations; with GNAT.IO; use GNAT.IO; with GNAT.OS_Lib; use GNAT.OS_Lib; package body Clean is -- Suffixes of various files Assembly_Suffix : constant String := ".s"; Tree_Suffix : constant String := ".adt"; Object_Suffix : constant String := Get_Target_Object_Suffix.all; Debug_Suffix : constant String := ".dg"; Repinfo_Suffix : constant String := ".rep"; -- Suffix of representation info files B_Start : constant String := "b~"; -- Prefix of binder generated file, and number of actual characters used Object_Directory_Path : String_Access := null; -- The path name of the object directory, set with switch -D Force_Deletions : Boolean := False; -- Set to True by switch -f. When True, attempts to delete non writable -- files will be done. Do_Nothing : Boolean := False; -- Set to True when switch -n is specified. When True, no file is deleted. -- gnatclean only lists the files that would have been deleted if the -- switch -n had not been specified. File_Deleted : Boolean := False; -- Set to True if at least one file has been deleted Copyright_Displayed : Boolean := False; Usage_Displayed : Boolean := False; Project_File_Name : String_Access := null; package Sources is new Table.Table (Table_Component_Type => File_Name_Type, Table_Index_Type => Natural, Table_Low_Bound => 0, Table_Initial => 10, Table_Increment => 100, Table_Name => "Clean.Processed_Projects"); -- Table to store all the source files of a library unit: spec, body and -- subunits, to detect .dg files and delete them. ----------------------------- -- Other local subprograms -- ----------------------------- function Assembly_File_Name (Source : File_Name_Type) return String; -- Returns the assembly file name corresponding to Source procedure Clean_Executables; -- Do the cleaning work when no project file is specified function Debug_File_Name (Source : File_Name_Type) return String; -- Name of the expanded source file corresponding to Source procedure Delete (In_Directory : String; File : String); -- Delete one file, or list the file name if switch -n is specified procedure Delete_Binder_Generated_Files (Dir : String; Source : File_Name_Type); -- Delete the binder generated file in directory Dir for Source, if they -- exist: for Unix these are b~<source>.ads, b~<source>.adb, -- b~<source>.ali and b~<source>.o. procedure Display_Copyright; -- Display the Copyright notice. If called several times, display the -- Copyright notice only the first time. procedure Initialize; -- Call the necessary package initializations function Object_File_Name (Source : File_Name_Type) return String; -- Returns the object file name corresponding to Source procedure Parse_Cmd_Line; -- Parse the command line function Repinfo_File_Name (Source : File_Name_Type) return String; -- Returns the repinfo file name corresponding to Source function Tree_File_Name (Source : File_Name_Type) return String; -- Returns the tree file name corresponding to Source procedure Usage; -- Display the usage. If called several times, the usage is displayed only -- the first time. ------------------------ -- Assembly_File_Name -- ------------------------ function Assembly_File_Name (Source : File_Name_Type) return String is Src : constant String := Get_Name_String (Source); begin -- If the source name has an extension, then replace it with -- the assembly suffix. for Index in reverse Src'First + 1 .. Src'Last loop if Src (Index) = '.' then return Src (Src'First .. Index - 1) & Assembly_Suffix; end if; end loop; -- If there is no dot, or if it is the first character, just add the -- assembly suffix. return Src & Assembly_Suffix; end Assembly_File_Name; ----------------------- -- Clean_Executables -- ----------------------- procedure Clean_Executables is Main_Source_File : File_Name_Type; -- Current main source Main_Lib_File : File_Name_Type; -- ALI file of the current main Lib_File : File_Name_Type; -- Current ALI file Full_Lib_File : File_Name_Type; -- Full name of the current ALI file Text : Text_Buffer_Ptr; The_ALI : ALI_Id; Found : Boolean; Source : Queue.Source_Info; begin Queue.Initialize; -- It does not really matter if there is or not an object file -- corresponding to an ALI file: if there is one, it will be deleted. Opt.Check_Object_Consistency := False; -- Proceed each executable one by one. Each source is marked as it is -- processed, so common sources between executables will not be -- processed several times. for N_File in 1 .. Osint.Number_Of_Files loop Main_Source_File := Next_Main_Source; Main_Lib_File := Osint.Lib_File_Name (Main_Source_File, Current_File_Index); if Main_Lib_File /= No_File then Queue.Insert ((File => Main_Lib_File, Unit => No_Unit_Name, Index => 0)); end if; while not Queue.Is_Empty loop Sources.Set_Last (0); Queue.Extract (Found, Source); pragma Assert (Found); pragma Assert (Source.File /= No_File); Lib_File := Source.File; Full_Lib_File := Osint.Full_Lib_File_Name (Lib_File); -- If we have existing ALI file that is not read-only, process it if Full_Lib_File /= No_File and then not Is_Readonly_Library (Full_Lib_File) then Text := Read_Library_Info (Lib_File); if Text /= null then The_ALI := Scan_ALI (Lib_File, Text, Err => True); Free (Text); -- If no error was produced while loading this ALI file, -- insert into the queue all the unmarked withed sources. if The_ALI /= No_ALI_Id then for J in ALIs.Table (The_ALI).First_Unit .. ALIs.Table (The_ALI).Last_Unit loop Sources.Increment_Last; Sources.Table (Sources.Last) := ALI.Units.Table (J).Sfile; for K in ALI.Units.Table (J).First_With .. ALI.Units.Table (J).Last_With loop if Withs.Table (K).Afile /= No_File then Queue.Insert ((File => Withs.Table (K).Afile, Unit => No_Unit_Name, Index => 0)); end if; end loop; end loop; -- Look for subunits and put them in the Sources table for J in ALIs.Table (The_ALI).First_Sdep .. ALIs.Table (The_ALI).Last_Sdep loop if Sdep.Table (J).Subunit_Name /= No_Name then Sources.Increment_Last; Sources.Table (Sources.Last) := Sdep.Table (J).Sfile; end if; end loop; end if; end if; -- Now delete all existing files corresponding to this ALI file declare Obj_Dir : constant String := Dir_Name (Get_Name_String (Full_Lib_File)); Obj : constant String := Object_File_Name (Lib_File); Adt : constant String := Tree_File_Name (Lib_File); Asm : constant String := Assembly_File_Name (Lib_File); begin Delete (Obj_Dir, Get_Name_String (Lib_File)); if Is_Regular_File (Obj_Dir & Dir_Separator & Obj) then Delete (Obj_Dir, Obj); end if; if Is_Regular_File (Obj_Dir & Dir_Separator & Adt) then Delete (Obj_Dir, Adt); end if; if Is_Regular_File (Obj_Dir & Dir_Separator & Asm) then Delete (Obj_Dir, Asm); end if; -- Delete expanded source files (.dg) and/or repinfo files -- (.rep) if any for J in 1 .. Sources.Last loop declare Deb : constant String := Debug_File_Name (Sources.Table (J)); Rep : constant String := Repinfo_File_Name (Sources.Table (J)); begin if Is_Regular_File (Obj_Dir & Dir_Separator & Deb) then Delete (Obj_Dir, Deb); end if; if Is_Regular_File (Obj_Dir & Dir_Separator & Rep) then Delete (Obj_Dir, Rep); end if; end; end loop; end; end if; end loop; -- Delete the executable, if it exists, and the binder generated -- files, if any. if not Compile_Only then declare Source : constant File_Name_Type := Strip_Suffix (Main_Lib_File); Executable : constant String := Get_Name_String (Executable_Name (Source)); begin if Is_Regular_File (Executable) then Delete ("", Executable); end if; Delete_Binder_Generated_Files (Get_Current_Dir, Source); end; end if; end loop; end Clean_Executables; --------------------- -- Debug_File_Name -- --------------------- function Debug_File_Name (Source : File_Name_Type) return String is begin return Get_Name_String (Source) & Debug_Suffix; end Debug_File_Name; ------------ -- Delete -- ------------ procedure Delete (In_Directory : String; File : String) is Full_Name : String (1 .. In_Directory'Length + File'Length + 1); Last : Natural := 0; Success : Boolean; begin -- Indicate that at least one file is deleted or is to be deleted File_Deleted := True; -- Build the path name of the file to delete Last := In_Directory'Length; Full_Name (1 .. Last) := In_Directory; if Last > 0 and then Full_Name (Last) /= Directory_Separator then Last := Last + 1; Full_Name (Last) := Directory_Separator; end if; Full_Name (Last + 1 .. Last + File'Length) := File; Last := Last + File'Length; -- If switch -n was used, simply output the path name if Do_Nothing then Put_Line (Full_Name (1 .. Last)); -- Otherwise, delete the file if it is writable else if Force_Deletions or else Is_Writable_File (Full_Name (1 .. Last)) or else Is_Symbolic_Link (Full_Name (1 .. Last)) then Delete_File (Full_Name (1 .. Last), Success); -- Here if no deletion required else Success := False; end if; if Verbose_Mode or else not Quiet_Output then if not Success then Put ("Warning: """); Put (Full_Name (1 .. Last)); Put_Line (""" could not be deleted"); else Put (""""); Put (Full_Name (1 .. Last)); Put_Line (""" has been deleted"); end if; end if; end if; end Delete; ----------------------------------- -- Delete_Binder_Generated_Files -- ----------------------------------- procedure Delete_Binder_Generated_Files (Dir : String; Source : File_Name_Type) is Source_Name : constant String := Get_Name_String (Source); Current : constant String := Get_Current_Dir; Last : constant Positive := B_Start'Length + Source_Name'Length; File_Name : String (1 .. Last + 4); begin Change_Dir (Dir); -- Build the file name (before the extension) File_Name (1 .. B_Start'Length) := B_Start; File_Name (B_Start'Length + 1 .. Last) := Source_Name; -- Spec File_Name (Last + 1 .. Last + 4) := ".ads"; if Is_Regular_File (File_Name (1 .. Last + 4)) then Delete (Dir, File_Name (1 .. Last + 4)); end if; -- Body File_Name (Last + 1 .. Last + 4) := ".adb"; if Is_Regular_File (File_Name (1 .. Last + 4)) then Delete (Dir, File_Name (1 .. Last + 4)); end if; -- ALI file File_Name (Last + 1 .. Last + 4) := ".ali"; if Is_Regular_File (File_Name (1 .. Last + 4)) then Delete (Dir, File_Name (1 .. Last + 4)); end if; -- Object file File_Name (Last + 1 .. Last + Object_Suffix'Length) := Object_Suffix; if Is_Regular_File (File_Name (1 .. Last + Object_Suffix'Length)) then Delete (Dir, File_Name (1 .. Last + Object_Suffix'Length)); end if; -- Change back to previous directory Change_Dir (Current); end Delete_Binder_Generated_Files; ----------------------- -- Display_Copyright -- ----------------------- procedure Display_Copyright is begin if not Copyright_Displayed then Copyright_Displayed := True; Display_Version ("GNATCLEAN", "2003"); end if; end Display_Copyright; --------------- -- Gnatclean -- --------------- procedure Gnatclean is begin -- Do the necessary initializations Clean.Initialize; -- Parse the command line, getting the switches and the executable names Parse_Cmd_Line; if Verbose_Mode then Display_Copyright; end if; Osint.Add_Default_Search_Dirs; Targparm.Get_Target_Parameters; if Osint.Number_Of_Files = 0 then if Argument_Count = 0 then Usage; else Try_Help; end if; return; end if; if Verbose_Mode then New_Line; end if; if Project_File_Name /= null then declare Gprclean_Path : constant String_Access := Locate_Exec_On_Path ("gprclean"); Arg_Len : Natural := Argument_Count; Pos : Natural := 0; Target : String_Access := null; Success : Boolean := False; begin if Gprclean_Path = null then Fail_Program ("project files are no longer supported by gnatclean;" & " use gprclean instead"); end if; Find_Program_Name; if Name_Len > 10 and then Name_Buffer (Name_Len - 8 .. Name_Len) = "gnatclean" then Target := new String'(Name_Buffer (1 .. Name_Len - 9)); Arg_Len := Arg_Len + 1; end if; declare Args : Argument_List (1 .. Arg_Len); begin if Target /= null then Args (1) := new String'("--target=" & Target.all); Pos := 1; end if; for J in 1 .. Argument_Count loop Pos := Pos + 1; Args (Pos) := new String'(Argument (J)); end loop; Spawn (Gprclean_Path.all, Args, Success); if Success then Exit_Program (E_Success); else Exit_Program (E_Errors); end if; end; end; end if; Clean_Executables; -- In verbose mode, if Delete has not been called, indicate that no file -- needs to be deleted. if Verbose_Mode and (not File_Deleted) then New_Line; if Do_Nothing then Put_Line ("No file needs to be deleted"); else Put_Line ("No file has been deleted"); end if; end if; end Gnatclean; ---------------- -- Initialize -- ---------------- procedure Initialize is begin -- Reset global variables Free (Object_Directory_Path); Do_Nothing := False; File_Deleted := False; Copyright_Displayed := False; Usage_Displayed := False; end Initialize; ---------------------- -- Object_File_Name -- ---------------------- function Object_File_Name (Source : File_Name_Type) return String is Src : constant String := Get_Name_String (Source); begin -- If the source name has an extension, then replace it with -- the Object suffix. for Index in reverse Src'First + 1 .. Src'Last loop if Src (Index) = '.' then return Src (Src'First .. Index - 1) & Object_Suffix; end if; end loop; -- If there is no dot, or if it is the first character, just add the -- ALI suffix. return Src & Object_Suffix; end Object_File_Name; -------------------- -- Parse_Cmd_Line -- -------------------- procedure Parse_Cmd_Line is Last : constant Natural := Argument_Count; Index : Positive; Source_Index : Int := 0; procedure Check_Version_And_Help is new Check_Version_And_Help_G (Usage); begin -- First, check for --version and --help Check_Version_And_Help ("GNATCLEAN", "2003"); -- First, check for switch -P and, if found and gprclean is available, -- silently invoke gprclean, with switch --target if not on a native -- platform. declare Arg_Len : Positive := Argument_Count; Call_Gprclean : Boolean := False; Gprclean : String_Access := null; Pos : Natural := 0; Success : Boolean; Target : String_Access := null; begin Find_Program_Name; if Name_Len >= 9 and then Name_Buffer (Name_Len - 8 .. Name_Len) = "gnatclean" then if Name_Len > 9 then Target := new String'(Name_Buffer (1 .. Name_Len - 10)); Arg_Len := Arg_Len + 1; end if; for J in 1 .. Argument_Count loop declare Arg : constant String := Argument (J); begin if Arg'Length >= 2 and then Arg (Arg'First .. Arg'First + 1) = "-P" then Call_Gprclean := True; exit; end if; end; end loop; if Call_Gprclean then Gprclean := Locate_Exec_On_Path (Exec_Name => "gprclean"); if Gprclean /= null then declare Args : Argument_List (1 .. Arg_Len); begin if Target /= null then Args (1) := new String'("--target=" & Target.all); Pos := 1; end if; for J in 1 .. Argument_Count loop Pos := Pos + 1; Args (Pos) := new String'(Argument (J)); end loop; Spawn (Gprclean.all, Args, Success); Free (Gprclean); if Success then Exit_Program (E_Success); else Exit_Program (E_Fatal); end if; end; end if; end if; end if; end; Index := 1; while Index <= Last loop declare Arg : constant String := Argument (Index); procedure Bad_Argument; pragma No_Return (Bad_Argument); -- Signal bad argument ------------------ -- Bad_Argument -- ------------------ procedure Bad_Argument is begin Fail ("invalid argument """ & Arg & """"); end Bad_Argument; begin if Arg'Length /= 0 then if Arg (1) = '-' then if Arg'Length = 1 then Bad_Argument; end if; case Arg (2) is when '-' => if Arg'Length > Subdirs_Option'Length and then Arg (1 .. Subdirs_Option'Length) = Subdirs_Option then null; -- Subdirs are only used in gprclean elsif Arg = Make_Util.Unchecked_Shared_Lib_Imports then Opt.Unchecked_Shared_Lib_Imports := True; else Bad_Argument; end if; when 'a' => if Arg'Length < 4 then Bad_Argument; end if; if Arg (3) = 'O' then Add_Lib_Search_Dir (Arg (4 .. Arg'Last)); elsif Arg (3) = 'P' then null; -- This is only for gprclean else Bad_Argument; end if; when 'c' => Compile_Only := True; when 'D' => if Object_Directory_Path /= null then Fail ("duplicate -D switch"); elsif Project_File_Name /= null then Fail ("-P and -D cannot be used simultaneously"); end if; if Arg'Length > 2 then declare Dir : constant String := Arg (3 .. Arg'Last); begin if not Is_Directory (Dir) then Fail (Dir & " is not a directory"); else Add_Lib_Search_Dir (Dir); end if; end; else if Index = Last then Fail ("no directory specified after -D"); end if; Index := Index + 1; declare Dir : constant String := Argument (Index); begin if not Is_Directory (Dir) then Fail (Dir & " is not a directory"); else Add_Lib_Search_Dir (Dir); end if; end; end if; when 'e' => if Arg = "-eL" then Follow_Links_For_Files := True; Follow_Links_For_Dirs := True; else Bad_Argument; end if; when 'f' => Force_Deletions := True; Directories_Must_Exist_In_Projects := False; when 'F' => Full_Path_Name_For_Brief_Errors := True; when 'h' => Usage; when 'i' => if Arg'Length = 2 then Bad_Argument; end if; Source_Index := 0; for J in 3 .. Arg'Last loop if Arg (J) not in '0' .. '9' then Bad_Argument; end if; Source_Index := (20 * Source_Index) + (Character'Pos (Arg (J)) - Character'Pos ('0')); end loop; when 'I' => if Arg = "-I-" then Opt.Look_In_Primary_Dir := False; else if Arg'Length = 2 then Bad_Argument; end if; Add_Lib_Search_Dir (Arg (3 .. Arg'Last)); end if; when 'n' => Do_Nothing := True; when 'P' => if Project_File_Name /= null then Fail ("multiple -P switches"); elsif Object_Directory_Path /= null then Fail ("-D and -P cannot be used simultaneously"); end if; if Arg'Length > 2 then declare Prj : constant String := Arg (3 .. Arg'Last); begin if Prj'Length > 1 and then Prj (Prj'First) = '=' then Project_File_Name := new String' (Prj (Prj'First + 1 .. Prj'Last)); else Project_File_Name := new String'(Prj); end if; end; else if Index = Last then Fail ("no project specified after -P"); end if; Index := Index + 1; Project_File_Name := new String'(Argument (Index)); end if; when 'q' => Quiet_Output := True; when 'r' => null; -- This is only for gprclean when 'v' => if Arg = "-v" then Verbose_Mode := True; elsif Arg = "-vP0" or else Arg = "-vP1" or else Arg = "-vP2" then null; -- This is only for gprclean else Bad_Argument; end if; when 'X' => if Arg'Length = 2 then Bad_Argument; end if; when others => Bad_Argument; end case; else Add_File (Arg, Source_Index); end if; end if; end; Index := Index + 1; end loop; end Parse_Cmd_Line; ----------------------- -- Repinfo_File_Name -- ----------------------- function Repinfo_File_Name (Source : File_Name_Type) return String is begin return Get_Name_String (Source) & Repinfo_Suffix; end Repinfo_File_Name; -------------------- -- Tree_File_Name -- -------------------- function Tree_File_Name (Source : File_Name_Type) return String is Src : constant String := Get_Name_String (Source); begin -- If source name has an extension, then replace it with the tree suffix for Index in reverse Src'First + 1 .. Src'Last loop if Src (Index) = '.' then return Src (Src'First .. Index - 1) & Tree_Suffix; end if; end loop; -- If there is no dot, or if it is the first character, just add the -- tree suffix. return Src & Tree_Suffix; end Tree_File_Name; ----------- -- Usage -- ----------- procedure Usage is begin if not Usage_Displayed then Usage_Displayed := True; Display_Copyright; Put_Line ("Usage: gnatclean [switches] {[-innn] name}"); New_Line; Display_Usage_Version_And_Help; Put_Line (" names is one or more file names from which " & "the .adb or .ads suffix may be omitted"); Put_Line (" names may be omitted if -P<project> is specified"); New_Line; Put_Line (" --subdirs=dir real obj/lib/exec dirs are subdirs"); Put_Line (" " & Make_Util.Unchecked_Shared_Lib_Imports); Put_Line (" Allow shared libraries to import static libraries"); New_Line; Put_Line (" -c Only delete compiler generated files"); Put_Line (" -D dir Specify dir as the object library"); Put_Line (" -eL Follow symbolic links when processing " & "project files"); Put_Line (" -f Force deletions of unwritable files"); Put_Line (" -F Full project path name " & "in brief error messages"); Put_Line (" -h Display this message"); Put_Line (" -innn Index of unit in source for following names"); Put_Line (" -n Nothing to do: only list files to delete"); Put_Line (" -Pproj Use GNAT Project File proj"); Put_Line (" -q Be quiet/terse"); Put_Line (" -r Clean all projects recursively"); Put_Line (" -v Verbose mode"); Put_Line (" -vPx Specify verbosity when parsing " & "GNAT Project Files"); Put_Line (" -Xnm=val Specify an external reference " & "for GNAT Project Files"); New_Line; Put_Line (" -aPdir Add directory dir to project search path"); New_Line; Put_Line (" -aOdir Specify ALI/object files search path"); Put_Line (" -Idir Like -aOdir"); Put_Line (" -I- Don't look for source/library files " & "in the default directory"); New_Line; end if; end Usage; end Clean;
AdaCore/langkit
Ada
6,894
adb
-- -- Copyright (C) 2014-2022, AdaCore -- SPDX-License-Identifier: Apache-2.0 -- with Ada.Characters.Handling; use Ada.Characters.Handling; package body Langkit_Support.Names is ------------------- -- Is_Valid_Name -- ------------------- function Is_Valid_Name (Name : Text_Type; Casing : Casing_Convention := Camel_With_Underscores) return Boolean is subtype Alphanumerical is Character_Type with Static_Predicate => Alphanumerical in '0' .. '9' | 'a' .. 'z' | 'A' .. 'Z'; subtype Lower_Alphanumerical is Alphanumerical with Static_Predicate => Lower_Alphanumerical in '0' .. '9' | 'a' .. 'z'; subtype Upper_Alphanumerical is Alphanumerical with Static_Predicate => Upper_Alphanumerical in '0' .. '9' | 'A' .. 'Z'; Last_Was_Underscore : Boolean := False; begin -- Validate the first and last characters: first for invariants shared -- by all conventions, then for convention-specific invariants. if Name'Length = 0 then return False; end if; declare First : Character_Type renames Name (Name'First); Last : Character_Type renames Name (Name'Last); begin case Casing is when Camel_With_Underscores | Camel => if First not in Upper_Alphanumerical or else Last not in Alphanumerical then return False; end if; when Lower => if First not in Lower_Alphanumerical or else Last not in Lower_Alphanumerical then return False; end if; when Upper => if First not in Upper_Alphanumerical or else Last not in Upper_Alphanumerical then return False; end if; end case; end; -- Validate all other characters for C of Name (Name'First + 1 .. Name'Last - 1) loop case C is when '_' => -- Underscores are forbidden in Camel, and consecutive -- underscores are forbidden in all conventions. if Casing = Camel or else Last_Was_Underscore then return False; end if; Last_Was_Underscore := True; when Alphanumerical => -- Depending on the convention, characters following -- underscores either must be lower-case or upper-case. if Last_Was_Underscore then case Casing is when Camel_With_Underscores | Upper => if C not in Upper_Alphanumerical then return False; end if; when Lower => if C not in Lower_Alphanumerical then return False; end if; when Camel => raise Program_Error; end case; else case Casing is when Lower => if C not in Lower_Alphanumerical then return False; end if; when Upper => if C not in Upper_Alphanumerical then return False; end if; when others => null; end case; end if; Last_Was_Underscore := False; when others => return False; end case; end loop; return True; end Is_Valid_Name; ----------------- -- Create_Name -- ----------------- function Create_Name (Name : Text_Type; Casing : Casing_Convention := Camel_With_Underscores) return Name_Type is begin if not Is_Valid_Name (Name, Casing) then raise Invalid_Name_Error; end if; -- Past this point, we know than Name contains alphanumericals and -- underscores only, so Image (Name) is just a conversion to ASCII (no -- escape sequence). declare N : String := Image (Name); begin -- Unless the casing is already Camel_With_Underscores, convert N to -- it. case Casing is when Camel_With_Underscores => return To_Unbounded_String (N); when Camel => return Result : Name_Type do -- Treat each upper-case letter as the start of a new word for C of N loop case C is when 'A' .. 'Z' => if Length (Result) > 0 then Append (Result, '_'); end if; Append (Result, C); when '_' => null; when others => Append (Result, C); end case; end loop; end return; when Lower | Upper => declare Start_Word : Boolean := True; begin -- Normalize casing: each start of a word (alphanumericals -- after underscores) must be upper-case, and the rest in lower -- case. for C of N loop if Start_Word then C := To_Upper (C); Start_Word := False; elsif C = '_' then Start_Word := True; else C := To_Lower (C); end if; end loop; end; return To_Unbounded_String (N); end case; end; end Create_Name; ----------------- -- Format_Name -- ----------------- function Format_Name (Name : Name_Type; Casing : Casing_Convention) return Text_Type is N : String := To_String (Name); Last : Natural := N'Last; begin if N'Length = 0 then raise Invalid_Name_Error; end if; case Casing is when Camel_With_Underscores => null; when Camel => -- Strip underscores and preserve all other characters Last := 0; for C of N loop if C /= '_' then Last := Last + 1; N (Last) := C; end if; end loop; when Lower => for C of N loop C := To_Lower (C); end loop; when Upper => for C of N loop C := To_Upper (C); end loop; end case; return To_Text (N (N'First .. Last)); end Format_Name; end Langkit_Support.Names;
stcarrez/dynamo
Ada
4,469
ads
----------------------------------------------------------------------- -- gen-artifacts-distribs-merges -- Web file merge -- Copyright (C) 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with EL.Variables.Default; with EL.Contexts.Default; with Util.Strings.Maps; with Util.Beans.Objects.Maps; -- === Distribution: webmerge === -- The `webmerge` distribution rule is intended to merge Javascript or CSS files -- which are used by XHTML presentation files. It requires some help from the -- developer to describe what files must be merged. The XHTML file must contain -- well defined XML comments which are used to identify the merging areas. -- The CSS file merge start section begins with: -- -- <!-- DYNAMO-MERGE-START link=#{contextPath}/css/target-merge-1.css --> -- -- and the Javascript merge start begins with: -- -- <!-- DYNAMO-MERGE-START script=#{contextPath}/js/target-merge-1.js --> -- -- The merge section is terminated by the following XML comment: -- -- <!-- DYNAMO-MERGE-END --> -- -- Everything withing these XML comments is then replaced either by a `link` -- HTML tag or by a `script` HTML tag and a file described either by the -- `link=` or `script=` markers is generated to include every `link` or `script` -- that was defined within the XML comment markers. For example, with the following -- XHTML extract: -- -- <!-- DYNAMO-MERGE-START link=#{contextPath}/css/merged.css --> -- <link media="screen" type="text/css" rel="stylesheet" href="#{contextPath}/css/awa.css"/> -- <link media="screen" type="text/css" rel="stylesheet" href="#{jquery.uiCssPath}"/> -- <link media="screen" type="text/css" rel="stylesheet" href="#{jquery.chosenCssPath}"/> -- <!-- DYNAMO-MERGE-END --> -- -- The generated file `css/merged.css` will include `awa.css`, `jquery-ui-1.12.1.css`, -- `chosen.css` and the XHTML will be replaced to include `css/merge.css` only -- by using the following XHTML: -- -- <link media='screen' type='text/css' rel='stylesheet' href='#{contextPath}/css/merged.css'/> -- -- To use the `webmerge`, the `package.xml` description file should contain -- the following command: -- -- <install mode='merge' dir='web'> -- <property name="contextPath"></property> -- <property name="jquery.path">/js/jquery-3.4.1.js</property> -- <property name="jquery.uiCssPath">/css/redmond/jquery-ui-1.12.1.css</property> -- <property name="jquery.chosenCssPath">/css/jquery-chosen-1.8.7/chosen.css</property> -- <property name="jquery.uiPath">/js/jquery-ui-1.12.1</property> -- <fileset dir="web"> -- <include name="WEB-INF/layouts/*.xhtml"/> -- </fileset> -- </install> -- private package Gen.Artifacts.Distribs.Merges is -- Create a distribution rule to copy a set of files or directories. function Create_Rule (Node : in DOM.Core.Node) return Distrib_Rule_Access; -- ------------------------------ -- Distribution artifact -- ------------------------------ type Merge_Rule is new Distrib_Rule with private; type Merge_Rule_Access is access all Merge_Rule; -- Get a name to qualify the installation rule (used for logs). overriding function Get_Install_Name (Rule : in Merge_Rule) return String; overriding procedure Install (Rule : in Merge_Rule; Path : in String; Files : in File_Vector; Context : in out Generator'Class); private type Merge_Rule is new Distrib_Rule with record Params : Util.Beans.Objects.Maps.Map_Bean; Context : EL.Contexts.Default.Default_Context; Variables : aliased EL.Variables.Default.Default_Variable_Mapper; Replace : Util.Strings.Maps.Map; end record; end Gen.Artifacts.Distribs.Merges;
AdaCore/training_material
Ada
4,429
adb
----------------------------------------------------------------------- -- Ada Labs -- -- -- -- Copyright (C) 2008-2009, AdaCore -- -- -- -- Labs 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 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, write to the Free Software Foundation, Inc., 59 Temple -- -- Place - Suite 330, Boston, MA 02111-1307, USA. -- ----------------------------------------------------------------------- with Ada.Real_Time; use Ada.Real_Time; with Solar_System; with Display; use Display; with Display.Basic; use Display.Basic; with Solar_System.Graphics; procedure Main is type Bodies_Enum_1_T is (Sun1, Earth); type Bodies_Enum_2_T is (Sun2, Jupiter); package My_Solar_System1 is new Solar_System (Bodies_Enum_1_T); package My_Sol_Sys_Graphics1 is new My_Solar_System1.Graphics; use My_Solar_System1; use My_Sol_Sys_Graphics1; package My_Solar_System2 is new Solar_System (Bodies_Enum_2_T); package My_Sol_Sys_Graphics2 is new My_Solar_System2.Graphics; use My_Solar_System2; use My_Sol_Sys_Graphics2; -- declare variable Bodies which is an array of Body_T Bodies1 : My_Solar_System1.Bodies_Array_T; Bodies2 : My_Solar_System2.Bodies_Array_T; -- declare a variable Next of type Time to store the Next step time Next : Time; -- declare a constant Period of 40 milliseconds of type Time_Span defining the loop period Period : constant Time_Span := Milliseconds (40); -- reference to the application window Window : Window_ID; -- reference to the graphical canvas associated with the application window Canvas : Canvas_ID; begin -- Create the main window Window := Create_Window (Width => 240, Height => 320, Name => "Solar System"); -- retrieve the graphical canvas associated with the main window Canvas := Get_Canvas (Window); -- initialize Bodies using Init_Body procedure Init_Body (B => Sun1, Bodies => Bodies1, Radius => 20.0, Color => Yellow, Distance => 0.0, Angle => 0.0, Speed => 0.0, Turns_Around => Sun1); Init_Body (B => Earth, Bodies => Bodies1, Radius => 5.0, Color => Blue, Distance => 50.0, Angle => 0.0, Speed => 0.02, Turns_Around => Sun1); Init_Body (B => Sun2, Bodies => Bodies2, Radius => 20.0, Color => Yellow, Distance => 0.0, Angle => 0.0, Speed => 0.0, Turns_Around => Sun2); Init_Body (B => Jupiter, Bodies => Bodies2, Radius => 10.0, Color => (255,150,0, 255), Distance => 80.0, Angle => 180.0, Speed => 0.01, Turns_Around => Sun2); Set_Center(Bodies1, -30.0, -30.0); Set_Center(Bodies2, 50.0, 50.0); -- initialize the Next step time begin the current time (Clock) + the period Next := Clock + Period; -- create an infinite loop -- call Move_All procedure -- call Draw_All procedure -- call Swap_Buffers to update the screen -- wait until Next time -- update the Next time while not Is_Killed loop Move_All (Bodies1); Move_All (Bodies2); Draw_All (Bodies1, Canvas); Draw_All (Bodies2, Canvas); Display.Basic.Swap_Buffers (Window); delay until Next; Next := Next + Period; end loop; end Main;
AdaCore/libadalang
Ada
309
adb
procedure Test is type Color is (Red, Green, Blue); type My_Rec_Variant (C : Color) is record case C is when Red => A : Integer; when Color range Green .. Blue => B : Integer; end case; end record; pragma Test_Block; begin null; end Test;
reznikmm/matreshka
Ada
4,011
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Table_End_Column_Attributes; package Matreshka.ODF_Table.End_Column_Attributes is type Table_End_Column_Attribute_Node is new Matreshka.ODF_Table.Abstract_Table_Attribute_Node and ODF.DOM.Table_End_Column_Attributes.ODF_Table_End_Column_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Table_End_Column_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Table_End_Column_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Table.End_Column_Attributes;
reznikmm/matreshka
Ada
3,739
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Draw_Extrusion_Color_Attributes is pragma Preelaborate; type ODF_Draw_Extrusion_Color_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Draw_Extrusion_Color_Attribute_Access is access all ODF_Draw_Extrusion_Color_Attribute'Class with Storage_Size => 0; end ODF.DOM.Draw_Extrusion_Color_Attributes;
reznikmm/matreshka
Ada
3,639
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Interface_Realizations.Hash is new AMF.Elements.Generic_Hash (UML_Interface_Realization, UML_Interface_Realization_Access);
jrmarino/AdaBase
Ada
6,372
adb
with AdaBase; with Connect; with CommonText; with Ada.Text_IO; with AdaBase.Results.Sets; with Spatial_Data; procedure Spatial3 is package CON renames Connect; package TIO renames Ada.Text_IO; package ARS renames AdaBase.Results.Sets; package CT renames CommonText; package SD renames Spatial_Data; procedure print_wkt (GM : SD.Geometry; cn, wkt : String); procedure print_point (point : SD.Geometric_Point; label : String); procedure print_wkt (GM : SD.Geometry; cn, wkt : String) is begin TIO.Put_Line (""); TIO.Put_Line ("Column Name : " & cn); TIO.Put_Line ("Geo subtype : " & SD.type_of_collection (GM)'Img); TIO.Put_Line ("WKT value : " & wkt); end print_wkt; procedure print_point (point : SD.Geometric_Point; label : String) is begin TIO.Put_Line ("X=" & point.X'Img & " (" & label & ")"); TIO.Put_Line ("Y=" & point.Y'Img); end print_point; begin CON.connect_database; declare sql : constant String := "SELECT * FROM spatial_plus"; stmt : CON.Stmt_Type := CON.DR.query (sql); row : ARS.Datarow := stmt.fetch_next; PT : constant String := "sp_point"; LN : constant String := "sp_linestring"; PG : constant String := "sp_polygon"; MP : constant String := "sp_multi_point"; ML : constant String := "sp_multi_line_string"; MPG : constant String := "sp_multi_polygon"; GC : constant String := "sp_geo_collection"; begin TIO.Put_Line ("Demonstrate direct geometry retrieval and manipulation"); -- Point print_wkt (row.column (PT).as_geometry, PT, row.column (PT).as_string); print_point (SD.retrieve_point (row.column (PT).as_geometry), PT); -- Line print_wkt (row.column (LN).as_geometry, LN, row.column (LN).as_string); declare LNS : SD.Geometric_Line_String := SD.retrieve_line (row.column (LN).as_geometry); begin for component in LNS'Range loop print_point (LNS (component), LN & component'Img); end loop; end; -- Polygon print_wkt (row.column (PG).as_geometry, PG, row.column (PG).as_string); declare PG1 : SD.Geometric_Polygon := SD.retrieve_polygon (row.column (PG).as_geometry); ring_count : Natural := SD.number_of_rings (PG1); begin for Ring_ID in 1 .. ring_count loop declare RG : SD.Geometric_Ring := SD.retrieve_ring (PG1, Ring_ID); SZ : Natural := RG'Length; begin TIO.Put_Line ("Ring#" & Ring_ID'Img); for component in 1 .. SZ loop print_point (RG (component), "point" & component'Img); end loop; end; end loop; end; -- Multi-Point declare GM : SD.Geometry := row.column (MP).as_geometry; SZ : Natural := SD.size_of_collection (GM); begin print_wkt (GM, MP, row.column (MP).as_string); for component in 1 .. SZ loop print_point (SD.retrieve_point (GM, component), "Multipoint#" & component'Img); end loop; end; -- Multi-Line declare GM : SD.Geometry := row.column (ML).as_geometry; SZ : Natural := SD.size_of_collection (GM); begin print_wkt (GM, ML, row.column (ML).as_string); for component in 1 .. SZ loop declare -- extract line string type SLS : SD.Geometric_Line_String := SD.retrieve_line (GM, component); -- convert to a simple geometry type NGM : SD.Geometry := SD.initialize_as_line (SLS); begin TIO.Put_Line ("line#" & component'Img & ": " & SD.Well_Known_Text (NGM)); end; end loop; end; -- Multi-Polygon declare GM : SD.Geometry := row.column (MPG).as_geometry; SZ : Natural := SD.size_of_collection (GM); begin print_wkt (GM, MPG, row.column (MPG).as_string); for component in 1 .. SZ loop declare -- extract single polygon SPG : SD.Geometric_Polygon := SD.retrieve_polygon (GM, component); -- convert to a simple geometry type NGM : SD.Geometry := SD.initialize_as_polygon (SPG); num_rings : Natural := SD.number_of_rings (SPG); begin TIO.Put_Line ("polygon#" & component'Img & ": " & SD.Well_Known_Text (NGM)); for ring in 2 .. num_rings loop declare IR : SD.Geometric_Ring := SD.retrieve_ring (SPG, ring); newpoly : SD.Geometric_Polygon := SD.start_polygon (IR); begin TIO.Put_Line ("Inner ring" & Integer (ring - 1)'Img & " of polygon" & component'Img & " : " & SD.Well_Known_Text (SD.initialize_as_polygon (newpoly))); end; end loop; end; end loop; end; -- Geometry Collection declare GM : SD.Geometry := row.column (GC).as_geometry; SZ : Natural := SD.size_of_collection (GM); begin TIO.Put_Line (""); TIO.Put_Line ("Column Name : " & GC); TIO.Put_Line ("Geo subtype : " & SD.type_of_collection (GM)'Img); TIO.Put_Line ("Number of elements in collection :" & SZ'Img); for component in 1 .. SZ loop declare NGM : SD.Geometry := SD.retrieve_subcollection (GM, component); SZC : Natural := SD.size_of_collection (NGM); begin TIO.Put_Line (""); TIO.Put_Line ("Element" & component'Img & " type : " & SD.collection_item_type (GM, component)'Img); TIO.Put_Line ("Element" & component'Img & " size : " & CT.int2str (SZC)); TIO.Put_Line ("Element" & component'Img & " wkt : " & SD.Well_Known_Text (NGM)); end; end loop; end; end; CON.DR.disconnect; end Spatial3;
reznikmm/matreshka
Ada
6,998
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Db.Connection_Resource_Elements is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Db_Connection_Resource_Element_Node is begin return Self : Db_Connection_Resource_Element_Node do Matreshka.ODF_Db.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Db_Prefix); end return; end Create; ---------------- -- Enter_Node -- ---------------- overriding procedure Enter_Node (Self : not null access Db_Connection_Resource_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Enter_Db_Connection_Resource (ODF.DOM.Db_Connection_Resource_Elements.ODF_Db_Connection_Resource_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Enter_Node (Visitor, Control); end if; end Enter_Node; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Db_Connection_Resource_Element_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Connection_Resource_Element; end Get_Local_Name; ---------------- -- Leave_Node -- ---------------- overriding procedure Leave_Node (Self : not null access Db_Connection_Resource_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Leave_Db_Connection_Resource (ODF.DOM.Db_Connection_Resource_Elements.ODF_Db_Connection_Resource_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Leave_Node (Visitor, Control); end if; end Leave_Node; ---------------- -- Visit_Node -- ---------------- overriding procedure Visit_Node (Self : not null access Db_Connection_Resource_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then ODF.DOM.Iterators.Abstract_ODF_Iterator'Class (Iterator).Visit_Db_Connection_Resource (Visitor, ODF.DOM.Db_Connection_Resource_Elements.ODF_Db_Connection_Resource_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Visit_Node (Iterator, Visitor, Control); end if; end Visit_Node; begin Matreshka.DOM_Documents.Register_Element (Matreshka.ODF_String_Constants.Db_URI, Matreshka.ODF_String_Constants.Connection_Resource_Element, Db_Connection_Resource_Element_Node'Tag); end Matreshka.ODF_Db.Connection_Resource_Elements;
persan/AUnit-addons
Ada
740
ads
-- ---------------------------------------------------------------------------- -- -- The intent of this unit is to provide a simple main program that runs -- one Test_Suite. -- The procedure is intended to be instansiated as a childern to -- the package containing the function Suite. -- -- with AUnit.Test_Suites.Simple_Main_Generic; -- procedure component.children.Tests.Suit1.main is -- new AUnit.Test_Suites.Simple_Main_Generic(Suit); -- -- Thus providing a simple main for One_Testcase to be used during development. -- -- ---------------------------------------------------------------------------- with AUnit.Run.Generic_Runner; generic procedure AUnit.Test_Suites.Simple_Main_Generic renames AUnit.Run.Generic_Runner;
stcarrez/mat
Ada
1,316
ads
----------------------------------------------------------------------- -- mat-readers-files -- Reader for files -- Copyright (C) 2014, 2023 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Streams.Files; package MAT.Readers.Streams.Files is type File_Reader_Type is new MAT.Readers.Streams.Stream_Reader_Type with private; -- Open the file. procedure Open (Reader : in out File_Reader_Type; Path : in String); private type File_Reader_Type is new MAT.Readers.Streams.Stream_Reader_Type with record File : aliased Util.Streams.Files.File_Stream; end record; end MAT.Readers.Streams.Files;
reznikmm/matreshka
Ada
4,066
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Asis; with Engines.Contexts; with League.Strings; package Properties.Expressions.Attribute_Reference is function Code (Engine : access Engines.Contexts.Context; Element : Asis.Expression; Name : Engines.Text_Property) return League.Strings.Universal_String; function Call_Convention (Engine : access Engines.Contexts.Context; Element : Asis.Declaration; Name : Engines.Convention_Property) return Engines.Convention_Kind; function Intrinsic_Name (Engine : access Engines.Contexts.Context; Element : Asis.Declaration; Name : Engines.Text_Property) return League.Strings.Universal_String; end Properties.Expressions.Attribute_Reference;
zhmu/ananas
Ada
3,264
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . C O N C A T _ 3 -- -- -- -- B o d y -- -- -- -- Copyright (C) 2008-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Concat_2; package body System.Concat_3 is pragma Suppress (All_Checks); ------------------ -- Str_Concat_3 -- ------------------ procedure Str_Concat_3 (R : out String; S1, S2, S3 : String) is F, L : Natural; begin F := R'First; L := F + S1'Length - 1; R (F .. L) := S1; F := L + 1; L := F + S2'Length - 1; R (F .. L) := S2; F := L + 1; L := R'Last; R (F .. L) := S3; end Str_Concat_3; ------------------------- -- Str_Concat_Bounds_3 -- ------------------------- procedure Str_Concat_Bounds_3 (Lo, Hi : out Natural; S1, S2, S3 : String) is begin System.Concat_2.Str_Concat_Bounds_2 (Lo, Hi, S2, S3); if S1 /= "" then Hi := S1'Last + Hi - Lo + 1; Lo := S1'First; end if; end Str_Concat_Bounds_3; end System.Concat_3;
jhumphry/auto_counters
Ada
3,438
ads
-- kvflyweights-untracked_ptrs.ads -- A package of generalised references which point to resources inside a -- KVFlyweight. Resources are associated with a key that can be used to -- create them if they have not already been created. -- Copyright (c) 2016, James Humphry -- -- 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. pragma Profile (No_Implementation_Extensions); with Ada.Containers; with KVFlyweights_Hashtables_Spec; generic type Key(<>) is private; type Key_Access is access Key; type Value(<>) is limited private; type Value_Access is access Value; with package KVFlyweight_Hashtables is new KVFlyweights_Hashtables_Spec(Key => Key, Key_Access => Key_Access, Value_Access => Value_Access, others => <>); package KVFlyweights.Untracked_Ptrs is type V_Ref(V : access Value) is null record with Implicit_Dereference => V; type Untracked_Value_Ptr is tagged private; function P (P : Untracked_Value_Ptr) return V_Ref with Inline; function Get (P : Untracked_Value_Ptr) return Value_Access with Inline; function Insert_Ptr (F : aliased in out KVFlyweight_Hashtables.KVFlyweight; K : in Key) return Untracked_Value_Ptr with Inline; type Untracked_Value_Ref (V : not null access Value) is tagged private with Implicit_Dereference => V; function Get (P : Untracked_Value_Ref) return Value_Access with Inline; function Insert_Ref (F : aliased in out KVFlyweight_Hashtables.KVFlyweight; K : in Key) return Untracked_Value_Ref with Inline; function Make_Ptr (R : Untracked_Value_Ref'Class) return Untracked_Value_Ptr with Inline; function Make_Ref (P : Untracked_Value_Ptr'Class) return Untracked_Value_Ref with Inline, Pre => (Get(P) /= null or else (raise KVFlyweights_Error with "Cannot make a " & "Untracked_Value_Ref from a null Untracked_Value_Ptr")); private type KVFlyweight_Ptr is access all KVFlyweight_Hashtables.KVFlyweight; type Untracked_Value_Ptr is tagged record V : Value_Access := null; K : Key_Access := null; Containing_KVFlyweight : KVFlyweight_Ptr := null; Containing_Bucket : Ada.Containers.Hash_Type; end record; type Untracked_Value_Ref (V : access Value) is tagged record K : Key_Access := null; Containing_KVFlyweight : KVFlyweight_Ptr := null; Containing_Bucket : Ada.Containers.Hash_Type; end record; end KVFlyweights.Untracked_Ptrs;
twdroeger/ada-awa
Ada
13,293
ads
----------------------------------------------------------------------- -- awa-modules -- Application Module -- Copyright (C) 2009, 2010, 2011, 2012, 2015, 2016, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Finalization; with Ada.Strings.Hash; with Ada.Strings.Unbounded; with Ada.Containers.Indefinite_Hashed_Maps; with Util.Log.Loggers; with Util.Beans.Basic; with Util.Beans.Objects; with Util.Serialize.IO; with Util.Listeners; with EL.Expressions; with ASF.Beans; with ASF.Applications; with ADO.Sessions; with AWA.Events; limited with AWA.Applications; -- == AWA Modules == -- A module is a software component that can be integrated in the -- web application. The module can bring a set of service APIs, -- some Ada beans and some presentation files. The AWA framework -- allows to configure various parts of a module when it is integrated -- in an application. Some modules are designed to be re-used by -- several applications (for example a _mail_ module, a _users_ -- module, ...). Other modules could be specific to an application. -- An application will be made of several modules, some will be -- generic some others specific to the application. -- -- === Registration === -- The module should have only one instance per application and it must -- be registered when the application is initialized. The module -- instance should be added to the application record as follows: -- -- type Application is new AWA.Applications.Application with record -- Xxx : aliased Xxx_Module; -- end record; -- -- The application record must override the `Initialize_Module` procedure -- and it must register the module instance. This is done as follows: -- -- overriding -- procedure Initialize_Modules (App : in out Application) is -- begin -- Register (App => App.Self.all'Access, -- Name => Xxx.Module.NAME, -- URI => "xxx", -- Module => App.User_Module'Access); -- end Initialize_Modules; -- -- The module is registered under a unique name. That name is used -- to load the module configuration. -- -- === Configuration === -- The module is configured by using an XML or a properties file. -- The configuration file is used to define: -- -- * the Ada beans that the module defines and uses, -- * the events that the module wants to receive and the action -- that must be performed when the event is posted, -- * the permissions that the module needs and how to check them, -- * the navigation rules which are used for the module web interface, -- * the servlet and filter mappings used by the module -- -- The module configuration is located in the *config* directory -- and must be the name of the module followed by the file extension -- (example: `module-name`.xml or `module-name`.properties). -- -- package AWA.Modules is type Application_Access is access all AWA.Applications.Application'Class; -- ------------------------------ -- Module manager -- ------------------------------ -- -- The <b>Module_Manager</b> represents the root of the logic manager type Module_Manager is new Ada.Finalization.Limited_Controlled and Util.Beans.Basic.Readonly_Bean with private; function Get_Value (Manager : in Module_Manager; Name : in String) return Util.Beans.Objects.Object; -- Get the module configuration property identified by the name. -- If the configuration property does not exist, returns the default value. function Get_Config (Plugin : Module_Manager; Name : String; Default : String := "") return String; -- Get the module configuration property identified by the <tt>Config</tt> parameter. -- If the property does not exist, the default configuration value is returned. function Get_Config (Plugin : in Module_Manager; Config : in ASF.Applications.Config_Param) return String; -- ------------------------------ -- Module -- ------------------------------ type Module is abstract new Ada.Finalization.Limited_Controlled with private; type Module_Access is access all Module'Class; -- Get the module name function Get_Name (Plugin : Module) return String; -- Get the base URI for this module function Get_URI (Plugin : Module) return String; -- Get the application in which this module is registered. function Get_Application (Plugin : in Module) return Application_Access; -- Find the module with the given name function Find_Module (Plugin : Module; Name : String) return Module_Access; -- Get the module configuration property identified by the name. -- If the configuration property does not exist, returns the default value. function Get_Config (Plugin : Module; Name : String; Default : String := "") return String; -- Get the module configuration property identified by the name. -- If the configuration property does not exist, returns the default value. function Get_Config (Plugin : Module; Name : String; Default : Integer := -1) return Integer; -- Get the module configuration property identified by the name. -- If the configuration property does not exist, returns the default value. function Get_Config (Plugin : Module; Name : String; Default : Boolean := False) return Boolean; -- Get the module configuration property identified by the <tt>Config</tt> parameter. -- If the property does not exist, the default configuration value is returned. function Get_Config (Plugin : in Module; Config : in ASF.Applications.Config_Param) return String; -- Get the module configuration property identified by the <tt>Config</tt> parameter. -- If the configuration property does not exist, returns the default value. function Get_Config (Plugin : in Module; Name : in String; Default : in String := "") return EL.Expressions.Expression; procedure Initialize (Manager : in out Module_Manager; Module : in AWA.Modules.Module'Class); procedure Initialize (Plugin : in out Module; App : in Application_Access; Props : in ASF.Applications.Config); -- Initialize the configuration file parser represented by <b>Parser</b> to recognize -- the specific configuration recognized by the module. procedure Initialize_Parser (Plugin : in out Module; Parser : in out Util.Serialize.IO.Parser'Class) is null; -- Configures the module after its initialization and after having read its XML configuration. procedure Configure (Plugin : in out Module; Props : in ASF.Applications.Config) is null; -- Send the event to the module. The module identified by <b>To</b> is -- found and the event is posted on its event channel. procedure Send_Event (Plugin : in Module; Content : in AWA.Events.Module_Event'Class); -- Get the database connection for reading function Get_Session (Manager : Module) return ADO.Sessions.Session; -- Get the database connection for writing function Get_Master_Session (Manager : Module) return ADO.Sessions.Master_Session; -- Register under the given name a function to create the bean instance when -- it is accessed for a first time. The scope defines the scope of the bean. -- bean procedure Register (Plugin : in out Module; Name : in String; Bind : in ASF.Beans.Class_Binding_Access); -- Add a listener to the module listner list. The module will invoke the listner -- depending on events or actions that occur in the module. procedure Add_Listener (Into : in out Module; Item : in Util.Listeners.Listener_Access); -- Find the module with the given name in the application and add the listener to the -- module listener list. procedure Add_Listener (Plugin : in Module; Name : in String; Item : in Util.Listeners.Listener_Access); -- Remove a listener from the module listener list. procedure Remove_Listener (Into : in out Module; Item : in Util.Listeners.Listener_Access); -- Finalize the module. overriding procedure Finalize (Plugin : in out Module); type Pool_Module is abstract new Module with private; type Session_Module is abstract new Module with private; generic type Manager_Type is new Module_Manager with private; type Manager_Type_Access is access all Manager_Type'Class; Name : String; function Get_Manager return Manager_Type_Access; -- Get the database connection for reading function Get_Session (Manager : Module_Manager) return ADO.Sessions.Session; -- Get the database connection for writing function Get_Master_Session (Manager : Module_Manager) return ADO.Sessions.Master_Session; -- Send the event to the module. The module identified by <b>To</b> is -- found and the event is posted on its event channel. procedure Send_Event (Manager : in Module_Manager; Content : in AWA.Events.Module_Event'Class); -- ------------------------------ -- Module Registry -- ------------------------------ -- The module registry maintains the list of available modules with -- operations to retrieve them either from a name or from the base URI. type Module_Registry is limited private; type Module_Registry_Access is access all Module_Registry; -- Initialize the registry procedure Initialize (Registry : in out Module_Registry; Config : in ASF.Applications.Config); -- Register the module in the registry. procedure Register (Registry : in Module_Registry_Access; App : in Application_Access; Plugin : in Module_Access; Name : in String; URI : in String); -- Find the module with the given name function Find_By_Name (Registry : Module_Registry; Name : String) return Module_Access; -- Find the module mapped to a given URI function Find_By_URI (Registry : Module_Registry; URI : String) return Module_Access; -- Iterate over the modules that have been registered and execute the <b>Process</b> -- procedure on each of the module instance. procedure Iterate (Registry : in Module_Registry; Process : access procedure (Plugin : in out Module'Class)); private use Ada.Strings.Unbounded; type Module is abstract new Ada.Finalization.Limited_Controlled with record Registry : Module_Registry_Access; App : Application_Access := null; Name : Unbounded_String; URI : Unbounded_String; Config : ASF.Applications.Config; Self : Module_Access := null; Listeners : Util.Listeners.List; end record; -- Map to find a module from its name or its URI package Module_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => Module_Access, Hash => Ada.Strings.Hash, Equivalent_Keys => "="); type Module_Registry is limited record Config : ASF.Applications.Config; Name_Map : Module_Maps.Map; URI_Map : Module_Maps.Map; end record; type Module_Manager is new Ada.Finalization.Limited_Controlled and Util.Beans.Basic.Readonly_Bean with record Module : Module_Access := null; end record; type Pool_Module is new Module with record D : Natural; end record; type Session_Module is new Module with record P : Natural; end record; use Util.Log; -- The logger (used by the generic Get function). Log : constant Loggers.Logger := Loggers.Create ("AWA.Modules"); end AWA.Modules;
reznikmm/matreshka
Ada
4,618
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Draw_G_Elements; package Matreshka.ODF_Draw.G_Elements is type Draw_G_Element_Node is new Matreshka.ODF_Draw.Abstract_Draw_Element_Node and ODF.DOM.Draw_G_Elements.ODF_Draw_G with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Draw_G_Element_Node; overriding function Get_Local_Name (Self : not null access constant Draw_G_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Draw_G_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Draw_G_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Draw_G_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Draw.G_Elements;
Componolit/libsparkcrypto
Ada
3,202
ads
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2010, Alexander Senier -- Copyright (C) 2010, secunet Security Networks AG -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- -- * Neither the name of the nor the names of its contributors may be used -- to endorse or promote products derived from this software without -- specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with LSC.Internal.SHA256; ------------------------------------------------------------------------------- -- Tables for SHA256 ------------------------------------------------------------------------------- private package LSC.Internal.SHA256.Tables is pragma Pure; K : constant SHA256.Schedule_Type := SHA256.Schedule_Type' (16#428a2f98#, 16#71374491#, 16#b5c0fbcf#, 16#e9b5dba5#, 16#3956c25b#, 16#59f111f1#, 16#923f82a4#, 16#ab1c5ed5#, 16#d807aa98#, 16#12835b01#, 16#243185be#, 16#550c7dc3#, 16#72be5d74#, 16#80deb1fe#, 16#9bdc06a7#, 16#c19bf174#, 16#e49b69c1#, 16#efbe4786#, 16#0fc19dc6#, 16#240ca1cc#, 16#2de92c6f#, 16#4a7484aa#, 16#5cb0a9dc#, 16#76f988da#, 16#983e5152#, 16#a831c66d#, 16#b00327c8#, 16#bf597fc7#, 16#c6e00bf3#, 16#d5a79147#, 16#06ca6351#, 16#14292967#, 16#27b70a85#, 16#2e1b2138#, 16#4d2c6dfc#, 16#53380d13#, 16#650a7354#, 16#766a0abb#, 16#81c2c92e#, 16#92722c85#, 16#a2bfe8a1#, 16#a81a664b#, 16#c24b8b70#, 16#c76c51a3#, 16#d192e819#, 16#d6990624#, 16#f40e3585#, 16#106aa070#, 16#19a4c116#, 16#1e376c08#, 16#2748774c#, 16#34b0bcb5#, 16#391c0cb3#, 16#4ed8aa4a#, 16#5b9cca4f#, 16#682e6ff3#, 16#748f82ee#, 16#78a5636f#, 16#84c87814#, 16#8cc70208#, 16#90befffa#, 16#a4506ceb#, 16#bef9a3f7#, 16#c67178f2#); end LSC.Internal.SHA256.Tables;
AdaCore/gpr
Ada
2,321
adb
with Ada.Text_IO; use Ada.Text_IO; with GPR2.KB; use GPR2.KB; with GPR2.Message; use GPR2.Message; with GPR2.Log; with GPR2.Path_Name; use GPR2.Path_Name; procedure Main is Base1, Base2, Base3, Base4 : GPR2.KB.Object; Msg : GPR2.Message.Object; Log : GPR2.Log.Object; Flags : Parsing_Flags := (True, True, True); Valid_Chunk : constant String := "<gprconfig>" & " <configuration>" & " <config>" & " -- Foo" & " </config>" & " </configuration>" & "</gprconfig>"; Invalid_Chunk : constant String := "<gprconfig>" & " <configuration2>" & " </configuration2>" & "</gprconfig>"; begin Base1 := Create (Default_Location, Flags); Base1.Add (Flags, Valid_Chunk); Base1.Add (Flags, GPR2.Path_Name.Create_File ("valid.xml")); Base1.Add (Flags, Invalid_Chunk); for Msg in Base1.Log_Messages.Iterate (Information => False, Warning => False) loop Put_Line (GPR2.Log.Element (Msg).Format); end loop; Base2 := Create (Default_Location, Flags); Base2.Add (Flags, Valid_Chunk); Base2.Add (Flags, GPR2.Path_Name.Create_File ("valid.xml")); Base2.Add (Flags, GPR2.Path_Name.Create_File ("invalid.xml")); for Msg in Base2.Log_Messages.Iterate (Information => False, Warning => False) loop Put_Line (GPR2.Log.Element (Msg).Format); end loop; Base3 := Create_Default (Flags); Base3.Add (Flags, Valid_Chunk); Base3.Add (Flags, GPR2.Path_Name.Create_File ("valid.xml")); Base3.Add (Flags, Invalid_Chunk); for Msg in Base3.Log_Messages.Iterate (Information => False, Warning => False) loop Put_Line (GPR2.Log.Element (Msg).Format); end loop; Base4 := Create_Default (Flags); Base4.Add (Flags, Valid_Chunk); Base4.Add (Flags, GPR2.Path_Name.Create_File ("valid.xml")); Base4.Add (Flags, GPR2.Path_Name.Create_File ("invalid.xml")); for Msg in Base2.Log_Messages.Iterate (Information => False, Warning => False) loop Put_Line (GPR2.Log.Element (Msg).Format); end loop; end Main;
stcarrez/ada-util
Ada
2,945
ads
----------------------------------------------------------------------- -- util-events-channel -- Event Channels -- Copyright (C) 2001, 2002, 2003, 2009, 2010, 2018, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Containers.Doubly_Linked_Lists; -- The <b>Util.Events.Channels</b> package implements a publish/subscribe event -- channel. It is inspired from Event pattern and CosEvent service. package Util.Events.Channels is type Subscriber is limited interface; type Subscriber_Access is access all Subscriber'Class; procedure Receive_Event (Sub : in out Subscriber; Item : in Event'Class) is abstract; ---------------------- -- Event Channel ---------------------- -- Channel on which events are pushed. type Channel is tagged limited private; type Channel_Access is access all Channel'Class; -- Get the name of this event channel. function Get_Name (C : Channel) return String; -- Post an event (may be asynchronous) procedure Post (To : in out Channel; Item : in Event'Class); -- Subscribe to events sent on the event channel. procedure Subscribe (To : in out Channel; Client : in Subscriber_Access); -- Unsubscribe to events sent on the event channel. procedure Unsubscribe (To : in out Channel; Client : in Subscriber_Access); type Channel_Creator is access function (Name : String) return Channel_Access; -- Create an event channel with the given name. The type of channel -- is controlled by <b>Kind</b>. function Create (Name : String; Kind : String) return Channel_Access; -- Create an event channel that post the event immediately. -- This is similar to calling <b>Create</b> with <b>"direct"</b> as kind. function Create_Direct_Channel (Name : String) return Channel_Access; private package Containers is new Ada.Containers.Doubly_Linked_Lists (Element_Type => Subscriber_Access); subtype List is Containers.List; type Channel is tagged limited record Name : Ada.Strings.Unbounded.Unbounded_String; Clients : List; end record; end Util.Events.Channels;
bmsauer/termbox-ada
Ada
2,074
adb
with Ada.Text_IO; use Ada.Text_IO; with Interfaces.C; use Interfaces.C; --with termbox_h; use termbox_h; --with x86_64_linux_gnu_bits_stdint_uintn_h; use x86_64_linux_gnu_bits_stdint_uintn_h; with Termbox; procedure Demo is Init : Termbox.Return_Value; Evt : Termbox.Return_Value; Ev: access Termbox.Event := new Termbox.Event; W,H : Integer; TestCell : access Termbox.Cell := new Termbox.Cell'('B', Termbox.BLACK, Termbox.RED); subtype Color_Array_Idx_Type is Integer range 1..8; type Color_Array_Type is array(Color_Array_Idx_Type) of Termbox.Termbox_Constant; Colors : Color_Array_Type := ( Termbox.BLACK, Termbox.RED, Termbox.GREEN, Termbox.YELLOW, Termbox.BLUE, Termbox.MAGENTA, Termbox.CYAN, Termbox.WHITE ); FgIdx : Color_Array_Idx_Type := 1; begin Init := Termbox.Init; if Init /= 0 then Put_Line("Termbox Init failed with error code: " & Integer'Image(Init)); return; end if; W:= Termbox.Width; H:= Termbox.Height; --Termbox.Set_Clear_Attributes(Termbox.WHITE, Termbox.WHITE); Termbox.Clear; Termbox.Set_Cursor(0,10); Termbox.Put_Cell(0, 9, TestCell); loop Evt := Termbox.Peek_Event(Ev, 100); exit when Ev.key = Termbox.KEY_ESC; Termbox.Change_Cell(0, 0, 'H', Colors(FgIdx), 0); Termbox.Change_Cell(1, 0, 'E', Colors(FgIdx), 0); Termbox.Change_Cell(2, 0, 'L', Colors(FgIdx), 0); Termbox.Change_Cell(3, 0, 'L', Colors(FgIdx), 0); Termbox.Change_Cell(4, 0, 'O', Colors(FgIdx), 0); Termbox.Change_Cell(6, 0, 'W', Colors(FgIdx), 0); Termbox.Change_Cell(7, 0, 'O', Colors(FgIdx), 0); Termbox.Change_Cell(8, 0, 'R', Colors(FgIdx), 0); Termbox.Change_Cell(9, 0, 'L', Colors(FgIdx), 0); Termbox.Change_Cell(10, 0, 'D', Colors(FgIdx), 0); if FgIdx >= 8 then FgIdx :=1; else FgIdx := FgIdx + 1; end if; Termbox.Present; end loop; Termbox.Shutdown; Put_Line("Width/Height:" & Integer'Image(W) & Integer'Image(H)); end Demo;
charlie5/cBound
Ada
1,687
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_materialfv_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; context_tag : aliased xcb.xcb_glx_context_tag_t; face : aliased Interfaces.Unsigned_32; pname : aliased Interfaces.Unsigned_32; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_materialfv_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_materialfv_request_t.Item, Element_Array => xcb.xcb_glx_get_materialfv_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_materialfv_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_materialfv_request_t.Pointer, Element_Array => xcb.xcb_glx_get_materialfv_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_materialfv_request_t;
reznikmm/matreshka
Ada
3,726
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ generic type Num is digits <>; package League.JSON.Streams.Generic_Float_Stream_Operations is pragma Preelaborate; procedure Read (Stream : in out League.JSON.Streams.JSON_Stream'Class; Item : out Num); procedure Write (Stream : in out League.JSON.Streams.JSON_Stream'Class; Item : Num); end League.JSON.Streams.Generic_Float_Stream_Operations;
reznikmm/matreshka
Ada
736
ads
with League.Holders; generic type Data_Type is private; with function To_Holder (Item : Data_Type) return League.Holders.Holder; with function Element (Holder : League.Holders.Holder) return Data_Type; package ORM.Fields.Generic_Fields is type Field is new ORM.Fields.Abstract_Field with private; function Get (Self : Field'Class) return Data_Type; procedure Set (Self : in out Field'Class; Value : Data_Type); private type Field is new ORM.Fields.Abstract_Field with record Value : Data_Type; end record; overriding function Get (Self : Field) return League.Holders.Holder; overriding procedure Set (Self : in out Field; Value : League.Holders.Holder); end ORM.Fields.Generic_Fields;
salmoni/CompStats_Statistics_Ada
Ada
1,288
ads
package CompStats_Statistics is type Values_Array is array (Integer range <>) of Float; function Get_Count (Values : in Values_Array) return Integer; function Get_Minimum (Values : in Values_Array) return Float; function Get_Maximum (Values : Values_Array) return Float; function Get_Range (Values : Values_Array) return Float; function Get_Sum (Values : Values_Array) return Float; function Get_Mean (Values : Values_Array) return Float; function Get_Sum_Of_Squares (Values: Values_Array) return Float; function Get_Population_Variance (Values: Values_Array) return Float; function Get_Sample_Variance (Values: Values_Array) return Float; function Get_Population_Standard_Deviation (Values: Values_Array) return Float; function Get_Sample_Standard_Deviation (Values: Values_Array) return Float; function Get_Standard_Error_Of_Mean (Values: Values_Array) return Float; function Get_Coefficient_Of_Variation (Values: Values_Array) return Float; function Get_Unique_Values (Values : Values_Array) return Values_Array; -- function Get_Slice (Values : Values_Array) return Integer; private function Is_Value_In_Array (Values : Values_Array; Value : Float) return Boolean; end CompStats_Statistics;
zhmu/ananas
Ada
2,553
adb
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ U N B O U N D E D . W I D E _ H A S H -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with System.String_Hash; function Ada.Strings.Wide_Unbounded.Wide_Hash (Key : Unbounded_Wide_String) return Containers.Hash_Type is use Ada.Containers; function Hash is new System.String_Hash.Hash (Wide_Character, Wide_String, Hash_Type); begin return Hash (To_Wide_String (Key)); end Ada.Strings.Wide_Unbounded.Wide_Hash;
zhmu/ananas
Ada
231
adb
-- { dg-do compile } package body Volatile13 is procedure Compute_Index_Map (Self : Shared_String) is Map : Index_Map_Access := Self.Index_Map; begin Map := new Index_Map (Self.Length); end; end Volatile13;
ytomino/vampire
Ada
1,171
adb
-- The Village of Vampire by YT, このソースコードはNYSLです with Tabula.Calendar.Time_IO; package body Tabula.Users.User_Info_IO is procedure IO ( Serializer : not null access Serialization.Serializer; Value : in out User_Info) is use Serialization; use Tabula.Calendar.Time_IO; use Password_Digest_IO; begin for P in IO (Serializer) loop IO (Serializer, "password", Value.Password); IO (Serializer, "remote-addr", Value.Creation_Remote_Addr); IO (Serializer, "remote-host", Value.Creation_Remote_Host); IO (Serializer, "creation-time", Value.Creation_Time); IO (Serializer, "last-remote-addr", Value.Last_Remote_Addr); IO (Serializer, "last-remote-host", Value.Last_Remote_Host); IO (Serializer, "last-time", Value.Last_Time); IO (Serializer, "ignore-request", Value.Ignore_Request, Default => False); IO (Serializer, "disallow-new-village", Value.Disallow_New_Village, Default => False); IO (Serializer, "no-log", Value.No_Log, Default => False); IO (Serializer, "renamed", Value.Renamed, Default => Ada.Strings.Unbounded.Null_Unbounded_String); end loop; end IO; end Tabula.Users.User_Info_IO;
stcarrez/dynamo
Ada
54,179
ads
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT INTERFACE COMPONENTS -- -- -- -- A S I S . S T A T E M E N T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2006-2012, AdaCore -- -- -- -- This specification is adapted from the Ada Semantic Interface -- -- Specification Standard (ISO/IEC 15291) 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. -- -- -- -- This specification also contains suggestions and discussion items -- -- related to revising the ASIS Standard according to the changes proposed -- -- for the new revision of the Ada standard. The copyright notice above, -- -- and the license provisions that follow apply solely to these suggestions -- -- and discussion items that are separated by the corresponding comment -- -- sentinels -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by AdaCore -- -- (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- 18 package Asis.Statements -- Suggestions related to changing this specification to accept new Ada -- features as defined in incoming revision of the Ada Standard (ISO 8652) -- are marked by following comment sentinels: -- -- --|A2005 start -- ... the suggestion goes here ... -- --|A2005 end -- -- and the discussion items are marked by the comment sentinels of teh form: -- -- --|D2005 start -- ... the discussion item goes here ... -- --|D2005 end ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ package Asis.Statements is ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Asis.Statements encapsulates a set of queries that operate on A_Statement, -- A_Path, and An_Exception_Handler elements. ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- 18.1 function Label_Names ------------------------------------------------------------------------------ function Label_Names (Statement : Asis.Statement) return Asis.Defining_Name_List; ------------------------------------------------------------------------------ -- Statement - Specifies the statement to query -- -- Returns label_statement_identifier elements (A_Defining_Name elements) that -- define the labels attached to the statement, in their order of appearance. -- -- Returns a Nil_Element_List if there are no labels attached to the -- statement. -- -- The Enclosing_Element of the A_Defining_Name elements is the statement. -- -- --|A2012 start -- In case of 'floating' labels in Ada 2012 (labels that completes -- sequence_of_statements and that are not attached to any statement) ASIS -- treats them as being attached to the implicit A_Null_Statement element that -- is the last Element in a statement list returned by the corresponding -- structural query. Such an implicit A_Null_Statement can be the given as -- the actual for this query to get 'floating' labels. -- --|A2012 end -- -- Appropriate Element_Kinds: -- A_Statement -- -- Returns Defining_Name_Kinds: -- A_Defining_Identifier -- ------------------------------------------------------------------------------ -- 18.2 function Assignment_Variable_Name ------------------------------------------------------------------------------ function Assignment_Variable_Name (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the assignment statement to query -- -- Returns the expression that names the left hand side of the assignment. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- An_Assignment_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.3 function Assignment_Expression ------------------------------------------------------------------------------ function Assignment_Expression (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the assignment statement to query -- -- Returns the expression from the right hand side of the assignment. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- An_Assignment_Statement -- -- Returns Element_Kinds: -- An_Expression ------------------------------------------------------------------------------ -- 18.4 function Statement_Paths ------------------------------------------------------------------------------ function Statement_Paths (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Path_List; ------------------------------------------------------------------------------ -- Statement - Specifies the statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the execution paths of the statement, in -- their order of appearance. -- -- The only pragmas returned are those preceding the first alternative in -- a case statement. -- -- Appropriate Statement_Kinds: -- An_If_Statement -- A_Case_Statement -- A_Selective_Accept_Statement -- A_Timed_Entry_Call_Statement -- A_Conditional_Entry_Call_Statement -- An_Asynchronous_Select_Statement -- -- Returns Element_Kinds: -- A_Path -- A_Pragma -- ------------------------------------------------------------------------------ -- 18.5 function Condition_Expression ------------------------------------------------------------------------------ function Condition_Expression (Path : Asis.Path) return Asis.Expression; ------------------------------------------------------------------------------ -- Path - Specifies the execution path to query -- -- Returns the condition expression for an IF path or an ELSIF statement or -- expression path. -- -- Appropriate Path_Kinds: -- An_If_Path -- An_Elsif_Path -- An_If_Expression_Path -- ASIS 2012 -- An_Elsif_Expression_Path -- ASIS 2012 -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.6 function Sequence_Of_Statements ------------------------------------------------------------------------------ function Sequence_Of_Statements (Path : Asis.Path; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Path - Specifies the execution path to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the statements and pragmas from an execution path, -- in their order of appearance. -- -- --|A2012 start -- In case if a sequence_of_Statements in the argument Element contains -- 'floating' labels (labels that completes sequence_of_statements and that -- are not attached to any statement in the source code), the result list -- contains as its last element an implicit A_Null_Statement element these -- 'floating' labels are attached to. The Enclosing_Element of this implicit -- A_Null_Statement element is the argument Element. -- --|A2012 start -- -- Appropriate Element_Kinds: -- A_Path -- -- Returns Element_Kinds: -- A_Statement -- A_Pragma -- ------------------------------------------------------------------------------ -- 18.7 function Case_Expression ------------------------------------------------------------------------------ function Case_Expression (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the case statement to query -- -- --|A2012 start -- -- Adapted for Ada 2012: -- Returns the expression of the case statement or case expression that -- determines which execution path is taken or which alternative is used to -- get the value of the expression. -- -- Appropriate Element_Kinds: -- A_Statement -- An_Expression -- -- Appropriate Statement_Kinds: -- A_Case_Statement -- -- Appropriate Expression_Kinds: -- A_Case_Expression -- -- Returns Element_Kinds: -- An_Expression -- -- --|A2012 end ------------------------------------------------------------------------------ -- 18.8 function Case_Statement_Alternative_Choices ------------------------------------------------------------------------------ function Case_Statement_Alternative_Choices (Path : Asis.Path) return Asis.Element_List; ------------------------------------------------------------------------------ -- Path - Specifies the case_statement_alternative execution path to query -- -- Returns a list of the 'when <choice> | <choice>' elements, in their -- order of appearance. -- -- Appropriate Path_Kinds: -- A_Case_Path -- -- Returns Element_Kinds: -- An_Expression -- A_Definition -- -- Returns Definition_Kinds: -- A_Discrete_Range -- An_Others_Choice -- ------------------------------------------------------------------------------ -- 18.9 function Statement_Identifier ------------------------------------------------------------------------------ function Statement_Identifier (Statement : Asis.Statement) return Asis.Defining_Name; ------------------------------------------------------------------------------ -- Statement - Specifies the statement to query -- -- Returns the identifier for the loop_statement or block_statement. -- -- Returns a Nil_Element if the loop has no identifier. -- -- The Enclosing_Element of the name is the statement. -- -- Appropriate Statement_Kinds: -- A_Loop_Statement -- A_While_Loop_Statement -- A_For_Loop_Statement -- A_Block_Statement -- -- Returns Defining_Name_Kinds: -- Not_A_Defining_Name -- A_Defining_Identifier -- ------------------------------------------------------------------------------ -- 18.10 function Is_Name_Repeated ------------------------------------------------------------------------------ function Is_Name_Repeated (Statement : Asis.Statement) return Boolean; ------------------------------------------------------------------------------ -- Statement - Specifies the statement to query -- -- Returns True if the name of the accept, loop, or block is repeated after -- the end of the statement. Always returns True for loop or block -- statements since the name is required. -- -- Returns False for any unexpected Element. -- -- Expected Statement_Kinds: -- A_Block_Statement -- A_Loop_Statement -- An_Accept_Statement -- ------------------------------------------------------------------------------ -- 18.11 function While_Condition ------------------------------------------------------------------------------ function While_Condition (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the loop statement to query -- -- Returns the condition expression associated with the while loop. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- A_While_Loop_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.12 function For_Loop_Parameter_Specification ------------------------------------------------------------------------------ function For_Loop_Parameter_Specification (Statement : Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------ -- Statement - Specifies the loop statement to query -- -- Returns the declaration of the A_Loop_Parameter_Specification. -- -- Appropriate Statement_Kinds: -- A_For_Loop_Statement -- -- Returns Declaration_Kinds: -- A_Loop_Parameter_Specification -- ------------------------------------------------------------------------------ -- 18.13 function Loop_Statements ------------------------------------------------------------------------------ function Loop_Statements (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Statement - Specifies the loop statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the sequence_of_statements and any pragmas from the loop_statement, -- in their order of appearance. -- -- --|A2012 start -- In case if a sequence_of_Statements in the argument Element contains -- 'floating' labels (labels that completes sequence_of_statements and that -- are not attached to any statement in the source code), the result list -- contains as its last element an implicit A_Null_Statement element these -- 'floating' labels are attached to. The Enclosing_Element of this implicit -- A_Null_Statement element is the argument Element. -- --|A2012 start -- -- Appropriate Statement_Kinds: -- A_Loop_Statement -- A_While_Loop_Statement -- A_For_Loop_Statement -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------ -- 18.14 function Is_Declare_Block ------------------------------------------------------------------------------ function Is_Declare_Block (Statement : Asis.Statement) return Boolean; ------------------------------------------------------------------------------ -- Statement - Specifies the statement to query -- -- Returns True if the statement is a block_statement and it was created with -- the use of the "declare" reserved word. The presence or absence of any -- declarative_item elements is not relevant. -- -- Returns False if the "declare" reserved word does not appear in the -- block_statement, or for any unexpected Element. -- -- Expected Statement_Kinds: -- A_Block_Statement -- ------------------------------------------------------------------------------ -- 18.15 function Block_Declarative_Items ------------------------------------------------------------------------------ function Block_Declarative_Items (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Declarative_Item_List; ------------------------------------------------------------------------------ -- Statement - Specifies the block statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the declarations, representation_clause elements, -- pragmas, and use_clause elements in the declarative_part of the -- block_statement, in their order of appearance. -- -- Returns a Nil_Element_List if there are no declarative items. -- -- Appropriate Statement_Kinds: -- A_Block_Statement -- -- Returns Element_Kinds: -- A_Declaration -- A_Pragma -- A_Clause -- ------------------------------------------------------------------------------ -- 18.16 function Block_Statements ------------------------------------------------------------------------------ function Block_Statements (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Statement - Specifies the block statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the statements and pragmas for the block_statement, in -- their order of appearance. -- -- Returns a Nil_Element_List if there are no statements or pragmas. This -- can only occur for a block_statement obtained from the obsolescent query -- Body_Block_Statement when its argument is a package_body -- that has no sequence_of_statements. -- -- --|A2012 start -- In case if a sequence_of_Statements in the argument Element contains -- 'floating' labels (labels that completes sequence_of_statements and that -- are not attached to any statement in the source code), the result list -- contains as its last element an implicit A_Null_Statement element these -- 'floating' labels are attached to. The Enclosing_Element of this implicit -- A_Null_Statement element is the argument Element. -- --|A2012 start -- -- Appropriate Statement_Kinds: -- A_Block_Statement -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------ -- 18.17 function Block_Exception_Handlers ------------------------------------------------------------------------------ function Block_Exception_Handlers (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Exception_Handler_List; ------------------------------------------------------------------------------ -- Statement - Specifies the block statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the exception_handler elements of the block_statement, -- in their order of appearance. -- -- The only pragmas returned are those following the reserved word "exception" -- and preceding the reserved word "when" of first exception handler. -- -- Returns a Nil_Element_List if there are no exception_handler elements. -- -- Appropriate Statement_Kinds: -- A_Block_Statement -- -- Returns Element_Kinds: -- An_Exception_Handler -- A_Pragma -- ------------------------------------------------------------------------------ -- 18.18 function Exit_Loop_Name ------------------------------------------------------------------------------ function Exit_Loop_Name (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the exit statement to query -- -- Returns the name of the exited loop. -- -- Returns a Nil_Element if no loop name is present. -- -- Appropriate Statement_Kinds: -- An_Exit_Statement -- -- Returns Expression_Kinds: -- Not_An_Expression -- An_Identifier -- A_Selected_Component -- ------------------------------------------------------------------------------ -- 18.19 function Exit_Condition ------------------------------------------------------------------------------ function Exit_Condition (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the exit statement to query -- -- Returns the "when" condition of the exit statement. -- -- Returns a Nil_Element if no condition is present. -- -- Appropriate Statement_Kinds: -- An_Exit_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------ -- 18.20 function Corresponding_Loop_Exited ------------------------------------------------------------------------------ function Corresponding_Loop_Exited (Statement : Asis.Statement) return Asis.Statement; ------------------------------------------------------------------------------ -- Statement - Specifies the exit statement to query -- -- Returns the loop statement exited by the exit statement. -- -- Appropriate Statement_Kinds: -- An_Exit_Statement -- -- Returns Element_Kinds: -- A_Loop_Statement -- A_While_Loop_Statement -- A_For_Loop_Statement -- ------------------------------------------------------------------------------ -- 18.21 function Return_Expression ------------------------------------------------------------------------------ function Return_Expression (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the return statement to query -- -- Returns the expression in the return statement. -- -- Returns a Nil_Element if no expression is present. -- -- Appropriate Statement_Kinds: -- A_Return_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- -- |A2005 start ------------------------------------------------------------------------------ -- 18.#??? function Return_Object_Declaration ------------------------------------------------------------------------------ function Return_Object_Declaration (Statement : Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------ -- Statement - Specifies the extended return statement to query -- -- Returns the declaration of the return object. -- -- Appropriate Statement_Kinds: -- An_Extended_Return_Statement -- -- Returns Declaration_Kinds: -- A_Return_Object_Declaration -- -- |D2005 end -- It Ada 95 there was no notion of a return object, and it was quite logical -- when ASIS returned An_Expression element for A_Return_Statement as a -- value returned by a return statement. For An_Extended_Return_Statement -- we do not have any An_Expression element to be returned as a returned -- value, the only possibility is to return A_Declaration Element representing -- the declaration of returned object. This corresponds to the semantics -- of the return statement defined by Ada 2005. -- -- So the problem is that for two forms of a return statement ASIS 2005 -- provides two different ways of providing information about what is returned -- by the statement - an expression or a declaration. Moreover, the old -- Return_Expression query in Ada 2005 does not correspond any more to the -- (formal) semantic of the return statement. -- -- I do not know how to improve this situation at the ASIS side. Probably, -- we need an Application Note discussing this situation -- |D2005 start ------------------------------------------------------------------------------ -- 18.#??? function Extended_Return_Statements ------------------------------------------------------------------------------ function Extended_Return_Statements (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Statement - Specifies the extended return statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the statements and pragmas from the extended return -- statement, in their order of appearance. -- -- Returns a Nil_Element_List if the argument extended return statement does -- not include handled_sequence_of_statements. -- -- --|A2012 start -- In case if a sequence_of_Statements in the argument Element contains -- 'floating' labels (labels that completes sequence_of_statements and that -- are not attached to any statement in the source code), the result list -- contains as its last element an implicit A_Null_Statement element these -- 'floating' labels are attached to. The Enclosing_Element of this implicit -- A_Null_Statement element is the argument Element. -- --|A2012 start -- -- Appropriate Statement_Kinds: -- An_Extended_Return_Statement -- -- Returns Element_Kinds: -- A_Statement -- A_Pragma -- ------------------------------------------------------------------------------ -- 18.#??? function Extended_Return_Exception_Handlers ------------------------------------------------------------------------------ function Extended_Return_Exception_Handlers (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Exception_Handler_List; ------------------------------------------------------------------------------ -- Statement - Specifies the extended return statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the exception_handler elements of the extended return -- statement, in their order of appearance. -- -- The only pragmas returned are those following the reserved word "exception" -- and preceding the reserved word "when" of first exception handler. -- -- Returns a Nil_Element_List if there are no exception_handler elements. -- -- Appropriate Statement_Kinds: -- An_Extended_Return_Statement -- -- Returns Element_Kinds: -- An_Exception_Handler -- A_Pragma -- -- |D2005 start -- These two proposed queries - Extended_Return_Statements and -- Extended_Return_Exception_Handlers duplicates queries for getting statement -- lists and exception handlers from block and accept statements. Can we -- somehow avoid this duplication? -- Are these query names - Extended_Return_Statements and -- Extended_Return_Exception_Handlers - really good? -- |D2005 end -- |A2005 end ------------------------------------------------------------------------------ -- 18.22 function Goto_Label ------------------------------------------------------------------------------ function Goto_Label (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the goto statement to query -- -- Returns the expression reference for the label, as specified by the goto -- statement. -- -- Appropriate Statement_Kinds: -- A_Goto_Statement -- -- Returns Expression_Kinds: -- An_Identifier -- ------------------------------------------------------------------------------ -- 18.23 function Corresponding_Destination_Statement ------------------------------------------------------------------------------ function Corresponding_Destination_Statement (Statement : Asis.Statement) return Asis.Statement; ------------------------------------------------------------------------------ -- Statement - Specifies the goto statement to query -- -- Returns the target statement specified by the goto statement. -- -- Appropriate Statement_Kinds: -- A_Goto_Statement -- -- Returns Element_Kinds: -- A_Statement -- -- --|AN Application Note: -- --|AN -- --|AN The Reference Manual allows a pragma between a statement and a label -- --|AN attached to it. If so, when the label is passed as an actual -- --|AN parameter to this query, the query returns the statement, but not -- --|AN the label. The only way for an application to know that there are -- --|AN any pragmas between a statement and its label is to get the spans -- --|AN of these program elements and analyze the coverspending positions in -- --|AN the source text. -- ------------------------------------------------------------------------------ -- 18.24 function Called_Name ------------------------------------------------------------------------------ function Called_Name (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the procedure call or entry call statement to query -- -- Returns the name of the called procedure or entry. The name of an entry -- family takes the form of An_Indexed_Component. -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.25 function Corresponding_Called_Entity ------------------------------------------------------------------------------ function Corresponding_Called_Entity (Statement : Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------ -- Statement - Specifies the procedure_call_statement or -- entry_call_statement to query -- -- Returns the declaration of the procedure or entry denoted by the call. -- -- Returns a Nil_Element if the: -- -- - prefix of the call denotes an access to a procedure implicit -- or explicit dereference, -- -- - argument is a dispatching call, -- -- - argument is a call to a dispatching operation of a tagged type which -- is not statically determined. -- -- If procedure_prefix denotes an attribute_reference, and if -- the corresponding attribute is (re)defined by an attribute definition -- clause, an implementation is encouraged, but not required, to return the -- definition of the corresponding subprogram whose name is used after "use" -- in this attribute definition clause. If an implementation cannot return -- such a subprogram definition, a Nil_Element should be returned. For an -- attribute reference which is not (re)defined by an attribute definition -- clause, a Nil_Element should be returned. -- -- --|D2005 start -- If the arrument call is located in expanded generic and it is a call to an -- artificial null procedure used as the default actual for a formal procedure -- with null default, Nil_Element is returned. -- -- If the argument call is a dispatching call, Nil_Element should be returned. -- this is correct, but of no real help for a client. What about adding -- another semantic query (let's say - Corresponding_Ancestor_Procedure), that -- in case if the argument Is_Dispatching_Call returns the very beginning of -- the chain of inherited/overriding procedures that may be called here. This -- at least would allow a client to get some information about the profile -- of the called procedure. -- -- The same problem exists for dynamic calls (when a called subprogram is -- pointed by an access value. It would be nice to get the called profile. -- This problem would be solved if we would add -- Corresponding_Expression_Type_Definition to Asis.Expression - we could -- apply it to Called_Name. -- -- The same problems exist for function calls - -- Asis.Expressions.Corresponding_Called_Function (17.29) just return -- Nil_Element for dispatching and dynamic calls, but a client may need a -- profile. -- -- May be, we need to clarify explicitly, that in case when a called -- procedure is declared by subprogram instantiation, then -- Corresponding_Called_Entity returns A_Procedure_Instantiation Element, but -- not the corresponding expanded A_Procedure_Declaration (the same problem -- exists for Asis.Expressions.Corresponding_Called_Function (17.29) -- --|D2005 end -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Declaration_Kinds: -- Not_A_Declaration -- A_Procedure_Declaration -- A_Procedure_Body_Declaration -- A_Procedure_Body_Stub -- A_Procedure_Renaming_Declaration -- A_Procedure_Instantiation -- A_Formal_Procedure_Declaration -- An_Entry_Declaration -- A_Generic_Procedure_Declaration -- -- --|IP Implementation Permissions -- --|IP -- --|IP An implementation may choose to return any part of multi-part -- --|IP declarations and definitions. Multi-part declaration/definitions -- --|IP can occur for: -- --|IP -- --|IP - Subprogram specification in package specification, package body, -- --|IP and subunits (is separate); -- --|IP - Entries in package specification, package body, and subunits -- --|IP (is separate); -- --|IP - Private type and full type declarations; -- --|IP - Incomplete type and full type declarations; and -- --|IP - Deferred constant and full constant declarations. -- --|IP -- --|IP No guarantee is made that the element will be the first part or -- --|IP that the determination will be made due to any visibility rules. -- --|IP An application should make its own analysis for each case based -- --|IP on which part is returned. -- ------------------------------------------------------------------------------ -- 18.26 function Call_Statement_Parameters ------------------------------------------------------------------------------ function Call_Statement_Parameters (Statement : Asis.Statement; Normalized : Boolean := False) return Asis.Association_List; ------------------------------------------------------------------------------ -- Statement - Specifies the procedure_call_statement or -- entry_call_statement to query -- Normalized - Specifies whether the normalized form is desired -- -- Returns a list of parameter_association elements of the call. -- -- Returns a Nil_Element_List if there are no parameter_association elements. -- -- An unnormalized list contains only explicit associations ordered as they -- appear in the program text. Each unnormalized association has an optional -- formal_parameter_selector_name and an explicit_actual_parameter component. -- -- A normalized list contains artificial associations representing all -- explicit and default associations. It has a length equal to the number of -- parameter_specification elements of the formal_part of the -- parameter_and_result_profile. The order of normalized associations matches -- the order of parameter_specification elements. -- -- Each normalized association represents a one on one mapping of a -- parameter_specification elements to the explicit or default expression. -- A normalized association has one A_Defining_Name component that denotes the -- parameter_specification, and one An_Expression component that is either the -- explicit_actual_parameter or a default_expression. -- -- If the prefix of the call denotes an access to a procedure implicit or -- explicit deference, normalized associations are constructed on the basis -- of the formal_part of the parameter_profile from the corresponding -- access_to_subprogram definition. -- -- Returns Nil_Element for normalized associations in the case where -- the called procedure can be determined only dynamically (dispatching -- calls). ASIS cannot produce any meaningful result in this case. -- --|D2005 start -- The cases when the called entity can be determined only dynamically also -- include calls to the procedures pointed by access values -- --|D2005 end -- -- The exception ASIS_Inappropriate_Element is raised when the procedure -- call is an attribute reference and Is_Normalized is True. -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Element_Kinds: -- A_Parameter_Association -- -- --|IR Implementation Requirements: -- --|IR -- --|IR Normalized associations are Is_Normalized and Is_Part_Of_Implicit. -- --|IR Normalized associations provided by default are -- --|IR Is_Defaulted_Association. Normalized associations are never -- --|IR Is_Equal to unnormalized associations. -- --|IR -- --|IP Implementation Permissions: -- --|IP -- --|IP An implementation may choose to always include default parameters in -- --|IP its internal representation. -- --|IP -- --|IP An implementation may also choose to normalize its representation -- --|IP to use defining_identifier elements rather than -- --|IP formal_parameter_selector_name elements. -- --|IP -- --|IP In either case, this query will return Is_Normalized associations -- --|IP even if Normalized is False, and the query -- --|IP Call_Statement_Parameters_Normalized will return True. -- ------------------------------------------------------------------------------ -- 18.27 function Accept_Entry_Index ------------------------------------------------------------------------------ function Accept_Entry_Index (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the accept statement to query -- -- Returns the entry index expression in the accept statement. -- -- Returns a Nil_Element if the statement has no explicit entry index, -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------ -- 18.28 function Accept_Entry_Direct_Name ------------------------------------------------------------------------------ function Accept_Entry_Direct_Name (Statement : Asis.Statement) return Asis.Name; ------------------------------------------------------------------------------ -- Statement - Specifies the accept statement to query -- -- Returns the direct name of the entry. The name follows the reserved word -- "accept". -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Expression_Kinds: -- An_Identifier -- ------------------------------------------------------------------------------ -- 18.29 function Accept_Parameters ------------------------------------------------------------------------------ function Accept_Parameters (Statement : Asis.Statement) return Asis.Parameter_Specification_List; ------------------------------------------------------------------------------ -- Statement - Specifies the accept statement to query -- -- Returns a list of parameter specifications in the formal part of the accept -- statement, in their order of appearance. -- -- Returns a Nil_Element_List if the accept_statement has no parameters. -- -- Results of this query may vary across ASIS implementations. Some -- implementations normalize all multiple name parameter specifications into -- an equivalent sequence of corresponding single name parameter -- specifications. See Reference Manual 3.3.1(7). -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Declaration_Kinds: -- A_Parameter_Specification -- ------------------------------------------------------------------------------ -- 18.30 function Accept_Body_Statements ------------------------------------------------------------------------------ function Accept_Body_Statements (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Statement - Specifies the accept statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the list of statements and pragmas from the body of the accept -- statement, in their order of appearance. -- -- --|A2012 start -- In case if a sequence_of_Statements in the argument Element contains -- 'floating' labels (labels that completes sequence_of_statements and that -- are not attached to any statement in the source code), the result list -- contains as its last element an implicit A_Null_Statement element these -- 'floating' labels are attached to. The Enclosing_Element of this implicit -- A_Null_Statement element is the argument Element. -- --|A2012 start -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------ -- 18.31 function Accept_Body_Exception_Handlers ------------------------------------------------------------------------------ function Accept_Body_Exception_Handlers (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Statement - Specifies the accept statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the list of exception handlers and pragmas from the body of the -- accept statement, in their order of appearance. -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Element_Kinds: -- A_Pragma -- An_Exception_Handler -- ------------------------------------------------------------------------------ -- 18.32 function Corresponding_Entry ------------------------------------------------------------------------------ function Corresponding_Entry (Statement : Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------ -- Statement - Specifies the accept statement to query -- -- Returns the declaration of the entry accepted in this statement. -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Declaration_Kinds: -- An_Entry_Declaration -- ------------------------------------------------------------------------------ -- 18.33 function Requeue_Entry_Name ------------------------------------------------------------------------------ function Requeue_Entry_Name (Statement : Asis.Statement) return Asis.Name; ------------------------------------------------------------------------------ -- Statement - Specifies the requeue statement to query -- -- Returns the entry name following the reserved word "accept". The name of -- an entry family takes the form of An_Indexed_Component. -- -- Appropriate Statement_Kinds: -- A_Requeue_Statement -- A_Requeue_Statement_With_Abort -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.34 function Delay_Expression ------------------------------------------------------------------------------ function Delay_Expression (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the delay statement to query -- -- Returns the expression for the duration of the delay. -- -- Appropriate Statement_Kinds: -- A_Delay_Until_Statement -- A_Delay_Relative_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.35 function Guard ------------------------------------------------------------------------------ function Guard (Path : Asis.Path) return Asis.Expression; ------------------------------------------------------------------------------ -- Path - Specifies the select statement execution path to query -- -- Returns the conditional expression guard for the path. -- -- Returns a Nil_Element if there is no guard, or if the path is from a -- timed_entry_call, a conditional_entry_call, or an asynchronous_select -- statement where a guard is not legal. -- -- Appropriate Path_Kinds: -- A_Select_Path -- An_Or_Path -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------ -- 18.36 function Aborted_Tasks ------------------------------------------------------------------------------ function Aborted_Tasks (Statement : Asis.Statement) return Asis.Expression_List; ------------------------------------------------------------------------------ -- Statement - Specifies the abort statement to query -- -- Returns a list of the task names from the ABORT statement, in their order -- of appearance. -- -- Appropriate Statement_Kinds: -- An_Abort_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------ -- 18.37 function Choice_Parameter_Specification ------------------------------------------------------------------------------ function Choice_Parameter_Specification (Handler : Asis.Exception_Handler) return Asis.Declaration; ------------------------------------------------------------------------------ -- Handler - Specifies the exception handler to query -- -- Returns the choice parameter specification following the reserved word -- "when" in the exception handler. -- -- Returns a Nil_Element if there is no explicit choice parameter. -- -- Appropriate Element_Kinds: -- An_Exception_Handler -- -- Returns Declaration_Kinds: -- Not_A_Declaration -- A_Choice_Parameter_Specification -- ------------------------------------------------------------------------------ -- 18.38 function Exception_Choices ------------------------------------------------------------------------------ function Exception_Choices (Handler : Asis.Exception_Handler) return Asis.Element_List; ------------------------------------------------------------------------------ -- Handler - Specifies the exception handler to query -- -- Returns a list of the 'when <choice> | <choice>' elements, in their -- order of appearance. Choices are either the exception name expression or -- an others choice. -- -- Appropriate Element_Kinds: -- An_Exception_Handler -- -- Returns Expression_Kinds: -- An_Identifier -- A_Selected_Component -- -- Returns Definition_Kinds: -- An_Others_Choice -- ------------------------------------------------------------------------------ -- 18.39 function Handler_Statements ------------------------------------------------------------------------------ function Handler_Statements (Handler : Asis.Exception_Handler; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------ -- Handler - Specifies the exception handler to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the list of statements and pragmas from the body of the -- exception handler, in their order of appearance. -- -- --|A2012 start -- In case if a sequence_of_Statements in the argument Element contains -- 'floating' labels (labels that completes sequence_of_statements and that -- are not attached to any statement in the source code), the result list -- contains as its last element an implicit A_Null_Statement element these -- 'floating' labels are attached to. The Enclosing_Element of this implicit -- A_Null_Statement element is the argument Element. -- --|A2012 start -- -- Appropriate Element_Kinds: -- An_Exception_Handler -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------ -- 18.40 function Raised_Exception ------------------------------------------------------------------------------ function Raised_Exception (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the raise statement to query -- -- Returns the expression that names the raised exception. -- -- Returns a Nil_Element if there is no explicitly named exception. -- -- Appropriate Statement_Kinds: -- A_Raise_Statement -- -- Returns Expression_Kinds: -- Not_An_Expression -- An_Identifier -- A_Selected_Component -- ------------------------------------------------------------------------------ -- |A2005 start -- 18.40 function ------------------------------------------------------------------------------ function Associated_Message (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the raise statement to query -- -- Returns the string expression that is associated with the raised -- exception and follows the WITH keyword in the raise statement -- -- Returns a Nil_Element if there is no string expression. -- -- Appropriate Statement_Kinds: -- A_Raise_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- -- |A2005 end ------------------------------------------------------------------------------ -- 18.41 function Qualified_Expression ------------------------------------------------------------------------------ function Qualified_Expression (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------ -- Statement - Specifies the code statement to query -- -- Returns the qualified aggregate expression representing the code statement. -- -- Appropriate Statement_Kinds: -- A_Code_Statement -- -- Returns Expression_Kinds: -- A_Qualified_Expression -- ------------------------------------------------------------------------------ -- 18.42 function Is_Dispatching_Call ------------------------------------------------------------------------------ function Is_Dispatching_Call (Call : Asis.Element) return Boolean; ------------------------------------------------------------------------------ -- Call - Specifies the element to query. -- -- Returns True if the controlling tag of Call is dynamically determined. -- -- This function shall always return False when pragma -- Restrictions (No_Dispatch) applies. -- -- Returns False for any unexpected Element. -- -- Expected Element_Kinds: -- A_Function_Call -- A_Procedure_Call_Statement -- ------------------------------------------------------------------------------ -- 18.43 function Is_Call_On_Dispatching_Operation ------------------------------------------------------------------------------ function Is_Call_On_Dispatching_Operation (Call : Asis.Element) return Boolean; ------------------------------------------------------------------------------ -- Call - Specifies the element to query. -- -- Returns True if the name or prefix of Call denotes the declaration of a -- primitive operation of a tagged type. -- -- Returns False for any unexpected Element. -- -- Expected Element_Kinds: -- A_Function_Call -- A_Procedure_Call_Statement -- ------------------------------------------------------------------------------ end Asis.Statements;
AdaCore/Ada_Drivers_Library
Ada
14,118
ads
-- This spec has been automatically generated from STM32F46_79x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.DAC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_TSEL1_Field is HAL.UInt3; subtype CR_WAVE1_Field is HAL.UInt2; subtype CR_MAMP1_Field is HAL.UInt4; subtype CR_TSEL2_Field is HAL.UInt3; subtype CR_WAVE2_Field is HAL.UInt2; subtype CR_MAMP2_Field is HAL.UInt4; -- control register type CR_Register is record -- DAC channel1 enable EN1 : Boolean := False; -- DAC channel1 output buffer disable BOFF1 : Boolean := False; -- DAC channel1 trigger enable TEN1 : Boolean := False; -- DAC channel1 trigger selection TSEL1 : CR_TSEL1_Field := 16#0#; -- DAC channel1 noise/triangle wave generation enable WAVE1 : CR_WAVE1_Field := 16#0#; -- DAC channel1 mask/amplitude selector MAMP1 : CR_MAMP1_Field := 16#0#; -- DAC channel1 DMA enable DMAEN1 : Boolean := False; -- DAC channel1 DMA Underrun Interrupt enable DMAUDRIE1 : Boolean := False; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- DAC channel2 enable EN2 : Boolean := False; -- DAC channel2 output buffer disable BOFF2 : Boolean := False; -- DAC channel2 trigger enable TEN2 : Boolean := False; -- DAC channel2 trigger selection TSEL2 : CR_TSEL2_Field := 16#0#; -- DAC channel2 noise/triangle wave generation enable WAVE2 : CR_WAVE2_Field := 16#0#; -- DAC channel2 mask/amplitude selector MAMP2 : CR_MAMP2_Field := 16#0#; -- DAC channel2 DMA enable DMAEN2 : Boolean := False; -- DAC channel2 DMA underrun interrupt enable DMAUDRIE2 : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record EN1 at 0 range 0 .. 0; BOFF1 at 0 range 1 .. 1; TEN1 at 0 range 2 .. 2; TSEL1 at 0 range 3 .. 5; WAVE1 at 0 range 6 .. 7; MAMP1 at 0 range 8 .. 11; DMAEN1 at 0 range 12 .. 12; DMAUDRIE1 at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; EN2 at 0 range 16 .. 16; BOFF2 at 0 range 17 .. 17; TEN2 at 0 range 18 .. 18; TSEL2 at 0 range 19 .. 21; WAVE2 at 0 range 22 .. 23; MAMP2 at 0 range 24 .. 27; DMAEN2 at 0 range 28 .. 28; DMAUDRIE2 at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- SWTRIGR_SWTRIG array type SWTRIGR_SWTRIG_Field_Array is array (1 .. 2) of Boolean with Component_Size => 1, Size => 2; -- Type definition for SWTRIGR_SWTRIG type SWTRIGR_SWTRIG_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SWTRIG as a value Val : HAL.UInt2; when True => -- SWTRIG as an array Arr : SWTRIGR_SWTRIG_Field_Array; end case; end record with Unchecked_Union, Size => 2; for SWTRIGR_SWTRIG_Field use record Val at 0 range 0 .. 1; Arr at 0 range 0 .. 1; end record; -- software trigger register type SWTRIGR_Register is record -- Write-only. DAC channel1 software trigger SWTRIG : SWTRIGR_SWTRIG_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SWTRIGR_Register use record SWTRIG at 0 range 0 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype DHR12R1_DACC1DHR_Field is HAL.UInt12; -- channel1 12-bit right-aligned data holding register type DHR12R1_Register is record -- DAC channel1 12-bit right-aligned data DACC1DHR : DHR12R1_DACC1DHR_Field := 16#0#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12R1_Register use record DACC1DHR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DHR12L1_DACC1DHR_Field is HAL.UInt12; -- channel1 12-bit left aligned data holding register type DHR12L1_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- DAC channel1 12-bit left-aligned data DACC1DHR : DHR12L1_DACC1DHR_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12L1_Register use record Reserved_0_3 at 0 range 0 .. 3; DACC1DHR at 0 range 4 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DHR8R1_DACC1DHR_Field is HAL.UInt8; -- channel1 8-bit right aligned data holding register type DHR8R1_Register is record -- DAC channel1 8-bit right-aligned data DACC1DHR : DHR8R1_DACC1DHR_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR8R1_Register use record DACC1DHR at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype DHR12R2_DACC2DHR_Field is HAL.UInt12; -- channel2 12-bit right aligned data holding register type DHR12R2_Register is record -- DAC channel2 12-bit right-aligned data DACC2DHR : DHR12R2_DACC2DHR_Field := 16#0#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12R2_Register use record DACC2DHR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DHR12L2_DACC2DHR_Field is HAL.UInt12; -- channel2 12-bit left aligned data holding register type DHR12L2_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- DAC channel2 12-bit left-aligned data DACC2DHR : DHR12L2_DACC2DHR_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12L2_Register use record Reserved_0_3 at 0 range 0 .. 3; DACC2DHR at 0 range 4 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DHR8R2_DACC2DHR_Field is HAL.UInt8; -- channel2 8-bit right-aligned data holding register type DHR8R2_Register is record -- DAC channel2 8-bit right-aligned data DACC2DHR : DHR8R2_DACC2DHR_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR8R2_Register use record DACC2DHR at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype DHR12RD_DACC1DHR_Field is HAL.UInt12; subtype DHR12RD_DACC2DHR_Field is HAL.UInt12; -- Dual DAC 12-bit right-aligned data holding register type DHR12RD_Register is record -- DAC channel1 12-bit right-aligned data DACC1DHR : DHR12RD_DACC1DHR_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; -- DAC channel2 12-bit right-aligned data DACC2DHR : DHR12RD_DACC2DHR_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12RD_Register use record DACC1DHR at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; DACC2DHR at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype DHR12LD_DACC1DHR_Field is HAL.UInt12; subtype DHR12LD_DACC2DHR_Field is HAL.UInt12; -- DUAL DAC 12-bit left aligned data holding register type DHR12LD_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- DAC channel1 12-bit left-aligned data DACC1DHR : DHR12LD_DACC1DHR_Field := 16#0#; -- unspecified Reserved_16_19 : HAL.UInt4 := 16#0#; -- DAC channel2 12-bit left-aligned data DACC2DHR : DHR12LD_DACC2DHR_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12LD_Register use record Reserved_0_3 at 0 range 0 .. 3; DACC1DHR at 0 range 4 .. 15; Reserved_16_19 at 0 range 16 .. 19; DACC2DHR at 0 range 20 .. 31; end record; subtype DHR8RD_DACC1DHR_Field is HAL.UInt8; subtype DHR8RD_DACC2DHR_Field is HAL.UInt8; -- DUAL DAC 8-bit right aligned data holding register type DHR8RD_Register is record -- DAC channel1 8-bit right-aligned data DACC1DHR : DHR8RD_DACC1DHR_Field := 16#0#; -- DAC channel2 8-bit right-aligned data DACC2DHR : DHR8RD_DACC2DHR_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR8RD_Register use record DACC1DHR at 0 range 0 .. 7; DACC2DHR at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DOR1_DACC1DOR_Field is HAL.UInt12; -- channel1 data output register type DOR1_Register is record -- Read-only. DAC channel1 data output DACC1DOR : DOR1_DACC1DOR_Field; -- unspecified Reserved_12_31 : HAL.UInt20; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DOR1_Register use record DACC1DOR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DOR2_DACC2DOR_Field is HAL.UInt12; -- channel2 data output register type DOR2_Register is record -- Read-only. DAC channel2 data output DACC2DOR : DOR2_DACC2DOR_Field; -- unspecified Reserved_12_31 : HAL.UInt20; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DOR2_Register use record DACC2DOR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; -- status register type SR_Register is record -- unspecified Reserved_0_12 : HAL.UInt13 := 16#0#; -- DAC channel1 DMA underrun flag DMAUDR1 : Boolean := False; -- unspecified Reserved_14_28 : HAL.UInt15 := 16#0#; -- DAC channel2 DMA underrun flag DMAUDR2 : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record Reserved_0_12 at 0 range 0 .. 12; DMAUDR1 at 0 range 13 .. 13; Reserved_14_28 at 0 range 14 .. 28; DMAUDR2 at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Digital-to-analog converter type DAC_Peripheral is record -- control register CR : aliased CR_Register; -- software trigger register SWTRIGR : aliased SWTRIGR_Register; -- channel1 12-bit right-aligned data holding register DHR12R1 : aliased DHR12R1_Register; -- channel1 12-bit left aligned data holding register DHR12L1 : aliased DHR12L1_Register; -- channel1 8-bit right aligned data holding register DHR8R1 : aliased DHR8R1_Register; -- channel2 12-bit right aligned data holding register DHR12R2 : aliased DHR12R2_Register; -- channel2 12-bit left aligned data holding register DHR12L2 : aliased DHR12L2_Register; -- channel2 8-bit right-aligned data holding register DHR8R2 : aliased DHR8R2_Register; -- Dual DAC 12-bit right-aligned data holding register DHR12RD : aliased DHR12RD_Register; -- DUAL DAC 12-bit left aligned data holding register DHR12LD : aliased DHR12LD_Register; -- DUAL DAC 8-bit right aligned data holding register DHR8RD : aliased DHR8RD_Register; -- channel1 data output register DOR1 : aliased DOR1_Register; -- channel2 data output register DOR2 : aliased DOR2_Register; -- status register SR : aliased SR_Register; end record with Volatile; for DAC_Peripheral use record CR at 16#0# range 0 .. 31; SWTRIGR at 16#4# range 0 .. 31; DHR12R1 at 16#8# range 0 .. 31; DHR12L1 at 16#C# range 0 .. 31; DHR8R1 at 16#10# range 0 .. 31; DHR12R2 at 16#14# range 0 .. 31; DHR12L2 at 16#18# range 0 .. 31; DHR8R2 at 16#1C# range 0 .. 31; DHR12RD at 16#20# range 0 .. 31; DHR12LD at 16#24# range 0 .. 31; DHR8RD at 16#28# range 0 .. 31; DOR1 at 16#2C# range 0 .. 31; DOR2 at 16#30# range 0 .. 31; SR at 16#34# range 0 .. 31; end record; -- Digital-to-analog converter DAC_Periph : aliased DAC_Peripheral with Import, Address => System'To_Address (16#40007400#); end STM32_SVD.DAC;
reznikmm/matreshka
Ada
3,839
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.ODF_Attributes.Style.Num_Format; package ODF.DOM.Attributes.Style.Num_Format.Internals is function Create (Node : Matreshka.ODF_Attributes.Style.Num_Format.Style_Num_Format_Access) return ODF.DOM.Attributes.Style.Num_Format.ODF_Style_Num_Format; function Wrap (Node : Matreshka.ODF_Attributes.Style.Num_Format.Style_Num_Format_Access) return ODF.DOM.Attributes.Style.Num_Format.ODF_Style_Num_Format; end ODF.DOM.Attributes.Style.Num_Format.Internals;
kontena/ruby-packer
Ada
33,115
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2011,2014 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.32 $ -- $Date: 2014/05/24 21:31:05 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Ada.Unchecked_Deallocation; with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Interfaces.C.Pointers; with Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms is use Terminal_Interface.Curses.Aux; type C_Field_Array is array (Natural range <>) of aliased Field; package F_Array is new Interfaces.C.Pointers (Natural, Field, C_Field_Array, Null_Field); ------------------------------------------------------------------------------ -- | -- | -- | -- subtype chars_ptr is Interfaces.C.Strings.chars_ptr; procedure Request_Name (Key : Form_Request_Code; Name : out String) is function Form_Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Form_Request_Name, "form_request_name"); begin Fill_String (Form_Request_Name (C_Int (Key)), Name); end Request_Name; function Request_Name (Key : Form_Request_Code) return String is function Form_Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Form_Request_Name, "form_request_name"); begin return Fill_String (Form_Request_Name (C_Int (Key))); end Request_Name; ------------------------------------------------------------------------------ -- | -- | -- | -- | -- |===================================================================== -- | man page form_field_new.3x -- |===================================================================== -- | -- | -- | function Create (Height : Line_Count; Width : Column_Count; Top : Line_Position; Left : Column_Position; Off_Screen : Natural := 0; More_Buffers : Buffer_Number := Buffer_Number'First) return Field is function Newfield (H, W, T, L, O, M : C_Int) return Field; pragma Import (C, Newfield, "new_field"); Fld : constant Field := Newfield (C_Int (Height), C_Int (Width), C_Int (Top), C_Int (Left), C_Int (Off_Screen), C_Int (More_Buffers)); begin if Fld = Null_Field then raise Form_Exception; end if; return Fld; end Create; -- | -- | -- | procedure Delete (Fld : in out Field) is function Free_Field (Fld : Field) return Eti_Error; pragma Import (C, Free_Field, "free_field"); begin Eti_Exception (Free_Field (Fld)); Fld := Null_Field; end Delete; -- | -- | -- | function Duplicate (Fld : Field; Top : Line_Position; Left : Column_Position) return Field is function Dup_Field (Fld : Field; Top : C_Int; Left : C_Int) return Field; pragma Import (C, Dup_Field, "dup_field"); F : constant Field := Dup_Field (Fld, C_Int (Top), C_Int (Left)); begin if F = Null_Field then raise Form_Exception; end if; return F; end Duplicate; -- | -- | -- | function Link (Fld : Field; Top : Line_Position; Left : Column_Position) return Field is function Lnk_Field (Fld : Field; Top : C_Int; Left : C_Int) return Field; pragma Import (C, Lnk_Field, "link_field"); F : constant Field := Lnk_Field (Fld, C_Int (Top), C_Int (Left)); begin if F = Null_Field then raise Form_Exception; end if; return F; end Link; -- | -- |===================================================================== -- | man page form_field_just.3x -- |===================================================================== -- | -- | -- | procedure Set_Justification (Fld : Field; Just : Field_Justification := None) is function Set_Field_Just (Fld : Field; Just : C_Int) return Eti_Error; pragma Import (C, Set_Field_Just, "set_field_just"); begin Eti_Exception (Set_Field_Just (Fld, C_Int (Field_Justification'Pos (Just)))); end Set_Justification; -- | -- | -- | function Get_Justification (Fld : Field) return Field_Justification is function Field_Just (Fld : Field) return C_Int; pragma Import (C, Field_Just, "field_just"); begin return Field_Justification'Val (Field_Just (Fld)); end Get_Justification; -- | -- |===================================================================== -- | man page form_field_buffer.3x -- |===================================================================== -- | -- | -- | procedure Set_Buffer (Fld : Field; Buffer : Buffer_Number := Buffer_Number'First; Str : String) is function Set_Fld_Buffer (Fld : Field; Bufnum : C_Int; S : char_array) return Eti_Error; pragma Import (C, Set_Fld_Buffer, "set_field_buffer"); begin Eti_Exception (Set_Fld_Buffer (Fld, C_Int (Buffer), To_C (Str))); end Set_Buffer; -- | -- | -- | procedure Get_Buffer (Fld : Field; Buffer : Buffer_Number := Buffer_Number'First; Str : out String) is function Field_Buffer (Fld : Field; B : C_Int) return chars_ptr; pragma Import (C, Field_Buffer, "field_buffer"); begin Fill_String (Field_Buffer (Fld, C_Int (Buffer)), Str); end Get_Buffer; function Get_Buffer (Fld : Field; Buffer : Buffer_Number := Buffer_Number'First) return String is function Field_Buffer (Fld : Field; B : C_Int) return chars_ptr; pragma Import (C, Field_Buffer, "field_buffer"); begin return Fill_String (Field_Buffer (Fld, C_Int (Buffer))); end Get_Buffer; -- | -- | -- | procedure Set_Status (Fld : Field; Status : Boolean := True) is function Set_Fld_Status (Fld : Field; St : C_Int) return Eti_Error; pragma Import (C, Set_Fld_Status, "set_field_status"); begin if Set_Fld_Status (Fld, Boolean'Pos (Status)) /= E_Ok then raise Form_Exception; end if; end Set_Status; -- | -- | -- | function Changed (Fld : Field) return Boolean is function Field_Status (Fld : Field) return C_Int; pragma Import (C, Field_Status, "field_status"); Res : constant C_Int := Field_Status (Fld); begin if Res = Curses_False then return False; else return True; end if; end Changed; -- | -- | -- | procedure Set_Maximum_Size (Fld : Field; Max : Natural := 0) is function Set_Field_Max (Fld : Field; M : C_Int) return Eti_Error; pragma Import (C, Set_Field_Max, "set_max_field"); begin Eti_Exception (Set_Field_Max (Fld, C_Int (Max))); end Set_Maximum_Size; -- | -- |===================================================================== -- | man page form_field_opts.3x -- |===================================================================== -- | -- | -- | procedure Set_Options (Fld : Field; Options : Field_Option_Set) is function Set_Field_Opts (Fld : Field; Opt : Field_Option_Set) return Eti_Error; pragma Import (C, Set_Field_Opts, "set_field_opts"); begin Eti_Exception (Set_Field_Opts (Fld, Options)); end Set_Options; -- | -- | -- | procedure Switch_Options (Fld : Field; Options : Field_Option_Set; On : Boolean := True) is function Field_Opts_On (Fld : Field; Opt : Field_Option_Set) return Eti_Error; pragma Import (C, Field_Opts_On, "field_opts_on"); function Field_Opts_Off (Fld : Field; Opt : Field_Option_Set) return Eti_Error; pragma Import (C, Field_Opts_Off, "field_opts_off"); begin if On then Eti_Exception (Field_Opts_On (Fld, Options)); else Eti_Exception (Field_Opts_Off (Fld, Options)); end if; end Switch_Options; -- | -- | -- | procedure Get_Options (Fld : Field; Options : out Field_Option_Set) is function Field_Opts (Fld : Field) return Field_Option_Set; pragma Import (C, Field_Opts, "field_opts"); begin Options := Field_Opts (Fld); end Get_Options; -- | -- | -- | function Get_Options (Fld : Field := Null_Field) return Field_Option_Set is Fos : Field_Option_Set; begin Get_Options (Fld, Fos); return Fos; end Get_Options; -- | -- |===================================================================== -- | man page form_field_attributes.3x -- |===================================================================== -- | -- | -- | procedure Set_Foreground (Fld : Field; Fore : Character_Attribute_Set := Normal_Video; Color : Color_Pair := Color_Pair'First) is function Set_Field_Fore (Fld : Field; Attr : Attributed_Character) return Eti_Error; pragma Import (C, Set_Field_Fore, "set_field_fore"); begin Eti_Exception (Set_Field_Fore (Fld, (Ch => Character'First, Color => Color, Attr => Fore))); end Set_Foreground; -- | -- | -- | procedure Foreground (Fld : Field; Fore : out Character_Attribute_Set) is function Field_Fore (Fld : Field) return Attributed_Character; pragma Import (C, Field_Fore, "field_fore"); begin Fore := Field_Fore (Fld).Attr; end Foreground; procedure Foreground (Fld : Field; Fore : out Character_Attribute_Set; Color : out Color_Pair) is function Field_Fore (Fld : Field) return Attributed_Character; pragma Import (C, Field_Fore, "field_fore"); begin Fore := Field_Fore (Fld).Attr; Color := Field_Fore (Fld).Color; end Foreground; -- | -- | -- | procedure Set_Background (Fld : Field; Back : Character_Attribute_Set := Normal_Video; Color : Color_Pair := Color_Pair'First) is function Set_Field_Back (Fld : Field; Attr : Attributed_Character) return Eti_Error; pragma Import (C, Set_Field_Back, "set_field_back"); begin Eti_Exception (Set_Field_Back (Fld, (Ch => Character'First, Color => Color, Attr => Back))); end Set_Background; -- | -- | -- | procedure Background (Fld : Field; Back : out Character_Attribute_Set) is function Field_Back (Fld : Field) return Attributed_Character; pragma Import (C, Field_Back, "field_back"); begin Back := Field_Back (Fld).Attr; end Background; procedure Background (Fld : Field; Back : out Character_Attribute_Set; Color : out Color_Pair) is function Field_Back (Fld : Field) return Attributed_Character; pragma Import (C, Field_Back, "field_back"); begin Back := Field_Back (Fld).Attr; Color := Field_Back (Fld).Color; end Background; -- | -- | -- | procedure Set_Pad_Character (Fld : Field; Pad : Character := Space) is function Set_Field_Pad (Fld : Field; Ch : C_Int) return Eti_Error; pragma Import (C, Set_Field_Pad, "set_field_pad"); begin Eti_Exception (Set_Field_Pad (Fld, C_Int (Character'Pos (Pad)))); end Set_Pad_Character; -- | -- | -- | procedure Pad_Character (Fld : Field; Pad : out Character) is function Field_Pad (Fld : Field) return C_Int; pragma Import (C, Field_Pad, "field_pad"); begin Pad := Character'Val (Field_Pad (Fld)); end Pad_Character; -- | -- |===================================================================== -- | man page form_field_info.3x -- |===================================================================== -- | -- | -- | procedure Info (Fld : Field; Lines : out Line_Count; Columns : out Column_Count; First_Row : out Line_Position; First_Column : out Column_Position; Off_Screen : out Natural; Additional_Buffers : out Buffer_Number) is type C_Int_Access is access all C_Int; function Fld_Info (Fld : Field; L, C, Fr, Fc, Os, Ab : C_Int_Access) return Eti_Error; pragma Import (C, Fld_Info, "field_info"); L, C, Fr, Fc, Os, Ab : aliased C_Int; begin Eti_Exception (Fld_Info (Fld, L'Access, C'Access, Fr'Access, Fc'Access, Os'Access, Ab'Access)); Lines := Line_Count (L); Columns := Column_Count (C); First_Row := Line_Position (Fr); First_Column := Column_Position (Fc); Off_Screen := Natural (Os); Additional_Buffers := Buffer_Number (Ab); end Info; -- | -- | -- | procedure Dynamic_Info (Fld : Field; Lines : out Line_Count; Columns : out Column_Count; Max : out Natural) is type C_Int_Access is access all C_Int; function Dyn_Info (Fld : Field; L, C, M : C_Int_Access) return Eti_Error; pragma Import (C, Dyn_Info, "dynamic_field_info"); L, C, M : aliased C_Int; begin Eti_Exception (Dyn_Info (Fld, L'Access, C'Access, M'Access)); Lines := Line_Count (L); Columns := Column_Count (C); Max := Natural (M); end Dynamic_Info; -- | -- |===================================================================== -- | man page form_win.3x -- |===================================================================== -- | -- | -- | procedure Set_Window (Frm : Form; Win : Window) is function Set_Form_Win (Frm : Form; Win : Window) return Eti_Error; pragma Import (C, Set_Form_Win, "set_form_win"); begin Eti_Exception (Set_Form_Win (Frm, Win)); end Set_Window; -- | -- | -- | function Get_Window (Frm : Form) return Window is function Form_Win (Frm : Form) return Window; pragma Import (C, Form_Win, "form_win"); W : constant Window := Form_Win (Frm); begin return W; end Get_Window; -- | -- | -- | procedure Set_Sub_Window (Frm : Form; Win : Window) is function Set_Form_Sub (Frm : Form; Win : Window) return Eti_Error; pragma Import (C, Set_Form_Sub, "set_form_sub"); begin Eti_Exception (Set_Form_Sub (Frm, Win)); end Set_Sub_Window; -- | -- | -- | function Get_Sub_Window (Frm : Form) return Window is function Form_Sub (Frm : Form) return Window; pragma Import (C, Form_Sub, "form_sub"); W : constant Window := Form_Sub (Frm); begin return W; end Get_Sub_Window; -- | -- | -- | procedure Scale (Frm : Form; Lines : out Line_Count; Columns : out Column_Count) is type C_Int_Access is access all C_Int; function M_Scale (Frm : Form; Yp, Xp : C_Int_Access) return Eti_Error; pragma Import (C, M_Scale, "scale_form"); X, Y : aliased C_Int; begin Eti_Exception (M_Scale (Frm, Y'Access, X'Access)); Lines := Line_Count (Y); Columns := Column_Count (X); end Scale; -- | -- |===================================================================== -- | man page menu_hook.3x -- |===================================================================== -- | -- | -- | procedure Set_Field_Init_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Field_Init (Frm : Form; Proc : Form_Hook_Function) return Eti_Error; pragma Import (C, Set_Field_Init, "set_field_init"); begin Eti_Exception (Set_Field_Init (Frm, Proc)); end Set_Field_Init_Hook; -- | -- | -- | procedure Set_Field_Term_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Field_Term (Frm : Form; Proc : Form_Hook_Function) return Eti_Error; pragma Import (C, Set_Field_Term, "set_field_term"); begin Eti_Exception (Set_Field_Term (Frm, Proc)); end Set_Field_Term_Hook; -- | -- | -- | procedure Set_Form_Init_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Form_Init (Frm : Form; Proc : Form_Hook_Function) return Eti_Error; pragma Import (C, Set_Form_Init, "set_form_init"); begin Eti_Exception (Set_Form_Init (Frm, Proc)); end Set_Form_Init_Hook; -- | -- | -- | procedure Set_Form_Term_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Form_Term (Frm : Form; Proc : Form_Hook_Function) return Eti_Error; pragma Import (C, Set_Form_Term, "set_form_term"); begin Eti_Exception (Set_Form_Term (Frm, Proc)); end Set_Form_Term_Hook; -- | -- |===================================================================== -- | man page form_fields.3x -- |===================================================================== -- | -- | -- | procedure Redefine (Frm : Form; Flds : Field_Array_Access) is function Set_Frm_Fields (Frm : Form; Items : System.Address) return Eti_Error; pragma Import (C, Set_Frm_Fields, "set_form_fields"); begin pragma Assert (Flds.all (Flds'Last) = Null_Field); if Flds.all (Flds'Last) /= Null_Field then raise Form_Exception; else Eti_Exception (Set_Frm_Fields (Frm, Flds.all (Flds'First)'Address)); end if; end Redefine; -- | -- | -- | function Fields (Frm : Form; Index : Positive) return Field is use F_Array; function C_Fields (Frm : Form) return Pointer; pragma Import (C, C_Fields, "form_fields"); P : Pointer := C_Fields (Frm); begin if P = null or else Index > Field_Count (Frm) then raise Form_Exception; else P := P + ptrdiff_t (C_Int (Index) - 1); return P.all; end if; end Fields; -- | -- | -- | function Field_Count (Frm : Form) return Natural is function Count (Frm : Form) return C_Int; pragma Import (C, Count, "field_count"); begin return Natural (Count (Frm)); end Field_Count; -- | -- | -- | procedure Move (Fld : Field; Line : Line_Position; Column : Column_Position) is function Move (Fld : Field; L, C : C_Int) return Eti_Error; pragma Import (C, Move, "move_field"); begin Eti_Exception (Move (Fld, C_Int (Line), C_Int (Column))); end Move; -- | -- |===================================================================== -- | man page form_new.3x -- |===================================================================== -- | -- | -- | function Create (Fields : Field_Array_Access) return Form is function NewForm (Fields : System.Address) return Form; pragma Import (C, NewForm, "new_form"); M : Form; begin pragma Assert (Fields.all (Fields'Last) = Null_Field); if Fields.all (Fields'Last) /= Null_Field then raise Form_Exception; else M := NewForm (Fields.all (Fields'First)'Address); if M = Null_Form then raise Form_Exception; end if; return M; end if; end Create; -- | -- | -- | procedure Delete (Frm : in out Form) is function Free (Frm : Form) return Eti_Error; pragma Import (C, Free, "free_form"); begin Eti_Exception (Free (Frm)); Frm := Null_Form; end Delete; -- | -- |===================================================================== -- | man page form_opts.3x -- |===================================================================== -- | -- | -- | procedure Set_Options (Frm : Form; Options : Form_Option_Set) is function Set_Form_Opts (Frm : Form; Opt : Form_Option_Set) return Eti_Error; pragma Import (C, Set_Form_Opts, "set_form_opts"); begin Eti_Exception (Set_Form_Opts (Frm, Options)); end Set_Options; -- | -- | -- | procedure Switch_Options (Frm : Form; Options : Form_Option_Set; On : Boolean := True) is function Form_Opts_On (Frm : Form; Opt : Form_Option_Set) return Eti_Error; pragma Import (C, Form_Opts_On, "form_opts_on"); function Form_Opts_Off (Frm : Form; Opt : Form_Option_Set) return Eti_Error; pragma Import (C, Form_Opts_Off, "form_opts_off"); begin if On then Eti_Exception (Form_Opts_On (Frm, Options)); else Eti_Exception (Form_Opts_Off (Frm, Options)); end if; end Switch_Options; -- | -- | -- | procedure Get_Options (Frm : Form; Options : out Form_Option_Set) is function Form_Opts (Frm : Form) return Form_Option_Set; pragma Import (C, Form_Opts, "form_opts"); begin Options := Form_Opts (Frm); end Get_Options; -- | -- | -- | function Get_Options (Frm : Form := Null_Form) return Form_Option_Set is Fos : Form_Option_Set; begin Get_Options (Frm, Fos); return Fos; end Get_Options; -- | -- |===================================================================== -- | man page form_post.3x -- |===================================================================== -- | -- | -- | procedure Post (Frm : Form; Post : Boolean := True) is function M_Post (Frm : Form) return Eti_Error; pragma Import (C, M_Post, "post_form"); function M_Unpost (Frm : Form) return Eti_Error; pragma Import (C, M_Unpost, "unpost_form"); begin if Post then Eti_Exception (M_Post (Frm)); else Eti_Exception (M_Unpost (Frm)); end if; end Post; -- | -- |===================================================================== -- | man page form_cursor.3x -- |===================================================================== -- | -- | -- | procedure Position_Cursor (Frm : Form) is function Pos_Form_Cursor (Frm : Form) return Eti_Error; pragma Import (C, Pos_Form_Cursor, "pos_form_cursor"); begin Eti_Exception (Pos_Form_Cursor (Frm)); end Position_Cursor; -- | -- |===================================================================== -- | man page form_data.3x -- |===================================================================== -- | -- | -- | function Data_Ahead (Frm : Form) return Boolean is function Ahead (Frm : Form) return C_Int; pragma Import (C, Ahead, "data_ahead"); Res : constant C_Int := Ahead (Frm); begin if Res = Curses_False then return False; else return True; end if; end Data_Ahead; -- | -- | -- | function Data_Behind (Frm : Form) return Boolean is function Behind (Frm : Form) return C_Int; pragma Import (C, Behind, "data_behind"); Res : constant C_Int := Behind (Frm); begin if Res = Curses_False then return False; else return True; end if; end Data_Behind; -- | -- |===================================================================== -- | man page form_driver.3x -- |===================================================================== -- | -- | -- | function Driver (Frm : Form; Key : Key_Code) return Driver_Result is function Frm_Driver (Frm : Form; Key : C_Int) return Eti_Error; pragma Import (C, Frm_Driver, "form_driver"); R : constant Eti_Error := Frm_Driver (Frm, C_Int (Key)); begin case R is when E_Unknown_Command => return Unknown_Request; when E_Invalid_Field => return Invalid_Field; when E_Request_Denied => return Request_Denied; when others => Eti_Exception (R); return Form_Ok; end case; end Driver; -- | -- |===================================================================== -- | man page form_page.3x -- |===================================================================== -- | -- | -- | procedure Set_Current (Frm : Form; Fld : Field) is function Set_Current_Fld (Frm : Form; Fld : Field) return Eti_Error; pragma Import (C, Set_Current_Fld, "set_current_field"); begin Eti_Exception (Set_Current_Fld (Frm, Fld)); end Set_Current; -- | -- | -- | function Current (Frm : Form) return Field is function Current_Fld (Frm : Form) return Field; pragma Import (C, Current_Fld, "current_field"); Fld : constant Field := Current_Fld (Frm); begin if Fld = Null_Field then raise Form_Exception; end if; return Fld; end Current; -- | -- | -- | procedure Set_Page (Frm : Form; Page : Page_Number := Page_Number'First) is function Set_Frm_Page (Frm : Form; Pg : C_Int) return Eti_Error; pragma Import (C, Set_Frm_Page, "set_form_page"); begin Eti_Exception (Set_Frm_Page (Frm, C_Int (Page))); end Set_Page; -- | -- | -- | function Page (Frm : Form) return Page_Number is function Get_Page (Frm : Form) return C_Int; pragma Import (C, Get_Page, "form_page"); P : constant C_Int := Get_Page (Frm); begin if P < 0 then raise Form_Exception; else return Page_Number (P); end if; end Page; function Get_Index (Fld : Field) return Positive is function Get_Fieldindex (Fld : Field) return C_Int; pragma Import (C, Get_Fieldindex, "field_index"); Res : constant C_Int := Get_Fieldindex (Fld); begin if Res = Curses_Err then raise Form_Exception; end if; return Positive (Natural (Res) + Positive'First); end Get_Index; -- | -- |===================================================================== -- | man page form_new_page.3x -- |===================================================================== -- | -- | -- | procedure Set_New_Page (Fld : Field; New_Page : Boolean := True) is function Set_Page (Fld : Field; Flg : C_Int) return Eti_Error; pragma Import (C, Set_Page, "set_new_page"); begin Eti_Exception (Set_Page (Fld, Boolean'Pos (New_Page))); end Set_New_Page; -- | -- | -- | function Is_New_Page (Fld : Field) return Boolean is function Is_New (Fld : Field) return C_Int; pragma Import (C, Is_New, "new_page"); Res : constant C_Int := Is_New (Fld); begin if Res = Curses_False then return False; else return True; end if; end Is_New_Page; procedure Free (FA : in out Field_Array_Access; Free_Fields : Boolean := False) is procedure Release is new Ada.Unchecked_Deallocation (Field_Array, Field_Array_Access); begin if FA /= null and then Free_Fields then for I in FA'First .. (FA'Last - 1) loop if FA.all (I) /= Null_Field then Delete (FA.all (I)); end if; end loop; end if; Release (FA); end Free; -- |===================================================================== function Default_Field_Options return Field_Option_Set is begin return Get_Options (Null_Field); end Default_Field_Options; function Default_Form_Options return Form_Option_Set is begin return Get_Options (Null_Form); end Default_Form_Options; end Terminal_Interface.Curses.Forms;
tum-ei-rcs/StratoX
Ada
942
adb
package body ulog is procedure Init is null; procedure Serialize_Ulog (msg : in Message; len : out Natural; bytes : out HIL.Byte_Array) is null; procedure Format (msg : in Message; bytes : out HIL.Byte_Array) is null; procedure Get_Header_Ulog (bytes : in out HIL.Byte_Array; len : out Natural; valid : out Boolean) is null; procedure Describe (msg : in Message; namestring : out String) is null; function Describe_Func (msg : in Message) return String is ("hallo"); function Size (msg : in Message) return Interfaces.Unsigned_16 is (0); function Self (msg : in Message) return ULog.Message is (msg); procedure Get_Serialization (msg : in Message; bytes : out HIL.Byte_Array) is null; function Get_Size (msg : in Message) return Interfaces.Unsigned_16 is (0); procedure Get_Format (msg : in Message; bytes : out HIL.Byte_Array) is null; end ulog;
onox/orka
Ada
823
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2021 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with Orka.SIMD.AVX.Integers; package Orka.SIMD.AVX2.Integers is pragma Pure; subtype m256i is Orka.SIMD.AVX.Integers.m256i; end Orka.SIMD.AVX2.Integers;
OneWingedShark/Byron
Ada
2,241
adb
Pragma Ada_2012; Pragma Assertion_Policy( Check ); With Ada.Characters.Conversions, Ada.Strings.Equal_Case_Insensitive; Procedure Lexington.Aux.P9(Data : in out Token_Vector_Pkg.Vector) is Use Lexington.Aux.Token_Pkg; subtype Keyword is Token_ID range kw_Abort..kw_Xor; Function To_String(Input : Wide_Wide_String; Sub : Character := ' ') return String renames Ada.Characters.Conversions.To_String; Function As_Keyword( Input : Token_ID ) return Wide_Wide_String with Pre => Input in Keyword; Function As_Keyword( Input : Token_ID ) return Wide_Wide_String is Image : Wide_Wide_String renames Token_ID'Wide_Wide_Image(Input); Start : Positive renames Positive'Succ(Positive'Succ(Positive'Succ(Image'First))); Stop : constant Positive := Image'Last; Value : Wide_Wide_String := Image(Start..Stop); Begin return Value; End As_Keyword; Function Is_Keyword(Text : Wide_Wide_String; Which : out Token_ID ) return Boolean is -- Ada.Strings.Wide_Wide_Equal_Case_Insensitive is missing on this -- installation; this is a TERRIBLE "mostly works" workaround. Function "="(Left, Right : String) return Boolean renames Ada.Strings.Equal_Case_Insensitive; Function "="(Left, Right : Wide_Wide_String) return Boolean is (To_String(Left) = To_String(Right)); begin Which:= Nil; Return Result : Boolean := False do for Index in Keyword loop Result:= Result or (Text = As_Keyword(Index)); Which:= Index; Exit when Result; end loop; end return; End Is_Keyword; procedure Check_Keyword(Position : Token_Vector_Pkg.Cursor) is Package TVP renames Token_Vector_Pkg; Item : Token renames TVP.Element( Position ); Value : Wide_Wide_String renames Lexeme(Item); KW : Token_ID; begin if Is_Keyword(Text => Value, Which => KW) then Data.Replace_Element(Position, New_Item => Make_Token(KW, As_Keyword(KW)) ); end if; End Check_Keyword; Begin Data.Iterate(Check_Keyword'Access); End Lexington.Aux.P9;
yannickmoy/spat
Ada
11,072
ads
------------------------------------------------------------------------------ -- Copyright (C) 2020 by Heisenbug Ltd. ([email protected]) -- -- 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); ------------------------------------------------------------------------------ -- -- SPARK Proof Analysis Tool -- -- S.P.A.T. - Map information from JSON data into internal data structure. -- -- Collect file contents. -- ------------------------------------------------------------------------------ private with Ada.Tags; limited private with Ada.Containers.Hashed_Maps; with SPAT.Entity.Tree; limited with SPAT.Strings; with SPAT.Timing_Item; package SPAT.Spark_Info is type Sorting_Criterion is (None, Name, Time); type T is tagged limited private; -- Binary representation of the information obtained from a .spark JSON -- file. --------------------------------------------------------------------------- -- Map_Spark_File -- -- Traverses through the JSON data given in Root and translates it into -- the data structure given in This. -- -- Must be called first before the below subroutines can be called. --------------------------------------------------------------------------- not overriding procedure Map_Spark_File (This : in out T; File : in File_Name; Root : in JSON_Value); --------------------------------------------------------------------------- -- List_All_Entities -- -- Returns an (optionally sorted) list of all entities (source unit names) -- currently stored in This. --------------------------------------------------------------------------- not overriding function List_All_Entities (This : in T; Sort_By : in Sorting_Criterion := Name) return Strings.Entity_Names; --------------------------------------------------------------------------- -- List_All_Files -- -- Returns an (optionally sorted) list of the names of all files that have -- been parsed into This. --------------------------------------------------------------------------- not overriding function List_All_Files (This : in T; Sort_By : in Sorting_Criterion := None) return Strings.File_Names; --------------------------------------------------------------------------- -- Num_Flows -- -- Return the total number of flows (flow items) collected. --------------------------------------------------------------------------- not overriding function Num_Flows (This : not null access T) return Ada.Containers.Count_Type; --------------------------------------------------------------------------- -- Flow_Time -- -- Reported time taken for the flow analysis for File. --------------------------------------------------------------------------- not overriding function Flow_Time (This : in T; File : in File_Name) return Duration; --------------------------------------------------------------------------- -- Num_Proofs -- -- Return the total number of proofs collected. --------------------------------------------------------------------------- not overriding function Num_Proofs (This : not null access T) return Ada.Containers.Count_Type; --------------------------------------------------------------------------- -- Proof_Time -- -- Reported time taken for all the proofs for File. --------------------------------------------------------------------------- not overriding function Proof_Time (This : in T; File : in File_Name) return Duration; --------------------------------------------------------------------------- -- Max_Proof_Time -- -- Maximum time taken for a single proof for Entity. --------------------------------------------------------------------------- not overriding function Max_Proof_Time (This : in T; Entity : in Entity_Name) return Duration; --------------------------------------------------------------------------- -- Total_Proof_Time -- -- Total (accumulated) time taken for all proofs for Entity. --------------------------------------------------------------------------- not overriding function Total_Proof_Time (This : in T; Entity : in Entity_Name) return Duration; --------------------------------------------------------------------------- -- Proof_List -- -- List of proof items for given Entity, sorted by time. --------------------------------------------------------------------------- not overriding function Proof_Tree (This : in T; Entity : in Entity_Name) return SPAT.Entity.Tree.Forward_Iterator'Class; --------------------------------------------------------------------------- -- Iterate_Children --------------------------------------------------------------------------- not overriding function Iterate_Children (This : in T; Entity : in Entity_Name; Position : in SPAT.Entity.Tree.Cursor) return SPAT.Entity.Tree.Forward_Iterator'Class; --------------------------------------------------------------------------- -- Has_Failed_Attempts -- -- Returns True if any of the proof attempts for Entity do not have a -- "Valid" result. --------------------------------------------------------------------------- not overriding function Has_Failed_Attempts (This : in T; Entity : in Entity_Name) return Boolean; --------------------------------------------------------------------------- -- Has_Unjustified_Attempts -- -- Returns True if some of the proof attempts for Entity are not "Valid" -- and there is no justification message. --------------------------------------------------------------------------- not overriding function Has_Unjustified_Attempts (This : in T; Entity : in Entity_Name) return Boolean; --------------------------------------------------------------------------- -- Has_Unproved_Attempts -- -- Returns True if some of the proof attempts for Entity do have a "Valid" -- result. --------------------------------------------------------------------------- not overriding function Has_Unproved_Attempts (This : in T; Entity : in Entity_Name) return Boolean; --------------------------------------------------------------------------- -- Print_Trees -- -- Debugging subroutine to print the trees to Standard_Output. Only does -- something if the Verbose flag is set. --------------------------------------------------------------------------- not overriding procedure Print_Trees (This : in T); private type Source_Lines_Sentinel is new Entity.T with null record; --------------------------------------------------------------------------- -- Image --------------------------------------------------------------------------- overriding function Image (This : in Source_Lines_Sentinel) return String is (Ada.Tags.External_Tag (T => Source_Lines_Sentinel'Class (This)'Tag) & ": ()"); Empty_Source_Lines_Sentinel : constant Source_Lines_Sentinel := (Entity.T with null record); type Flows_Sentinel is new Entity.T with null record; --------------------------------------------------------------------------- -- Image --------------------------------------------------------------------------- overriding function Image (This : in Flows_Sentinel) return String is (Ada.Tags.External_Tag (T => Flows_Sentinel'Class (This)'Tag) & ": ()"); Empty_Flows_Sentinel : constant Flows_Sentinel := (Entity.T with null record); type Proof_Cache is record Max_Proof_Time : Duration; Total_Proof_Time : Duration; Has_Failed_Attempts : Boolean; Has_Unproved_Attempts : Boolean; Has_Unjustified_Attempts : Boolean; end record; type Proofs_Sentinel is new Entity.T with record Cache : Proof_Cache; end record; --------------------------------------------------------------------------- -- Image --------------------------------------------------------------------------- overriding function Image (This : in Proofs_Sentinel) return String is (Ada.Tags.External_Tag (T => Proofs_Sentinel'Class (This)'Tag) & ":" & ("(Max_Proof_Time => " & This.Cache.Max_Proof_Time'Image & ", Total_Proof_Time => " & This.Cache.Total_Proof_Time'Image & ", Has_Failed_Attempts => " & This.Cache.Has_Failed_Attempts'Image & ", Has_Unproved_Attempts => " & This.Cache.Has_Unproved_Attempts'Image & ")")); Empty_Proofs_Sentinel : constant Proofs_Sentinel := (Entity.T with Cache => Proof_Cache'(Max_Proof_Time => 0.0, Total_Proof_Time => 0.0, Has_Failed_Attempts => False, Has_Unproved_Attempts => False, Has_Unjustified_Attempts => False)); type Analyzed_Entity is record SPARK_File : File_Name; -- File the entity was found in. The_Tree : Entity.Tree.T; -- Holds all entities. Source_Lines : Entity.Tree.Cursor; -- Currently unused. Flows : Entity.Tree.Cursor; -- List of Flow_Items Proofs : Entity.Tree.Cursor; -- List of Proof_Items end record; -- Type representing a source (file) entity. package Analyzed_Entities is new Ada.Containers.Hashed_Maps (Key_Type => Entity_Name, Element_Type => Analyzed_Entity, Hash => Hash, Equivalent_Keys => "="); package File_Timings is new Ada.Containers.Hashed_Maps (Key_Type => File_Name, Element_Type => Timing_Item.T, Hash => Hash, Equivalent_Keys => "=", "=" => Timing_Item."="); type T is tagged limited record Entities : Analyzed_Entities.Map; Files : File_Timings.Map; -- Cached data Flow_Count : Ada.Containers.Count_Type'Base; Proof_Count : Ada.Containers.Count_Type'Base; end record; end SPAT.Spark_Info;
reznikmm/matreshka
Ada
3,689
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Db_Order_Statement_Elements is pragma Preelaborate; type ODF_Db_Order_Statement is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Db_Order_Statement_Access is access all ODF_Db_Order_Statement'Class with Storage_Size => 0; end ODF.DOM.Db_Order_Statement_Elements;
aeszter/lox-spark
Ada
1,008
ads
with Ada.Characters.Latin_1; with SPARK.Text_IO; with Error_Reporter; with Tokens; package Scanners with SPARK_Mode is procedure Scan_Tokens (Source : String; Token_List : in out Tokens.List) with Global => (in_out => (Error_Reporter.State, SPARK.Text_IO.Standard_Error)), Pre => Source'First >= 1 and then Source'Last < Integer'Last; LF : constant Character := Ada.Characters.Latin_1.LF; NUL : constant Character := Ada.Characters.Latin_1.NUL; CR : constant Character := Ada.Characters.Latin_1.CR; HT : constant Character := Ada.Characters.Latin_1.HT; function Is_Alphanumeric (C : Character) return Boolean with Global => null, Post => (if Is_Alphanumeric'Result then C /= NUL); function Is_Decimal_Digit (C : Character) return Boolean with Global => null, Post => (if Is_Decimal_Digit'Result then C /= NUL); function Is_Letter (C : Character) return Boolean with Global => null, Post => (if Is_Letter'Result then C /= NUL); end Scanners;
OneWingedShark/Byron
Ada
1,336
adb
Pragma Ada_2012; Pragma Assertion_Policy( Check ); with Lexington.Aux.Validation, Lexington.Search.Replace_Sequence, Ada.Characters.Conversions, Ada.Strings.Wide_Wide_Fixed; Procedure Lexington.Aux.P15(Data : in out Token_Vector_Pkg.Vector) is -- I : Integer:= 03#212#e+4; -- F : Float := 11#8A3.1#e-6; use Lexington.Aux.Validation; Procedure Make_Literal(Position : Token_Vector_Pkg.Cursor) is use Ada.Strings.Wide_Wide_Fixed; Package TVP renames Token_Vector_Pkg; This : Token renames TVP.Element( Position ); This_ID : Token_ID renames Token_Pkg.ID(This); This_Value : Wide_Wide_String renames Token_Pkg.Lexeme( This ); Based : constant Boolean := This_ID = li_Integer and Index(This_Value, "#") in Positive; begin if Based then Data.Replace_Element( Position, Token_Pkg.Make_Token(li_Based_Integer, This_Value) ); end if; exception when Constraint_Error => Null; End Make_Literal; procedure Replace_Plus_Exponent is new Search.Replace_Sequence( Sequence => (Text, ch_Plus, li_Integer), Item_Type => li_Based_Integer, Validator => Validate_Integer'Access ); Begin Data.Iterate( Make_Literal'Access ); Replace_Plus_Exponent( Data ); End Lexington.Aux.P15;
optikos/oasis
Ada
4,788
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Array_Component_Associations is function Create (Choices : Program.Element_Vectors.Element_Vector_Access; Arrow_Token : Program.Lexical_Elements.Lexical_Element_Access; Expression : Program.Elements.Expressions.Expression_Access; Box_Token : Program.Lexical_Elements.Lexical_Element_Access) return Array_Component_Association is begin return Result : Array_Component_Association := (Choices => Choices, Arrow_Token => Arrow_Token, Expression => Expression, Box_Token => Box_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Choices : Program.Element_Vectors.Element_Vector_Access; Expression : Program.Elements.Expressions.Expression_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Array_Component_Association is begin return Result : Implicit_Array_Component_Association := (Choices => Choices, Expression => Expression, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Choices (Self : Base_Array_Component_Association) return Program.Element_Vectors.Element_Vector_Access is begin return Self.Choices; end Choices; overriding function Expression (Self : Base_Array_Component_Association) return Program.Elements.Expressions.Expression_Access is begin return Self.Expression; end Expression; overriding function Arrow_Token (Self : Array_Component_Association) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Arrow_Token; end Arrow_Token; overriding function Box_Token (Self : Array_Component_Association) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Box_Token; end Box_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Array_Component_Association) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Array_Component_Association) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Array_Component_Association) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Array_Component_Association'Class) is begin for Item in Self.Choices.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; if Self.Expression.Assigned then Set_Enclosing_Element (Self.Expression, Self'Unchecked_Access); end if; null; end Initialize; overriding function Is_Array_Component_Association_Element (Self : Base_Array_Component_Association) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Array_Component_Association_Element; overriding function Is_Association_Element (Self : Base_Array_Component_Association) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Association_Element; overriding procedure Visit (Self : not null access Base_Array_Component_Association; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Array_Component_Association (Self); end Visit; overriding function To_Array_Component_Association_Text (Self : aliased in out Array_Component_Association) return Program.Elements.Array_Component_Associations .Array_Component_Association_Text_Access is begin return Self'Unchecked_Access; end To_Array_Component_Association_Text; overriding function To_Array_Component_Association_Text (Self : aliased in out Implicit_Array_Component_Association) return Program.Elements.Array_Component_Associations .Array_Component_Association_Text_Access is pragma Unreferenced (Self); begin return null; end To_Array_Component_Association_Text; end Program.Nodes.Array_Component_Associations;
AdaCore/training_material
Ada
512
adb
package body Pixels.Tests is procedure Test_Add_Opaque (TC : Test_Case_T'Class) is begin pragma Assert (Pixel_T'(255, 0, 0, 255) + Pixel_T'(0, 0, 255, 255) = Pixel_T'(255, 0, 255, 255)); pragma Assert (Pixel_T'(255, 255, 0, 255) + Pixel_T'(0, 0, 255, 255) = Pixel_T'(255, 255, 255, 255)); pragma Assert (Pixel_T'(255, 255, 255, 255) + Pixel_T'(0, 0, 255, 255) = Pixel_T'(255, 255, 255, 255)); end Test_Add_Opaque; end Pixels.Tests;
pauls4GE/RACK
Ada
162
adb
package body Regression_Library is function LibraryFun (Input : Boolean) return Boolean is begin return False; end; end Regression_Library;
reznikmm/matreshka
Ada
10,021
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.UML_Packageable_Elements; with AMF.UML.Any_Receive_Events; with AMF.UML.Dependencies.Collections; with AMF.UML.Named_Elements; with AMF.UML.Namespaces; with AMF.UML.Packages.Collections; with AMF.UML.Parameterable_Elements; with AMF.UML.String_Expressions; with AMF.UML.Template_Parameters; with AMF.Visitors; package AMF.Internals.UML_Any_Receive_Events is type UML_Any_Receive_Event_Proxy is limited new AMF.Internals.UML_Packageable_Elements.UML_Packageable_Element_Proxy and AMF.UML.Any_Receive_Events.UML_Any_Receive_Event with null record; overriding function Get_Client_Dependency (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency; -- Getter of NamedElement::clientDependency. -- -- Indicates the dependencies that reference the client. overriding function Get_Name_Expression (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access; -- Getter of NamedElement::nameExpression. -- -- The string expression used to define the name of this named element. overriding procedure Set_Name_Expression (Self : not null access UML_Any_Receive_Event_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access); -- Setter of NamedElement::nameExpression. -- -- The string expression used to define the name of this named element. overriding function Get_Namespace (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Getter of NamedElement::namespace. -- -- Specifies the namespace that owns the NamedElement. overriding function Get_Qualified_Name (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.Optional_String; -- Getter of NamedElement::qualifiedName. -- -- A name which allows the NamedElement to be identified within a -- hierarchy of nested Namespaces. It is constructed from the names of the -- containing namespaces starting at the root of the hierarchy and ending -- with the name of the NamedElement itself. overriding function Get_Owning_Template_Parameter (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.Template_Parameters.UML_Template_Parameter_Access; -- Getter of ParameterableElement::owningTemplateParameter. -- -- The formal template parameter that owns this element. overriding procedure Set_Owning_Template_Parameter (Self : not null access UML_Any_Receive_Event_Proxy; To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access); -- Setter of ParameterableElement::owningTemplateParameter. -- -- The formal template parameter that owns this element. overriding function Get_Template_Parameter (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.Template_Parameters.UML_Template_Parameter_Access; -- Getter of ParameterableElement::templateParameter. -- -- The template parameter that exposes this element as a formal parameter. overriding procedure Set_Template_Parameter (Self : not null access UML_Any_Receive_Event_Proxy; To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access); -- Setter of ParameterableElement::templateParameter. -- -- The template parameter that exposes this element as a formal parameter. overriding function All_Owning_Packages (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package; -- Operation NamedElement::allOwningPackages. -- -- The query allOwningPackages() returns all the directly or indirectly -- owning packages. overriding function Is_Distinguishable_From (Self : not null access constant UML_Any_Receive_Event_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean; -- Operation NamedElement::isDistinguishableFrom. -- -- The query isDistinguishableFrom() determines whether two NamedElements -- may logically co-exist within a Namespace. By default, two named -- elements are distinguishable if (a) they have unrelated types or (b) -- they have related types but different names. overriding function Namespace (Self : not null access constant UML_Any_Receive_Event_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Operation NamedElement::namespace. -- -- Missing derivation for NamedElement::/namespace : Namespace overriding function Is_Compatible_With (Self : not null access constant UML_Any_Receive_Event_Proxy; P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) return Boolean; -- Operation ParameterableElement::isCompatibleWith. -- -- The query isCompatibleWith() determines if this parameterable element -- is compatible with the specified parameterable element. By default -- parameterable element P is compatible with parameterable element Q if -- the kind of P is the same or a subtype as the kind of Q. Subclasses -- should override this operation to specify different compatibility -- constraints. overriding function Is_Template_Parameter (Self : not null access constant UML_Any_Receive_Event_Proxy) return Boolean; -- Operation ParameterableElement::isTemplateParameter. -- -- The query isTemplateParameter() determines if this parameterable -- element is exposed as a formal template parameter. overriding procedure Enter_Element (Self : not null access constant UML_Any_Receive_Event_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Element (Self : not null access constant UML_Any_Receive_Event_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Element (Self : not null access constant UML_Any_Receive_Event_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end AMF.Internals.UML_Any_Receive_Events;
optikos/oasis
Ada
3,445
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.String_Literals is function Create (String_Literal_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return String_Literal is begin return Result : String_Literal := (String_Literal_Token => String_Literal_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_String_Literal is begin return Result : Implicit_String_Literal := (Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function String_Literal_Token (Self : String_Literal) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.String_Literal_Token; end String_Literal_Token; overriding function Image (Self : String_Literal) return Text is begin return Self.String_Literal_Token.Image; end Image; overriding function Is_Part_Of_Implicit (Self : Implicit_String_Literal) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_String_Literal) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_String_Literal) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; overriding function Image (Self : Implicit_String_Literal) return Text is pragma Unreferenced (Self); begin return ""; end Image; procedure Initialize (Self : aliased in out Base_String_Literal'Class) is begin null; end Initialize; overriding function Is_String_Literal_Element (Self : Base_String_Literal) return Boolean is pragma Unreferenced (Self); begin return True; end Is_String_Literal_Element; overriding function Is_Expression_Element (Self : Base_String_Literal) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Expression_Element; overriding procedure Visit (Self : not null access Base_String_Literal; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.String_Literal (Self); end Visit; overriding function To_String_Literal_Text (Self : aliased in out String_Literal) return Program.Elements.String_Literals.String_Literal_Text_Access is begin return Self'Unchecked_Access; end To_String_Literal_Text; overriding function To_String_Literal_Text (Self : aliased in out Implicit_String_Literal) return Program.Elements.String_Literals.String_Literal_Text_Access is pragma Unreferenced (Self); begin return null; end To_String_Literal_Text; end Program.Nodes.String_Literals;
reznikmm/matreshka
Ada
4,720
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Style.Text_Line_Through_Color_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Text_Line_Through_Color_Attribute_Node is begin return Self : Style_Text_Line_Through_Color_Attribute_Node do Matreshka.ODF_Style.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Style_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_Text_Line_Through_Color_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Text_Line_Through_Color_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Style_URI, Matreshka.ODF_String_Constants.Text_Line_Through_Color_Attribute, Style_Text_Line_Through_Color_Attribute_Node'Tag); end Matreshka.ODF_Style.Text_Line_Through_Color_Attributes;
damaki/libkeccak
Ada
7,467
adb
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- package body Keccak.Util with SPARK_Mode => On is --------------------- -- To_Byte_Array -- --------------------- procedure To_Byte_Array (Bytes : out Types.Byte_Array; Str : in String) is begin for I in 0 .. Bytes'Length - 1 loop Bytes (Bytes'First + I) := Types.Byte (Character'Pos (Str (Str'First + I))); pragma Loop_Invariant (Bytes (Bytes'First .. Bytes'First + I)'Initialized); end loop; end To_Byte_Array; ------------------------ -- Left_Encode_NIST -- ------------------------ function Left_Encode_NIST (Length : in Natural) return Types.Byte_Array is Encoded : Types.Byte_Array (1 .. (Natural'Size / 8) + 2) := (others => 0); X : Natural := Length; N : Natural := 0; begin for I in Positive range 1 .. (Natural'Size / 8) + 1 loop pragma Loop_Invariant (N = I - 1); Encoded (Encoded'Last - N) := Types.Byte (X mod 256); X := X / 256; N := N + 1; exit when X = 0; end loop; Encoded (Encoded'Last - N) := Types.Byte (N); return Encoded (Encoded'Last - N .. Encoded'Last); end Left_Encode_NIST; ----------------------------------- -- Left_Encode_NIST_Bit_Length -- ----------------------------------- function Left_Encode_NIST_Bit_Length (Byte_Length : in Natural) return Types.Byte_Array is Encoded : Types.Byte_Array (1 .. Natural'Size + 1) := (others => 0); X : Natural := Byte_Length; N : Natural := 0; begin Encoded (Encoded'Last - N) := Types.Byte (X mod 256) * 8; X := X / 32; N := N + 1; for I in Positive range 2 .. Natural'Size loop pragma Loop_Invariant (N = I - 1); exit when X = 0; Encoded (Encoded'Last - N) := Types.Byte (X mod 256); X := X / 256; N := N + 1; end loop; Encoded (Encoded'Last - N) := Types.Byte (N); return Encoded (Encoded'Last - N .. Encoded'Last); end Left_Encode_NIST_Bit_Length; ------------------------- -- Right_Encode_NIST -- ------------------------- function Right_Encode_NIST (Length : in Natural) return Types.Byte_Array is Encoded : Types.Byte_Array (1 .. (Natural'Size / 8) + 2) := (others => 0); X : Natural := Length; N : Natural := 0; begin for I in Positive range 1 .. (Natural'Size / 8) + 1 loop pragma Loop_Invariant (N = I - 1); Encoded (Encoded'Last - (N + 1)) := Types.Byte (X mod 256); X := X / 256; N := N + 1; exit when X = 0; end loop; Encoded (Encoded'Last) := Types.Byte (N); return Encoded (Encoded'Last - N .. Encoded'Last); end Right_Encode_NIST; ----------------------------------- -- Right_Encode_NIST_Long_Long -- ----------------------------------- function Right_Encode_NIST_Long_Long (Length : in Long_Long_Integer) return Types.Byte_Array is Encoded : Types.Byte_Array (1 .. (Long_Long_Integer'Size / 8) + 2) := (others => 0); X : Long_Long_Integer := Length; N : Natural := 0; begin for I in Positive range 1 .. (Long_Long_Integer'Size / 8) + 1 loop pragma Loop_Invariant (N = I - 1); Encoded (Encoded'Last - (N + 1)) := Types.Byte (X mod 256); X := X / 256; N := N + 1; exit when X = 0; end loop; Encoded (Encoded'Last) := Types.Byte (N); return Encoded (Encoded'Last - N .. Encoded'Last); end Right_Encode_NIST_Long_Long; ------------------------------------ -- Right_Encode_NIST_Bit_Length -- ------------------------------------ function Right_Encode_NIST_Bit_Length (Byte_Length : in Natural) return Types.Byte_Array is Encoded : Types.Byte_Array (1 .. (Natural'Size / 8) + 2) := (others => 0); X : Natural := Byte_Length; N : Natural := 0; begin Encoded (Encoded'Last - (N + 1)) := Types.Byte (X mod 256) * 8; X := X / 32; N := N + 1; for I in Positive range 2 .. (Natural'Size / 8) + 1 loop pragma Loop_Invariant (N = I - 1); exit when X = 0; Encoded (Encoded'Last - (N + 1)) := Types.Byte (X mod 256); X := X / 256; N := N + 1; end loop; Encoded (Encoded'Last) := Types.Byte (N); return Encoded (Encoded'Last - N .. Encoded'Last); end Right_Encode_NIST_Bit_Length; ------------------------ -- Right_Encode_K12 -- ------------------------ function Right_Encode_K12 (Length : in Long_Long_Integer) return Types.Byte_Array is Encoded : Types.Byte_Array (1 .. (Long_Long_Integer'Size / 8) + 2) := (others => 0); X : Long_Long_Integer := Length; N : Natural := 0; begin for I in Positive range 1 .. (Long_Long_Integer'Size / 8) + 1 loop pragma Loop_Invariant (N = I - 1); exit when X = 0; Encoded (Encoded'Last - (N + 1)) := Types.Byte (X mod 256); X := X / 256; N := N + 1; end loop; Encoded (Encoded'Last) := Types.Byte (N); return Encoded (Encoded'Last - N .. Encoded'Last); end Right_Encode_K12; --------------- -- Compare -- --------------- procedure Compare (A1 : in Keccak.Types.Byte_Array; A2 : in Keccak.Types.Byte_Array; Accumulator : in out Keccak.Types.Byte) is begin for I in 0 .. A1'Length - 1 loop Accumulator := Accumulator or (A1 (A1'First + I) xor A2 (A2'First + I)); end loop; end Compare; end Keccak.Util;
reznikmm/matreshka
Ada
3,744
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Chart_Data_Label_Text_Attributes is pragma Preelaborate; type ODF_Chart_Data_Label_Text_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Chart_Data_Label_Text_Attribute_Access is access all ODF_Chart_Data_Label_Text_Attribute'Class with Storage_Size => 0; end ODF.DOM.Chart_Data_Label_Text_Attributes;
AdaCore/Ada_Drivers_Library
Ada
1,934
ads
-- This package was generated by the Ada_Drivers_Library project wizard script package ADL_Config is Architecture : constant String := "ARM"; -- From board definition Board : constant String := "Feather_STM32F405"; -- From command line CPU_Core : constant String := "ARM Cortex-M4F"; -- From mcu definition Device_Family : constant String := "STM32F4"; -- From board definition Device_Name : constant String := "STM32F405RGTx"; -- From board definition Has_Ravenscar_Full_Runtime : constant String := "True"; -- From board definition Has_Ravenscar_SFP_Runtime : constant String := "True"; -- From board definition Has_ZFP_Runtime : constant String := "False"; -- From board definition High_Speed_External_Clock : constant := 12000000; -- From board definition Max_Mount_Name_Length : constant := 128; -- From default value Max_Mount_Points : constant := 2; -- From default value Max_Path_Length : constant := 1024; -- From default value Number_Of_Interrupts : constant := 0; -- From default value Runtime_Name : constant String := "embedded-feather_stm32f405"; -- From default value Runtime_Name_Suffix : constant String := "feather_stm32f405"; -- From board definition Runtime_Profile : constant String := "embedded"; -- From command line Use_Startup_Gen : constant Boolean := False; -- From command line Vendor : constant String := "STMicro"; -- From board definition end ADL_Config;
AdaCore/training_material
Ada
17,750
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . L I B M _ S I N G L E -- -- -- -- S p e c -- -- -- -- Copyright (C) 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. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the Ada Cert Math specific version of s-libsin.ads -- @llrset Libm -- LLR Libm -- ======== package Libm_Single is pragma Pure; -- This package provides an implementation of the various C99 functions -- used in the Ada run time. It is intended to be used for targets that -- do not have a C math library, or where the C math library isn't of -- sufficient quality and accuracy to meet Ada requirements. -- In case of error conditions, NaNs or infinities are returned as -- recommended in clause F.9 of the C99 standard. When called from C code, -- the implementation behaves as if the FENV_ACCESS state is off, assuming -- default rounding behavior and exception behavior. -- The following C99 elementary functions are provided for single -- precision (with the "f" suffix): -- Acos, Acosh, Asin, Asinh, Atan, Atan2, Atanh, Cosh, Exp, Exp2, Log, -- Log1p, Log2, Pow, Sin, Sinh, Tan, Tanh -- All functions with a NaN argument return a NaN result, except where -- stated otherwise. Unless otherwise specified, where the symbol +- occurs -- in both an argument and the result, the result has the same sign as -- the argument. -- Each function lists C special values, Ada expected values as well as -- Ada accuracy requirements the function meets. For accuracy requirements -- the maximum relative error (abbreviated as MRE) is given, as well as -- the domain for which the accuracy is guaranteed, where applicable. -- The maximum relative error is expressed as multiple of Eps, -- where Eps is Float'Model_Epsilon. -- What about principal branch ??? ---------- -- Acos -- ---------- function Acos (X : Float) return Float with Export, Convention => C, External_Name => "acosf"; -- @llr acos (Float) Special Values -- The Acos function shall return the following special values: -- -- C99 special values: -- Acos (1) = +0 -- Acos (x) = NaN if abs (x) > 1 -- -- Ada expected values: -- Acos (0) = Pi/2.0 (tightly approximated) -- Acos (-1) = Pi (tightly approximated) -- Acos (x) return a result in [0, Pi] radians -- -- @llr acos (Float) Accuracy -- The Acos function shall return the inverse cosine of <X> with the -- following accuracy: -- -- Ada accuracy requirements: -- MRE <= 4.0 * Eps ----------- -- Acosh -- ----------- function Acosh (X : Float) return Float with Export, Convention => C, External_Name => "acoshf"; -- @llr acosh (Float) Special Values -- The Acosh function shall return the following special values: -- -- C99 special values: -- Acosh (1) = +0 -- Acosh (x) = NaN if abs X > 1 -- Acosh (+INF) = +INF -- -- @llr acosh (Float) Accuracy -- The Acosh function shall return the inverse hyperbolic tangent of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 8.0 * Eps ---------- -- Asin -- ---------- function Asin (X : Float) return Float with Export, Convention => C, External_Name => "asinf"; -- @llr asin (Float) Special Values -- The Asin function shall return the following special values: -- -- C99 special values: -- Asin (+-0) = +-0 -- Asin (x) = NaN if abs (x) > 1 -- -- Ada expected values: -- Asin (1) = Pi/2.0 (tightly approximated) -- Asin (-1) = -Pi/2 (tightly approximated) -- Asin (x) return a result in [-Pi/2, Pi/2] radians -- -- @llr asin (Float) Accuracy -- The Asin function shall return the inverse sine of <X> with the -- following accuracy: -- -- Ada accuracy requirements: -- MRE <= 4.0 * Eps ----------- -- Asinh -- ----------- function Asinh (X : Float) return Float with Export, Convention => C, External_Name => "asinhf"; -- @llr asinh (Float) Special Values -- The Asinh function shall return the following special values: -- -- C99 special values: -- Asinh (0) = 0 -- Asinh (+INF) = +INF -- -- @llr asinh (Float) Accuracy -- The Asinh function shall return the inverse hyperbolic sine of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 8.0 * Eps ---------- -- Atan -- ---------- function Atan (X : Float) return Float with Export, Convention => C, External_Name => "atanf"; -- @llr atan (Float) Special Values -- The Atan function shall return the following special values: -- -- C99 special values: -- Atan (+-0) = +-Pi -- Atan2 (+-INF) = +-0.5 * Pi -- -- C expected values: -- Atan (x) return a result in [-Pi/2, Pi/2] ----------- -- Atan2 -- ----------- function Atan2 (Y : Float; X : Float) return Float with Export, Convention => C, External_Name => "atan2f"; -- @llr atan2 (Float; Float) Special Values -- The Atan2 function shall return the following special values: -- -- C99 special values: -- Atan2 (+-0, -0) = +-Pi -- Atan2 (+-0, +0) = +-0 -- Atan2 (+-0, x) = +-Pi, if x < 0 -- Atan2 (+-0, x) = +-0, if x > 0 -- Atan2 (y, +-0) = -0.5 * Pi, if y < 0 -- Atan2 (y, +-0) = 0.5 * Pi, if y > 0 -- Atan2 (+-y, -INF) = +-Pi, if y > 0 and y is finite -- (tightly approximated) -- Atan2 (+-y, -INF) = +-0, if y < 0 and y is finite -- Atan2 (+-INF, x) = +-0.5 * Pi, if x is finite -- (tightly approximated) -- Atan2 (+-INF, -INF) = +-0.75 * Pi (tightly approximated) -- Atan2 (+-INF, +INF) = +-0.25 * Pi (tightly approximated) -- -- Ada expected values: -- Atan2 (y, x) return a result in [-Pi, Pi] -- -- @llr atan2 (Float; Float) Accuracy -- The Atan2 function shall return the inverse tangent of <Y> / <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 4.0 * Eps ----------- -- Atanh -- ----------- function Atanh (X : Float) return Float with Export, Convention => C, External_Name => "atanhf"; -- @llr atanh (Float) Special Values -- The Atanh function shall return the following special values: -- -- C99 special values: -- Atanh (0) = 0 -- Atanh (+-1) = +- INF -- Atanh (X) = NaN for abs X > 1 -- -- @llr atanh (Float) Accuracy -- The Atanh function shall return the inverse hyperbolic tangent of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 8.0 * Eps --------- -- Cos -- --------- function Cos (X : Float) return Float with Export, Convention => C, External_Name => "cosf"; -- @llr cos (Float) Special Values -- The Cos function shall return the following special values: -- -- C99 special values: -- Cos (+-0) = 1 -- Cos (+-INF) = NaN -- -- Ada expected values: -- abs (Cos (x)) <= 1 -- -- @llr cos (Float) Accuracy -- The Cos function shall return the cosine of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 2.0 * Eps ---------- -- Cosh -- ---------- function Cosh (X : Float) return Float with Export, Convention => C, External_Name => "coshf"; -- @llr cosh (Float) Special Values -- The Cosh function shall return the following special values: -- -- C99 special values: -- Cosh (+-0) = 1 -- Cosh (+-INF) = +INF -- -- Ada expected values: -- abs (Cosh (x)) > 1 -- -- @llr cosh (Float) Accuracy -- The Cosh function shall return the inverse cosine of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 8.0 * Eps --------- -- Exp -- --------- function Exp (X : Float) return Float with Export, Convention => C, External_Name => "expf"; -- @llr exp (Float) Special Values -- The Exp function shall return the following special values: -- -- C99 special values: -- Exp (+-0) = 1 -- Exp (-INF) = +0 -- Exp (+INF) = +INF -- -- @llr exp (Float) Accuracy -- The Exp function shall return the exponential of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 4.0 * Eps ---------- -- Exp2 -- ---------- function Exp2 (X : Float) return Float with Export, Convention => C, External_Name => "exp2f"; -- @llr exp2 (Float) Special Values -- The Exp2 function shall return the following special values: -- -- C99 special values: -- Exp2 (+-0) = 1 -- Exp2 (-INF) = +0 -- Exp2 (+INF) = +INF -- -- @llr exp2 (Float) Accuracy -- The Exp2 function shall return the exponential of <X> in base 2 -- with the following accuracy: -- -- Accuracy requirements: -- MRE <= 4.0 * Eps --------- -- Log -- --------- function Log (X : Float) return Float with Export, Convention => C, External_Name => "logf"; -- @llr log (Float) Special Values -- The Log function shall return the following special values: -- -- C99 special values: -- Log (+-0) = -INF -- Log (1) = +0 -- Log (x) = NaN if x<0 -- Log (+INF) = +INF -- -- @llr log (Float) Accuracy -- The Log function shall return the logarithm of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 4.0 * Eps ----------- -- Log1p -- ----------- function Log1p (X : Float) return Float with Export, Convention => C, External_Name => "log1pf"; -- @llr log1p (Float) Special Values: -- The Log1p function shall return the following special values: -- -- C99 special values: -- Log1p (+-0) = -INF -- Log1p (1) = +0 -- Log1p (x) = NaN if x<0 -- Log1p (+INF) = +INF -- -- @llr log1p (Float) Accuracy -- The Log1p function shall return the logarithm of <X> + 1 -- with the following accuracy: -- -- Accuracy requirements: -- MRE <= 4.0 * Eps ---------- -- Log2 -- ---------- function Log2 (X : Float) return Float with Export, Convention => C, External_Name => "log2f"; -- @llr log2 (Float) Special Values -- The Log2 function shall return the following special values: -- -- C99 Special values: -- Log2 (+-0) = -INF -- Log2 (1) = +0 -- Log2 (x) = NaN if x<0 -- Log2 (+INF) = +INF -- -- @llr log2 (Float) Accuracy -- The Log function shall return the logarithm of <X> in base 2 -- with the following accuracy: -- -- Accuracy requirements: -- MRE <= 4.0 * Eps --------- -- Pow -- --------- function Pow (Left, Right : Float) return Float with Export, Convention => C, External_Name => "powf"; -- @llr pow (Float; Float) Special Values -- The Pow function shall return the following special values -- -- C99 Special values: -- Pow (+-0, y) = +-INF, if y < 0 and y an odd integer -- Pow (+-0, y) = +INF, if y < 0 and y not an odd integer -- Pow (+-0, y) = +-0 if y > 0 and y an odd integer -- Pow (+-0, y) = +0 if y > 0 and y not an odd integer -- Pow (-1, +-INF) = 1 -- Pow (1, y) = 1 for any y, even a NaN -- Pow (x, +-0) = 1 for any x, even a NaN -- Pow (x, y) = NaN, if x < 0 and both x and y finite and not integer -- Pow (x, -INF) = +INF if abs (x) < 1 -- Pow (x, -INF) = +0 if abs (x) > 1 -- Pow (x, +INF) = +0 if abs (x) < 1 -- Pow (x, +INF) = +INF if abs (x) > 1 -- Pow (-INF, y) = -0 if y < 0 and y an odd integer -- Pow (-INF, y) = +0 if y < 0 and y not an odd integer -- Pow (-INF, y) = -INF if y > 0 and y an odd integer -- Pow (-INF, y) = +INF if y > 0 and y not an odd integer -- Pow (+INF, y) = +0 if y < 0 -- Pow (+INF, y) = +INF if y > 0 -- -- @llr pow (Float; Float) Accuracy -- The Pow function shall return <Left> to the power of <Right> -- with the following accuracy: -- -- Ada Accuracy requirements: -- MRE <= (4.0 + abs (x * Log (y)) / 32) * Eps --------- -- Sin -- --------- function Sin (X : Float) return Float with Export, Convention => C, External_Name => "sinf"; -- @llr sin (Float) Special Values -- The Sin function shall return the following special values: -- -- C99 special values: -- Sin (+-0) = +-0 -- Sin (+-INF) = NaN -- -- @llr sin (Float) Accuracy -- The Sin function shall return the sine of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 2.0 * Eps ---------- -- Sinh -- ---------- function Sinh (X : Float) return Float with Export, Convention => C, External_Name => "sinhf"; -- @llr sinh (Float) Special Values -- The Sinh function shall return the following special values: -- -- C99 Special values: -- Sinh (+-0) = +-0 -- Sinh (+-INF) = +-INF -- -- @llr sinh (Float) Accuracy -- The Sinh function shall return the hyperbolic sine of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 8.0 * Eps ---------- -- Sqrt -- ---------- function Sqrt (X : Float) return Float with Import, Convention => Intrinsic, External_Name => "__builtin_sqrtf"; -- @ignore -- The Sqrt function shall return the following special values: -- -- C99 special values: -- Sqrt (+-0) = +-0 -- Sqrt (INF) = INF -- Sqrt (X) = NaN, for X < 0.0 --------- -- Tan -- --------- function Tan (X : Float) return Float with Export, Convention => C, External_Name => "tanf"; -- @llr tan (Float) Special Values -- The Tan function shall return the following special values: -- -- C99 special values: -- Tan (+-0) = +0 -- Tan (+-INF) = NaN -- -- @llr tan (Float) Accuracy -- The Tan function shall return the tangent of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 4.0 * Eps ---------- -- Tanh -- ---------- function Tanh (X : Float) return Float with Export, Convention => C, External_Name => "tanhf"; -- @llr tanh (Float) Special Values -- The Tanh function shall return the following special values: -- -- C99 special values: -- Tanh (+-0) = +-0 -- Tanh (+-INF) = +-1 -- -- @llr tanh (Float) Accuracy -- The Tanh function shall return the hyperbolic tangent of <X> -- with the following accuracy: -- -- Ada accuracy requirements: -- MRE <= 8.0 * Eps private function Identity (X : Float) return Float is (X); function Infinity return Float is (1.0 / Identity (0.0)); function NaN return Float is (Infinity - Infinity); function Exact (X : Long_Float) return Float is (Float (X)); function Epsilon return Float is (Float'Model_Epsilon); function Maximum_Relative_Error (X : Float) return Float is (0.0 * X); end Libm_Single;
zhmu/ananas
Ada
19,736
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S T A N D -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. 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 contains the declarations of entities in package Standard, -- These values are initialized either by calling CStand.Create_Standard, -- or by calling Stand.Tree_Read. with Types; use Types; package Stand is -- Warning: the entities defined in this package are written out by the -- Tree_Write routine, and read back in by the Tree_Read routine, so be -- sure to modify these two routines if you add entities that are not -- part of Standard_Entity. type Standard_Entity_Type is ( -- This enumeration type contains an entry for each name in Standard -- Package names S_Standard, S_ASCII, -- Types and subtypes defined in package Standard (in the order in which -- they appear in the RM, so that the declarations are in the right -- order for the purposes of e.g. ASIS traversals S_Boolean, S_Short_Short_Integer, S_Short_Integer, S_Integer, S_Long_Integer, S_Long_Long_Integer, S_Long_Long_Long_Integer, S_Natural, S_Positive, S_Short_Float, S_Float, S_Long_Float, S_Long_Long_Float, S_Character, S_Wide_Character, S_Wide_Wide_Character, S_String, S_Wide_String, S_Wide_Wide_String, S_Duration, -- Enumeration literals for type Boolean S_False, S_True, -- Exceptions declared in package Standard S_Constraint_Error, S_Numeric_Error, S_Program_Error, S_Storage_Error, S_Tasking_Error, -- Binary Operators declared in package Standard S_Op_Add, S_Op_And, S_Op_Concat, S_Op_Concatw, S_Op_Concatww, S_Op_Divide, S_Op_Eq, S_Op_Expon, S_Op_Ge, S_Op_Gt, S_Op_Le, S_Op_Lt, S_Op_Mod, S_Op_Multiply, S_Op_Ne, S_Op_Or, S_Op_Rem, S_Op_Subtract, S_Op_Xor, -- Unary operators declared in package Standard S_Op_Abs, S_Op_Minus, S_Op_Not, S_Op_Plus, -- Constants defined in package ASCII (with value in hex). -- First the thirty-two C0 control characters) S_NUL, -- 16#00# S_SOH, -- 16#01# S_STX, -- 16#02# S_ETX, -- 16#03# S_EOT, -- 16#04# S_ENQ, -- 16#05# S_ACK, -- 16#06# S_BEL, -- 16#07# S_BS, -- 16#08# S_HT, -- 16#09# S_LF, -- 16#0A# S_VT, -- 16#0B# S_FF, -- 16#0C# S_CR, -- 16#0D# S_SO, -- 16#0E# S_SI, -- 16#0F# S_DLE, -- 16#10# S_DC1, -- 16#11# S_DC2, -- 16#12# S_DC3, -- 16#13# S_DC4, -- 16#14# S_NAK, -- 16#15# S_SYN, -- 16#16# S_ETB, -- 16#17# S_CAN, -- 16#18# S_EM, -- 16#19# S_SUB, -- 16#1A# S_ESC, -- 16#1B# S_FS, -- 16#1C# S_GS, -- 16#1D# S_RS, -- 16#1E# S_US, -- 16#1F# -- Here are the ones for Colonel Whitaker's O26 keypunch S_Exclam, -- 16#21# S_Quotation, -- 16#22# S_Sharp, -- 16#23# S_Dollar, -- 16#24# S_Percent, -- 16#25# S_Ampersand, -- 16#26# S_Colon, -- 16#3A# S_Semicolon, -- 16#3B# S_Query, -- 16#3F# S_At_Sign, -- 16#40# S_L_Bracket, -- 16#5B# S_Back_Slash, -- 16#5C# S_R_Bracket, -- 16#5D# S_Circumflex, -- 16#5E# S_Underline, -- 16#5F# S_Grave, -- 16#60# S_LC_A, -- 16#61# S_LC_B, -- 16#62# S_LC_C, -- 16#63# S_LC_D, -- 16#64# S_LC_E, -- 16#65# S_LC_F, -- 16#66# S_LC_G, -- 16#67# S_LC_H, -- 16#68# S_LC_I, -- 16#69# S_LC_J, -- 16#6A# S_LC_K, -- 16#6B# S_LC_L, -- 16#6C# S_LC_M, -- 16#6D# S_LC_N, -- 16#6E# S_LC_O, -- 16#6F# S_LC_P, -- 16#70# S_LC_Q, -- 16#71# S_LC_R, -- 16#72# S_LC_S, -- 16#73# S_LC_T, -- 16#74# S_LC_U, -- 16#75# S_LC_V, -- 16#76# S_LC_W, -- 16#77# S_LC_X, -- 16#78# S_LC_Y, -- 16#79# S_LC_Z, -- 16#7A# S_L_BRACE, -- 16#7B# S_BAR, -- 16#7C# S_R_BRACE, -- 16#7D# S_TILDE, -- 16#7E# -- And one more control character, all on its own S_DEL); -- 16#7F# subtype S_Types is Standard_Entity_Type range S_Boolean .. S_Duration; subtype S_Exceptions is Standard_Entity_Type range S_Constraint_Error .. S_Tasking_Error; subtype S_ASCII_Names is Standard_Entity_Type range S_NUL .. S_DEL; subtype S_Binary_Ops is Standard_Entity_Type range S_Op_Add .. S_Op_Xor; subtype S_Unary_Ops is Standard_Entity_Type range S_Op_Abs .. S_Op_Plus; type Standard_Entity_Array_Type is array (Standard_Entity_Type) of Node_Id; Standard_Entity : Standard_Entity_Array_Type; -- This array contains pointers to the Defining Identifier nodes for each -- of the visible entities defined in Standard_Entities_Type. The array is -- initialized by the Create_Standard procedure. Standard_Package_Node : Node_Id; -- Points to the N_Package_Declaration node for standard. Also -- initialized by the Create_Standard procedure. -- The following Entities are the pointers to the Defining Identifier -- nodes for some visible entities defined in Standard_Entities_Type. SE : Standard_Entity_Array_Type renames Standard_Entity; Standard_Standard : Entity_Id renames SE (S_Standard); Standard_ASCII : Entity_Id renames SE (S_ASCII); Standard_Character : Entity_Id renames SE (S_Character); Standard_Wide_Character : Entity_Id renames SE (S_Wide_Character); Standard_Wide_Wide_Character : Entity_Id renames SE (S_Wide_Wide_Character); Standard_String : Entity_Id renames SE (S_String); Standard_Wide_String : Entity_Id renames SE (S_Wide_String); Standard_Wide_Wide_String : Entity_Id renames SE (S_Wide_Wide_String); Standard_Boolean : Entity_Id renames SE (S_Boolean); Standard_False : Entity_Id renames SE (S_False); Standard_True : Entity_Id renames SE (S_True); Standard_Duration : Entity_Id renames SE (S_Duration); Standard_Natural : Entity_Id renames SE (S_Natural); Standard_Positive : Entity_Id renames SE (S_Positive); Standard_Constraint_Error : Entity_Id renames SE (S_Constraint_Error); Standard_Numeric_Error : Entity_Id renames SE (S_Numeric_Error); Standard_Program_Error : Entity_Id renames SE (S_Program_Error); Standard_Storage_Error : Entity_Id renames SE (S_Storage_Error); Standard_Tasking_Error : Entity_Id renames SE (S_Tasking_Error); Standard_Short_Float : Entity_Id renames SE (S_Short_Float); Standard_Float : Entity_Id renames SE (S_Float); Standard_Long_Float : Entity_Id renames SE (S_Long_Float); Standard_Long_Long_Float : Entity_Id renames SE (S_Long_Long_Float); Standard_Short_Short_Integer : Entity_Id renames SE (S_Short_Short_Integer); Standard_Short_Integer : Entity_Id renames SE (S_Short_Integer); Standard_Integer : Entity_Id renames SE (S_Integer); Standard_Long_Integer : Entity_Id renames SE (S_Long_Integer); Standard_Long_Long_Integer : Entity_Id renames SE (S_Long_Long_Integer); Standard_Long_Long_Long_Integer : Entity_Id renames SE (S_Long_Long_Long_Integer); Standard_Op_Add : Entity_Id renames SE (S_Op_Add); Standard_Op_And : Entity_Id renames SE (S_Op_And); Standard_Op_Concat : Entity_Id renames SE (S_Op_Concat); Standard_Op_Concatw : Entity_Id renames SE (S_Op_Concatw); Standard_Op_Concatww : Entity_Id renames SE (S_Op_Concatww); Standard_Op_Divide : Entity_Id renames SE (S_Op_Divide); Standard_Op_Eq : Entity_Id renames SE (S_Op_Eq); Standard_Op_Expon : Entity_Id renames SE (S_Op_Expon); Standard_Op_Ge : Entity_Id renames SE (S_Op_Ge); Standard_Op_Gt : Entity_Id renames SE (S_Op_Gt); Standard_Op_Le : Entity_Id renames SE (S_Op_Le); Standard_Op_Lt : Entity_Id renames SE (S_Op_Lt); Standard_Op_Mod : Entity_Id renames SE (S_Op_Mod); Standard_Op_Multiply : Entity_Id renames SE (S_Op_Multiply); Standard_Op_Ne : Entity_Id renames SE (S_Op_Ne); Standard_Op_Or : Entity_Id renames SE (S_Op_Or); Standard_Op_Rem : Entity_Id renames SE (S_Op_Rem); Standard_Op_Subtract : Entity_Id renames SE (S_Op_Subtract); Standard_Op_Xor : Entity_Id renames SE (S_Op_Xor); Standard_Op_Abs : Entity_Id renames SE (S_Op_Abs); Standard_Op_Minus : Entity_Id renames SE (S_Op_Minus); Standard_Op_Not : Entity_Id renames SE (S_Op_Not); Standard_Op_Plus : Entity_Id renames SE (S_Op_Plus); Last_Standard_Node_Id : Node_Id; -- Highest Node_Id value used by Standard Last_Standard_List_Id : List_Id; -- Highest List_Id value used by Standard (including those used by -- normal list headers, element list headers, and list elements) Boolean_Literals : array (Boolean) of Entity_Id; -- Entities for the two boolean literals, used by the expander ------------------------------------- -- Semantic Phase Special Entities -- ------------------------------------- -- The semantic phase needs a number of entities for internal processing -- that are logically at the level of Standard, and hence defined in this -- package. However, they are never visible to a program, and are not -- chained on to the Decls list of Standard. The names of all these -- types are relevant only in certain debugging and error message -- situations. They have names that are suitable for use in such -- error messages (see body for actual names used). Standard_Void_Type : Entity_Id; -- This is a type used to represent the return type of procedures Standard_Exception_Type : Entity_Id; -- This is a type used to represent the Etype of exceptions Standard_A_String : Entity_Id; -- An access to String type used for building elements of tables carrying -- the enumeration literal names. Standard_A_Char : Entity_Id; -- An access to character type, used as a component of the exception type -- to denote a thin pointer component. Needed for non-GCC back-ends. Standard_Debug_Renaming_Type : Entity_Id; -- A zero-size subtype of Integer, used as the type of variables used to -- provide the debugger with name encodings for renaming declarations. Predefined_Float_Types : Elist_Id; -- Entities for predefined floating point types. These are used by -- the semantic phase to select appropriate types for floating point -- declarations. This list is ordered by preference. All types up to -- Long_Long_Float_Type are considered for plain "digits N" declarations, -- while selection of later types requires a range specification and -- possibly other attributes or pragmas. -- The entities labeled Any_xxx are used in situations where the full -- characteristics of an entity are not yet known, e.g. Any_Character -- is used to label a character literal before resolution is complete. -- These entities are also used to construct appropriate references in -- error messages ("expecting an integer type"). Any_Id : Entity_Id; -- Used to represent some unknown identifier. Used to label undefined -- identifier references to prevent cascaded errors. Any_Type : Entity_Id; -- Used to represent some unknown type. Any_Type is the type of an -- unresolved operator, and it is the type of a node where a type error -- has been detected. Any_Type plays an important role in avoiding cascaded -- errors, because it is compatible with all other types, and is propagated -- to any expression that has a subexpression of Any_Type. When resolving -- operators, Any_Type is the initial type of the node before any of its -- candidate interpretations has been examined. If after examining all of -- them the type is still Any_Type, the node has no possible interpretation -- and an error can be emitted (and Any_Type will be propagated upwards). Any_Array : Entity_Id; -- Used to represent some unknown array type Any_Boolean : Entity_Id; -- The context type of conditions in IF and WHILE statements Any_Character : Entity_Id; -- Any_Character is used to label character literals, which in general -- will not have an explicit declaration (this is true of the predefined -- character types). Any_Composite : Entity_Id; -- The type Any_Composite is used for aggregates before type resolution. -- It is compatible with any array or non-limited record type. Any_Discrete : Entity_Id; -- Used to represent some unknown discrete type Any_Fixed : Entity_Id; -- Used to represent some unknown fixed-point type Any_Integer : Entity_Id; -- Used to represent some unknown integer type Any_Modular : Entity_Id; -- Used to represent the result type of a boolean operation on an integer -- literal. The result is not Universal_Integer, because it is only legal -- in a modular context. Any_Numeric : Entity_Id; -- Used to represent some unknown numeric type Any_Real : Entity_Id; -- Used to represent some unknown real type Any_Scalar : Entity_Id; -- Used to represent some unknown scalar type Any_String : Entity_Id; -- The type Any_String is used for string literals before type resolution. -- It corresponds to array (Positive range <>) of character where the -- component type is compatible with any character type, not just -- Standard_Character. Raise_Type : Entity_Id; -- The type Raise_Type denotes the type of a Raise_Expression. It is -- compatible with all other types, and must eventually resolve to a -- concrete type that is imposed by the context. -- -- Historical note: we used to use Any_Type for this purpose, but the -- confusion of meanings (Any_Type normally indicates an error) caused -- difficulties. In particular some needed expansions were skipped since -- the nodes in question looked like they had an error. Universal_Integer : Entity_Id; -- Entity for universal integer type. The bounds of this type correspond -- to the largest supported integer type (i.e. Long_Long_Long_Integer). -- It is the type used for runtime calculations in type universal integer. Universal_Real : Entity_Id; -- Entity for universal real type. The bounds of this type correspond to -- to the largest supported real type (i.e. Long_Long_Float). It is the -- type used for runtime calculations in type universal real. Note that -- this type is always IEEE format. Universal_Fixed : Entity_Id; -- Entity for universal fixed type. This is a type with arbitrary -- precision that can only appear in a context with a specific type. -- Universal_Fixed labels the result of multiplication or division of -- two fixed point numbers, and has no specified bounds (since, unlike -- universal integer and universal real, it is never used for runtime -- calculations). Universal_Access : Entity_Id; -- Entity for universal access type. It is only used for the literal null Standard_Integer_8 : Entity_Id; Standard_Integer_16 : Entity_Id; Standard_Integer_32 : Entity_Id; Standard_Integer_64 : Entity_Id; Standard_Integer_128 : Entity_Id; -- These are signed integer types with the indicated sizes. Used for the -- underlying implementation types for fixed-point and enumeration types. Standard_Short_Short_Unsigned : Entity_Id; Standard_Short_Unsigned : Entity_Id; Standard_Unsigned : Entity_Id; Standard_Long_Unsigned : Entity_Id; Standard_Long_Long_Unsigned : Entity_Id; Standard_Long_Long_Long_Unsigned : Entity_Id; -- Unsigned types with same Esize as corresponding signed integer types Standard_Unsigned_64 : Entity_Id; -- Entity for an unsigned type mod 2 ** 64, size of 64 bits. Standard_Address : Entity_Id; -- Entity for an unsigned type mod 2 ** System_Address_Size, size of -- System_Address_Size bits. Used for implementing Allow_Integer_Address. Abort_Signal : Entity_Id; -- Entity for abort signal exception Standard_Op_Rotate_Left : Entity_Id; Standard_Op_Rotate_Right : Entity_Id; Standard_Op_Shift_Left : Entity_Id; Standard_Op_Shift_Right : Entity_Id; Standard_Op_Shift_Right_Arithmetic : Entity_Id; -- These entities are used for shift operators generated by the expander end Stand;
MinimSecure/unum-sdk
Ada
893
adb
-- Copyright 2014-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo is type Array_Type is array (Integer range <>) of Integer; Var: Array_Type (0 .. -1); begin Do_Nothing (Var'Address); -- STOP end Foo;
AdaCore/gpr
Ada
603
adb
-- -- Copyright (C) 2019-2023, AdaCore -- -- SPDX-License-Identifier: Apache-2.0 -- with Ada.Text_IO; with GPR2.Path_Name; procedure Main is use Ada; use GPR2; C1 : constant Path_Name.Object := Path_Name.Create_File ("css/*.css"); C2 : constant Path_Name.Object := Path_Name.Create_File ("doc/README"); begin Text_IO.Put_Line ("C1.Simple_Name: " & String (C1.Simple_Name)); Text_IO.Put_Line ("C2.Simple_Name: " & String (C2.Simple_Name)); Text_IO.Put_Line ("C1.Base_Name: " & String (C1.Base_Name)); Text_IO.Put_Line ("C2.Base_Name: " & String (C2.Base_Name)); end Main;
Gabriel-Degret/adalib
Ada
6,775
ads
-- Standard Ada library specification -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- with Ada.Iterator_Interfaces; generic type Element_Type is private; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Bounded_Doubly_Linked_Lists is pragma Pure(Bounded_Doubly_Linked_Lists); pragma Remote_Types(Bounded_Doubly_Linked_Lists); type List (Capacity : Count_Type) is tagged private with Constant_Indexing => Constant_Reference, Variable_Indexing => Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization(List); type Cursor is private; pragma Preelaborable_Initialization(Cursor); Empty_List : constant List; No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package List_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : List) return Boolean; function Length (Container : List) return Count_Type; function Is_Empty (Container : List) return Boolean; procedure Clear (Container : in out List); function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out List; Position : in Cursor; New_Item : in Element_Type); procedure Query_Element (Position : in Cursor; Process : not null access procedure (Element : in Element_Type)); procedure Update_Element (Container : in out List; Position : in Cursor; Process : not null access procedure (Element : in out Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased in List; Position : in Cursor) return Constant_Reference_Type; function Reference (Container : aliased in out List; Position : in Cursor) return Reference_Type; procedure Assign (Target : in out List; Source : in List); function Copy (Source : List; Capacity : Count_Type := 0) return List; procedure Move (Target : in out List; Source : in out List); procedure Insert (Container : in out List; Before : in Cursor; New_Item : in Element_Type; Count : in Count_Type := 1); procedure Insert (Container : in out List; Before : in Cursor; New_Item : in Element_Type; Position : out Cursor; Count : in Count_Type := 1); procedure Insert (Container : in out List; Before : in Cursor; Position : out Cursor; Count : in Count_Type := 1); procedure Prepend (Container : in out List; New_Item : in Element_Type; Count : in Count_Type := 1); procedure Append (Container : in out List; New_Item : in Element_Type; Count : in Count_Type := 1); procedure Delete (Container : in out List; Position : in out Cursor; Count : in Count_Type := 1); procedure Delete_First (Container : in out List; Count : in Count_Type := 1); procedure Delete_Last (Container : in out List; Count : in Count_Type := 1); procedure Reverse_Elements (Container : in out List); procedure Swap (Container : in out List; I, J : in Cursor); procedure Swap_Links (Container : in out List; I, J : in Cursor); procedure Splice (Target : in out List; Before : in Cursor; Source : in out List); procedure Splice (Target : in out List; Before : in Cursor; Source : in out List; Position : in out Cursor); procedure Splice (Container: in out List; Before : in Cursor; Position : in Cursor); function First (Container : List) return Cursor; function First_Element (Container : List) return Element_Type; function Last (Container : List) return Cursor; function Last_Element (Container : List) return Element_Type; function Next (Position : Cursor) return Cursor; function Previous (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); procedure Previous (Position : in out Cursor); function Find (Container : List; Item : Element_Type; Position : Cursor := No_Element) return Cursor; function Reverse_Find (Container : List; Item : Element_Type; Position : Cursor := No_Element) return Cursor; function Contains (Container : List; Item : Element_Type) return Boolean; procedure Iterate (Container : in List; Process : not null access procedure (Position : in Cursor)); procedure Reverse_Iterate (Container : in List; Process : not null access procedure (Position : in Cursor)); function Iterate (Container : in List) return List_Iterator_Interfaces.Reversible_Iterator'Class; function Iterate (Container : in List; Start : in Cursor) return List_Iterator_Interfaces.Reversible_Iterator'Class; generic with function "<" (Left, Right : Element_Type) return Boolean is <>; package Generic_Sorting is function Is_Sorted (Container : List) return Boolean; procedure Sort (Container : in out List); procedure Merge (Target : in out List; Source : in out List); end Generic_Sorting; private -- not specified by the language end Ada.Containers.Bounded_Doubly_Linked_Lists;
Rodeo-McCabe/orka
Ada
713
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. package Orka_Test is pragma Pure; end Orka_Test;
AdaCore/ada-traits-containers
Ada
15,065
ads
pragma Ada_2012; with Conts.Functional.Sequences; with Conts.Functional.Maps; with Conts.Functional.Sets; with Conts; use Conts; generic type Element_Type (<>) is private; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Formal_Hashed_Sets_Impl with SPARK_Mode is type Cursor is private; pragma Unevaluated_Use_Of_Old (Allow); No_Element : constant Cursor; type Base_Set is tagged limited private with Default_Initial_Condition => Length (Base_Set) = 0; -- Sets are empty when default initialized. function Capacity (Self : Base_Set'Class) return Count_Type with Import; function Length (Self : Base_Set'Class) return Count_Type with Import, Post => Length'Result < Capacity (Self); -- The length of a set is always strictly smaller than its capacity ------------------ -- Formal Model -- ------------------ type P_Map is private with Ghost, Iterable => (First => P_Iter_First, Has_Element => P_Iter_Has_Element, Next => P_Iter_Next, Element => P_Iter_Element); type P_Private_Cursor is private with Ghost; function P_Iter_First (M : P_Map) return P_Private_Cursor with Ghost; function P_Iter_Next (M : P_Map; C : P_Private_Cursor) return P_Private_Cursor with Ghost; function P_Iter_Has_Element (M : P_Map; C : P_Private_Cursor) return Boolean with Ghost; function P_Iter_Element (M : P_Map; C : P_Private_Cursor) return Cursor with Ghost; function P_Mem (M : P_Map; C : Cursor) return Boolean with Ghost; function P_Get (M : P_Map; C : Cursor) return Positive_Count_Type with Ghost, Pre => P_Mem (M, C); pragma Annotate (GNATprove, Iterable_For_Proof, "Contains", P_Mem); package E is new Conts.Functional.Sequences (Index_Type => Positive_Count_Type, Element_Type => Element_Type); package M is new Conts.Functional.Sets (Element_Type => Element_Type); function Model (Self : Base_Set'Class) return M.Set with Ghost, Import; -- The highlevel model of a set is a set of elements. Neither cursors -- nor order of elements are represented in this model. function Elements (Self : Base_Set'Class) return E.Sequence with -- The Elements sequence represents the underlying list structure of -- sets that is used for iteration. It does not model cursors. Ghost, Import, Post => E.Length (Elements'Result) = Length (Self) -- It only contains elements contained of Model. and then (for all Elt of Elements'Result => M.Mem (Model (Self), Elt)) -- It contains all the elements contained of Model. and then (for all Elt of Model (Self) => (for some F of Elements'Result => F = Elt)) -- It has no duplicate. and then (for all I in 1 .. Length (Self) => (for all J in 1 .. Length (Self) => (if E.Get (Elements'Result, I) = E.Get (Elements'Result, J) then I = J))); function Positions (Self : Base_Set'Class) return P_Map with -- The Positions map is used to model cursors. It only contains valid -- cursors and map them to their position in the container. Ghost, Import, Post => not P_Mem (Positions'Result, No_Element) -- Positions of cursors are smaller than the container's length. and then (for all I of Positions'Result => P_Get (Positions'Result, I) in 1 .. Length (Self) -- No two cursors have the same position. Note that we do not state -- that there is a cursor in the map for each position, as it is -- rarely needed. and then (for all J of Positions'Result => (if P_Get (Positions'Result, I) = P_Get (Positions'Result, J) then I = J))); procedure Lift_Abstraction_Level (Self : Base_Set'Class) with Ghost, Import, Global => null, Post => (for all Elt of Elements (Self) => (for some I of Positions (Self) => E.Get (Elements (Self), P_Get (Positions (Self), I)) = Elt)); -- Lift_Abstraction_Level is a ghost procedure that does nothing but -- assume that we can access to the same elements by iterating over -- positions or cursors. -- This information is not generally useful except when switching from -- a lowlevel, cursor aware view of a container, to a highlevel position -- based view. use type M.Set; use type E.Sequence; use type P_Map; -- The following functions are modeled directly in the formal model. function Has_Element (Self : Base_Set'Class; Position : Cursor) return Boolean with Import, Post => Has_Element'Result = P_Mem (Positions (Self), Position); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Has_Element); function Contains (Self : Base_Set'Class; Element : Element_Type) return Boolean with Import, Post => Contains'Result = M.Mem (Model (Self), Element); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Contains); function Element (Self : Base_Set'Class; Position : Cursor) return Element_Type with Import, Pre => Has_Element (Self, Position), -- Query Positions to get the position of Position of L and use it to -- fetch the corresponding element in Elements. Post => Element'Result = E.Get (Elements (Self), P_Get (Positions (Self), Position)); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Element); -- The subprograms used for iteration over cursors are axiomatized using -- Positions only. They are inverse of the Positions map as they allow -- to create a valid cursor per position in the container. function First (Self : Base_Set'Class) return Cursor with Import, Contract_Cases => (Length (Self) = 0 => First'Result = No_Element, others => Has_Element (Self, First'Result) and then P_Get (Positions (Self), First'Result) = 1); function Next (Self : Base_Set'Class; Position : Cursor) return Cursor with Import, Pre => Has_Element (Self, Position), Contract_Cases => (P_Get (Positions (Self), Position) = Length (Self) => Next'Result = No_Element, others => Has_Element (Self, Next'Result) and then P_Get (Positions (Self), Next'Result) = P_Get (Positions (Self), Position) + 1); function Find (Self : Base_Set'Class; Element : Element_Type) return Cursor with Import, Contract_Cases => -- Either the result is a valid cursor and Element is stored at its -- position in S (Contains (Self, Element) => Has_Element (Self, Find'Result) and Formal_Hashed_Sets_Impl.Element (Self, Find'Result) = Element, -- or Element is not in the model and the result is No_Element. others => Find'Result = No_Element); procedure Include (Self : in out Base_Set'Class; Element : Element_Type) with -- Insert an element Element in Self if Element is not already present. Import, Pre => Length (Self) < Conts.Count_Type'Last - 1 or else Contains (Self, Element), Contract_Cases => -- If Element is already in Self, then the model is unchanged. (Contains (Self, Element) => Capacity (Self) = Capacity (Self)'Old and Length (Self) = Length (Self)'Old and Model (Self) = Model (Self)'Old and Elements (Self) = Elements (Self)'Old and Positions (Self) = Positions (Self)'Old, -- If Element is not in Self, then Element is a new element of its -- model. others => Capacity (Self) >= Capacity (Self)'Old and Length (Self) = Length (Self)'Old + 1 and M.Is_Add (Model (Self)'Old, Element, Model (Self)) -- Cursors that were valid in Self are still valid and continue -- designating the same element. and (for all Position of Positions (Self)'Old => Has_Element (Self, Position) and Formal_Hashed_Sets_Impl.Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))) -- Cursors that are valid in Self were already valid in Self -- except for the newly inserted cursor. -- Nothing is said about the order of elements in Self after the -- call. and (for all Position of Positions (Self) => P_Mem (Positions (Self)'Old, Position) or Formal_Hashed_Sets_Impl.Element (Self, Position) = Element)); procedure Exclude (Self : in out Base_Set'Class; Element : Element_Type) with -- Remove an element Element of Self if it is present. Import, Post => Capacity (Self) = Capacity (Self)'Old, Contract_Cases => -- If Element is in Self, then it is removed from its model. (Contains (Self, Element) => Length (Self) = Length (Self)'Old - 1 and M.Is_Add (Model (Self), Element, Model (Self)'Old) -- Cursors that are valid in Self were already valid and continue -- designating the same element. and (for all Position of Positions (Self) => P_Mem (Positions (Self)'Old, Position) and Formal_Hashed_Sets_Impl.Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))) -- Cursors that were valid in Self are still valid in Self except -- for the removed cursor. -- Nothing is said about the order of elements in Self after the -- call. and (for all Position of Positions (Self)'Old => Has_Element (Self, Position) or E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position)) = Element), -- If Element is not in Self, then the model is unchanged. others => Length (Self) = Length (Self)'Old and Model (Self) = Model (Self)'Old and Elements (Self) = Elements (Self)'Old and Positions (Self) = Positions (Self)'Old); procedure Union (Self : in out Base_Set'Class; Source : Base_Set'Class) with -- Include in Self all the elements of Source Import, Pre => Length (Source) < Conts.Count_Type'Last - Length (Self), Post => Capacity (Self) >= Capacity (Self)'Old -- The model of Self is the union of the previous model of Self and the -- model of Source. and M.Is_Union (Model (Self)'Old, Model (Source), Model (Self)) -- No more than Length (Source) elements were added to Source. We could -- be more precise by using the length of the Intersection if we had a -- notion of length on functional sets. and Length (Self) in Length (Self)'Old .. Length (Self)'Old + Length (Source) -- Cursors that were valid in Self are still valid and continue -- designating the same element. -- Nothing is said about the order of elements in Self after the call. and (for all Position of Positions (Self)'Old => Has_Element (Self, Position) and Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))); procedure Intersection (Self : in out Base_Set'Class; Source : Base_Set'Class) -- Exclude from Self all the elements of Source with Import, Post => Capacity (Self) = Capacity (Self)'Old -- The model of Self is the intersection of the previous model of Self -- and the model of Source. and M.Is_Intersection (Model (Self)'Old, Model (Source), Model (Self)) -- The length of Self can only be decreased. We could be more precise by -- stating that at most Length (Source) elements have been removed from -- Self. and Length (Self) in 0 .. Length (Self)'Old -- Cursors that are valid in Self we already valid and continue -- designating the same element. -- Nothing is said about the order of elements in Self after the call. and (for all Position of Positions (Self) => P_Mem (Positions (Self)'Old, Position) and Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))); procedure Clear (Self : in out Base_Set'Class) with Import, Post => Capacity (Self) = Capacity (Self)'Old and then Length (Self) = 0 and then M.Is_Empty (Model (Self)); function First_Primitive (Self : Base_Set) return Cursor with Import; function Element_Primitive (Self : Base_Set; Position : Cursor) return Element_Type with Import, Pre'Class => Has_Element (Self, Position), Post => Element_Primitive'Result = E.Get (Elements (Self), P_Get (Positions (Self), Position)); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Element_Primitive); function Has_Element_Primitive (Self : Base_Set; Position : Cursor) return Boolean with Import, Post => Has_Element_Primitive'Result = P_Mem (Positions (Self), Position); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Has_Element_Primitive); function Next_Primitive (Self : Base_Set; Position : Cursor) return Cursor with Import, Pre'Class => Has_Element (Self, Position); private pragma SPARK_Mode (Off); type Cursor is record I : Natural; end record; type Base_Set is tagged limited null record; No_Element : constant Cursor := (I => 0); package P is new Conts.Functional.Maps (Element_Type => Positive_Count_Type, Key_Type => Cursor); -- This instance should be ghost but it is not currently allowed by the RM. -- See P523-006 type P_Map is record Content : P.Map; end record; type P_Private_Cursor is new P.Private_Key; function P_Iter_First (M : P_Map) return P_Private_Cursor is (P_Private_Cursor (P.Iter_First (M.Content))); function P_Iter_Next (M : P_Map; C : P_Private_Cursor) return P_Private_Cursor is (P_Private_Cursor (P.Iter_Next (M.Content, P.Private_Key (C)))); function P_Iter_Has_Element (M : P_Map; C : P_Private_Cursor) return Boolean is (P.Iter_Has_Element (M.Content, P.Private_Key (C))); function P_Iter_Element (M : P_Map; C : P_Private_Cursor) return Cursor is (P.Iter_Element (M.Content, P.Private_Key (C))); function P_Mem (M : P_Map; C : Cursor) return Boolean is (P.Mem (M.Content, C)); function P_Get (M : P_Map; C : Cursor) return Positive_Count_Type is (P.Get (M.Content, C)); end Formal_Hashed_Sets_Impl;
AdaCore/libadalang
Ada
62
adb
package body Pkg is protected body T is separate; end Pkg;
reznikmm/matreshka
Ada
3,714
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Table_Condition_Attributes is pragma Preelaborate; type ODF_Table_Condition_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Table_Condition_Attribute_Access is access all ODF_Table_Condition_Attribute'Class with Storage_Size => 0; end ODF.DOM.Table_Condition_Attributes;
reznikmm/matreshka
Ada
4,631
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Draw.End_Intensity_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Draw_End_Intensity_Attribute_Node is begin return Self : Draw_End_Intensity_Attribute_Node do Matreshka.ODF_Draw.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Draw_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Draw_End_Intensity_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.End_Intensity_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Draw_URI, Matreshka.ODF_String_Constants.End_Intensity_Attribute, Draw_End_Intensity_Attribute_Node'Tag); end Matreshka.ODF_Draw.End_Intensity_Attributes;
0siris/carve
Ada
7,364
adb
-- -- (c) Copyright 1993,1994,1995,1996 Silicon Graphics, Inc. -- ALL RIGHTS RESERVED -- Permission to use, copy, modify, and distribute this software for -- any purpose and without fee is hereby granted, provided that the above -- copyright notice appear in all copies and that both the copyright notice -- and this permission notice appear in supporting documentation, and that -- the name of Silicon Graphics, Inc. not be used in advertising -- or publicity pertaining to distribution of the software without specific, -- written prior permission. -- -- THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" -- AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, -- INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR -- FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON -- GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, -- SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY -- KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, -- LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF -- THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN -- ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON -- ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE -- POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. -- -- US Government Users Restricted Rights -- Use, duplication, or disclosure by the Government is subject to -- restrictions set forth in FAR 52.227.19(c)(2) or subparagraph -- (c)(1)(ii) of the Rights in Technical Data and Computer Software -- clause at DFARS 252.227-7013 and/or in similar or successor -- clauses in the FAR or the DOD or NASA FAR Supplement. -- Unpublished-- rights reserved under the copyright laws of the -- United States. Contractor/manufacturer is Silicon Graphics, -- Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. -- -- OpenGL(TM) is a trademark of Silicon Graphics, Inc. -- with GL; use GL; with Glut; use Glut; with Jitter; with Ada.Numerics; with Ada.Numerics.Generic_Elementary_Functions; package body Dof_Procs is package Num renames Ada.Numerics; package GLdouble_GEF is new Num.Generic_Elementary_Functions (GLdouble); use GLdouble_GEF; procedure accFrustum (left : GLdouble; right : GLdouble; bottom : GLdouble; top : GLdouble; near : GLdouble; far : GLdouble; pixdx : GLdouble; pixdy : GLdouble; eyedx : GLdouble; eyedy : GLdouble; focus : GLdouble) is xwsize, ywsize : GLdouble; dx, dy : GLdouble; viewport : array (0 .. 3) of aliased GLint; begin glGetIntegerv (GL_VIEWPORT, viewport (0)'Access); xwsize := right - left; ywsize := top - bottom; dx := -(pixdx * xwsize / GLdouble (viewport (2)) + eyedx * near / focus); dy := -(pixdy * ywsize / GLdouble (viewport (3)) + eyedy * near / focus); glMatrixMode (GL_PROJECTION); glLoadIdentity; glFrustum (left + dx, right + dx, bottom + dy, top + dy, near, far); glMatrixMode (GL_MODELVIEW); glLoadIdentity; glTranslated (-eyedx, -eyedy, 0.0); end accFrustum; procedure accPerspective (fovy : GLdouble; aspect : GLdouble; near : GLdouble; far : GLdouble; pixdx : GLdouble; pixdy : GLdouble; eyedx : GLdouble; eyedy : GLdouble; focus : GLdouble) is fov2, left, right, bottom, top : GLdouble; begin fov2 := ((fovy * Num.Pi) / 180.0) / 2.0; top := near / (Cos (fov2) / Sin (fov2)); bottom := -top; right := top * aspect; left := -right; accFrustum (left, right, bottom, top, near, far, pixdx, pixdy, eyedx, eyedy, focus); end accPerspective; procedure DoInit is ambient : array (0 .. 3) of aliased GLfloat := (0.0, 0.0, 0.0, 1.0); diffuse : array (0 .. 3) of aliased GLfloat := (1.0, 1.0, 1.0, 1.0); position : array (0 .. 3) of aliased GLfloat := (0.0, 3.0, 3.0, 0.0); lmodel_ambient : array (0 .. 3) of aliased GLfloat := (0.2, 0.2, 0.2, 1.0); local_view : aliased GLfloat := 0.0; begin glLightfv (GL_LIGHT0, GL_AMBIENT, ambient (0)'Access); glLightfv (GL_LIGHT0, GL_DIFFUSE, diffuse (0)'Access); glLightfv (GL_LIGHT0, GL_POSITION, position (0)'Access); glLightModelfv (GL_LIGHT_MODEL_AMBIENT, lmodel_ambient (0)'Access); glLightModelfv (GL_LIGHT_MODEL_LOCAL_VIEWER, local_view'Access); glFrontFace (GL_CW); glEnable (GL_LIGHTING); glEnable (GL_LIGHT0); glEnable (GL_AUTO_NORMAL); glEnable (GL_NORMALIZE); glEnable (GL_DEPTH_TEST); glDepthFunc (GL_LESS); glMatrixMode (GL_MODELVIEW); glLoadIdentity; glClearColor (0.0, 0.0, 0.0, 0.0); glClearAccum (0.0, 0.0, 0.0, 0.0); end DoInit; procedure renderTeapot (x : GLfloat; y : GLfloat; z : GLfloat; ambr : GLfloat; ambg : GLfloat; ambb : GLfloat; difr : GLfloat; difg : GLfloat; difb : GLfloat; specr : GLfloat; specg : GLfloat; specb : GLfloat; shine : GLfloat) is mat : array (0 .. 3) of aliased GLfloat; begin glPushMatrix; glTranslatef (x, y, z); mat (0) := ambr; mat (1) := ambg; mat (2) := ambb; mat (3) := 1.0; glMaterialfv (GL_FRONT, GL_AMBIENT, mat (0)'Access); mat (0) := difr; mat (1) := difg; mat (2) := difb; glMaterialfv (GL_FRONT, GL_DIFFUSE, mat (0)'Access); mat (0) := specr; mat (1) := specg; mat (2) := specb; glMaterialfv (GL_FRONT, GL_SPECULAR, mat (0)'Access); glMaterialf (GL_FRONT, GL_SHININESS, shine * 128.0); glutSolidTeapot (0.5); glPopMatrix; end renderTeapot; procedure DoDisplay is viewport : array (0 .. 3) of aliased GLint; begin glGetIntegerv (GL_VIEWPORT, viewport (0)'Access); glClear (GL_ACCUM_BUFFER_BIT); for jitval in 1 .. 8 loop glClear (GL_COLOR_BUFFER_BIT or GL_DEPTH_BUFFER_BIT); accPerspective (45.0, GLdouble (viewport (2)) / GLdouble (viewport (3)), 1.0, 15.0, 0.0, 0.0, GLdouble (0.33 * Jitter.j8 (jitval).x), GLdouble (0.33 * Jitter.j8 (jitval).y), 5.0); renderTeapot (-1.1, -0.5, -4.5, 0.1745, 0.01175, 0.01175, 0.61424, 0.04136, 0.04136, 0.727811, 0.626959, 0.626959, 0.6); renderTeapot (-0.5, -0.5, -5.0, 0.24725, 0.1995, 0.0745, 0.75164, 0.60648, 0.22648, 0.628281, 0.555802, 0.366065, 0.4); renderTeapot (0.2, -0.5, -5.5, 0.19225, 0.19225, 0.19225, 0.50754, 0.50754, 0.50754, 0.508273, 0.508273, 0.508273, 0.4); renderTeapot (1.0, -0.5, -6.0, 0.0215, 0.1745, 0.0215, 0.07568, 0.61424, 0.07568, 0.633, 0.727811, 0.633, 0.6); renderTeapot (1.8, -0.5, -6.5, 0.0, 0.1, 0.06, 0.0, 0.50980392, 0.50980392, 0.50196078, 0.50196078, 0.50196078, 0.25); glAccum (GL_ACCUM, 0.125); end loop; glAccum (GL_RETURN, 1.0); glFlush; end DoDisplay; procedure ReshapeCallback (w : Integer; h : Integer) is begin glViewport (0, 0, GLsizei(w), GLsizei(h)); end ReshapeCallback; end Dof_Procs;
ohenley/ada-util
Ada
2,047
adb
----------------------------------------------------------------------- -- util-properties-discrete -- Generic package for get/set of discrete properties -- Copyright (C) 2001, 2002, 2003, 2006, 2008, 2009, 2010, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body Util.Properties.Discrete is -- ------------------------------ -- Get the property value -- ------------------------------ function Get (Self : in Manager'Class; Name : in String) return Property_Type is Val : constant String := -Get (Self, Name); begin return Property_Type'Value (Val); end Get; -- ------------------------------ -- Get the property value. -- Return the default if the property does not exist. -- ------------------------------ function Get (Self : in Manager'Class; Name : in String; Default : in Property_Type) return Property_Type is begin return Get (Self, Name); exception when others => return Default; end Get; -- ------------------------------ -- Set the property value -- ------------------------------ procedure Set (Self : in out Manager'Class; Name : in String; Value : in Property_Type) is begin Set (Self, Name, Property_Type'Image (Value)); end Set; end Util.Properties.Discrete;
optikos/oasis
Ada
5,542
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Private_Type_Definitions is function Create (Abstract_Token : Program.Lexical_Elements.Lexical_Element_Access; Tagged_Token : Program.Lexical_Elements.Lexical_Element_Access; Limited_Token : Program.Lexical_Elements.Lexical_Element_Access; Private_Token : not null Program.Lexical_Elements.Lexical_Element_Access) return Private_Type_Definition is begin return Result : Private_Type_Definition := (Abstract_Token => Abstract_Token, Tagged_Token => Tagged_Token, Limited_Token => Limited_Token, Private_Token => Private_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False; Has_Abstract : Boolean := False; Has_Tagged : Boolean := False; Has_Limited : Boolean := False) return Implicit_Private_Type_Definition is begin return Result : Implicit_Private_Type_Definition := (Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Has_Abstract => Has_Abstract, Has_Tagged => Has_Tagged, Has_Limited => Has_Limited, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Abstract_Token (Self : Private_Type_Definition) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Abstract_Token; end Abstract_Token; overriding function Tagged_Token (Self : Private_Type_Definition) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Tagged_Token; end Tagged_Token; overriding function Limited_Token (Self : Private_Type_Definition) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Limited_Token; end Limited_Token; overriding function Private_Token (Self : Private_Type_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Private_Token; end Private_Token; overriding function Has_Abstract (Self : Private_Type_Definition) return Boolean is begin return Self.Abstract_Token.Assigned; end Has_Abstract; overriding function Has_Tagged (Self : Private_Type_Definition) return Boolean is begin return Self.Tagged_Token.Assigned; end Has_Tagged; overriding function Has_Limited (Self : Private_Type_Definition) return Boolean is begin return Self.Limited_Token.Assigned; end Has_Limited; overriding function Is_Part_Of_Implicit (Self : Implicit_Private_Type_Definition) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Private_Type_Definition) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Private_Type_Definition) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; overriding function Has_Abstract (Self : Implicit_Private_Type_Definition) return Boolean is begin return Self.Has_Abstract; end Has_Abstract; overriding function Has_Tagged (Self : Implicit_Private_Type_Definition) return Boolean is begin return Self.Has_Tagged; end Has_Tagged; overriding function Has_Limited (Self : Implicit_Private_Type_Definition) return Boolean is begin return Self.Has_Limited; end Has_Limited; procedure Initialize (Self : aliased in out Base_Private_Type_Definition'Class) is begin null; end Initialize; overriding function Is_Private_Type_Definition_Element (Self : Base_Private_Type_Definition) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Private_Type_Definition_Element; overriding function Is_Definition_Element (Self : Base_Private_Type_Definition) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Definition_Element; overriding procedure Visit (Self : not null access Base_Private_Type_Definition; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Private_Type_Definition (Self); end Visit; overriding function To_Private_Type_Definition_Text (Self : aliased in out Private_Type_Definition) return Program.Elements.Private_Type_Definitions .Private_Type_Definition_Text_Access is begin return Self'Unchecked_Access; end To_Private_Type_Definition_Text; overriding function To_Private_Type_Definition_Text (Self : aliased in out Implicit_Private_Type_Definition) return Program.Elements.Private_Type_Definitions .Private_Type_Definition_Text_Access is pragma Unreferenced (Self); begin return null; end To_Private_Type_Definition_Text; end Program.Nodes.Private_Type_Definitions;
datdojp/davu
Ada
767
ads
var ads_zone170 = new zone(170, {"html":"<div id=\"slot1\" align=\"center\">slot1_content<\/div>","css":"","slot":1,"effect":[0,0],"slots_rotate":null,"slot_type":null,"banner_default":[0,0],"sort_banner_slot":[0,0],"auto_change":false,"cp_zone":0}, 705, 140, null);ads_zone170.addBanners({"84391":{"bid":84391,"title":"","type":"html","link":null,"alt":null,"src":"<div id=\"ssvzone_1626\"><\/div><script type=\"text\/javascript\" src=\"http:\/\/admicro1.vcmedia.vn\/cpc\/ssvzone_1626.js\" id=\"Script_zone_1626\"><\/script>","width":0,"height":0,"slotIdx":1,"attr":null,"terms":null,"cpname":"1004426","counter":null,"iframe":0,"fix_ie":0,"sort":0,"link_clicks":null,"link_views":null,"location":"","weight":0,"rank":0,"freq":0,"cpm":0}});ads_zone170.drawZoneTag();
zhmu/ananas
Ada
2,732
ads
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- SYSTEM.TASKING.ASYNC_DELAYS.ENQUEUE_RT -- -- -- -- S p e c -- -- -- -- Copyright (C) 1998-2022, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- Note: the compiler generates direct calls to this interface, via Rtsfind. -- Any changes to this interface may require corresponding compiler changes. -- See comments in package System.Tasking.Async_Delays with Ada.Real_Time; function System.Tasking.Async_Delays.Enqueue_RT (T : Ada.Real_Time.Time; D : Delay_Block_Access) return Boolean;
reznikmm/matreshka
Ada
1,674
ads
-- A lexical scanner generated by aflex --# line 1 "scanner.l" -- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- This software was developed by John Self of the Arcadia project -- at the University of California, Irvine. -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- TITLE scanner specification file -- AUTHOR: John Self (UCI) -- DESCRIPTION regular expressions and actions matching tokens -- that aflex expects to find in its input. -- NOTES input to aflex (NOT alex.) It uses exclusive start conditions -- and case insensitive scanner generation available only in aflex -- (or flex if you use C.) -- generate scanner using the command 'aflex -is ascan.l' -- $Header: /dc/uc/self/arcadia/aflex/ada/src/RCS/ascan.l,v 1.19 1991/12/03 23:08:24 self Exp self $ --# line 45 "scanner.l" with Parser_Tokens; package scanner is Call_YYLex : Boolean := False; function YYLex return Parser_Tokens.Token; end scanner;
leo-brewin/adm-bssn-numerical
Ada
11,401
adb
with Ada.Text_IO; use Ada.Text_IO; with Ada.Command_Line; use Ada.Command_Line; with Support.Strings; use Support.Strings; with Support.RegEx; use Support.RegEx; with Ada.Characters.Latin_1; package body Support.Cmdline is max_arg_length : Constant := 256; -- maximum length of the argument for each each flag type flags is ('0','1','2','3','4','5','6','7','8','9', 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'); type cmd_args_record is record image : Character; exists : Boolean := False; index : Integer := 0; value : String (1..max_arg_length) := (others => Ada.Characters.Latin_1.NUL); end record; cmd_args : array (flags) of cmd_args_record; function to_flags (the_char : character) return flags is result : flags; found : Boolean := False; begin for i in flags'range loop if flags'Image(i)(2) = the_char then -- note 'Image will return a quoted string found := True; -- so we need to access character (2) to get the flag result := i; exit; end if; end loop; if not found then raise constraint_error with "invalid flag: -"&the_char; else return result; end if; end to_flags; ---------------------------------------------------------------------------- procedure get_command_arg (the_arg_string : out string; which_arg : integer) is begin writestr (the_arg_string, trim (Argument (which_arg))); end get_command_arg; function get_command_arg (which_arg : Integer; default : String) return String is begin if which_arg <= Argument_Count then return trim (Argument (which_arg)); else return trim (default); end if; end get_command_arg; ---------------------------------------------------------------------------- function echo_command_name return String is begin return Command_Name; end echo_command_name; function echo_command_line return String is the_len : Integer := 0; begin -- how long will our string be? the_len := get_strlen (cut(Command_Name)); for i in 1 .. Argument_Count loop the_len := the_len + get_strlen (' '&cut(Argument (i))); end loop; -- now build the return string if the_len > 0 then declare the_string : String (1..the_len); begin writestr(the_string,cut(Command_Name)); for i in 1 .. Argument_Count loop writestr (the_string,cut(the_string)&' '&cut(Argument (i))); end loop; return the_string; end; else return "-- empty command line --"; -- can't see how this could happen... end if; end echo_command_line; function echo_command_line_args return String is the_len : Integer := 0; begin -- how long will our string be? the_len := 0; for i in 1 .. Argument_Count loop the_len := the_len + get_strlen (' '&cut(Argument (i))); end loop; -- now build the return string if the_len > 0 then declare the_string : String (1..the_len); begin null_string (the_string); for i in 1 .. Argument_Count loop writestr (the_string,cut(the_string)&' '&cut(Argument (i))); end loop; return trim(the_string); end; else return "-- empty command line --"; -- can't see how this could happen... end if; end echo_command_line_args; ---------------------------------------------------------------------------- procedure echo_command_name is begin Put_Line (echo_command_name); end echo_command_name; procedure echo_command_line is begin Put_Line (echo_command_line); end echo_command_line; procedure echo_command_line_args is begin Put_Line (echo_command_line_args); end echo_command_line_args; ---------------------------------------------------------------------------- procedure get_command_args is begin for i in 1 .. Argument_Count loop declare the_arg : String := Argument (i); the_len : Integer := the_arg'last; the_flag : flags; begin if the_len > 1 then if the_arg (1) = '-' then the_flag := to_flags (the_arg (2)); cmd_args (the_flag) := (exists => True, image => the_arg (2), index => i, value => str (the_arg (3..the_len),max_arg_length)); end if; end if; end; end loop; end get_command_args; procedure put_command_args (item : character; value : string) is target : flags := to_flags (item); begin cmd_args (target) := (exists => True, image => item, index => Argument_Count + 1, -- put this item after all real command line args value => str (value,max_arg_length)); end put_command_args; procedure read_command_arg (value : out Integer; found : out Boolean; target_flag : Character; default : Integer := 0) is target : flags := to_flags (target_flag); re_intg : String := "^[ \t]*([-+]?[0-9]+)"; begin found := cmd_args (target).exists; if found then if get_strlen(cmd_args(target).value) > 0 then readstr (cut(cmd_args(target).value),value); -- normal case, e.g., -i127 else if cmd_args(target).index < Argument_Count then value := grep (Argument(cmd_args(target).index+1), re_intg, 1, fail => default); else value := default; -- forgot value, e.g., -i end if; end if; else value := default; end if; end read_command_arg; procedure read_command_arg (value : out Real; found : out Boolean; target_flag : Character; default : Real := 0.0) is target : flags := to_flags (target_flag); re_real : String := "^[ \t]*([-+]?[0-9]*[.]?[0-9]+([eE][-+]?[0-9]+)?)"; -- note counts as 2 groups (1.234(e+56)) begin found := cmd_args (target).exists; if found then if get_strlen(cmd_args(target).value) > 0 then readstr (cut(cmd_args(target).value),value); -- normal case, e.g., -f3.14159 else if cmd_args(target).index < Argument_Count then value := grep (Argument(cmd_args(target).index+1), re_real, 1, fail => default); else value := default; -- forgot value, e.g., -f end if; end if; else value := default; end if; end read_command_arg; procedure read_command_arg (value : out String; found : out Boolean; target_flag : Character; default : String := "null") is target : flags := to_flags (target_flag); begin found := cmd_args (target).exists; if found then writestr (value, cut (cmd_args(target).value)); else writestr (value, cut (default)); end if; if get_strlen(value) = 0 then if found then if cmd_args(target).index < Argument_Count then writestr (value, Argument(cmd_args(target).index+1) ); else writestr (value, cut (default)); -- forgot value, e.g., -f end if; else writestr (value, cut(default)); -- forgot value, e.g., -f end if; end if; end read_command_arg; procedure read_command_arg (value : out String; found : out Boolean; target_flag : Character; default : Character := '?') is target : flags := to_flags (target_flag); begin found := cmd_args (target).exists; if found then writestr (value, cut (cmd_args(target).value)); else writestr (value, str (default)); end if; if get_strlen(value) = 0 then if found then if cmd_args(target).index < Argument_Count then writestr (value, str (Argument(cmd_args(target).index+1)(1)) ); else writestr (value, str (default)); -- forgot value, e.g., -f end if; else writestr (value, str (default)); -- forgot value, e.g., -f end if; end if; end read_command_arg; ---------------------------------------------------------------------------- function read_command_arg (target_flag : Character; default : Integer := 0) return Integer is found : Boolean; value : Integer; begin read_command_arg (value,found,target_flag,default); if found then return value; else return default; end if; end read_command_arg; function read_command_arg (target_flag : Character; default : Real := 0.0) return Real is found : Boolean; value : Real; begin read_command_arg (value,found,target_flag,default); if found then return value; else return default; end if; end read_command_arg; function read_command_arg (target_flag : Character; default : String := "null") return String is found : Boolean; value : String (1..max_arg_length); begin read_command_arg (value,found,target_flag,default); if found then return cut(value); else return default; end if; end read_command_arg; function read_command_arg (target_flag : Character; default : Character := '?') return Character is found : Boolean; value : String (1..max_arg_length); begin read_command_arg (value,found,target_flag,default); if found then return value (1); else return default; end if; end read_command_arg; function find_command_arg(target_flag : Character) return Boolean is target : flags := to_flags (target_flag); begin return cmd_args (target).exists; end find_command_arg; ---------------------------------------------------------------------------- function num_command_args return integer is num : Integer := 0; begin for i in flags'range loop if cmd_args (i).exists then num := num + 1; end if; end loop; return num; end num_command_args; ---------------------------------------------------------------------------- function num_command_items return integer is begin return Argument_Count; end num_command_items; begin get_command_args; end Support.Cmdline;
reznikmm/matreshka
Ada
3,679
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Text_Placeholder_Elements is pragma Preelaborate; type ODF_Text_Placeholder is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Text_Placeholder_Access is access all ODF_Text_Placeholder'Class with Storage_Size => 0; end ODF.DOM.Text_Placeholder_Elements;
faelys/natools
Ada
4,627
adb
------------------------------------------------------------------------------ -- Copyright (c) 2013-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. -- ------------------------------------------------------------------------------ with Ada.Unchecked_Deallocation; package body Natools.References is --------------------------------- -- Low-level memory management -- --------------------------------- overriding procedure Adjust (Object : in out Immutable_Reference) is begin if Object.Count /= null then Object.Count.all := Object.Count.all + 1; end if; end Adjust; overriding procedure Finalize (Object : in out Immutable_Reference) is procedure Free is new Ada.Unchecked_Deallocation (Held_Data, Data_Access); procedure Free is new Ada.Unchecked_Deallocation (Counter, Counter_Access); begin if Object.Count /= null then Object.Count.all := Object.Count.all - 1; if Object.Count.all = 0 then Free (Object.Count); Free (Object.Data); else Object.Count := null; Object.Data := null; end if; end if; end Finalize; ----------------------------------------- -- Object construction and destruction -- ----------------------------------------- function Create (Constructor : not null access function return Held_Data) return Immutable_Reference is begin return (Ada.Finalization.Controlled with Data => new Held_Data'(Constructor.all), Count => new Counter'(1)); end Create; procedure Replace (Ref : in out Immutable_Reference; Constructor : not null access function return Held_Data) is begin Finalize (Ref); Ref.Data := new Held_Data'(Constructor.all); Ref.Count := new Counter'(1); end Replace; function Create (Data : in Data_Access) return Immutable_Reference is begin if Data = null then return Null_Immutable_Reference; else return (Ada.Finalization.Controlled with Data => Data, Count => new Counter'(1)); end if; end Create; procedure Replace (Ref : in out Immutable_Reference; Data : in Data_Access) is begin Finalize (Ref); if Data /= null then Ref.Data := Data; Ref.Count := new Counter'(1); end if; end Replace; procedure Reset (Ref : in out Immutable_Reference) is begin Finalize (Ref); end Reset; function Is_Empty (Ref : Immutable_Reference) return Boolean is begin return Ref.Count = null; end Is_Empty; function Is_Last (Ref : Immutable_Reference) return Boolean is begin return Ref.Count.all = 1; end Is_Last; function "=" (Left, Right : Immutable_Reference) return Boolean is begin return Left.Data = Right.Data; end "="; ---------------------- -- Dereferenciation -- ---------------------- function Query (Ref : in Immutable_Reference) return Accessor is begin return Accessor'(Data => Ref.Data, Parent => Ref); end Query; function Update (Ref : in Reference) return Mutator is begin return Mutator'(Data => Ref.Data, Parent => Ref); end Update; procedure Query (Ref : in Immutable_Reference; Process : not null access procedure (Object : in Held_Data)) is begin Process.all (Ref.Data.all); end Query; procedure Update (Ref : in Reference; Process : not null access procedure (Object : in out Held_Data)) is begin Process.all (Ref.Data.all); end Update; end Natools.References;
ebolar/Unbounded
Ada
2,764
ads
-- Lambda Calculus interpreter -- --------------------------- -- Parses and reduces Lamdba Calculus statements. -- -- What is the strategy for reducing an expression? -- - Strict evaluation is bottom up (C, Fortran, Java, Ada, etc) -- - Lazy evaluation is top down - left to right (Haskel, Lambda Calculus) -- -- Start with lazy evaluation. Come back and do strict evaluation as an enhancement. -- -- In what order do we perform alpha substitution, beta reduction, eta reduction -- - beta and eta reduction can be performed in any order - result is the same -- - alpha substitution renames bound variables so that they do not overlap with free variables being substituted -- (Barendregt Variable Convention). Need to check this prior to performing a beta substitution. -- -- Reduction is iterative. What is the stopping condition? -- - A Normal form cannot be further reduced. Next form = last form, ie Alpha-Equivalence. -- - Is beta normal if cannot be beta reduced -- - Is eta normal if cannot be eta reduced -- - can end up in an infinite loop -- - there may be more than one normal form -- -- Simplest stopping condition is if the expression is just Beta Normal. -- More complex stopping condition is if the expression is both Beta Normal & Eta Normal. Could this lead to loops? Is this useful? -- -- Musings: -- Reduction rules are the functions of a calculi. For example, the reduction rules of arithmetic are the tables of addition and multiplication of numerals. -- If the reduction rules for the Lambda calculus were encoded in configuration then this interpreter could easily be extended with additional functions, -- enabling it to be used for more complex types of calculus. (eg. could you turn this into a Lisp interpreter?) -- with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Ada.Containers; use Ada.Containers; with Ada.Containers.Multiway_Trees; with Ada.Strings.Unbounded; -- package Instructions is new Ada.Containers.Multiway_Trees -- (Element_Type => Element_Record); -- use Instructions; with Lambda; use Lambda; Package Lambda_Reducer is function reduce( I: Instructions.Tree ) return Instructions.Tree; private -- Alpha-renaming to preserve the meaning of a function -- function rename( I: Instructions.Tree ) return Instructions.Tree; -- Beta-reduction, Eta-reduction. -- Variable substitution, eg (?x.x)[y:=y] = ?x.(x[y:=y]) = ?x.x -- function substitution( I: Instructions.Tree ) return Instructions.Tree; -- -- Test for alpha-equivalence. Can we use this to detect when we are in a recursion loop? -- -- -- Expression Optimiser -- - ((X)) => (X) -- - X() => X procedure Optimise( I: in out Instructions.Tree ; Curs : Instructions.Cursor ); end Lambda_Reducer;
AdaCore/libadalang
Ada
380
adb
procedure Testinline is procedure Foo is pragma Inline (Foo); begin null; end Foo; package Test is procedure Bar; private pragma Inline (Bar); procedure Bar is null; end Test; protected type T is procedure Bar; private pragma Inline (Bar); procedure Bar is null; end T; begin null; end Testinline;
reznikmm/matreshka
Ada
17,507
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2009-2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package Matreshka.Internals.Unicode.Ucd is pragma Preelaborate; type First_Stage_Index is mod 16#1100#; type Second_Stage_Index is mod 16#100#; type Sequence_Count is range 0 .. 2 ** 16 - 1; for Sequence_Count'Size use 16; subtype Sequence_Index is Sequence_Count range 1 .. Sequence_Count'Last; type Code_Point_Sequence is array (Sequence_Index range <>) of Code_Point; type Code_Point_Sequence_Access is access constant Code_Point_Sequence; --------------------- -- Core properties -- --------------------- type General_Category is (Control, Format, Unassigned, Private_Use, Surrogate, Lowercase_Letter, Titlecase_Letter, Uppercase_Letter, Modifier_Letter, Other_Letter, Spacing_Mark, Enclosing_Mark, Nonspacing_Mark, Decimal_Number, Letter_Number, Other_Number, Connector_Punctuation, Dash_Punctuation, Close_Punctuation, Final_Punctuation, Initial_Punctuation, Other_Punctuation, Open_Punctuation, Currency_Symbol, Modifier_Symbol, Math_Symbol, Other_Symbol, Line_Separator, Paragraph_Separator, Space_Separator); for General_Category'Size use 8; type Boolean_Properties is (Composition_Exclusion, -- XXX Expands_On_NFC, -- Derived Expands_On_NFD, -- Derived Expands_On_NFKC, -- Derived Expands_On_NFKD, -- Derived Full_Composition_Exclusion, -- Derived ASCII_Hex_Digit, Bidi_Control, Dash, Deprecated, Diacritic, Extender, Hex_Digit, Hyphen, Ideographic, IDS_Binary_Operator, IDS_Trinary_Operator, Join_Control, Logical_Order_Exception, Noncharacter_Code_Point, Other_Alphabetic, Other_Default_Ignorable_Code_Point, Other_Grapheme_Extend, Other_ID_Continue, Other_ID_Start, Other_Lowercase, Other_Math, Other_Uppercase, Pattern_Syntax, Pattern_White_Space, Quotation_Mark, Radical, Soft_Dotted, STerm, Terminal_Punctuation, Unified_Ideograph, Variation_Selector, White_Space, -- Bidi_Mirrored, -- XXX -- Derived core properties. This list must include only properties -- from DerivedCoreProperties.txt file. Alphabetic, -- Derived Cased, -- Derived Case_Ignorable, -- Derived Changes_When_Lowercased, -- Derived Changes_When_Uppercased, -- Derived Changes_When_Titlecased, -- Derived Changes_When_Casefolded, -- Derived Changes_When_Casemapped, -- Derived Default_Ignorable_Code_Point, -- Derived Grapheme_Base, -- Derived Grapheme_Extend, -- Derived Grapheme_Link, -- Deprecated, derived ID_Continue, -- Derived ID_Start, -- Derived Lowercase, -- Derived Math, -- Derived Uppercase, -- Derived XID_Continue, -- Derived XID_Start, -- Derived -- Derived normalization properties. Changes_When_NFKC_Casefolded); -- Derived subtype Overridable_Boolean_Properties is Boolean_Properties range ASCII_Hex_Digit .. Changes_When_NFKC_Casefolded; type Boolean_Values is array (Overridable_Boolean_Properties) of Boolean; for Boolean_Values'Component_Size use 1; for Boolean_Values'Size use 64; -- 52 bits used for now type East_Asian_Width is (Ambiguous, Fullwidth, Halfwidth, Neutral, Narrow, Wide); for East_Asian_Width'Size use 8; type Grapheme_Cluster_Break is (Control, CR, Extend, L, LF, LV, LVT, Prepend, Regional_Indicator, Spacing_Mark, T, V, Other); for Grapheme_Cluster_Break'Size use 8; type Word_Break is (CR, LF, Newline, Extend, Regional_Indicator, Format, Katakana, Hebrew_Letter, A_Letter, Single_Quote, Double_Quote, Mid_Num_Let, Mid_Letter, Mid_Num, Numeric, Extend_Num_Let, Other); for Word_Break'Size use 8; type Sentence_Break is (Other, CR, LF, Sep, Sp, Lower, Upper, O_Letter, Numeric, A_Term, S_Term, Close, S_Continue, Format, Extend); for Sentence_Break'Size use 8; type Line_Break is (Ambiguous, Alphabetic, Break_Both, Break_After, Break_Before, Mandatory_Break, Contingent_Break, Conditional_Japanese_Starter, Close_Punctuation, Combining_Mark, Close_Parenthesis, Carriage_Return, Exclamation, Glue, H2, H3, Hebrew_Letter, Hyphen, Ideographic, Inseparable, Infix_Numeric, JL, JT, JV, Line_Feed, Next_Line, Nonstarter, Numeric, Open_Punctuation, Postfix_Numeric, Prefix_Numeric, Quotation, Regional_Indicator, Complex_Context, Surrogate, Space, Break_Symbols, Word_Joiner, Unknown, ZW_Space); for Line_Break'Size use 8; type Core_Values is record GC : General_Category; -- 8 (5) bits EA : East_Asian_Width; -- 8 (3) bits GCB : Grapheme_Cluster_Break; -- 8 (4) bits WB : Word_Break; -- 8 (4) bits SB : Sentence_Break; -- 8 (4) bits LB : Line_Break; -- 8 (6) bits B : Boolean_Values; -- 64 (52) bits end record; for Core_Values'Size use 128; for Core_Values use record B at 0 range 0 .. 63; GC at 0 range 64 .. 71; GCB at 0 range 72 .. 79; WB at 0 range 80 .. 87; SB at 0 range 88 .. 95; LB at 0 range 96 .. 103; EA at 0 range 104 .. 111; end record; type Core_Second_Stage is array (Second_Stage_Index) of Core_Values; type Core_Second_Stage_Access is not null access constant Core_Second_Stage; type Core_First_Stage is array (First_Stage_Index) of Core_Second_Stage_Access; type Core_First_Stage_Access is not null access constant Core_First_Stage; ------------ -- Casing -- ------------ type Casing_Context is (Final_Sigma, After_Soft_Dotted, More_Above, Before_Dot, After_I); type Case_Mapping_Range is record First : Sequence_Count; Last : Sequence_Count; end record; type Case_Mapping_Kinds is (Lower, Upper, Title, Folding); type Case_Mapping_Ranges is array (Case_Mapping_Kinds) of Case_Mapping_Range; type Simple_Case_Mappings is array (Case_Mapping_Kinds) of Code_Point; type Casing_Context_Mapping_Ranges is array (Case_Mapping_Kinds range Lower .. Title) of Case_Mapping_Range; type Case_Mapping is record Simple : Simple_Case_Mappings; Ranges : Case_Mapping_Ranges; Context_First : Sequence_Count; Context_Last : Sequence_Count; end record; type Casing_Context_Mapping is record Context : Casing_Context; Negative : Boolean; Ranges : Casing_Context_Mapping_Ranges; end record; type Case_Mapping_Second_Stage is array (Second_Stage_Index) of Case_Mapping; type Case_Mapping_Second_Stage_Access is not null access constant Case_Mapping_Second_Stage; type Case_Mapping_First_Stage is array (First_Stage_Index) of Case_Mapping_Second_Stage_Access; type Case_Mapping_First_Stage_Access is access constant Case_Mapping_First_Stage; type Casing_Context_Mapping_Sequence is array (Sequence_Index range <>) of Casing_Context_Mapping; type Casing_Context_Mapping_Sequence_Access is access constant Casing_Context_Mapping_Sequence; ------------------- -- Normalization -- ------------------- type Canonical_Combining_Class is mod 256; Not_Reordered : constant Canonical_Combining_Class := 0; Overlay : constant Canonical_Combining_Class := 1; Nukta : constant Canonical_Combining_Class := 7; Kana_Voicing : constant Canonical_Combining_Class := 8; Virama : constant Canonical_Combining_Class := 9; Attached_Below_Left : constant Canonical_Combining_Class := 200; Attached_Below : constant Canonical_Combining_Class := 202; Attached_Above_Right : constant Canonical_Combining_Class := 216; Below_Left : constant Canonical_Combining_Class := 218; Below : constant Canonical_Combining_Class := 220; Below_Right : constant Canonical_Combining_Class := 222; Left : constant Canonical_Combining_Class := 224; Right : constant Canonical_Combining_Class := 226; Above_Left : constant Canonical_Combining_Class := 228; Above : constant Canonical_Combining_Class := 230; Above_Right : constant Canonical_Combining_Class := 232; Double_Below : constant Canonical_Combining_Class := 233; Double_Above : constant Canonical_Combining_Class := 234; Iota_Subscript : constant Canonical_Combining_Class := 240; type Decomposition_Type is (None, Canonical, Font, No_Break, Initial, Medial, Final, Isolated, Circle, Super, Sub, Vertical, Wide, Narrow, Small, Square, Fraction, Compat); for Decomposition_Type'Size use 8; subtype Not_Overridable_Boolean_Properties is Boolean_Properties range Composition_Exclusion .. Full_Composition_Exclusion; type Non_Overridable_Boolean_Values is array (Not_Overridable_Boolean_Properties) of Boolean; for Non_Overridable_Boolean_Values'Component_Size use 1; for Non_Overridable_Boolean_Values'Size use 8; -- 6 bits used for now type Normalization_Quick_Check is (No, Maybe, Yes); for Normalization_Quick_Check'Size use 2; type Normalization_Form is (NFC, NFD, NFKC, NFKD); type Normalization_Quick_Checks is array (Normalization_Form) of Normalization_Quick_Check; for Normalization_Quick_Checks'Size use 8; for Normalization_Quick_Checks'Component_Size use Normalization_Quick_Check'Size; type Normalization_Mapping_Range is record First : Sequence_Count; Last : Sequence_Count; end record; type Decomposition_Kinds is (Canonical, Compatibility); type Decomposition_Mapping is array (Decomposition_Kinds) of Normalization_Mapping_Range; type Normalization_Mapping is record Decomposition : Decomposition_Mapping; Composition : Normalization_Mapping_Range; CCC : Canonical_Combining_Class; -- 8 bits NQC : Normalization_Quick_Checks; -- 8 bits DT : Decomposition_Type; -- 8 (5) bits B : Non_Overridable_Boolean_Values; end record; for Normalization_Mapping'Size use 128; type Normalization_Mapping_Second_Stage is array (Second_Stage_Index) of Normalization_Mapping; type Normalization_Mapping_Second_Stage_Access is not null access constant Normalization_Mapping_Second_Stage; type Normalization_Mapping_First_Stage is array (First_Stage_Index) of Normalization_Mapping_Second_Stage_Access; type Composition_Mapping is array (Sequence_Index range <>, Sequence_Index range <>) of Code_Point; --------------- -- Collation -- --------------- type Collation_Weight is mod 2**16; for Collation_Weight'Size use 16; pragma Assert (Code_Unit_16'Size = Collation_Weight'Size); -- Note: collation algoriphm in identical strength level adds copy of the -- source string in NFD form at the end of produced sorting key, thus it is -- important that Code_Unit_16 and Collation_Weight types have equal size. type Collation_Element is record Primary : Collation_Weight; Secondary : Collation_Weight; Trinary : Collation_Weight; end record; type Collation_Element_Sequence is array (Sequence_Index range <>) of Collation_Element; type Collation_Element_Sequence_Access is access constant Collation_Element_Sequence; type Contractor_Record is record Code : Code_Point; Contractor_First : Sequence_Count; Contractor_Last : Sequence_Count; Expansion_First : Sequence_Count; Expansion_Last : Sequence_Count; end record; type Contractor_Array is array (Sequence_Index range <>) of Contractor_Record; type Contractor_Array_Access is access constant Contractor_Array; type Collation_Record is record Contractor_First : Sequence_Count; Contractor_Last : Sequence_Count; Expansion_First : Sequence_Count; Expansion_Last : Sequence_Count; end record; type Collation_Second_Stage is array (Second_Stage_Index) of Collation_Record; type Collation_Second_Stage_Access is not null access constant Collation_Second_Stage; type Collation_First_Stage is array (First_Stage_Index) of Collation_Second_Stage_Access; type Collation_First_Stage_Access is access constant Collation_First_Stage; ------------------------------- -- Two stage table utilities -- ------------------------------- generic type Element_Type is private; type Second_Stage_Array is array (Second_Stage_Index) of Element_Type; type Second_Stage_Array_Access is not null access constant Second_Stage_Array; type First_Stage_Array is array (First_Stage_Index) of Second_Stage_Array_Access; function Generic_Element (Data : First_Stage_Array; Code : Code_Point) return Element_Type; end Matreshka.Internals.Unicode.Ucd;
zhmu/ananas
Ada
147
adb
-- { dg-do compile } package body Tagged2 is procedure Get_Parent (DeviceX : Device; Parent : out Device) is null; end Tagged2;
stcarrez/ada-util
Ada
26,098
adb
----------------------------------------------------------------------- -- util-serialize-mappers -- Serialize objects in various formats -- Copyright (C) 2010, 2011, 2012, 2014, 2017, 2018, 2021, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with System.Address_Image; with Util.Strings; with Ada.Tags; with Ada.Exceptions; with Ada.Unchecked_Deallocation; package body Util.Serialize.Mappers is -- The logger Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Util.Serialize.Mappers", Util.Log.WARN_LEVEL); -- ----------------------- -- Execute the mapping operation on the object associated with the current context. -- The object is extracted from the context and the <b>Execute</b> operation is called. -- ----------------------- procedure Execute (Handler : in Mapper; Map : in Mapping'Class; Ctx : in out Util.Serialize.Contexts.Context'Class; Value : in Util.Beans.Objects.Object) is begin if Handler.Mapper /= null then Handler.Mapper.all.Execute (Map, Ctx, Value); end if; end Execute; function Is_Proxy (Controller : in Mapper) return Boolean is begin return Controller.Is_Proxy_Mapper; end Is_Proxy; -- ----------------------- -- Returns true if the mapper is a wildcard node (matches any element). -- ----------------------- function Is_Wildcard (Controller : in Mapper) return Boolean is begin return Controller.Is_Wildcard; end Is_Wildcard; -- ----------------------- -- Returns the mapping name. -- ----------------------- function Get_Name (Controller : in Mapper) return String is begin return Ada.Strings.Unbounded.To_String (Controller.Name); end Get_Name; -- ----------------------- -- Find the mapper associated with the given name. -- Returns null if there is no mapper. -- ----------------------- function Find_Mapper (Controller : in Mapper; Name : in String; Attribute : in Boolean := False) return Mapper_Access is use type Ada.Strings.Unbounded.Unbounded_String; Node : Mapper_Access := Controller.First_Child; Recurse : Boolean := True; Result : Mapper_Access := null; begin if Node = null and then Controller.Mapper /= null then return Controller.Mapper.Find_Mapper (Name, Attribute); end if; while Node /= null loop if not Attribute and then Node.Is_Wildcard then Result := Node.Find_Mapper (Name, Attribute); if Result /= null then return Result; else return Node; end if; end if; if Node.Name = Name then if (not Attribute and then Node.Mapping = null) or else not Node.Mapping.Is_Attribute then return Node; end if; if Attribute and then Node.Mapping.Is_Attribute then return Node; end if; end if; if Node.Is_Deep_Wildcard and then not Attribute and then Node.Mapper /= null and then Recurse then Node := Node.Mapper.First_Child; Result := Node.Mapper; Recurse := False; else Node := Node.Next_Mapping; end if; end loop; return Result; end Find_Mapper; -- ----------------------- -- Find a path component representing a child mapper under <b>From</b> and -- identified by the given <b>Name</b>. If the mapper is not found, a new -- Mapper_Node is created. -- ----------------------- procedure Find_Path_Component (From : in out Mapper'Class; Name : in String; Root : in out Mapper_Access; Result : out Mapper_Access) is use Ada.Strings.Unbounded; Node : Mapper_Access := From.First_Child; Previous : Mapper_Access := null; Wildcard : constant Boolean := Name = "*"; Deep_Wildcard : constant Boolean := Name = "**"; begin if Root = null and then Deep_Wildcard then Root := Node; end if; if Node = null then Result := new Mapper; Result.Name := To_Unbounded_String (Name); Result.Is_Wildcard := Wildcard or Deep_Wildcard; Result.Is_Deep_Wildcard := Deep_Wildcard; From.First_Child := Result; else loop if Node.Name = Name then Result := Node; exit; end if; if Node.Next_Mapping = null then Result := new Mapper; Result.Name := To_Unbounded_String (Name); Result.Is_Wildcard := Wildcard or Deep_Wildcard; Result.Is_Deep_Wildcard := Deep_Wildcard; if not Wildcard and not Deep_Wildcard then Result.Next_Mapping := Node; if Previous = null then From.First_Child := Result; else Previous.Next_Mapping := Result; end if; else Node.Next_Mapping := Result; end if; exit; end if; Previous := Node; Node := Node.Next_Mapping; end loop; end if; -- For deep wildcard mapping the mapping tree has to somehow redirect and use a -- root node (ie, the '**' node). Create a proxy node to point to that wildcard root. -- The wildcard nodes must be checked last and therefore appear at end of the mapping list. if Root /= null then Previous := Result; while Previous.Next_Mapping /= null loop Previous := Previous.Next_Mapping; end loop; if not Previous.Is_Wildcard and then not Previous.Is_Deep_Wildcard then Node := new Mapper; Node.Name := To_Unbounded_String ("**"); Node.Is_Deep_Wildcard := True; Node.Mapper := Root; Previous.Next_Mapping := Node; end if; end if; end Find_Path_Component; -- ----------------------- -- Build the mapping tree that corresponds to the given <b>Path</b>. -- Each path component is represented by a <b>Mapper_Node</b> element. -- The node is created if it does not exists. -- ----------------------- procedure Build_Path (Into : in out Mapper'Class; Path : in String; Last_Pos : out Natural; Node : out Mapper_Access) is Pos : Natural; Root : Mapper_Access := null; begin Node := Into'Unchecked_Access; Last_Pos := Path'First; loop Pos := Util.Strings.Index (Source => Path, Char => '/', From => Last_Pos); if Pos = 0 then Node.Find_Path_Component (Name => Path (Last_Pos .. Path'Last), Root => Root, Result => Node); Last_Pos := Path'Last + 1; else Node.Find_Path_Component (Name => Path (Last_Pos .. Pos - 1), Root => Root, Result => Node); Last_Pos := Pos + 1; end if; exit when Last_Pos > Path'Last; end loop; end Build_Path; -- ----------------------- -- Add a mapping to associate the given <b>Path</b> to the mapper defined in <b>Map</b>. -- The <b>Path</b> string describes the matching node using a simplified XPath notation. -- Example: -- info/first_name matches: <info><first_name>...</first_name></info> -- info/a/b/name matches: <info><a><b><name>...</name></b></a></info> -- */a/b/name matches: <i><i><j><a><b><name>...</name></b></a></j></i></i> -- **/name matches: <i><name>...</name></i>, <b><c><name>...</name></c></b> -- ----------------------- procedure Add_Mapping (Into : in out Mapper; Path : in String; Map : in Mapper_Access) is procedure Copy (To : in Mapper_Access; From : in Mapper_Access); procedure Add_Mapper (From, To : in Mapper_Access); function Find_Mapper (From : in Mapper_Access) return Mapper_Access; procedure Append (To : in Mapper_Access; Item : in Mapper_Access); -- For the support of deep wildcard mapping (**), we must map a proxy node mapper -- to the copy that was made. We maintain a small list of mapper pairs. -- The implementation is intended to be simple for now... type Mapper_Pair is record First : Mapper_Access; Second : Mapper_Access; end record; Node : Mapper_Access; Last_Pos : Natural; Mappers : array (1 .. 10) of Mapper_Pair; procedure Add_Mapper (From, To : in Mapper_Access) is begin for I in Mappers'Range loop if Mappers (I).First = null then Mappers (I).First := From; Mappers (I).Second := To; return; end if; end loop; Log.Error ("Too many wildcard mappers"); raise Mapping_Error with "Too many wildcard mapping, mapping is too complex!"; end Add_Mapper; function Find_Mapper (From : in Mapper_Access) return Mapper_Access is begin for I in Mappers'Range loop if Mappers (I).First = From then return Mappers (I).Second; end if; end loop; Log.Error ("Cannot find mapper {0}", System.Address_Image (From.all'Address)); return null; end Find_Mapper; procedure Append (To : in Mapper_Access; Item : in Mapper_Access) is Node : Mapper_Access := To.First_Child; begin if Node = null then To.First_Child := Item; else while Node.Next_Mapping /= null loop Node := Node.Next_Mapping; end loop; Node.Next_Mapping := Item; end if; end Append; procedure Copy (To : in Mapper_Access; From : in Mapper_Access) is N : Mapper_Access; Src : Mapper_Access := From; begin -- Add_Mapper (From, null); while Src /= null loop N := Src.Clone; N.Is_Clone := True; if N.Is_Deep_Wildcard then if N.Mapper /= null then N.Mapper := Find_Mapper (N.Mapper); else Add_Mapper (Src, N); end if; end if; Append (To, N); if Src.First_Child /= null then Copy (N, Src.First_Child); end if; Src := Src.Next_Mapping; end loop; end Copy; -- use type Util.Log.Level_Type; begin if Log.Get_Level >= Util.Log.INFO_LEVEL then Log.Info ("Mapping '{0}' for mapper {1}", Path, Ada.Tags.Expanded_Name (Map'Tag)); end if; -- Find or build the mapping tree. Into.Build_Path (Path, Last_Pos, Node); if Last_Pos < Path'Last then Log.Warn ("Ignoring the end of mapping path {0}", Path); end if; if Node.Mapper /= null then Log.Warn ("Overriding the mapping {0} for mapper X", Path); end if; if Map.First_Child /= null then Copy (Node, Map.First_Child); else Node.Mapper := Map; end if; end Add_Mapping; procedure Add_Mapping (Into : in out Mapper; Path : in String; Map : in Mapping_Access) is use Ada.Strings.Unbounded; Node : Mapper_Access; Last_Pos : Natural; begin if Log.Get_Level >= Util.Log.INFO_LEVEL then Log.Info ("Mapping '{0}' for mapper {1}", Path, Ada.Tags.Expanded_Name (Map'Tag)); end if; -- Find or build the mapping tree. Into.Build_Path (Path, Last_Pos, Node); if Last_Pos < Path'Last then Log.Warn ("Ignoring the end of mapping path {0}", Path); end if; if Node.Mapping /= null then Log.Warn ("Overriding the mapping {0} for mapper X", Path); end if; if Length (Node.Name) = 0 then Log.Warn ("Mapped name is empty in mapping path {0}", Path); elsif Element (Node.Name, 1) = '@' then Delete (Node.Name, 1, 1); Map.Is_Attribute := True; else Map.Is_Attribute := False; end if; Node.Mapping := Map; Node.Mapper := Into'Unchecked_Access; end Add_Mapping; -- ----------------------- -- Clone the <b>Handler</b> instance and get a copy of that single object. -- ----------------------- function Clone (Handler : in Mapper) return Mapper_Access is Result : constant Mapper_Access := new Mapper; begin Result.Name := Handler.Name; Result.Mapper := Handler.Mapper; Result.Mapping := Handler.Mapping; Result.Is_Proxy_Mapper := Handler.Is_Proxy_Mapper; Result.Is_Clone := True; Result.Is_Wildcard := Handler.Is_Wildcard; Result.Is_Deep_Wildcard := Handler.Is_Deep_Wildcard; return Result; end Clone; -- ----------------------- -- Set the name/value pair on the current object. For each active mapping, -- find whether a rule matches our name and execute it. -- ----------------------- procedure Set_Member (Handler : in Mapper; Name : in String; Value : in Util.Beans.Objects.Object; Attribute : in Boolean := False; Context : in out Util.Serialize.Contexts.Context'Class) is Map : constant Mapper_Access := Mapper'Class (Handler).Find_Mapper (Name, Attribute); begin if Map /= null and then Map.Mapping /= null and then Map.Mapper /= null then Map.Mapper.all.Execute (Map.Mapping.all, Context, Value); end if; end Set_Member; procedure Start_Object (Handler : in Mapper; Context : in out Util.Serialize.Contexts.Context'Class; Name : in String) is begin if Handler.Mapper /= null then Handler.Mapper.Start_Object (Context, Name); end if; end Start_Object; procedure Finish_Object (Handler : in Mapper; Context : in out Util.Serialize.Contexts.Context'Class; Name : in String) is begin if Handler.Mapper /= null then Handler.Mapper.Finish_Object (Context, Name); end if; end Finish_Object; -- ----------------------- -- Dump the mapping tree on the logger using the INFO log level. -- ----------------------- procedure Dump (Handler : in Mapper'Class; Log : in Util.Log.Loggers.Logger'Class; Prefix : in String := "") is procedure Dump (Map : in Mapper'Class); -- ----------------------- -- Dump the mapping description -- ----------------------- procedure Dump (Map : in Mapper'Class) is Name : constant String := Ada.Strings.Unbounded.To_String (Map.Name); begin if Map.Mapping /= null and then Map.Mapping.Is_Attribute then Log.Info (" {0}@{1}", Prefix, Name); elsif Map.Is_Deep_Wildcard and then Map.Next_Mapping = null then Log.Info (" {0}/{1} [proxy]", Prefix, Name); Dump (Map, Log, Prefix & "/" & Name); else Log.Info (" {0}/{1}", Prefix, Name); Dump (Map, Log, Prefix & "/" & Name); end if; end Dump; begin Iterate (Handler, Dump'Access); end Dump; procedure Iterate (Controller : in Mapper; Process : not null access procedure (Map : in Mapper'Class)) is Node : Mapper_Access := Controller.First_Child; begin -- Pass 1: process the attributes first while Node /= null loop if Node.Mapping /= null and then Node.Mapping.Is_Attribute then Process.all (Node.all); end if; Node := Node.Next_Mapping; end loop; -- Pass 2: process the elements Node := Controller.First_Child; while Node /= null loop if Node.Mapping = null or else not Node.Mapping.Is_Attribute then Process.all (Node.all); end if; Node := Node.Next_Mapping; end loop; end Iterate; -- ----------------------- -- Finalize the object and release any mapping. -- ----------------------- overriding procedure Finalize (Controller : in out Mapper) is procedure Free is new Ada.Unchecked_Deallocation (Mapper'Class, Mapper_Access); procedure Free is new Ada.Unchecked_Deallocation (Mapping'Class, Mapping_Access); Node : Mapper_Access := Controller.First_Child; Next : Mapper_Access; begin Controller.First_Child := null; while Node /= null loop Next := Node.Next_Mapping; Free (Node); Node := Next; end loop; if not Controller.Is_Clone then Free (Controller.Mapping); else Controller.Mapping := null; end if; end Finalize; -- ------------------------------ -- Start a document. -- ------------------------------ overriding procedure Start_Document (Stream : in out Processing) is Context : Element_Context_Access; begin Context_Stack.Clear (Stream.Stack); Context_Stack.Push (Stream.Stack); Context := Context_Stack.Current (Stream.Stack); Context.Active_Nodes (1) := Stream.Mapping_Tree'Unchecked_Access; end Start_Document; -- ------------------------------ -- Push the current context when entering in an element. -- ------------------------------ procedure Push (Handler : in out Processing) is begin Context_Stack.Push (Handler.Stack); end Push; -- ------------------------------ -- Pop the context and restore the previous context when leaving an element -- ------------------------------ procedure Pop (Handler : in out Processing) is begin Context_Stack.Pop (Handler.Stack); end Pop; function Find_Mapper (Handler : in Processing; Name : in String) return Util.Serialize.Mappers.Mapper_Access is pragma Unreferenced (Handler, Name); begin return null; end Find_Mapper; -- ------------------------------ -- Start a new object associated with the given name. This is called when -- the '{' is reached. The reader must be updated so that the next -- <b>Set_Member</b> procedure will associate the name/value pair on the -- new object. -- ------------------------------ overriding procedure Start_Object (Handler : in out Processing; Name : in String; Logger : in out Util.Log.Logging'Class) is pragma Unreferenced (Logger); Current : constant Element_Context_Access := Context_Stack.Current (Handler.Stack); Next : Element_Context_Access; Pos : Positive; begin Log.Debug ("Start object {0}", Name); Context_Stack.Push (Handler.Stack); Next := Context_Stack.Current (Handler.Stack); if Current /= null then Pos := 1; -- Notify we are entering in the given node for each active mapping. for I in Current.Active_Nodes'Range loop declare Node : constant Mappers.Mapper_Access := Current.Active_Nodes (I); Child : Mappers.Mapper_Access; begin exit when Node = null; Child := Node.Find_Mapper (Name => Name); if Child = null and then Node.Is_Wildcard then Child := Node; end if; if Child /= null then Log.Debug ("{0} is matching {1}", Name, Child.Get_Name); Child.Start_Object (Handler, Name); Next.Active_Nodes (Pos) := Child; Pos := Pos + 1; end if; end; end loop; while Pos <= Next.Active_Nodes'Last loop Next.Active_Nodes (Pos) := null; Pos := Pos + 1; end loop; else Next.Active_Nodes (1) := Handler.Mapping_Tree.Find_Mapper (Name); end if; end Start_Object; -- ------------------------------ -- Finish an object associated with the given name. The reader must be -- updated to be associated with the previous object. -- ------------------------------ overriding procedure Finish_Object (Handler : in out Processing; Name : in String; Logger : in out Util.Log.Logging'Class) is pragma Unreferenced (Logger); begin Log.Debug ("Finish object {0}", Name); declare Current : constant Element_Context_Access := Context_Stack.Current (Handler.Stack); begin if Current /= null then -- Notify we are leaving the given node for each active mapping. for I in Current.Active_Nodes'Range loop declare Node : constant Mappers.Mapper_Access := Current.Active_Nodes (I); begin exit when Node = null; Node.Finish_Object (Handler, Name); end; end loop; end if; end; Handler.Pop; end Finish_Object; overriding procedure Start_Array (Handler : in out Processing; Name : in String; Logger : in out Util.Log.Logging'Class) is pragma Unreferenced (Name, Logger); begin Handler.Push; end Start_Array; overriding procedure Finish_Array (Handler : in out Processing; Name : in String; Count : in Natural; Logger : in out Util.Log.Logging'Class) is pragma Unreferenced (Name, Count, Logger); begin Handler.Pop; end Finish_Array; -- ----------------------- -- Set the name/value pair on the current object. For each active mapping, -- find whether a rule matches our name and execute it. -- ----------------------- overriding procedure Set_Member (Handler : in out Processing; Name : in String; Value : in Util.Beans.Objects.Object; Logger : in out Util.Log.Logging'Class; Attribute : in Boolean := False) is Current : constant Element_Context_Access := Context_Stack.Current (Handler.Stack); begin Log.Debug ("Set member {0}", Name); if Current /= null then -- Look each active mapping node. for I in Current.Active_Nodes'Range loop declare Node : constant Mapper_Access := Current.Active_Nodes (I); begin exit when Node = null; Node.Set_Member (Name => Name, Value => Value, Attribute => Attribute, Context => Handler); exception when E : Util.Serialize.Mappers.Field_Error => Logger.Error (Message => Ada.Exceptions.Exception_Message (E)); when E : Util.Serialize.Mappers.Field_Fatal_Error => Logger.Error (Message => Ada.Exceptions.Exception_Message (E)); raise; -- For other exception, report an error with the field name and value. when E : others => Logger.Error (Message => "Cannot set field '" & Name & "' to '" & Util.Beans.Objects.To_String (Value) & "': " & Ada.Exceptions.Exception_Message (E)); raise; end; end loop; end if; end Set_Member; procedure Add_Mapping (Handler : in out Processing; Path : in String; Mapper : in Util.Serialize.Mappers.Mapper_Access) is begin Handler.Mapping_Tree.Add_Mapping (Path, Mapper); end Add_Mapping; -- ------------------------------ -- Dump the mapping tree on the logger using the INFO log level. -- ------------------------------ procedure Dump (Handler : in Processing'Class; Logger : in Util.Log.Loggers.Logger'Class) is begin Util.Serialize.Mappers.Dump (Handler.Mapping_Tree, Logger, "Mapping "); end Dump; end Util.Serialize.Mappers;
reznikmm/matreshka
Ada
3,729
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Table_Show_Details_Attributes is pragma Preelaborate; type ODF_Table_Show_Details_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Table_Show_Details_Attribute_Access is access all ODF_Table_Show_Details_Attribute'Class with Storage_Size => 0; end ODF.DOM.Table_Show_Details_Attributes;
charlie5/lace
Ada
464
adb
package body openGL.Renderer.lean.forge is function to_Renderer return Renderer.lean.item is begin return the_Renderer : Renderer.lean.item do the_Renderer.define; end return; end to_Renderer; function new_Renderer return Renderer.lean.view is Self : constant Renderer.lean.view := new Renderer.lean.item; begin Self.define; return Self; end new_Renderer; end openGL.Renderer.lean.forge;
flyx/OpenGLAda
Ada
6,982
ads
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" private with GL.Low_Level; package GL.Toggles is pragma Preelaborate; type Toggle_State is (Disabled, Enabled); type Toggle is (Point_Smooth, Line_Smooth, Line_Stipple, Polygon_Smooth, Polygon_Stipple, Cull_Face, Lighting, Color_Material, Fog, Depth_Test, Stencil_Test, Normalize, Alpha_Test, Dither, Blend, Index_Logic_Op, Color_Logic_Op, Scissor_Test, Texture_Gen_S, Texture_Gen_T, Texture_Gen_R, Texture_Gen_Q, Auto_Normal, Map1_Color_4, Map1_Index, Map1_Normal, Map1_Texture_Coord_1, Map1_Texture_Coord_2, Map1_Texture_Coord_3, Map1_Texture_Coord_4, Map1_Vertex_3, Map1_Vertex_4, Map2_Color_4, Map2_Index, Map2_Normal, Map2_Texture_Coord_1, Map2_Texture_Coord_2, Map2_Texture_Coord_3, Map2_Texture_Coord_4, Map2_Vertex_3, Map2_Vertex_4, Texture_1D, Texture_2D, Polygon_Offset_Point, Polygon_Offset_Line, Clip_Plane_0, Clip_Plane_1, Clip_Plane_2, Clip_Plane_3, Clip_Plane_4, Clip_Plane_5, Light0, Light1, Light2, Light3, Light4, Light5, Light6, Light7, Convolution_1D, Convolution_2D, Separable_2D, Histogram, Minmax, Polygon_Offset_Fill, Rescale_Normal, Texture_3D, Multisample, Sample_Alpha_To_Coverage, Sample_Alpha_To_One, Sample_Coverage, Color_Table, Post_Convolution_Color_Table, Post_Color_Matrix_Color_Table, Debug_Output_Synchronous, Color_Sum, Texture_Cube_Map, Vertex_Program_Point_Size, Vertex_Program_Two_Side, Point_Sprite, Rasterizer_Discard, Primitive_Restart, Debug_Output); procedure Enable (Subject : Toggle); procedure Disable (Subject : Toggle); procedure Set (Subject : Toggle; Value : Toggle_State); function State (Subject : Toggle) return Toggle_State; private for Toggle use (Point_Smooth => 16#0B10#, Line_Smooth => 16#0B20#, Line_Stipple => 16#0B24#, Polygon_Smooth => 16#0B41#, Polygon_Stipple => 16#0B42#, Cull_Face => 16#0B44#, Lighting => 16#0B50#, Color_Material => 16#0B57#, Fog => 16#0B60#, Depth_Test => 16#0B71#, Stencil_Test => 16#0B90#, Normalize => 16#0BA1#, Alpha_Test => 16#0BC0#, Dither => 16#0BD0#, Blend => 16#0BE2#, Index_Logic_Op => 16#0BF1#, Color_Logic_Op => 16#0BF2#, Scissor_Test => 16#0C11#, Texture_Gen_S => 16#0C60#, Texture_Gen_T => 16#0C61#, Texture_Gen_R => 16#0C62#, Texture_Gen_Q => 16#0C63#, Auto_Normal => 16#0D80#, Map1_Color_4 => 16#0D90#, Map1_Index => 16#0D91#, Map1_Normal => 16#0D92#, Map1_Texture_Coord_1 => 16#0D93#, Map1_Texture_Coord_2 => 16#0D94#, Map1_Texture_Coord_3 => 16#0D95#, Map1_Texture_Coord_4 => 16#0D96#, Map1_Vertex_3 => 16#0D97#, Map1_Vertex_4 => 16#0D98#, Map2_Color_4 => 16#0DB0#, Map2_Index => 16#0DB1#, Map2_Normal => 16#0DB2#, Map2_Texture_Coord_1 => 16#0DB3#, Map2_Texture_Coord_2 => 16#0DB4#, Map2_Texture_Coord_3 => 16#0DB5#, Map2_Texture_Coord_4 => 16#0DB6#, Map2_Vertex_3 => 16#0DB7#, Map2_Vertex_4 => 16#0DB8#, Texture_1D => 16#0DE0#, Texture_2D => 16#0DE1#, Polygon_Offset_Point => 16#2A01#, Polygon_Offset_Line => 16#2A02#, Clip_Plane_0 => 16#3000#, Clip_Plane_1 => 16#3001#, Clip_Plane_2 => 16#3002#, Clip_Plane_3 => 16#3003#, Clip_Plane_4 => 16#3004#, Clip_Plane_5 => 16#3005#, Light0 => 16#4000#, Light1 => 16#4001#, Light2 => 16#4002#, Light3 => 16#4003#, Light4 => 16#4004#, Light5 => 16#4005#, Light6 => 16#4006#, Light7 => 16#4007#, Convolution_1D => 16#8010#, Convolution_2D => 16#8011#, Separable_2D => 16#8012#, Histogram => 16#8024#, Minmax => 16#802E#, Polygon_Offset_Fill => 16#8037#, Rescale_Normal => 16#803A#, Texture_3D => 16#806F#, Multisample => 16#809D#, Sample_Alpha_To_Coverage => 16#809E#, Sample_Alpha_To_One => 16#809F#, Sample_Coverage => 16#80A0#, Color_Table => 16#80D0#, Post_Convolution_Color_Table => 16#80D1#, Post_Color_Matrix_Color_Table => 16#80D2#, Debug_Output_Synchronous => 16#8242#, Color_Sum => 16#8458#, Texture_Cube_Map => 16#8513#, Vertex_Program_Point_Size => 16#8642#, Vertex_Program_Two_Side => 16#8643#, Point_Sprite => 16#8861#, Rasterizer_Discard => 16#8C89#, Primitive_Restart => 16#8F9D#, Debug_Output => 16#92E0#); for Toggle'Size use Low_Level.Enum'Size; end GL.Toggles;
stcarrez/ada-util
Ada
3,590
ads
----------------------------------------------------------------------- -- util-encoders-uri -- Encode and decode URI using percent encoding -- Copyright (C) 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- -- == URI Encoder and Decoder == -- The `Util.Encoders.URI` package provides operations to encode and decode -- using the URI percent encoding and decoding scheme. -- A string encoded using percent encoding as described in RFC 3986 is -- simply decoded as follows: -- -- Decoded : constant String := Util.Encoders.URI.Decode ("%20%2F%3A"); -- -- To encode a string, one must choose the character set that must be encoded -- and then call the `Encode` function. The character set indicates those -- characters that must be percent encoded. Two character sets are provided, -- -- * `HREF_STRICT` defines a strict character set to encode all reserved -- characters as defined by RFC 3986. This is the default. -- * `HREF_LOOSE` defines a character set that does not encode the -- reserved characters such as `-_.+!*'(),%#@?=;:/&$`. -- -- Encoded : constant String := Util.Encoders.URI.Encode (" /:"); -- package Util.Encoders.URI is pragma Preelaborate; type Encoding_Array is array (Character) of Boolean; -- Strict encoding of reserved characters RFC3986 HREF_STRICT : constant Encoding_Array := ('0' .. '9' => False, 'a' .. 'z' => False, 'A' .. 'Z' => False, '-' => False, '.' => False, '_' => False, '~' => False, others => True); -- Loose encoding where punctuation reserved characters are not encoded. HREF_LOOSE : constant Encoding_Array := ('0' .. '9' => False, 'a' .. 'z' => False, 'A' .. 'Z' => False, '-' => False, '.' => False, '_' => False, '~' => False, '+' => False, ''' => False, '*' => False, '(' => False, '&' => False, '$' => False, ')' => False, ',' => False, '%' => False, '#' => False, '@' => False, '?' => False, '=' => False, ';' => False, ':' => False, '/' => False, others => True); -- Compute the length of the encoded URI string with percent encoding -- and with the given encoding array. Characters for which the `Encoding` array -- returns True are encoded using %HEXDIGIT HEXDIGIT. -- Returns the length of encoded string. function Encoded_Length (URI : in String; Encoding : in Encoding_Array := HREF_STRICT) return Natural; -- Encode the string using URI percent encoding. -- Characters for which the `Encoding` array returns True are encoded -- using %HEXDIGIT HEXDIGIT. Returns the percent encoded string. function Encode (URI : in String; Encoding : in Encoding_Array := HREF_STRICT) return String; -- Decode the percent encoded URI string. function Decode (URI : in String) return String; end Util.Encoders.URI;
reznikmm/matreshka
Ada
3,684
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Text_Bookmark_Ref_Elements is pragma Preelaborate; type ODF_Text_Bookmark_Ref is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Text_Bookmark_Ref_Access is access all ODF_Text_Bookmark_Ref'Class with Storage_Size => 0; end ODF.DOM.Text_Bookmark_Ref_Elements;
zhmu/ananas
Ada
6,638
ads
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- A D A . I N T E R R U P T S . N A M E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1991-2022, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the Darwin version of this package -- The following signals are reserved by the run time: -- SIGSTOP, SIGKILL -- The pragma Unreserve_All_Interrupts affects the following signal(s): -- SIGINT: made available for Ada handler -- This target-dependent package spec contains names of interrupts -- supported by the local system. with System.OS_Interface; package Ada.Interrupts.Names is -- All identifiers in this unit are implementation defined pragma Implementation_Defined; -- Beware that the mapping of names to signals may be many-to-one. There -- may be aliases. Also, for all signal names that are not supported on the -- current system the value of the corresponding constant will be zero. SIGHUP : constant Interrupt_ID := System.OS_Interface.SIGHUP; -- hangup SIGINT : constant Interrupt_ID := System.OS_Interface.SIGINT; -- interrupt (rubout) SIGQUIT : constant Interrupt_ID := System.OS_Interface.SIGQUIT; -- quit (ASCD FS) SIGILL : constant Interrupt_ID := System.OS_Interface.SIGILL; -- illegal instruction (not reset) SIGTRAP : constant Interrupt_ID := System.OS_Interface.SIGTRAP; -- trace trap (not reset) SIGIOT : constant Interrupt_ID := System.OS_Interface.SIGIOT; -- IOT instruction SIGABRT : constant Interrupt_ID := -- used by abort, System.OS_Interface.SIGABRT; -- replace SIGIOT in the future SIGEMT : constant Interrupt_ID := System.OS_Interface.SIGEMT; -- EMT instruction SIGFPE : constant Interrupt_ID := System.OS_Interface.SIGFPE; -- floating point exception SIGKILL : constant Interrupt_ID := System.OS_Interface.SIGKILL; -- kill (cannot be caught or ignored) SIGBUS : constant Interrupt_ID := System.OS_Interface.SIGBUS; -- bus error SIGSEGV : constant Interrupt_ID := System.OS_Interface.SIGSEGV; -- segmentation violation SIGSYS : constant Interrupt_ID := System.OS_Interface.SIGSYS; -- bad argument to system call SIGPIPE : constant Interrupt_ID := -- write on a pipe with System.OS_Interface.SIGPIPE; -- no one to read it SIGALRM : constant Interrupt_ID := System.OS_Interface.SIGALRM; -- alarm clock SIGTERM : constant Interrupt_ID := System.OS_Interface.SIGTERM; -- software termination signal from kill SIGURG : constant Interrupt_ID := System.OS_Interface.SIGURG; -- urgent condition on IO channel SIGSTOP : constant Interrupt_ID := System.OS_Interface.SIGSTOP; -- stop (cannot be caught or ignored) SIGTSTP : constant Interrupt_ID := System.OS_Interface.SIGTSTP; -- user stop requested from tty SIGCONT : constant Interrupt_ID := System.OS_Interface.SIGCONT; -- stopped process has been continued SIGCHLD : constant Interrupt_ID := System.OS_Interface.SIGCHLD; -- 4.3BSD's/POSIX name for SIGCLD SIGTTIN : constant Interrupt_ID := System.OS_Interface.SIGTTIN; -- background tty read attempted SIGTTOU : constant Interrupt_ID := System.OS_Interface.SIGTTOU; -- background tty write attempted SIGIO : constant Interrupt_ID := -- input/output possible, System.OS_Interface.SIGIO; -- SIGPOLL alias (Solaris) SIGXCPU : constant Interrupt_ID := System.OS_Interface.SIGXCPU; -- CPU time limit exceeded SIGXFSZ : constant Interrupt_ID := System.OS_Interface.SIGXFSZ; -- filesize limit exceeded SIGVTALRM : constant Interrupt_ID := System.OS_Interface.SIGVTALRM; -- virtual timer expired SIGPROF : constant Interrupt_ID := System.OS_Interface.SIGPROF; -- profiling timer expired SIGWINCH : constant Interrupt_ID := System.OS_Interface.SIGWINCH; -- window size change SIGINFO : constant Interrupt_ID := System.OS_Interface.SIGINFO; -- information request SIGUSR1 : constant Interrupt_ID := System.OS_Interface.SIGUSR1; -- user defined signal 1 SIGUSR2 : constant Interrupt_ID := System.OS_Interface.SIGUSR2; -- user defined signal 2 end Ada.Interrupts.Names;
reznikmm/matreshka
Ada
18,553
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ package AMF.Internals.Tables.OCL_Metamodel is pragma Preelaborate; function MM_OCL_OCL return AMF.Internals.CMOF_Element; function MC_OCL_Collection_Kind return AMF.Internals.CMOF_Element; function MC_OCL_Any_Type return AMF.Internals.CMOF_Element; function MC_OCL_Association_Class_Call_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Bag_Type return AMF.Internals.CMOF_Element; function MC_OCL_Boolean_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Call_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Collection_Item return AMF.Internals.CMOF_Element; function MC_OCL_Collection_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Collection_Literal_Part return AMF.Internals.CMOF_Element; function MC_OCL_Collection_Range return AMF.Internals.CMOF_Element; function MC_OCL_Collection_Type return AMF.Internals.CMOF_Element; function MC_OCL_Enum_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Expression_In_Ocl return AMF.Internals.CMOF_Element; function MC_OCL_Feature_Call_Exp return AMF.Internals.CMOF_Element; function MC_OCL_If_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Integer_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Invalid_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Invalid_Type return AMF.Internals.CMOF_Element; function MC_OCL_Iterate_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Iterator_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Let_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Loop_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Message_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Message_Type return AMF.Internals.CMOF_Element; function MC_OCL_Navigation_Call_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Null_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Numeric_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Ocl_Expression return AMF.Internals.CMOF_Element; function MC_OCL_Operation_Call_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Ordered_Set_Type return AMF.Internals.CMOF_Element; function MC_OCL_Primitive_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Property_Call_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Real_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Sequence_Type return AMF.Internals.CMOF_Element; function MC_OCL_Set_Type return AMF.Internals.CMOF_Element; function MC_OCL_State_Exp return AMF.Internals.CMOF_Element; function MC_OCL_String_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Template_Parameter_Type return AMF.Internals.CMOF_Element; function MC_OCL_Tuple_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Tuple_Literal_Part return AMF.Internals.CMOF_Element; function MC_OCL_Tuple_Type return AMF.Internals.CMOF_Element; function MC_OCL_Type_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Unlimited_Natural_Literal_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Unspecified_Value_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Variable return AMF.Internals.CMOF_Element; function MC_OCL_Variable_Exp return AMF.Internals.CMOF_Element; function MC_OCL_Void_Type return AMF.Internals.CMOF_Element; function MP_OCL_Association_Class_Call_Exp_Referred_Association_Class_A_Referring_Exp return AMF.Internals.CMOF_Element; function MP_OCL_Boolean_Literal_Exp_Boolean_Symbol return AMF.Internals.CMOF_Element; function MP_OCL_Call_Exp_Source_A_Applied_Element return AMF.Internals.CMOF_Element; function MP_OCL_Collection_Item_Item_A_Item1 return AMF.Internals.CMOF_Element; function MP_OCL_Collection_Literal_Exp_Kind return AMF.Internals.CMOF_Element; function MP_OCL_Collection_Literal_Exp_Part_A_Exp1 return AMF.Internals.CMOF_Element; function MP_OCL_Collection_Range_First_A_First_Owner return AMF.Internals.CMOF_Element; function MP_OCL_Collection_Range_Last_A_Last_Owner return AMF.Internals.CMOF_Element; function MP_OCL_Collection_Type_Element_Type_A_Type1 return AMF.Internals.CMOF_Element; function MP_OCL_Enum_Literal_Exp_Referred_Enum_Literal_A_Literal_Exp return AMF.Internals.CMOF_Element; function MP_OCL_Expression_In_Ocl_Body_Expression_A_Top_Expression return AMF.Internals.CMOF_Element; function MP_OCL_Expression_In_Ocl_Context_Variable_A_Self_Owner return AMF.Internals.CMOF_Element; function MP_OCL_Expression_In_Ocl_Generated_Type_A_Owning_Classifier return AMF.Internals.CMOF_Element; function MP_OCL_Expression_In_Ocl_Parameter_Variable_A_Var_Owner return AMF.Internals.CMOF_Element; function MP_OCL_Expression_In_Ocl_Result_Variable_A_Result_Owner return AMF.Internals.CMOF_Element; function MP_OCL_If_Exp_Condition_A_If_Owner return AMF.Internals.CMOF_Element; function MP_OCL_If_Exp_Else_Expression_A_Else_Owner return AMF.Internals.CMOF_Element; function MP_OCL_If_Exp_Then_Expression_A_Then_Owner return AMF.Internals.CMOF_Element; function MP_OCL_Integer_Literal_Exp_Integer_Symbol return AMF.Internals.CMOF_Element; function MP_OCL_Iterate_Exp_Result_A_Base_Exp return AMF.Internals.CMOF_Element; function MP_OCL_Let_Exp_In_A_Exp4 return AMF.Internals.CMOF_Element; function MP_OCL_Let_Exp_Variable_A_Exp5 return AMF.Internals.CMOF_Element; function MP_OCL_Loop_Exp_Body_A_Loop_Body_Owner return AMF.Internals.CMOF_Element; function MP_OCL_Loop_Exp_Iterator_A_Loop_Exp return AMF.Internals.CMOF_Element; function MP_OCL_Message_Exp_Argument_A_Exp2 return AMF.Internals.CMOF_Element; function MP_OCL_Message_Exp_Called_Operation_A_Exp6 return AMF.Internals.CMOF_Element; function MP_OCL_Message_Exp_Sent_Signal_A_Exp7 return AMF.Internals.CMOF_Element; function MP_OCL_Message_Exp_Target_A_Exp8 return AMF.Internals.CMOF_Element; function MP_OCL_Message_Type_Referred_Operation_A_Type2 return AMF.Internals.CMOF_Element; function MP_OCL_Message_Type_Referred_Signal_A_Type3 return AMF.Internals.CMOF_Element; function MP_OCL_Navigation_Call_Exp_Navigation_Source_A_Exp9 return AMF.Internals.CMOF_Element; function MP_OCL_Navigation_Call_Exp_Qualifier_A_Parent_Nav return AMF.Internals.CMOF_Element; function MP_OCL_Operation_Call_Exp_Argument_A_Parent_Call return AMF.Internals.CMOF_Element; function MP_OCL_Operation_Call_Exp_Referred_Operation_A_Refering_Exp return AMF.Internals.CMOF_Element; function MP_OCL_Property_Call_Exp_Referred_Property_A_Refering_Exp return AMF.Internals.CMOF_Element; function MP_OCL_Real_Literal_Exp_Real_Symbol return AMF.Internals.CMOF_Element; function MP_OCL_State_Exp_Referred_State_A_Exp9 return AMF.Internals.CMOF_Element; function MP_OCL_String_Literal_Exp_String_Symbol return AMF.Internals.CMOF_Element; function MP_OCL_Template_Parameter_Type_Specification return AMF.Internals.CMOF_Element; function MP_OCL_Tuple_Literal_Exp_Part_A_Exp3 return AMF.Internals.CMOF_Element; function MP_OCL_Tuple_Literal_Part_Attribute_A_Part2 return AMF.Internals.CMOF_Element; function MP_OCL_Type_Exp_Referred_Type_A_Exp11 return AMF.Internals.CMOF_Element; function MP_OCL_Unlimited_Natural_Literal_Exp_Unlimited_Natural_Symbol return AMF.Internals.CMOF_Element; function MP_OCL_Variable_Init_Expression_A_Initialized_Element return AMF.Internals.CMOF_Element; function MP_OCL_Variable_Represented_Parameter_A_Variable return AMF.Internals.CMOF_Element; function MP_OCL_Variable_Exp_Referred_Variable_A_Refering_Exp return AMF.Internals.CMOF_Element; function MP_OCL_A_First_Owner_Collection_Range_First return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp9_State_Exp_Referred_State return AMF.Internals.CMOF_Element; function MP_OCL_A_Last_Owner_Collection_Range_Last return AMF.Internals.CMOF_Element; function MP_OCL_A_Refering_Exp_Property_Call_Exp_Referred_Property return AMF.Internals.CMOF_Element; function MP_OCL_A_Type1_Collection_Type_Element_Type return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp3_Tuple_Literal_Exp_Part return AMF.Internals.CMOF_Element; function MP_OCL_A_Refering_Exp_Variable_Exp_Referred_Variable return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp11_Type_Exp_Referred_Type return AMF.Internals.CMOF_Element; function MP_OCL_A_Applied_Element_Call_Exp_Source return AMF.Internals.CMOF_Element; function MP_OCL_A_Top_Expression_Expression_In_Ocl_Body_Expression return AMF.Internals.CMOF_Element; function MP_OCL_A_Loop_Body_Owner_Loop_Exp_Body return AMF.Internals.CMOF_Element; function MP_OCL_A_Self_Owner_Expression_In_Ocl_Context_Variable return AMF.Internals.CMOF_Element; function MP_OCL_A_Loop_Exp_Loop_Exp_Iterator return AMF.Internals.CMOF_Element; function MP_OCL_A_Type3_Message_Type_Referred_Signal return AMF.Internals.CMOF_Element; function MP_OCL_A_Result_Owner_Expression_In_Ocl_Result_Variable return AMF.Internals.CMOF_Element; function MP_OCL_A_Type2_Message_Type_Referred_Operation return AMF.Internals.CMOF_Element; function MP_OCL_A_Var_Owner_Expression_In_Ocl_Parameter_Variable return AMF.Internals.CMOF_Element; function MP_OCL_A_Owning_Classifier_Expression_In_Ocl_Generated_Type return AMF.Internals.CMOF_Element; function MP_OCL_A_Literal_Exp_Enum_Literal_Exp_Referred_Enum_Literal return AMF.Internals.CMOF_Element; function MP_OCL_A_Part2_Tuple_Literal_Part_Attribute return AMF.Internals.CMOF_Element; function MP_OCL_A_Parent_Nav_Navigation_Call_Exp_Qualifier return AMF.Internals.CMOF_Element; function MP_OCL_A_Parent_Call_Operation_Call_Exp_Argument return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp9_Navigation_Call_Exp_Navigation_Source return AMF.Internals.CMOF_Element; function MP_OCL_A_Refering_Exp_Operation_Call_Exp_Referred_Operation return AMF.Internals.CMOF_Element; function MP_OCL_A_If_Owner_If_Exp_Condition return AMF.Internals.CMOF_Element; function MP_OCL_A_Then_Owner_If_Exp_Then_Expression return AMF.Internals.CMOF_Element; function MP_OCL_A_Referring_Exp_Association_Class_Call_Exp_Referred_Association_Class return AMF.Internals.CMOF_Element; function MP_OCL_A_Else_Owner_If_Exp_Else_Expression return AMF.Internals.CMOF_Element; function MP_OCL_A_Base_Exp_Iterate_Exp_Result return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp4_Let_Exp_In return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp8_Message_Exp_Target return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp1_Collection_Literal_Exp_Part return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp2_Message_Exp_Argument return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp5_Let_Exp_Variable return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp6_Message_Exp_Called_Operation return AMF.Internals.CMOF_Element; function MP_OCL_A_Item1_Collection_Item_Item return AMF.Internals.CMOF_Element; function MP_OCL_A_Initialized_Element_Variable_Init_Expression return AMF.Internals.CMOF_Element; function MP_OCL_A_Exp7_Message_Exp_Sent_Signal return AMF.Internals.CMOF_Element; function MP_OCL_A_Variable_Variable_Represented_Parameter return AMF.Internals.CMOF_Element; function MA_OCL_Collection_Range_First_First_Owner return AMF.Internals.CMOF_Element; function MA_OCL_State_Exp_Referred_State_Exp9 return AMF.Internals.CMOF_Element; function MA_OCL_Collection_Range_Last_Last_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Property_Call_Exp_Referred_Property_Refering_Exp return AMF.Internals.CMOF_Element; function MA_OCL_Collection_Type_Element_Type_Type1 return AMF.Internals.CMOF_Element; function MA_OCL_Tuple_Literal_Exp_Part_Exp3 return AMF.Internals.CMOF_Element; function MA_OCL_Variable_Exp_Referred_Variable_Refering_Exp return AMF.Internals.CMOF_Element; function MA_OCL_Type_Exp_Referred_Type_Exp11 return AMF.Internals.CMOF_Element; function MA_OCL_Call_Exp_Source_Applied_Element return AMF.Internals.CMOF_Element; function MA_OCL_Expression_In_Ocl_Body_Expression_Top_Expression return AMF.Internals.CMOF_Element; function MA_OCL_Loop_Exp_Body_Loop_Body_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Expression_In_Ocl_Context_Variable_Self_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Loop_Exp_Iterator_Loop_Exp return AMF.Internals.CMOF_Element; function MA_OCL_Message_Type_Referred_Signal_Type3 return AMF.Internals.CMOF_Element; function MA_OCL_Expression_In_Ocl_Result_Variable_Result_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Message_Type_Referred_Operation_Type2 return AMF.Internals.CMOF_Element; function MA_OCL_Expression_In_Ocl_Parameter_Variable_Var_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Expression_In_Ocl_Generated_Type_Owning_Classifier return AMF.Internals.CMOF_Element; function MA_OCL_Enum_Literal_Exp_Referred_Enum_Literal_Literal_Exp return AMF.Internals.CMOF_Element; function MA_OCL_Tuple_Literal_Part_Attribute_Part2 return AMF.Internals.CMOF_Element; function MA_OCL_Navigation_Call_Exp_Qualifier_Parent_Nav return AMF.Internals.CMOF_Element; function MA_OCL_Operation_Call_Exp_Argument_Parent_Call return AMF.Internals.CMOF_Element; function MA_OCL_Navigation_Call_Exp_Navigation_Source_Exp9 return AMF.Internals.CMOF_Element; function MA_OCL_Operation_Call_Exp_Referred_Operation_Refering_Exp return AMF.Internals.CMOF_Element; function MA_OCL_If_Exp_Condition_If_Owner return AMF.Internals.CMOF_Element; function MA_OCL_If_Exp_Then_Expression_Then_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Association_Class_Call_Exp_Referred_Association_Class_Referring_Exp return AMF.Internals.CMOF_Element; function MA_OCL_If_Exp_Else_Expression_Else_Owner return AMF.Internals.CMOF_Element; function MA_OCL_Iterate_Exp_Result_Base_Exp return AMF.Internals.CMOF_Element; function MA_OCL_Let_Exp_In_Exp4 return AMF.Internals.CMOF_Element; function MA_OCL_Message_Exp_Target_Exp8 return AMF.Internals.CMOF_Element; function MA_OCL_Collection_Literal_Exp_Part_Exp1 return AMF.Internals.CMOF_Element; function MA_OCL_Message_Exp_Argument_Exp2 return AMF.Internals.CMOF_Element; function MA_OCL_Let_Exp_Variable_Exp5 return AMF.Internals.CMOF_Element; function MA_OCL_Message_Exp_Called_Operation_Exp6 return AMF.Internals.CMOF_Element; function MA_OCL_Collection_Item_Item_Item1 return AMF.Internals.CMOF_Element; function MA_OCL_Variable_Init_Expression_Initialized_Element return AMF.Internals.CMOF_Element; function MA_OCL_Message_Exp_Sent_Signal_Exp7 return AMF.Internals.CMOF_Element; function MA_OCL_Variable_Represented_Parameter_Variable return AMF.Internals.CMOF_Element; function MB_OCL return AMF.Internals.AMF_Element; function ML_OCL return AMF.Internals.AMF_Element; private Base : AMF.Internals.CMOF_Element := 0; end AMF.Internals.Tables.OCL_Metamodel;
gitter-badger/libAnne
Ada
1,318
ads
package Colors.Models.Grayscale with Pure, Remote_Types is type Grayscale_Color is new Color with private; overriding function Red(Self : Grayscale_Color) return Percent with Pure_Function; overriding function Red(Self : Grayscale_Color) return Short_Short_Modular with Pure_Function; overriding function Green(Self : Grayscale_Color) return Percent with Pure_Function; overriding function Green(Self : Grayscale_Color) return Short_Short_Modular with Pure_Function; overriding function Blue(Self : Grayscale_Color) return Percent with Pure_Function; overriding function Blue(Self : Grayscale_Color) return Short_Short_Modular with Pure_Function; --overriding function Chroma(Self : Grayscale_Color) return Percent with Pure_Function; --overriding function Chroma(Self : Grayscale_Color) return Short_Short_Modular with Pure_Function; --overriding function Hue(Self : Grayscale_Color) return Angle with Pure_Function; function Gray(Intensity : Percent; α : Percent := 100.0) return Grayscale_Color with Pure_Function; function Gray(Intensity : Short_Short_Modular; α : Short_Short_Modular := Short_Short_Modular'Last) return Grayscale_Color with Pure_Function; private type Grayscale_Color is new Color with record Intensity : Short_Short_Modular; end record; end Colors.Models.Grayscale;
LiberatorUSA/GUCEF
Ada
1,453
adb
with Agar.Core.Thin; with C_String; with Interfaces.C; package body Agar.Core.Error is package C renames Interfaces.C; procedure Set_Error (Message : in String) is Ch_Message : aliased C.char_array := C.To_C (Message); Ch_Format : aliased C.char_array := C.To_C ("%s"); begin Thin.Error.Set_Error (Format => C_String.To_C_String (Ch_Format'Unchecked_Access), Data => C_String.To_C_String (Ch_Message'Unchecked_Access)); end Set_Error; procedure Fatal_Error (Message : in String) is Ch_Message : aliased C.char_array := C.To_C (Message); Ch_Format : aliased C.char_array := C.To_C ("%s"); begin Thin.Error.Fatal_Error (Format => C_String.To_C_String (Ch_Format'Unchecked_Access), Data => C_String.To_C_String (Ch_Message'Unchecked_Access)); end Fatal_Error; -- -- Proxy procedure to call error callback from C code. -- Error_Callback : Error_Callback_t := null; procedure Caller (Message : C_String.String_Not_Null_Ptr_t); pragma Convention (C, Caller); procedure Caller (Message : in C_String.String_Not_Null_Ptr_t) is begin if Error_Callback /= null then Error_Callback.all (C_String.To_String (Message)); end if; end Caller; procedure Set_Fatal_Callback (Callback : Error_Callback_Not_Null_t) is begin Error_Callback := Callback; Thin.Error.Set_Fatal_Callback (Caller'Access); end Set_Fatal_Callback; end Agar.Core.Error;
reznikmm/matreshka
Ada
3,644
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Math_Math_Elements is pragma Preelaborate; type ODF_Math_Math is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Math_Math_Access is access all ODF_Math_Math'Class with Storage_Size => 0; end ODF.DOM.Math_Math_Elements;
stcarrez/stm32-ui
Ada
379,464
ads
with UI.Images; package Gallery.Picture6 is Descriptor : constant UI.Images.Image_Descriptor; private Palette : aliased constant UI.Images.Color_Array := ( (13, 13, 13), (19, 20, 20), (27, 28, 27), (23, 24, 23), (15, 16, 16), (39, 27, 27), (30, 33, 30), (34, 35, 30), (51, 53, 28), (28, 30, 34), (31, 33, 33), (31, 40, 57), (36, 36, 36), (38, 41, 37), (41, 42, 38), (43, 44, 43), (39, 39, 40), (51, 44, 43), (46, 49, 45), (45, 50, 36), (50, 50, 45), (55, 57, 41), (44, 46, 51), (47, 49, 50), (51, 52, 51), (53, 57, 53), (58, 58, 53), (59, 60, 59), (55, 55, 56), (53, 46, 49), (43, 29, 35), (68, 60, 57), (76, 49, 52), (97, 31, 36), (61, 65, 59), (59, 68, 42), (59, 65, 27), (74, 89, 43), (67, 66, 61), (72, 71, 56), (76, 83, 54), (84, 89, 56), (80, 78, 50), (88, 103, 44), (93, 107, 51), (90, 102, 53), (86, 105, 44), (104, 119, 45), (98, 109, 55), (104, 117, 52), (106, 118, 49), (101, 80, 53), (59, 61, 67), (47, 58, 78), (80, 61, 67), (110, 59, 74), (62, 66, 67), (60, 68, 75), (58, 73, 85), (53, 87, 115), (67, 68, 67), (75, 74, 69), (67, 70, 74), (69, 73, 75), (75, 76, 75), (73, 71, 68), (85, 76, 71), (83, 82, 77), (90, 85, 74), (73, 76, 83), (77, 81, 83), (76, 83, 90), (83, 84, 83), (91, 85, 83), (92, 90, 85), (86, 89, 91), (91, 92, 91), (84, 86, 89), (80, 80, 78), (99, 87, 74), (99, 94, 91), (101, 90, 86), (108, 78, 80), (94, 97, 91), (92, 99, 70), (101, 104, 71), (99, 98, 93), (106, 98, 93), (103, 104, 88), (114, 112, 82), (89, 92, 99), (75, 84, 109), (108, 93, 98), (93, 97, 99), (92, 99, 107), (88, 105, 115), (100, 100, 99), (107, 101, 99), (107, 106, 101), (102, 105, 107), (107, 108, 107), (101, 103, 104), (115, 107, 104), (110, 113, 107), (114, 114, 109), (121, 117, 106), (108, 110, 114), (101, 106, 116), (109, 114, 117), (115, 116, 115), (118, 121, 123), (123, 124, 124), (120, 119, 119), (115, 110, 114), (159, 45, 35), (131, 124, 121), (136, 114, 109), (156, 92, 97), (188, 73, 68), (115, 131, 51), (126, 129, 121), (120, 131, 75), (132, 131, 124), (142, 137, 113), (158, 141, 87), (204, 169, 92), (58, 91, 167), (56, 96, 163), (71, 92, 145), (79, 101, 153), (124, 126, 130), (117, 122, 132), (109, 116, 141), (73, 102, 168), (83, 110, 175), (94, 116, 169), (43, 117, 199), (145, 123, 132), (206, 117, 139), (126, 129, 131), (124, 131, 138), (121, 136, 147), (109, 133, 168), (118, 139, 170), (125, 145, 172), (117, 140, 179), (124, 148, 182), (108, 133, 182), (92, 137, 161), (110, 150, 206), (61, 136, 215), (131, 132, 132), (132, 134, 137), (134, 137, 139), (139, 140, 140), (137, 136, 134), (147, 140, 138), (147, 145, 141), (140, 142, 145), (135, 139, 150), (142, 145, 147), (140, 146, 155), (147, 148, 148), (148, 150, 154), (155, 156, 156), (151, 152, 152), (144, 143, 143), (164, 154, 151), (163, 161, 158), (178, 166, 152), (132, 148, 172), (156, 158, 162), (150, 154, 165), (134, 153, 183), (142, 150, 177), (157, 162, 166), (150, 164, 185), (163, 164, 164), (164, 165, 170), (171, 171, 172), (167, 168, 170), (172, 173, 178), (165, 170, 181), (173, 177, 181), (179, 179, 180), (180, 181, 186), (182, 185, 187), (187, 188, 188), (185, 183, 182), (179, 175, 174), (161, 159, 160), (198, 172, 176), (133, 156, 194), (146, 156, 195), (139, 163, 198), (149, 169, 201), (156, 179, 213), (151, 174, 209), (189, 190, 194), (181, 186, 198), (164, 185, 215), (171, 181, 202), (166, 190, 225), (151, 176, 218), (198, 190, 196), (190, 192, 195), (187, 195, 203), (186, 198, 214), (173, 193, 220), (182, 202, 230), (179, 201, 230), (156, 195, 231), (194, 195, 197), (197, 198, 201), (199, 200, 203), (202, 203, 204), (200, 200, 199), (204, 206, 209), (196, 203, 216), (203, 211, 221), (203, 209, 214), (210, 211, 213), (212, 214, 218), (216, 218, 221), (209, 207, 209), (200, 215, 233), (212, 219, 227), (219, 222, 227), (212, 217, 229), (204, 217, 237), (221, 225, 229), (221, 227, 233), (214, 227, 234), (222, 234, 244), (214, 228, 242), (207, 224, 241), (226, 227, 230), (226, 230, 234), (230, 233, 237), (233, 235, 238), (231, 231, 232), (227, 237, 245), (235, 238, 241), (230, 235, 248), (237, 241, 244), (237, 244, 248), (231, 241, 247), (243, 244, 246), (246, 248, 247), (244, 247, 249), (246, 249, 250), (252, 253, 253), (248, 247, 249), (237, 240, 238), (225, 224, 227), (204, 198, 182) ); -- 256 colors Data : aliased constant UI.Images.Bitmap_Array := ( 33, 249, 4, 0, 0, 0, 0, 0, 33, 255, 11, 77, 71, 75, 56, 66, 73, 77, 48, 48, 48, 48, 34, 56, 66, 73, 77, 4, 4, 0, 0, 0, 0, 0, 22, 28, 2, 65, 0, 7, 100, 105, 103, 105, 75, 97, 109, 28, 2, 70, 0, 5, 52, 46, 50, 46, 48, 0, 33, 255, 11, 77, 71, 75, 73, 80, 84, 67, 48, 48, 48, 48, 22, 28, 2, 65, 0, 7, 100, 105, 103, 105, 75, 97, 109, 28, 2, 70, 0, 5, 52, 46, 50, 46, 48, 0, 44, 0, 0, 0, 0, 107, 1, 16, 1, 0, 8, 254, 0, 243, 9, 228, 135, 111, 31, 62, 125, 251, 18, 42, 92, 200, 176, 161, 195, 135, 16, 35, 74, 156, 72, 177, 162, 197, 139, 24, 51, 106, 220, 200, 113, 226, 177, 80, 32, 71, 133, 4, 249, 201, 216, 184, 147, 223, 78, 154, 99, 103, 110, 28, 59, 151, 236, 98, 154, 243, 71, 147, 38, 191, 142, 56, 115, 50, 68, 184, 239, 158, 192, 131, 248, 10, 10, 213, 73, 180, 168, 209, 163, 72, 147, 42, 157, 232, 206, 149, 200, 80, 79, 89, 141, 242, 180, 234, 228, 184, 148, 223, 252, 185, 156, 201, 242, 165, 63, 118, 95, 99, 126, 93, 74, 118, 33, 207, 125, 250, 244, 249, 204, 71, 240, 160, 190, 130, 101, 227, 202, 157, 75, 183, 46, 198, 143, 163, 242, 66, 101, 197, 10, 234, 53, 173, 39, 181, 190, 236, 186, 50, 102, 204, 118, 236, 224, 181, 27, 107, 247, 104, 90, 132, 106, 5, 178, 45, 136, 240, 96, 227, 203, 152, 51, 107, 230, 232, 207, 41, 43, 87, 80, 243, 178, 242, 116, 204, 95, 74, 192, 227, 190, 166, 142, 9, 207, 112, 187, 214, 53, 225, 109, 206, 8, 249, 49, 218, 183, 247, 114, 251, 196, 199, 239, 173, 193, 217, 192, 131, 11, 191, 204, 207, 22, 95, 190, 163, 142, 127, 146, 117, 53, 245, 106, 118, 231, 12, 39, 150, 142, 184, 230, 184, 126, 195, 33, 66, 70, 123, 251, 113, 90, 122, 186, 243, 254, 5, 109, 155, 240, 108, 246, 243, 232, 211, 103, 228, 183, 237, 184, 251, 85, 124, 179, 53, 199, 106, 248, 235, 74, 197, 210, 1, 155, 190, 119, 126, 59, 207, 218, 222, 233, 147, 143, 128, 247, 128, 183, 22, 65, 255, 169, 167, 224, 130, 12, 54, 196, 207, 61, 178, 184, 242, 30, 43, 178, 176, 210, 76, 75, 206, 157, 100, 24, 76, 133, 229, 167, 225, 55, 112, 13, 87, 91, 119, 229, 121, 55, 96, 62, 186, 229, 54, 80, 80, 227, 53, 232, 34, 93, 55, 189, 56, 17, 63, 252, 48, 67, 33, 133, 175, 176, 226, 75, 132, 183, 180, 228, 149, 96, 210, 5, 201, 78, 117, 169, 101, 213, 77, 112, 1, 38, 169, 100, 90, 3, 166, 40, 153, 120, 191, 113, 39, 227, 148, 70, 193, 21, 34, 149, 16, 181, 179, 138, 44, 175, 188, 2, 139, 44, 171, 188, 194, 37, 55, 93, 89, 5, 83, 76, 227, 32, 230, 154, 63, 139, 93, 197, 206, 55, 223, 104, 182, 228, 156, 75, 214, 83, 207, 61, 119, 254, 196, 98, 148, 88, 246, 105, 144, 62, 4, 241, 89, 81, 65, 49, 250, 233, 96, 50, 174, 136, 233, 165, 44, 198, 141, 98, 140, 88, 171, 165, 25, 164, 154, 67, 194, 3, 15, 77, 205, 117, 19, 103, 93, 255, 209, 233, 169, 119, 41, 174, 21, 84, 90, 65, 25, 106, 40, 101, 87, 46, 148, 170, 80, 148, 245, 102, 42, 67, 254, 218, 200, 34, 235, 151, 182, 144, 226, 203, 43, 198, 120, 211, 149, 105, 26, 170, 38, 100, 59, 192, 126, 5, 167, 55, 221, 200, 102, 215, 167, 200, 166, 229, 164, 168, 66, 249, 150, 234, 171, 11, 146, 154, 80, 161, 130, 54, 68, 25, 180, 12, 241, 211, 78, 48, 178, 218, 242, 138, 43, 140, 190, 146, 139, 55, 186, 142, 211, 82, 77, 147, 214, 247, 26, 98, 205, 141, 115, 13, 127, 114, 1, 152, 172, 167, 186, 229, 121, 15, 139, 105, 41, 244, 44, 182, 231, 177, 232, 239, 179, 33, 198, 184, 103, 66, 251, 154, 154, 12, 163, 92, 218, 162, 176, 194, 226, 120, 179, 213, 96, 234, 170, 187, 216, 107, 27, 94, 117, 141, 121, 73, 201, 27, 96, 61, 243, 6, 168, 162, 79, 42, 242, 246, 175, 148, 252, 246, 75, 242, 158, 86, 94, 57, 20, 171, 165, 86, 107, 234, 51, 222, 50, 186, 240, 45, 183, 100, 115, 78, 55, 46, 105, 120, 166, 107, 192, 6, 75, 241, 75, 41, 145, 75, 212, 118, 14, 117, 60, 103, 119, 145, 129, 44, 217, 120, 111, 93, 91, 114, 118, 41, 55, 189, 178, 190, 214, 178, 234, 50, 68, 212, 50, 56, 206, 42, 11, 43, 76, 243, 45, 214, 156, 243, 141, 174, 51, 117, 8, 177, 154, 139, 225, 183, 97, 74, 215, 176, 227, 152, 109, 73, 114, 172, 143, 220, 71, 39, 89, 226, 199, 79, 138, 87, 106, 254, 169, 249, 62, 77, 23, 79, 212, 18, 116, 211, 77, 44, 143, 252, 27, 161, 43, 143, 71, 163, 101, 211, 70, 116, 19, 160, 12, 210, 147, 76, 215, 52, 231, 130, 139, 51, 43, 145, 171, 179, 144, 135, 41, 54, 113, 165, 47, 157, 84, 13, 188, 29, 105, 108, 180, 167, 229, 113, 199, 49, 62, 226, 45, 141, 47, 130, 4, 251, 29, 151, 111, 130, 242, 164, 178, 191, 139, 91, 121, 184, 65, 133, 139, 28, 123, 68, 168, 146, 172, 222, 49, 182, 212, 146, 76, 45, 185, 228, 114, 140, 242, 166, 177, 227, 240, 75, 231, 184, 4, 44, 117, 136, 225, 55, 61, 88, 86, 93, 147, 181, 69, 254, 105, 204, 49, 221, 105, 129, 111, 119, 128, 72, 163, 21, 30, 235, 122, 142, 122, 109, 136, 24, 203, 126, 212, 222, 40, 167, 204, 59, 111, 122, 255, 59, 181, 253, 34, 195, 175, 208, 246, 84, 95, 45, 156, 54, 182, 56, 198, 45, 142, 129, 139, 99, 44, 239, 24, 145, 242, 198, 87, 208, 197, 185, 33, 253, 76, 44, 152, 202, 198, 145, 184, 215, 169, 211, 33, 139, 68, 242, 66, 81, 235, 130, 50, 160, 182, 244, 166, 105, 254, 115, 95, 78, 246, 182, 187, 245, 225, 203, 95, 27, 180, 90, 203, 212, 103, 56, 198, 89, 205, 84, 227, 184, 133, 242, 148, 103, 64, 99, 48, 195, 97, 86, 33, 7, 77, 192, 18, 150, 95, 245, 140, 77, 254, 236, 178, 74, 53, 220, 33, 17, 140, 229, 203, 130, 168, 131, 155, 119, 110, 115, 15, 1, 253, 68, 60, 8, 122, 204, 80, 110, 83, 48, 17, 174, 135, 106, 123, 106, 26, 141, 8, 214, 22, 160, 212, 47, 68, 41, 251, 215, 131, 240, 113, 143, 64, 221, 143, 139, 88, 220, 7, 225, 20, 52, 143, 100, 24, 48, 23, 187, 48, 134, 28, 115, 165, 31, 111, 144, 35, 38, 209, 163, 84, 126, 40, 117, 61, 212, 84, 35, 31, 69, 83, 136, 233, 144, 88, 183, 35, 46, 233, 73, 52, 162, 17, 66, 200, 3, 23, 218, 165, 206, 138, 23, 81, 89, 236, 254, 181, 72, 222, 116, 17, 119, 254, 250, 157, 24, 131, 162, 180, 220, 140, 138, 119, 37, 140, 146, 36, 255, 148, 30, 126, 24, 240, 148, 204, 160, 70, 51, 168, 177, 13, 173, 184, 82, 129, 98, 137, 14, 30, 127, 56, 164, 193, 80, 234, 42, 240, 248, 6, 55, 4, 249, 200, 65, 222, 6, 105, 72, 4, 38, 157, 158, 52, 42, 241, 72, 141, 133, 191, 227, 37, 36, 27, 146, 150, 237, 145, 16, 40, 199, 28, 15, 254, 88, 180, 198, 202, 136, 146, 112, 161, 66, 209, 189, 166, 57, 63, 80, 2, 37, 126, 234, 209, 134, 49, 170, 193, 12, 103, 56, 227, 24, 204, 56, 70, 55, 48, 101, 21, 88, 214, 82, 43, 88, 33, 71, 106, 218, 225, 14, 119, 28, 166, 98, 236, 254, 200, 134, 57, 164, 68, 200, 126, 10, 83, 73, 146, 105, 154, 128, 70, 69, 59, 248, 89, 115, 138, 203, 100, 166, 148, 6, 70, 77, 251, 37, 210, 147, 240, 203, 228, 26, 39, 185, 184, 7, 133, 106, 154, 12, 101, 25, 193, 12, 135, 30, 114, 28, 163, 26, 6, 172, 134, 53, 170, 225, 140, 109, 88, 197, 52, 195, 122, 9, 57, 192, 145, 13, 109, 100, 99, 27, 221, 104, 105, 53, 170, 193, 141, 111, 176, 195, 29, 148, 90, 137, 185, 156, 33, 15, 163, 253, 115, 78, 114, 19, 223, 18, 61, 85, 15, 68, 34, 168, 119, 40, 219, 93, 66, 171, 182, 198, 103, 70, 148, 117, 16, 45, 35, 68, 157, 106, 173, 249, 177, 40, 60, 23, 149, 230, 37, 37, 58, 205, 45, 162, 103, 28, 31, 29, 233, 49, 70, 106, 13, 249, 208, 4, 78, 104, 141, 41, 56, 116, 200, 51, 118, 121, 67, 27, 204, 144, 15, 176, 204, 177, 18, 186, 126, 67, 27, 63, 237, 103, 199, 132, 105, 167, 185, 205, 13, 145, 198, 132, 102, 55, 255, 52, 53, 80, 46, 179, 169, 153, 68, 170, 191, 66, 165, 155, 252, 13, 140, 33, 248, 179, 40, 99, 85, 164, 205, 243, 9, 174, 139, 151, 44, 163, 192, 208, 211, 142, 177, 142, 116, 166, 51, 53, 235, 56, 52, 5, 167, 108, 212, 20, 98, 64, 242, 199, 57, 16, 211, 142, 113, 100, 195, 25, 213, 184, 254, 41, 246, 92, 114, 13, 113, 228, 85, 168, 74, 212, 171, 188, 190, 231, 215, 162, 106, 176, 45, 111, 121, 75, 20, 7, 235, 194, 165, 238, 239, 112, 138, 181, 95, 101, 179, 218, 50, 228, 122, 243, 95, 147, 141, 110, 129, 116, 35, 184, 134, 54, 246, 94, 137, 76, 102, 112, 222, 193, 140, 106, 104, 99, 166, 218, 208, 70, 89, 225, 148, 26, 77, 145, 139, 135, 131, 209, 105, 144, 84, 139, 152, 109, 28, 67, 180, 128, 57, 70, 60, 30, 131, 219, 66, 2, 213, 59, 245, 165, 111, 248, 122, 123, 39, 214, 249, 87, 111, 138, 36, 168, 212, 14, 26, 66, 191, 153, 48, 139, 221, 188, 106, 168, 192, 35, 143, 198, 38, 245, 169, 87, 149, 172, 110, 12, 52, 89, 10, 107, 54, 179, 41, 226, 234, 121, 228, 33, 94, 178, 102, 227, 26, 217, 200, 198, 155, 140, 116, 13, 115, 1, 134, 37, 61, 196, 99, 45, 101, 194, 146, 108, 228, 202, 76, 217, 120, 134, 95, 231, 197, 79, 100, 229, 87, 191, 188, 181, 211, 157, 214, 50, 25, 183, 52, 243, 113, 222, 12, 114, 190, 170, 104, 168, 66, 233, 238, 155, 78, 101, 81, 101, 233, 209, 143, 123, 52, 56, 195, 241, 75, 236, 98, 201, 168, 155, 6, 131, 199, 194, 76, 158, 110, 168, 36, 252, 177, 109, 50, 180, 113, 147, 188, 204, 61, 174, 33, 94, 241, 102, 163, 26, 215, 232, 198, 254, 155, 78, 114, 141, 111, 204, 4, 38, 38, 118, 201, 57, 128, 20, 61, 127, 212, 213, 28, 237, 240, 168, 53, 176, 50, 14, 103, 160, 99, 198, 73, 156, 23, 248, 234, 27, 212, 185, 233, 184, 30, 246, 8, 207, 138, 62, 41, 56, 129, 14, 215, 50, 205, 18, 33, 35, 159, 58, 63, 12, 231, 134, 201, 12, 118, 178, 131, 49, 74, 205, 123, 105, 54, 69, 242, 120, 50, 168, 251, 209, 15, 122, 80, 152, 203, 211, 69, 17, 254, 208, 168, 93, 187, 240, 195, 165, 213, 56, 115, 75, 77, 235, 166, 108, 148, 203, 62, 46, 97, 231, 143, 114, 150, 222, 193, 248, 3, 164, 56, 35, 151, 51, 232, 17, 104, 67, 210, 105, 208, 199, 238, 173, 161, 117, 76, 89, 182, 76, 134, 84, 234, 235, 205, 7, 205, 168, 212, 107, 181, 175, 79, 89, 83, 161, 67, 175, 186, 228, 123, 244, 163, 193, 13, 46, 53, 68, 173, 10, 93, 15, 86, 89, 211, 185, 1, 119, 184, 155, 92, 32, 81, 51, 214, 64, 218, 148, 102, 22, 157, 69, 80, 175, 198, 171, 27, 225, 157, 117, 136, 179, 97, 211, 110, 168, 57, 82, 179, 101, 231, 87, 128, 21, 29, 171, 20, 198, 42, 217, 200, 197, 53, 200, 117, 141, 103, 228, 245, 159, 192, 196, 173, 80, 145, 173, 227, 101, 27, 186, 217, 245, 59, 106, 52, 161, 233, 47, 219, 241, 137, 127, 50, 50, 178, 85, 254, 55, 154, 216, 197, 49, 150, 212, 20, 150, 7, 120, 216, 61, 213, 19, 242, 38, 55, 15, 69, 119, 110, 154, 12, 238, 116, 123, 219, 221, 82, 149, 199, 59, 180, 188, 27, 255, 110, 149, 163, 215, 38, 11, 55, 246, 109, 218, 51, 239, 249, 27, 252, 206, 202, 185, 94, 130, 161, 113, 192, 195, 158, 49, 149, 160, 75, 222, 209, 90, 31, 157, 132, 28, 221, 200, 69, 53, 198, 230, 140, 115, 252, 178, 123, 159, 226, 45, 160, 241, 187, 177, 138, 47, 251, 208, 246, 242, 9, 141, 6, 4, 237, 75, 66, 49, 184, 81, 251, 77, 130, 30, 169, 76, 244, 196, 104, 179, 37, 140, 232, 65, 21, 124, 233, 43, 235, 134, 221, 59, 223, 116, 67, 169, 44, 85, 80, 59, 89, 212, 53, 79, 209, 60, 156, 108, 225, 195, 119, 25, 125, 94, 206, 31, 220, 25, 87, 151, 161, 19, 61, 214, 14, 11, 113, 232, 222, 28, 24, 151, 184, 131, 26, 161, 80, 131, 22, 182, 208, 132, 46, 172, 225, 18, 178, 104, 91, 107, 173, 50, 172, 177, 234, 210, 25, 227, 43, 159, 160, 247, 139, 227, 253, 126, 15, 237, 204, 86, 180, 64, 57, 72, 70, 39, 114, 144, 31, 61, 70, 21, 169, 136, 86, 173, 237, 128, 81, 61, 199, 143, 114, 115, 165, 153, 162, 198, 219, 188, 201, 18, 142, 62, 117, 105, 100, 115, 221, 236, 252, 29, 141, 71, 60, 186, 67, 254, 109, 106, 83, 75, 215, 162, 232, 75, 172, 78, 130, 238, 16, 111, 132, 88, 27, 215, 72, 51, 56, 82, 194, 111, 253, 164, 6, 48, 243, 168, 198, 32, 138, 96, 3, 29, 20, 161, 8, 52, 176, 129, 15, 124, 80, 4, 38, 48, 194, 24, 231, 32, 54, 223, 208, 48, 228, 162, 11, 206, 240, 13, 37, 149, 87, 97, 71, 123, 100, 103, 104, 22, 199, 95, 184, 183, 99, 75, 19, 88, 173, 83, 129, 247, 242, 68, 143, 67, 66, 206, 162, 73, 5, 182, 32, 17, 5, 89, 36, 55, 63, 210, 117, 110, 161, 246, 105, 91, 198, 88, 212, 135, 115, 151, 182, 130, 52, 247, 109, 37, 152, 110, 166, 22, 106, 137, 55, 89, 2, 161, 118, 84, 69, 27, 228, 247, 16, 236, 17, 98, 214, 0, 14, 224, 64, 46, 99, 163, 64, 129, 145, 21, 40, 1, 15, 178, 176, 5, 107, 144, 8, 161, 64, 8, 131, 64, 8, 132, 176, 6, 71, 224, 3, 63, 32, 133, 69, 128, 7, 205, 224, 14, 230, 16, 132, 5, 120, 128, 205, 64, 15, 220, 49, 72, 27, 147, 108, 12, 24, 84, 17, 120, 104, 246, 144, 39, 174, 163, 62, 1, 85, 84, 232, 211, 99, 31, 132, 47, 199, 4, 74, 4, 102, 88, 171, 50, 28, 34, 167, 81, 186, 67, 114, 139, 53, 85, 222, 118, 110, 101, 164, 130, 39, 200, 88, 56, 103, 32, 44, 247, 100, 53, 39, 131, 254, 42, 23, 131, 50, 199, 88, 2, 17, 135, 165, 131, 17, 252, 208, 82, 214, 176, 13, 228, 66, 46, 228, 96, 71, 88, 65, 132, 87, 225, 15, 181, 48, 8, 137, 144, 8, 92, 176, 5, 54, 80, 3, 69, 224, 3, 71, 160, 5, 101, 16, 133, 52, 112, 127, 72, 16, 10, 110, 86, 137, 228, 146, 11, 101, 37, 99, 122, 85, 104, 202, 70, 134, 16, 136, 118, 246, 112, 134, 120, 66, 76, 121, 35, 30, 120, 51, 129, 241, 195, 72, 114, 135, 80, 203, 167, 84, 30, 88, 88, 247, 131, 59, 83, 181, 92, 160, 134, 106, 147, 101, 81, 47, 40, 15, 236, 198, 96, 245, 224, 130, 136, 152, 141, 244, 144, 141, 134, 8, 136, 35, 51, 20, 32, 23, 17, 214, 148, 131, 11, 65, 15, 215, 0, 14, 221, 80, 137, 195, 178, 126, 214, 113, 21, 223, 64, 14, 213, 96, 11, 75, 72, 122, 69, 208, 4, 71, 96, 3, 52, 80, 3, 250, 104, 3, 163, 103, 3, 56, 240, 3, 63, 112, 6, 206, 48, 14, 220, 80, 137, 220, 80, 51, 212, 240, 103, 11, 72, 123, 98, 167, 108, 12, 153, 139, 101, 152, 104, 138, 198, 99, 26, 212, 68, 106, 1, 124, 60, 198, 123, 172, 3, 40, 138, 52, 124, 114, 248, 76, 162, 164, 32, 71, 38, 126, 201, 183, 135, 145, 23, 42, 134, 184, 136, 161, 194, 114, 233, 166, 125, 220, 248, 146, 220, 135, 254, 136, 243, 240, 109, 219, 184, 120, 60, 215, 88, 228, 134, 19, 121, 40, 17, 242, 64, 137, 222, 48, 54, 105, 229, 48, 228, 53, 148, 222, 48, 68, 238, 64, 14, 218, 16, 12, 137, 176, 6, 90, 208, 4, 90, 48, 138, 163, 200, 1, 252, 136, 127, 247, 215, 4, 178, 48, 54, 233, 232, 13, 7, 121, 13, 206, 112, 99, 99, 103, 123, 128, 38, 62, 57, 86, 113, 186, 168, 99, 188, 136, 55, 20, 89, 89, 26, 84, 145, 122, 67, 76, 249, 51, 105, 4, 179, 129, 148, 97, 77, 201, 68, 100, 151, 33, 63, 97, 148, 96, 227, 177, 77, 124, 57, 130, 54, 199, 15, 56, 87, 130, 221, 232, 100, 216, 136, 136, 238, 160, 115, 50, 120, 120, 219, 184, 141, 212, 152, 141, 125, 40, 110, 224, 129, 47, 170, 242, 113, 19, 1, 66, 228, 40, 37, 240, 0, 132, 104, 101, 26, 164, 229, 142, 104, 245, 13, 224, 32, 15, 12, 49, 15, 228, 224, 10, 132, 208, 148, 71, 128, 127, 250, 104, 1, 245, 136, 143, 82, 8, 10, 228, 194, 13, 233, 120, 13, 183, 208, 12, 219, 240, 149, 74, 210, 144, 12, 104, 123, 99, 9, 145, 102, 121, 150, 148, 133, 85, 26, 36, 129, 138, 150, 55, 154, 245, 69, 208, 150, 81, 200, 8, 102, 131, 115, 92, 155, 161, 109, 213, 166, 88, 45, 119, 114, 41, 121, 114, 45, 249, 119, 242, 0, 152, 135, 254, 23, 106, 135, 121, 152, 239, 160, 115, 223, 233, 152, 47, 217, 15, 243, 80, 130, 165, 102, 97, 72, 214, 92, 19, 33, 63, 85, 21, 72, 251, 48, 98, 89, 145, 21, 254, 240, 131, 158, 249, 153, 221, 32, 154, 220, 145, 93, 251, 80, 154, 128, 160, 5, 90, 64, 127, 28, 80, 3, 22, 144, 3, 91, 144, 3, 52, 224, 3, 57, 192, 8, 196, 226, 111, 222, 208, 12, 183, 224, 12, 246, 112, 95, 98, 25, 55, 100, 215, 87, 101, 136, 123, 103, 185, 99, 185, 81, 84, 203, 162, 77, 21, 137, 113, 146, 225, 65, 151, 132, 22, 95, 86, 25, 83, 68, 40, 194, 33, 114, 228, 182, 106, 63, 39, 93, 79, 70, 115, 136, 168, 105, 234, 118, 115, 49, 154, 141, 135, 9, 147, 139, 39, 131, 165, 22, 106, 228, 201, 163, 224, 214, 125, 232, 201, 55, 122, 169, 70, 20, 49, 100, 11, 165, 131, 239, 121, 26, 52, 113, 41, 235, 247, 153, 228, 229, 48, 28, 73, 164, 107, 199, 49, 252, 80, 14, 137, 208, 148, 77, 64, 3, 249, 104, 1, 28, 80, 138, 7, 106, 3, 139, 176, 160, 67, 119, 11, 131, 112, 11, 14, 184, 155, 15, 233, 144, 14, 120, 123, 103, 119, 161, 246, 64, 15, 136, 134, 39, 209, 197, 161, 225, 161, 161, 104, 89, 131, 101, 244, 95, 7, 177, 56, 125, 83, 146, 97, 102, 151, 118, 49, 146, 6, 81, 93, 254, 152, 181, 151, 212, 71, 93, 161, 18, 120, 239, 240, 14, 40, 135, 125, 6, 114, 101, 219, 184, 157, 142, 23, 106, 139, 122, 163, 242, 112, 163, 244, 80, 158, 48, 185, 169, 50, 104, 106, 236, 246, 80, 21, 149, 72, 139, 116, 22, 59, 9, 130, 150, 49, 56, 215, 198, 15, 250, 241, 21, 185, 68, 90, 67, 105, 26, 222, 208, 83, 157, 242, 75, 188, 177, 15, 245, 16, 12, 107, 112, 3, 247, 88, 3, 52, 96, 1, 172, 137, 143, 90, 138, 7, 48, 21, 83, 183, 0, 6, 93, 144, 14, 135, 70, 161, 18, 151, 166, 23, 138, 161, 136, 22, 167, 43, 56, 167, 206, 184, 22, 157, 164, 118, 33, 138, 156, 194, 117, 66, 220, 129, 80, 250, 130, 162, 192, 1, 97, 24, 245, 80, 132, 215, 135, 41, 242, 157, 45, 121, 158, 47, 201, 152, 48, 25, 158, 245, 196, 169, 151, 202, 157, 242, 160, 169, 50, 40, 175, 212, 168, 101, 137, 52, 70, 219, 212, 145, 139, 83, 53, 105, 212, 72, 189, 225, 52, 188, 243, 32, 239, 103, 41, 239, 0, 15, 63, 248, 147, 78, 74, 46, 150, 225, 27, 182, 177, 63, 245, 240, 106, 132, 112, 4, 162, 184, 154, 22, 160, 165, 21, 139, 3, 153, 224, 13, 214, 96, 13, 198, 144, 9, 70, 208, 10, 104, 167, 166, 244, 149, 99, 188, 105, 161, 69, 229, 172, 207, 250, 172, 112, 170, 161, 118, 186, 254, 161, 77, 244, 139, 60, 6, 50, 74, 147, 55, 76, 163, 81, 116, 232, 92, 36, 244, 173, 33, 201, 105, 124, 55, 89, 164, 198, 120, 224, 25, 158, 50, 136, 125, 136, 72, 15, 66, 139, 152, 217, 248, 116, 217, 24, 15, 155, 186, 168, 139, 10, 175, 151, 106, 169, 222, 23, 93, 22, 229, 65, 15, 38, 40, 205, 245, 99, 208, 38, 72, 4, 225, 100, 64, 100, 41, 247, 48, 159, 78, 250, 142, 99, 51, 14, 191, 244, 133, 174, 194, 19, 166, 198, 15, 228, 16, 177, 162, 232, 171, 53, 0, 1, 90, 122, 1, 52, 128, 3, 163, 208, 13, 35, 85, 11, 99, 112, 4, 225, 96, 104, 249, 64, 55, 36, 59, 118, 125, 149, 139, 109, 26, 129, 103, 104, 39, 18, 121, 39, 138, 27, 93, 191, 200, 150, 218, 132, 145, 63, 1, 92, 234, 179, 113, 148, 230, 16, 133, 18, 142, 85, 162, 70, 129, 50, 56, 189, 19, 121, 17, 182, 146, 207, 167, 152, 85, 150, 141, 66, 235, 180, 225, 41, 180, 135, 55, 15, 239, 208, 157, 237, 234, 14, 223, 249, 157, 172, 235, 186, 139, 58, 15, 172, 187, 186, 239, 58, 15, 158, 170, 130, 146, 213, 113, 103, 20, 100, 53, 166, 72, 188, 3, 25, 130, 67, 117, 150, 66, 106, 237, 240, 147, 245, 73, 94, 224, 208, 14, 144, 83, 40, 205, 180, 63, 192, 55, 15, 243, 160, 14, 132, 96, 3, 19, 254, 107, 1, 2, 170, 143, 116, 11, 4, 182, 208, 13, 205, 64, 11, 186, 224, 5, 141, 224, 183, 129, 123, 166, 102, 55, 99, 100, 120, 178, 17, 137, 184, 187, 152, 184, 120, 210, 178, 41, 162, 161, 120, 250, 91, 135, 186, 118, 172, 211, 104, 159, 244, 73, 32, 228, 187, 128, 186, 20, 117, 200, 39, 211, 84, 120, 227, 42, 115, 13, 118, 180, 234, 74, 106, 228, 185, 141, 55, 106, 186, 210, 27, 175, 79, 139, 136, 182, 91, 79, 150, 90, 169, 238, 16, 15, 18, 172, 186, 18, 28, 187, 171, 251, 14, 229, 233, 130, 43, 72, 15, 92, 6, 124, 155, 123, 84, 132, 85, 88, 127, 194, 145, 205, 36, 45, 15, 82, 176, 212, 8, 15, 247, 0, 15, 174, 138, 176, 155, 216, 13, 243, 64, 164, 61, 193, 31, 149, 33, 47, 247, 144, 14, 211, 155, 8, 245, 151, 189, 53, 144, 0, 189, 202, 1, 52, 128, 4, 198, 208, 12, 120, 192, 10, 80, 40, 99, 127, 123, 190, 182, 216, 155, 38, 219, 172, 135, 139, 184, 236, 91, 47, 205, 23, 191, 32, 67, 167, 42, 2, 185, 199, 25, 124, 234, 243, 92, 189, 83, 109, 179, 129, 151, 208, 53, 192, 3, 252, 109, 233, 86, 152, 136, 232, 130, 108, 236, 130, 178, 235, 180, 245, 68, 176, 72, 43, 131, 55, 218, 174, 192, 34, 193, 171, 155, 193, 174, 219, 174, 81, 91, 79, 29, 28, 175, 254, 219, 120, 158, 49, 232, 124, 94, 22, 40, 36, 26, 151, 110, 209, 113, 128, 2, 25, 97, 68, 152, 253, 0, 15, 253, 192, 15, 99, 67, 14, 104, 85, 159, 217, 80, 70, 9, 33, 79, 237, 112, 182, 143, 33, 109, 249, 32, 189, 229, 64, 8, 58, 128, 143, 112, 203, 165, 53, 192, 1, 56, 48, 6, 242, 119, 4, 107, 176, 6, 132, 224, 87, 108, 199, 95, 15, 89, 104, 78, 92, 184, 84, 124, 134, 237, 107, 39, 127, 103, 197, 209, 138, 150, 40, 104, 173, 3, 193, 167, 209, 68, 92, 120, 89, 23, 131, 51, 81, 96, 6, 198, 83, 6, 115, 43, 185, 115, 58, 74, 169, 115, 28, 106, 51, 73, 158, 110, 12, 187, 123, 156, 193, 15, 188, 157, 224, 89, 79, 241, 208, 14, 161, 70, 79, 135, 9, 206, 122, 60, 206, 238, 0, 15, 212, 232, 130, 49, 120, 158, 5, 226, 124, 145, 123, 76, 123, 247, 134, 223, 212, 104, 77, 227, 109, 143, 12, 47, 237, 224, 170, 159, 57, 14, 228, 2, 14, 55, 33, 15, 254, 64, 14, 247, 224, 14, 128, 212, 19, 128, 196, 145, 108, 65, 35, 211, 91, 14, 128, 144, 127, 2, 10, 183, 52, 64, 196, 24, 171, 11, 90, 64, 10, 179, 144, 3, 50, 118, 178, 34, 75, 178, 131, 27, 178, 205, 154, 178, 184, 220, 120, 45, 75, 97, 211, 42, 179, 107, 87, 131, 244, 35, 162, 137, 131, 254, 135, 33, 249, 27, 152, 171, 20, 155, 53, 74, 87, 53, 174, 92, 198, 110, 164, 139, 180, 165, 27, 180, 236, 90, 79, 121, 76, 79, 244, 244, 192, 47, 41, 193, 242, 32, 206, 65, 77, 206, 68, 237, 199, 220, 8, 164, 72, 141, 158, 255, 202, 42, 164, 34, 162, 82, 196, 52, 164, 130, 34, 63, 155, 16, 244, 176, 126, 63, 121, 213, 159, 73, 46, 244, 64, 14, 237, 240, 32, 161, 6, 124, 39, 193, 188, 128, 226, 91, 244, 32, 16, 210, 187, 13, 162, 184, 165, 14, 141, 1, 255, 88, 11, 172, 224, 6, 160, 160, 3, 140, 64, 150, 16, 184, 166, 232, 203, 166, 82, 108, 134, 245, 64, 15, 187, 232, 178, 228, 42, 167, 140, 181, 184, 105, 105, 84, 62, 150, 73, 55, 123, 162, 97, 150, 25, 151, 171, 73, 101, 60, 115, 63, 43, 106, 140, 10, 193, 179, 107, 186, 78, 75, 187, 216, 156, 199, 18, 204, 211, 58, 253, 157, 54, 121, 125, 208, 204, 193, 177, 203, 199, 153, 61, 218, 224, 76, 187, 56, 42, 15, 245, 160, 114, 168, 189, 99, 240, 6, 124, 3, 113, 173, 173, 115, 129, 128, 149, 72, 249, 176, 115, 250, 146, 149, 64, 57, 44, 112, 130, 117, 221, 64, 15, 94, 231, 218, 243, 48, 14, 242, 180, 15, 231, 240, 65, 77, 28, 106, 2, 161, 14, 241, 160, 12, 244, 167, 143, 11, 64, 3, 30, 80, 3, 174, 254, 217, 5, 206, 144, 11, 178, 16, 7, 69, 112, 209, 81, 108, 39, 77, 252, 183, 2, 113, 104, 3, 98, 171, 183, 231, 166, 243, 128, 203, 125, 29, 191, 45, 219, 15, 196, 89, 156, 128, 5, 96, 223, 104, 63, 194, 211, 191, 113, 97, 111, 85, 211, 216, 160, 123, 15, 140, 234, 130, 15, 188, 193, 148, 93, 169, 220, 57, 206, 59, 125, 199, 178, 43, 152, 219, 55, 180, 116, 92, 212, 245, 212, 51, 224, 12, 187, 80, 203, 180, 137, 169, 110, 166, 182, 215, 174, 253, 218, 120, 138, 145, 205, 54, 225, 121, 195, 185, 251, 224, 13, 212, 32, 65, 8, 11, 132, 228, 210, 13, 224, 176, 13, 252, 224, 14, 131, 99, 64, 239, 80, 226, 251, 32, 208, 2, 34, 32, 241, 240, 226, 118, 146, 14, 235, 96, 15, 193, 96, 3, 54, 224, 171, 216, 235, 1, 62, 160, 165, 52, 160, 9, 221, 96, 12, 159, 192, 8, 186, 64, 150, 120, 125, 178, 221, 253, 183, 250, 224, 14, 207, 48, 12, 218, 16, 15, 28, 109, 39, 168, 61, 15, 236, 219, 190, 232, 237, 215, 44, 219, 178, 233, 195, 22, 33, 35, 101, 144, 102, 162, 220, 106, 119, 147, 4, 93, 214, 217, 15, 145, 45, 205, 224, 9, 15, 166, 123, 205, 254, 144, 78, 54, 195, 157, 226, 204, 211, 154, 237, 180, 51, 72, 106, 67, 203, 224, 153, 45, 206, 9, 238, 199, 25, 252, 223, 254, 172, 251, 146, 169, 109, 15, 137, 8, 30, 15, 50, 16, 212, 58, 191, 30, 234, 140, 247, 187, 16, 240, 208, 225, 69, 151, 142, 90, 232, 111, 103, 86, 219, 251, 153, 12, 207, 48, 56, 155, 220, 14, 94, 248, 65, 169, 189, 218, 246, 160, 14, 158, 158, 8, 188, 218, 1, 171, 73, 138, 68, 108, 4, 184, 64, 13, 150, 115, 11, 226, 80, 215, 58, 246, 221, 69, 165, 15, 112, 170, 15, 218, 224, 10, 202, 128, 172, 77, 220, 172, 156, 158, 203, 128, 189, 235, 234, 189, 161, 3, 236, 73, 33, 51, 232, 63, 247, 96, 83, 179, 129, 231, 209, 84, 122, 200, 73, 127, 215, 100, 48, 42, 205, 252, 157, 230, 56, 101, 142, 227, 98, 12, 199, 96, 12, 220, 224, 205, 56, 117, 231, 11, 142, 125, 215, 185, 115, 133, 249, 116, 217, 142, 83, 111, 78, 79, 231, 144, 224, 2, 222, 157, 81, 107, 218, 239, 154, 174, 222, 55, 181, 126, 157, 77, 50, 187, 235, 2, 161, 16, 253, 96, 14, 227, 116, 13, 214, 192, 13, 250, 158, 13, 7, 203, 160, 215, 208, 12, 251, 160, 13, 199, 64, 226, 243, 240, 32, 251, 240, 207, 197, 221, 201, 127, 27, 15, 128, 46, 15, 246, 192, 195, 228, 176, 5, 188, 218, 171, 22, 224, 1, 60, 110, 3, 109, 96, 12, 184, 176, 11, 151, 243, 190, 227, 45, 32, 220, 189, 15, 241, 128, 14, 207, 240, 254, 10, 179, 158, 14, 251, 208, 221, 134, 251, 172, 230, 77, 229, 191, 30, 42, 26, 106, 198, 47, 71, 179, 7, 237, 229, 164, 180, 176, 162, 20, 48, 192, 209, 156, 24, 21, 93, 141, 169, 223, 151, 61, 218, 244, 64, 13, 181, 208, 11, 32, 150, 13, 212, 96, 64, 214, 48, 14, 150, 77, 117, 111, 252, 192, 48, 154, 186, 104, 62, 15, 79, 167, 224, 226, 46, 238, 112, 158, 231, 120, 174, 199, 115, 124, 180, 129, 94, 32, 252, 96, 97, 90, 172, 150, 27, 10, 164, 240, 130, 15, 240, 48, 14, 36, 181, 177, 248, 254, 97, 249, 174, 239, 178, 9, 14, 204, 192, 12, 227, 144, 12, 191, 13, 14, 199, 128, 233, 218, 96, 182, 206, 86, 76, 242, 16, 15, 243, 240, 226, 233, 160, 14, 243, 128, 12, 69, 192, 171, 56, 206, 154, 52, 144, 3, 62, 32, 10, 184, 160, 11, 144, 255, 103, 101, 40, 16, 237, 144, 12, 143, 48, 12, 207, 192, 10, 140, 112, 155, 189, 216, 209, 185, 92, 222, 187, 152, 14, 158, 6, 85, 241, 238, 105, 166, 63, 232, 191, 85, 70, 21, 9, 124, 240, 205, 191, 242, 141, 25, 96, 52, 236, 125, 249, 179, 223, 166, 223, 5, 155, 199, 152, 125, 199, 239, 112, 13, 154, 48, 8, 181, 112, 239, 32, 118, 13, 198, 160, 117, 227, 96, 205, 170, 171, 169, 81, 79, 230, 78, 134, 193, 235, 162, 224, 206, 254, 223, 14, 171, 133, 83, 231, 144, 14, 208, 127, 238, 64, 173, 211, 229, 201, 205, 69, 219, 125, 90, 102, 39, 138, 200, 136, 48, 24, 131, 212, 199, 126, 227, 244, 12, 31, 182, 111, 101, 117, 121, 6, 68, 154, 245, 196, 12, 190, 144, 8, 131, 112, 12, 103, 184, 200, 3, 117, 16, 249, 96, 193, 233, 0, 248, 131, 63, 15, 62, 172, 214, 15, 160, 143, 0, 145, 129, 70, 25, 92, 179, 112, 237, 114, 86, 79, 97, 61, 125, 10, 245, 229, 139, 23, 14, 217, 179, 120, 249, 244, 165, 83, 101, 107, 225, 70, 142, 246, 60, 214, 243, 24, 210, 94, 58, 123, 248, 44, 222, 203, 151, 239, 30, 202, 124, 248, 88, 186, 92, 153, 82, 165, 74, 150, 41, 241, 241, 227, 215, 18, 159, 62, 124, 61, 123, 238, 219, 135, 47, 168, 79, 160, 63, 135, 2, 69, 154, 84, 233, 82, 166, 77, 157, 50, 21, 202, 111, 168, 207, 158, 247, 124, 174, 188, 215, 175, 223, 189, 119, 242, 228, 205, 123, 23, 214, 221, 216, 119, 238, 202, 190, 107, 247, 174, 90, 38, 56, 106, 212, 200, 202, 150, 205, 154, 181, 108, 213, 174, 25, 59, 102, 140, 156, 60, 174, 93, 189, 222, 251, 75, 175, 159, 188, 178, 99, 219, 29, 70, 124, 238, 92, 59, 197, 234, 14, 167, 91, 220, 46, 221, 56, 201, 236, 218, 205, 107, 55, 86, 179, 60, 205, 241, 56, 127, 254, 246, 44, 143, 222, 232, 123, 164, 249, 145, 174, 135, 53, 53, 214, 123, 10, 233, 205, 163, 183, 242, 221, 183, 111, 217, 154, 89, 171, 86, 45, 219, 181, 184, 220, 228, 202, 157, 91, 183, 218, 62, 109, 185, 102, 97, 42, 115, 228, 8, 147, 54, 183, 204, 213, 227, 60, 51, 101, 189, 120, 233, 230, 89, 87, 151, 174, 156, 22, 27, 52, 104, 212, 120, 96, 193, 6, 7, 239, 153, 120, 225, 234, 165, 11, 157, 62, 123, 28, 227, 145, 155, 167, 47, 103, 191, 122, 249, 230, 133, 107, 207, 113, 97, 72, 121, 33, 227, 217, 251, 143, 36, 123, 80, 186, 231, 161, 147, 100, 106, 73, 38, 147, 164, 163, 137, 192, 6, 109, 18, 106, 167, 163, 136, 42, 74, 168, 125, 244, 97, 74, 170, 167, 54, 228, 208, 169, 8, 247, 193, 137, 42, 170, 178, 194, 167, 31, 151, 180, 90, 201, 171, 175, 206, 210, 172, 197, 195, 220, 249, 164, 13, 54, 200, 88, 163, 140, 80, 226, 210, 205, 26, 106, 174, 97, 198, 152, 91, 152, 241, 39, 54, 191, 228, 25, 76, 69, 121, 224, 49, 236, 48, 203, 20, 99, 82, 49, 118, 198, 161, 140, 177, 196, 16, 163, 210, 157, 121, 52, 187, 44, 51, 119, 188, 26, 235, 171, 209, 190, 28, 77, 52, 210, 188, 74, 109, 53, 192, 84, 236, 135, 158, 119, 252, 241, 198, 29, 118, 170, 225, 198, 155, 110, 124, 195, 254, 177, 174, 223, 180, 169, 166, 153, 102, 140, 169, 229, 147, 68, 180, 40, 162, 136, 35, 144, 56, 162, 8, 35, 142, 96, 132, 16, 91, 26, 170, 175, 190, 175, 218, 201, 110, 158, 121, 242, 73, 166, 134, 238, 44, 192, 180, 3, 239, 104, 232, 130, 22, 89, 14, 74, 72, 191, 70, 231, 169, 135, 158, 141, 24, 205, 103, 163, 252, 68, 242, 232, 191, 120, 94, 29, 41, 29, 170, 112, 210, 199, 192, 155, 120, 234, 137, 31, 159, 16, 196, 138, 31, 172, 82, 210, 181, 167, 90, 35, 36, 234, 39, 163, 52, 92, 10, 217, 14, 151, 69, 74, 170, 15, 45, 124, 54, 40, 156, 172, 170, 138, 181, 20, 233, 33, 204, 171, 176, 196, 106, 17, 73, 179, 206, 121, 39, 151, 50, 214, 88, 99, 140, 56, 202, 192, 228, 154, 107, 114, 195, 109, 174, 106, 152, 57, 134, 25, 118, 176, 53, 82, 69, 120, 94, 108, 135, 29, 197, 198, 105, 242, 28, 115, 250, 101, 76, 49, 198, 198, 58, 39, 73, 44, 91, 212, 236, 74, 206, 138, 140, 237, 75, 232, 0, 131, 142, 47, 107, 75, 21, 237, 30, 120, 160, 180, 216, 152, 93, 154, 193, 38, 155, 110, 230, 236, 166, 78, 185, 114, 51, 38, 151, 88, 212, 24, 68, 144, 34, 186, 243, 161, 8, 31, 108, 200, 193, 135, 37, 24, 57, 134, 159, 82, 77, 85, 232, 171, 116, 94, 149, 39, 158, 123, 8, 254, 177, 193, 134, 26, 32, 176, 96, 1, 31, 54, 192, 193, 7, 79, 154, 161, 134, 154, 93, 208, 73, 181, 35, 250, 68, 237, 8, 36, 86, 91, 173, 46, 214, 116, 182, 222, 233, 86, 159, 134, 21, 54, 216, 96, 83, 34, 240, 30, 95, 77, 90, 41, 167, 92, 49, 196, 21, 41, 98, 129, 194, 137, 89, 185, 147, 178, 176, 89, 15, 167, 202, 245, 108, 107, 87, 218, 42, 197, 108, 181, 45, 108, 44, 120, 174, 116, 113, 158, 99, 216, 40, 131, 140, 49, 212, 40, 35, 145, 28, 173, 209, 198, 93, 109, 180, 129, 247, 26, 120, 74, 51, 210, 44, 180, 150, 60, 199, 31, 117, 160, 228, 215, 95, 129, 219, 249, 119, 177, 115, 38, 51, 253, 244, 197, 48, 115, 71, 203, 22, 61, 235, 178, 159, 121, 100, 247, 138, 222, 122, 229, 137, 152, 175, 216, 90, 163, 135, 157, 111, 228, 217, 231, 29, 102, 236, 250, 103, 23, 93, 116, 97, 90, 183, 144, 179, 241, 237, 221, 92, 106, 241, 197, 13, 65, 86, 113, 99, 11, 29, 186, 59, 34, 7, 26, 154, 32, 99, 20, 86, 108, 217, 70, 119, 50, 115, 166, 199, 179, 121, 180, 17, 26, 83, 76, 47, 160, 97, 3, 26, 206, 192, 102, 23, 92, 94, 209, 70, 212, 252, 168, 206, 249, 106, 0, 95, 125, 149, 164, 173, 61, 218, 218, 176, 240, 214, 54, 161, 12, 107, 88, 50, 233, 213, 175, 254, 100, 18, 162, 160, 240, 164, 40, 65, 225, 144, 178, 230, 150, 20, 9, 46, 165, 110, 32, 146, 86, 136, 114, 117, 19, 95, 101, 101, 111, 131, 121, 199, 153, 8, 19, 150, 193, 121, 11, 30, 239, 240, 86, 235, 90, 87, 15, 110, 12, 98, 92, 99, 32, 131, 23, 24, 161, 46, 107, 172, 107, 93, 213, 168, 97, 54, 224, 149, 13, 190, 168, 200, 44, 134, 97, 146, 58, 216, 241, 185, 208, 249, 43, 96, 77, 50, 7, 101, 138, 168, 175, 23, 181, 238, 50, 8, 27, 203, 149, 252, 34, 169, 193, 72, 234, 118, 70, 42, 85, 105, 0, 211, 14, 169, 184, 227, 26, 222, 240, 6, 109, 190, 17, 50, 107, 56, 67, 23, 121, 201, 77, 92, 192, 225, 35, 91, 196, 194, 13, 109, 96, 69, 40, 216, 80, 4, 26, 28, 65, 11, 90, 48, 2, 24, 218, 144, 137, 81, 124, 226, 19, 176, 56, 198, 56, 114, 86, 175, 120, 188, 99, 30, 64, 163, 129, 5, 58, 16, 30, 31, 112, 128, 3, 62, 152, 69, 53, 168, 161, 11, 90, 196, 67, 33, 247, 195, 95, 71, 248, 179, 63, 0, 109, 237, 58, 91, 3, 101, 58, 46, 84, 64, 12, 237, 4, 87, 194, 106, 155, 129, 200, 182, 18, 152, 176, 36, 88, 20, 186, 224, 178, 98, 41, 55, 156, 72, 69, 89, 81, 1, 209, 135, 32, 24, 33, 13, 230, 10, 43, 213, 98, 77, 15, 181, 254, 69, 152, 18, 158, 240, 135, 131, 67, 24, 59, 228, 81, 142, 68, 112, 65, 13, 107, 96, 92, 38, 120, 163, 46, 106, 94, 35, 56, 216, 224, 197, 49, 190, 33, 194, 36, 157, 67, 95, 80, 34, 199, 57, 198, 97, 142, 210, 137, 142, 73, 232, 56, 71, 56, 211, 89, 196, 128, 29, 38, 30, 136, 73, 71, 59, 56, 163, 37, 192, 105, 101, 118, 87, 180, 98, 189, 238, 1, 34, 126, 244, 227, 139, 221, 144, 211, 24, 1, 42, 198, 144, 81, 3, 47, 185, 200, 5, 242, 158, 135, 9, 53, 132, 66, 22, 159, 208, 130, 15, 180, 0, 77, 45, 168, 65, 16, 140, 8, 69, 40, 252, 232, 199, 100, 108, 227, 63, 251, 235, 153, 164, 158, 65, 71, 76, 13, 13, 3, 52, 224, 64, 15, 22, 193, 141, 185, 224, 226, 25, 245, 232, 199, 71, 54, 50, 53, 85, 181, 231, 106, 252, 155, 7, 255, 2, 228, 191, 0, 66, 144, 39, 60, 121, 37, 174, 126, 10, 212, 5, 166, 170, 131, 192, 18, 145, 46, 31, 56, 65, 12, 118, 232, 39, 206, 218, 16, 180, 42, 148, 212, 189, 97, 165, 111, 89, 33, 18, 224, 182, 5, 22, 119, 24, 243, 135, 95, 77, 203, 57, 62, 81, 6, 53, 144, 129, 113, 161, 168, 38, 187, 172, 89, 67, 106, 192, 139, 26, 237, 128, 14, 89, 218, 225, 143, 125, 129, 14, 156, 225, 28, 7, 58, 199, 33, 254, 14, 209, 65, 73, 175, 232, 136, 18, 149, 4, 11, 69, 67, 146, 101, 75, 101, 153, 135, 145, 20, 182, 37, 35, 233, 106, 31, 240, 184, 6, 64, 37, 43, 198, 48, 130, 209, 178, 96, 172, 139, 113, 110, 145, 139, 81, 160, 171, 22, 171, 248, 68, 185, 6, 145, 136, 53, 184, 1, 19, 131, 0, 197, 70, 85, 177, 81, 87, 56, 227, 28, 251, 123, 213, 57, 230, 49, 8, 148, 94, 64, 125, 43, 251, 193, 20, 172, 241, 13, 29, 221, 66, 36, 48, 205, 15, 77, 247, 3, 29, 171, 1, 200, 184, 252, 251, 95, 40, 183, 166, 14, 159, 238, 242, 38, 192, 226, 199, 79, 157, 165, 171, 156, 52, 232, 87, 93, 51, 214, 219, 152, 90, 65, 167, 216, 114, 66, 198, 194, 32, 180, 160, 106, 20, 170, 86, 181, 111, 90, 41, 146, 138, 182, 181, 45, 43, 117, 213, 44, 39, 236, 74, 89, 228, 217, 142, 177, 150, 85, 13, 96, 120, 197, 90, 35, 87, 195, 107, 224, 201, 134, 204, 200, 5, 15, 49, 115, 24, 113, 142, 227, 115, 228, 64, 7, 130, 209, 41, 206, 112, 54, 88, 28, 228, 32, 135, 56, 30, 140, 96, 114, 140, 195, 31, 144, 138, 76, 60, 9, 172, 97, 119, 196, 35, 97, 135, 53, 228, 144, 24, 187, 165, 14, 123, 37, 110, 240, 0, 135, 100, 193, 56, 70, 22, 95, 86, 78, 0, 181, 172, 53, 102, 81, 11, 254, 89, 140, 97, 16, 181, 176, 133, 32, 218, 16, 135, 54, 184, 65, 122, 158, 184, 68, 40, 250, 184, 209, 79, 172, 182, 200, 183, 8, 135, 171, 94, 139, 140, 75, 89, 128, 3, 22, 136, 25, 15, 144, 240, 10, 29, 97, 99, 22, 226, 0, 73, 150, 63, 130, 73, 45, 235, 207, 184, 243, 216, 159, 114, 65, 121, 161, 6, 222, 132, 42, 11, 36, 74, 173, 198, 198, 32, 8, 81, 8, 67, 16, 108, 42, 83, 41, 24, 149, 91, 146, 215, 185, 112, 150, 234, 119, 69, 180, 183, 203, 5, 83, 48, 105, 26, 225, 122, 185, 197, 94, 191, 104, 174, 75, 237, 32, 173, 26, 22, 55, 6, 91, 80, 206, 154, 185, 161, 38, 158, 32, 157, 139, 93, 248, 3, 44, 140, 225, 23, 148, 214, 57, 142, 10, 87, 88, 194, 226, 128, 146, 132, 35, 28, 225, 4, 235, 85, 29, 141, 137, 140, 148, 50, 19, 79, 194, 25, 70, 82, 80, 124, 29, 89, 76, 242, 88, 108, 72, 22, 198, 44, 166, 205, 173, 193, 248, 49, 204, 118, 195, 26, 178, 152, 69, 91, 100, 113, 12, 76, 48, 98, 12, 140, 184, 4, 27, 4, 17, 10, 65, 100, 130, 21, 152, 240, 227, 32, 84, 235, 71, 85, 192, 194, 25, 235, 88, 238, 26, 106, 192, 1, 12, 108, 155, 3, 69, 8, 194, 15, 218, 160, 13, 142, 241, 194, 25, 94, 222, 8, 238, 66, 2, 102, 145, 254, 192, 170, 127, 213, 9, 144, 214, 68, 153, 20, 249, 44, 40, 38, 42, 73, 42, 7, 17, 164, 160, 124, 227, 25, 110, 201, 178, 155, 134, 242, 220, 84, 182, 157, 18, 188, 196, 122, 27, 47, 19, 158, 221, 17, 237, 141, 48, 41, 202, 138, 154, 184, 162, 213, 179, 176, 200, 144, 217, 234, 138, 224, 230, 49, 14, 66, 136, 193, 190, 110, 48, 6, 13, 113, 163, 155, 180, 58, 13, 23, 178, 184, 134, 60, 230, 202, 105, 78, 227, 245, 174, 159, 134, 249, 167, 33, 220, 114, 112, 158, 131, 136, 253, 210, 112, 19, 161, 232, 225, 14, 143, 37, 29, 45, 146, 199, 77, 246, 241, 141, 106, 128, 3, 28, 150, 29, 232, 199, 186, 65, 155, 48, 194, 152, 215, 31, 243, 88, 51, 124, 33, 136, 50, 136, 66, 23, 178, 64, 142, 22, 202, 176, 4, 55, 140, 2, 19, 152, 96, 197, 39, 24, 33, 246, 79, 104, 180, 236, 26, 213, 40, 43, 146, 161, 141, 121, 12, 35, 104, 137, 180, 0, 6, 142, 224, 3, 32, 140, 97, 46, 214, 216, 197, 43, 214, 161, 229, 75, 110, 217, 239, 197, 101, 55, 214, 140, 43, 230, 173, 89, 176, 39, 51, 169, 42, 181, 68, 148, 160, 89, 97, 247, 40, 112, 110, 138, 82, 151, 138, 103, 14, 30, 28, 225, 122, 118, 174, 153, 47, 255, 212, 242, 30, 190, 186, 165, 9, 161, 86, 212, 20, 223, 65, 155, 254, 37, 91, 253, 240, 139, 183, 228, 185, 141, 25, 185, 101, 13, 153, 216, 205, 221, 237, 34, 23, 108, 56, 205, 120, 212, 192, 6, 45, 110, 129, 14, 119, 128, 14, 212, 49, 159, 112, 132, 197, 177, 141, 9, 19, 159, 248, 49, 255, 107, 191, 76, 167, 153, 157, 33, 6, 51, 172, 59, 12, 225, 14, 243, 142, 124, 236, 35, 31, 221, 168, 134, 210, 149, 254, 141, 166, 227, 58, 215, 218, 87, 58, 56, 172, 169, 11, 60, 148, 129, 17, 186, 184, 69, 40, 154, 64, 131, 14, 216, 192, 13, 161, 192, 196, 34, 194, 46, 237, 177, 103, 84, 163, 174, 80, 133, 253, 19, 161, 10, 87, 36, 67, 11, 52, 232, 142, 26, 184, 128, 28, 48, 2, 27, 208, 2, 89, 112, 134, 130, 120, 133, 151, 234, 143, 46, 235, 15, 220, 201, 50, 171, 249, 40, 86, 241, 159, 48, 219, 153, 49, 171, 144, 81, 210, 135, 196, 219, 155, 93, 201, 7, 181, 65, 37, 97, 129, 188, 89, 114, 27, 169, 210, 165, 98, 241, 137, 87, 234, 55, 188, 201, 174, 169, 8, 145, 94, 66, 56, 170, 192, 149, 126, 128, 7, 118, 176, 65, 118, 128, 135, 126, 248, 64, 95, 65, 61, 192, 249, 140, 245, 10, 52, 110, 49, 12, 121, 48, 134, 53, 96, 3, 53, 104, 3, 50, 136, 133, 186, 168, 33, 220, 104, 6, 93, 232, 5, 92, 224, 133, 102, 200, 13, 187, 208, 254, 133, 89, 224, 6, 119, 16, 190, 152, 251, 6, 113, 240, 134, 225, 19, 190, 47, 28, 190, 227, 147, 48, 50, 156, 57, 197, 8, 167, 5, 99, 146, 201, 16, 172, 156, 67, 12, 87, 147, 138, 123, 184, 134, 90, 211, 190, 49, 218, 53, 239, 91, 186, 60, 4, 191, 110, 192, 134, 62, 68, 133, 46, 96, 3, 91, 208, 133, 87, 240, 2, 148, 170, 1, 55, 0, 5, 77, 16, 132, 62, 98, 132, 68, 104, 3, 104, 211, 191, 178, 115, 133, 140, 242, 35, 53, 248, 132, 65, 216, 130, 39, 179, 128, 11, 64, 130, 34, 96, 2, 55, 184, 5, 219, 232, 5, 91, 248, 8, 117, 195, 164, 191, 107, 183, 86, 81, 69, 80, 234, 159, 79, 130, 138, 189, 81, 136, 214, 48, 147, 123, 67, 137, 92, 209, 9, 161, 203, 179, 55, 195, 16, 238, 50, 60, 22, 140, 193, 124, 75, 65, 96, 20, 70, 104, 137, 144, 82, 66, 49, 74, 34, 133, 81, 24, 133, 82, 40, 133, 85, 32, 133, 88, 120, 133, 0, 243, 7, 171, 232, 139, 140, 171, 184, 176, 24, 33, 23, 33, 176, 121, 120, 5, 50, 136, 3, 53, 96, 3, 55, 104, 6, 112, 200, 134, 73, 138, 194, 94, 216, 133, 166, 153, 5, 107, 162, 33, 106, 144, 5, 99, 56, 7, 224, 19, 195, 79, 243, 6, 227, 11, 135, 109, 184, 199, 47, 220, 6, 114, 32, 195, 7, 227, 171, 10, 254, 91, 48, 200, 240, 166, 113, 128, 12, 126, 113, 7, 199, 128, 20, 72, 129, 140, 233, 147, 10, 118, 216, 145, 61, 124, 177, 238, 251, 24, 49, 18, 168, 240, 251, 24, 112, 168, 189, 92, 128, 3, 48, 8, 5, 62, 33, 173, 239, 24, 132, 81, 240, 132, 69, 100, 182, 53, 128, 130, 65, 64, 187, 80, 80, 133, 68, 8, 5, 150, 28, 178, 56, 88, 182, 68, 192, 196, 161, 161, 1, 32, 56, 130, 53, 176, 134, 113, 112, 6, 94, 120, 5, 116, 0, 9, 48, 131, 14, 118, 187, 164, 46, 75, 69, 87, 25, 9, 216, 250, 164, 194, 43, 65, 97, 153, 24, 193, 40, 13, 210, 96, 141, 84, 177, 137, 91, 148, 65, 59, 131, 27, 170, 152, 138, 93, 202, 188, 97, 228, 74, 97, 84, 188, 96, 164, 144, 123, 240, 6, 106, 40, 133, 81, 16, 5, 81, 24, 5, 82, 240, 5, 82, 112, 70, 95, 40, 5, 77, 200, 132, 76, 16, 5, 89, 160, 6, 118, 72, 9, 108, 244, 139, 109, 9, 52, 39, 234, 170, 124, 97, 12, 134, 98, 131, 54, 40, 131, 76, 216, 133, 88, 136, 133, 89, 152, 66, 92, 216, 145, 248, 105, 134, 221, 184, 6, 106, 152, 139, 205, 122, 176, 122, 252, 52, 227, 243, 134, 112, 240, 71, 111, 224, 199, 109, 224, 76, 206, 28, 195, 125, 124, 48, 116, 16, 53, 188, 170, 176, 115, 208, 43, 130, 108, 146, 254, 54, 148, 45, 235, 243, 6, 102, 72, 177, 139, 172, 195, 201, 202, 195, 138, 180, 200, 110, 120, 205, 218, 163, 6, 77, 208, 2, 60, 200, 5, 86, 104, 132, 79, 88, 25, 54, 8, 5, 81, 120, 131, 81, 8, 133, 65, 232, 2, 45, 144, 182, 178, 83, 133, 213, 82, 73, 141, 202, 132, 75, 148, 182, 65, 240, 205, 68, 32, 4, 45, 8, 2, 32, 88, 3, 231, 208, 6, 90, 32, 5, 159, 188, 154, 190, 163, 135, 155, 242, 143, 227, 26, 137, 254, 81, 174, 90, 1, 27, 106, 81, 141, 167, 76, 13, 48, 249, 18, 14, 76, 193, 184, 113, 160, 2, 106, 188, 9, 185, 179, 174, 12, 70, 95, 220, 51, 151, 104, 56, 17, 193, 144, 123, 0, 135, 94, 136, 5, 90, 224, 35, 90, 64, 5, 102, 92, 75, 101, 92, 5, 101, 100, 5, 103, 124, 75, 79, 168, 5, 111, 80, 137, 188, 20, 52, 20, 18, 172, 118, 160, 12, 119, 168, 134, 192, 36, 3, 48, 64, 130, 77, 152, 133, 116, 164, 6, 61, 217, 133, 145, 195, 5, 222, 112, 76, 187, 160, 134, 90, 224, 6, 225, 219, 6, 49, 60, 190, 125, 228, 204, 122, 236, 76, 207, 244, 76, 8, 131, 57, 10, 75, 62, 130, 244, 81, 38, 193, 52, 38, 177, 10, 120, 176, 6, 58, 220, 67, 237, 91, 177, 60, 124, 177, 217, 52, 186, 38, 141, 139, 117, 145, 133, 46, 32, 254, 131, 85, 120, 5, 46, 224, 128, 28, 248, 1, 53, 80, 70, 56, 0, 5, 86, 112, 3, 209, 26, 132, 252, 155, 196, 178, 35, 178, 79, 16, 132, 75, 232, 177, 103, 195, 4, 88, 96, 133, 65, 56, 2, 27, 0, 5, 110, 104, 134, 90, 152, 133, 250, 241, 136, 158, 241, 59, 143, 24, 79, 47, 251, 168, 11, 28, 137, 235, 72, 74, 89, 249, 165, 149, 120, 207, 44, 2, 147, 193, 0, 19, 49, 185, 42, 107, 185, 69, 171, 144, 22, 253, 60, 56, 21, 228, 74, 73, 189, 138, 106, 241, 79, 19, 49, 17, 96, 42, 16, 125, 240, 6, 2, 165, 133, 89, 64, 133, 76, 16, 178, 77, 112, 3, 196, 241, 2, 46, 240, 2, 48, 112, 166, 56, 96, 73, 195, 36, 133, 76, 208, 132, 90, 216, 166, 245, 210, 28, 45, 81, 146, 124, 177, 12, 40, 145, 135, 85, 88, 3, 38, 112, 2, 35, 144, 166, 106, 192, 134, 220, 192, 6, 42, 20, 14, 186, 152, 38, 117, 169, 139, 91, 176, 134, 225, 67, 135, 27, 237, 204, 112, 176, 209, 27, 29, 195, 123, 228, 199, 50, 220, 66, 82, 155, 57, 154, 99, 18, 114, 104, 7, 88, 240, 214, 109, 194, 7, 111, 176, 139, 61, 52, 186, 216, 212, 195, 167, 3, 191, 38, 53, 58, 199, 196, 133, 54, 208, 130, 76, 184, 133, 79, 112, 178, 13, 240, 2, 79, 24, 5, 62, 130, 63, 69, 254, 147, 54, 150, 100, 201, 34, 51, 59, 65, 248, 4, 76, 184, 4, 112, 252, 4, 86, 208, 4, 80, 48, 75, 218, 154, 2, 42, 195, 59, 99, 136, 192, 85, 129, 14, 123, 192, 150, 242, 52, 207, 172, 169, 64, 194, 219, 9, 107, 113, 202, 216, 72, 19, 248, 252, 18, 49, 129, 79, 137, 97, 141, 5, 177, 212, 73, 157, 42, 73, 253, 202, 61, 91, 217, 124, 51, 17, 86, 74, 188, 18, 41, 76, 90, 160, 217, 89, 24, 133, 68, 96, 131, 53, 208, 130, 37, 88, 2, 59, 106, 130, 59, 106, 130, 160, 253, 89, 49, 88, 68, 82, 96, 70, 82, 200, 133, 118, 184, 135, 180, 72, 11, 180, 112, 162, 195, 128, 18, 13, 21, 167, 116, 34, 131, 36, 104, 130, 192, 76, 209, 187, 171, 161, 219, 104, 66, 106, 122, 82, 21, 213, 5, 103, 248, 204, 206, 212, 204, 24, 133, 214, 179, 165, 86, 105, 221, 66, 81, 75, 48, 8, 3, 44, 8, 83, 135, 217, 138, 5, 109, 144, 135, 55, 201, 190, 35, 93, 87, 237, 123, 77, 117, 213, 219, 215, 20, 191, 107, 200, 133, 76, 96, 130, 53, 144, 133, 85, 40, 2, 14, 0, 2, 47, 208, 177, 78, 144, 133, 232, 36, 4, 233, 241, 163, 140, 226, 63, 50, 245, 147, 129, 29, 4, 25, 129, 182, 179, 12, 133, 82, 216, 132, 38, 48, 2, 99, 195, 3, 82, 176, 133, 9, 156, 88, 254, 242, 132, 21, 78, 234, 211, 234, 32, 9, 64, 13, 37, 158, 88, 9, 144, 5, 89, 64, 179, 157, 209, 232, 10, 108, 9, 19, 193, 216, 29, 2, 105, 165, 93, 225, 202, 161, 56, 155, 147, 245, 207, 89, 161, 84, 96, 228, 155, 146, 181, 9, 127, 232, 5, 84, 168, 89, 90, 24, 133, 55, 168, 17, 35, 36, 132, 209, 34, 132, 53, 240, 2, 45, 56, 130, 160, 101, 130, 38, 56, 2, 35, 96, 130, 51, 48, 5, 89, 72, 208, 85, 232, 134, 64, 59, 161, 12, 173, 43, 113, 114, 7, 91, 232, 130, 30, 107, 131, 81, 112, 204, 181, 122, 95, 21, 85, 209, 184, 216, 141, 108, 64, 158, 105, 69, 219, 27, 221, 76, 110, 224, 76, 110, 8, 7, 126, 132, 48, 28, 29, 205, 208, 132, 48, 8, 107, 7, 111, 224, 4, 45, 160, 133, 118, 0, 7, 106, 216, 91, 188, 53, 215, 137, 84, 186, 166, 235, 219, 249, 189, 134, 93, 88, 5, 46, 208, 2, 79, 144, 5, 38, 160, 129, 53, 208, 132, 81, 24, 2, 35, 32, 133, 68, 16, 4, 104, 91, 78, 179, 99, 73, 248, 91, 45, 65, 16, 132, 49, 104, 3, 65, 72, 132, 79, 32, 5, 163, 237, 4, 226, 68, 2, 84, 24, 131, 34, 40, 131, 81, 0, 207, 254, 176, 7, 32, 86, 197, 33, 118, 21, 119, 131, 21, 194, 43, 188, 141, 125, 202, 47, 73, 19, 138, 253, 254, 88, 49, 49, 146, 119, 176, 29, 175, 160, 216, 221, 201, 221, 215, 85, 32, 123, 251, 165, 134, 211, 160, 170, 210, 155, 14, 52, 27, 30, 108, 56, 62, 67, 11, 111, 152, 5, 96, 155, 5, 90, 40, 133, 65, 64, 201, 70, 243, 135, 113, 168, 165, 211, 104, 135, 108, 232, 147, 53, 40, 148, 159, 237, 196, 38, 128, 131, 85, 136, 133, 100, 220, 5, 175, 200, 12, 42, 161, 43, 127, 0, 172, 188, 2, 29, 114, 200, 132, 30, 131, 131, 69, 160, 134, 216, 11, 142, 105, 18, 191, 39, 93, 30, 241, 235, 152, 39, 236, 76, 109, 184, 81, 254, 69, 91, 76, 166, 86, 206, 140, 176, 25, 197, 76, 127, 196, 76, 117, 32, 135, 95, 224, 2, 66, 96, 134, 214, 52, 82, 91, 67, 210, 37, 13, 153, 7, 158, 224, 35, 189, 6, 114, 236, 6, 117, 161, 164, 55, 64, 130, 54, 144, 5, 47, 192, 1, 112, 188, 4, 50, 240, 1, 76, 208, 4, 54, 24, 132, 75, 136, 92, 251, 243, 4, 202, 245, 186, 208, 82, 131, 75, 128, 213, 62, 46, 133, 179, 52, 133, 41, 184, 132, 69, 176, 133, 107, 224, 133, 109, 160, 14, 193, 51, 74, 0, 193, 83, 35, 182, 192, 157, 74, 46, 174, 169, 138, 134, 129, 79, 209, 11, 147, 172, 186, 162, 218, 81, 19, 219, 149, 226, 69, 213, 162, 152, 232, 192, 49, 230, 192, 122, 102, 141, 223, 254, 189, 170, 18, 225, 155, 126, 224, 7, 112, 120, 208, 85, 152, 133, 87, 240, 5, 230, 253, 132, 91, 24, 135, 102, 1, 30, 160, 224, 231, 164, 16, 30, 136, 42, 130, 160, 45, 20, 38, 184, 132, 62, 22, 133, 164, 69, 11, 196, 88, 18, 187, 178, 171, 115, 200, 5, 54, 120, 3, 65, 112, 131, 89, 168, 223, 224, 160, 223, 175, 253, 91, 117, 169, 101, 222, 152, 164, 27, 213, 6, 77, 222, 6, 78, 206, 95, 109, 176, 86, 126, 252, 223, 26, 189, 214, 225, 147, 176, 95, 160, 3, 46, 144, 5, 102, 232, 17, 102, 104, 154, 218, 235, 195, 89, 150, 172, 1, 237, 5, 108, 72, 49, 53, 66, 210, 35, 149, 19, 90, 166, 38, 107, 192, 133, 88, 16, 133, 38, 80, 2, 79, 96, 131, 237, 65, 130, 32, 224, 0, 30, 112, 131, 148, 113, 161, 50, 32, 132, 68, 192, 87, 149, 164, 92, 79, 192, 4, 19, 102, 3, 77, 16, 5, 77, 32, 5, 84, 48, 218, 82, 224, 4, 48, 96, 131, 9, 205, 6, 132, 64, 74, 157, 114, 55, 212, 197, 235, 163, 68, 226, 116, 80, 7, 92, 193, 226, 116, 190, 157, 241, 244, 10, 158, 17, 13, 49, 145, 226, 47, 145, 226, 120, 126, 74, 123, 102, 165, 86, 74, 60, 20, 225, 64, 120, 246, 160, 95, 218, 10, 168, 228, 7, 111, 96, 5, 58, 29, 5, 42, 101, 133, 99, 96, 7, 254, 179, 73, 17, 28, 220, 167, 123, 24, 7, 179, 161, 16, 126, 32, 7, 86, 216, 130, 65, 41, 148, 34, 88, 131, 68, 16, 133, 87, 144, 5, 166, 77, 140, 186, 58, 228, 80, 195, 4, 233, 17, 4, 79, 168, 95, 175, 125, 210, 221, 48, 58, 106, 26, 110, 101, 197, 6, 93, 224, 76, 78, 134, 105, 255, 117, 105, 229, 142, 214, 23, 229, 76, 107, 37, 219, 111, 96, 6, 78, 160, 131, 94, 40, 210, 141, 97, 154, 161, 238, 195, 62, 196, 33, 241, 251, 135, 84, 56, 133, 84, 104, 6, 160, 134, 96, 8, 62, 105, 108, 232, 5, 90, 48, 5, 46, 40, 130, 54, 160, 45, 45, 200, 129, 184, 179, 1, 31, 64, 2, 53, 104, 132, 65, 40, 213, 50, 32, 43, 105, 179, 191, 79, 240, 132, 77, 104, 4, 144, 110, 132, 183, 172, 97, 102, 140, 102, 48, 80, 194, 184, 48, 163, 173, 121, 55, 254, 129, 45, 216, 50, 98, 228, 26, 231, 236, 176, 112, 97, 129, 137, 219, 213, 150, 208, 168, 23, 122, 177, 93, 145, 29, 217, 144, 197, 226, 196, 187, 98, 199, 222, 157, 69, 13, 189, 202, 30, 84, 171, 42, 145, 173, 216, 138, 124, 200, 6, 45, 120, 208, 131, 181, 133, 111, 152, 150, 20, 121, 135, 39, 161, 7, 111, 56, 161, 125, 138, 227, 184, 217, 7, 127, 72, 132, 64, 33, 20, 35, 40, 130, 68, 168, 133, 81, 136, 254, 133, 195, 184, 48, 186, 178, 43, 81, 227, 52, 190, 170, 5, 56, 184, 132, 68, 184, 4, 93, 112, 76, 147, 166, 33, 117, 249, 219, 215, 244, 90, 51, 154, 156, 201, 121, 105, 76, 158, 28, 110, 8, 243, 151, 70, 243, 123, 204, 223, 109, 120, 6, 114, 0, 135, 84, 72, 132, 94, 144, 164, 93, 160, 243, 58, 215, 19, 161, 30, 86, 108, 80, 23, 220, 187, 134, 84, 240, 132, 68, 72, 131, 52, 208, 3, 90, 88, 229, 218, 212, 91, 61, 175, 229, 93, 160, 217, 82, 136, 3, 31, 96, 130, 171, 110, 130, 50, 128, 25, 28, 224, 129, 13, 120, 164, 38, 24, 4, 70, 232, 2, 56, 208, 130, 56, 152, 168, 25, 238, 163, 233, 140, 109, 3, 63, 133, 183, 46, 5, 49, 0, 131, 81, 160, 166, 102, 200, 14, 213, 117, 112, 157, 210, 107, 157, 10, 37, 173, 177, 112, 191, 86, 135, 93, 225, 29, 194, 54, 18, 207, 40, 36, 245, 50, 18, 15, 39, 13, 48, 81, 113, 143, 117, 108, 214, 184, 170, 243, 98, 226, 190, 145, 24, 34, 41, 222, 200, 206, 138, 203, 126, 135, 125, 176, 133, 45, 184, 196, 80, 96, 133, 113, 130, 135, 216, 136, 155, 106, 8, 133, 121, 225, 6, 121, 240, 135, 56, 158, 21, 31, 63, 6, 47, 176, 129, 235, 69, 130, 38, 40, 5, 230, 93, 96, 168, 125, 99, 223, 27, 135, 46, 140, 119, 115, 254, 208, 6, 43, 103, 132, 69, 16, 233, 100, 157, 101, 117, 25, 234, 125, 223, 247, 90, 254, 219, 108, 56, 238, 150, 110, 105, 51, 31, 243, 48, 23, 115, 52, 159, 156, 123, 132, 233, 125, 180, 5, 91, 8, 135, 95, 72, 4, 93, 232, 17, 58, 111, 134, 58, 223, 133, 238, 214, 248, 89, 222, 133, 127, 64, 5, 50, 104, 2, 47, 232, 49, 157, 117, 130, 41, 216, 4, 94, 64, 244, 139, 76, 177, 225, 238, 242, 227, 142, 66, 90, 16, 133, 68, 48, 130, 31, 0, 20, 32, 80, 3, 14, 16, 136, 164, 9, 2, 26, 200, 128, 13, 0, 2, 45, 112, 3, 144, 175, 111, 35, 232, 2, 55, 88, 132, 177, 187, 68, 65, 120, 203, 82, 120, 107, 81, 40, 133, 51, 152, 130, 78, 112, 6, 222, 80, 143, 78, 242, 235, 171, 223, 25, 188, 206, 41, 244, 84, 135, 90, 183, 245, 174, 7, 251, 117, 104, 137, 192, 14, 217, 219, 201, 184, 191, 57, 108, 216, 181, 22, 151, 176, 174, 170, 34, 89, 190, 233, 33, 172, 56, 113, 108, 193, 42, 97, 122, 7, 244, 2, 12, 174, 208, 123, 190, 56, 175, 202, 150, 7, 70, 248, 130, 250, 99, 5, 121, 16, 7, 115, 176, 65, 120, 64, 124, 109, 56, 134, 108, 152, 175, 104, 183, 165, 90, 2, 38, 126, 104, 135, 65, 120, 232, 34, 112, 2, 36, 40, 5, 89, 48, 5, 91, 200, 151, 254, 125, 217, 86, 9, 251, 6, 29, 69, 7, 86, 192, 131, 75, 184, 4, 82, 168, 166, 57, 236, 119, 46, 119, 210, 240, 107, 87, 236, 203, 5, 132, 151, 125, 49, 159, 253, 51, 71, 248, 112, 96, 133, 87, 56, 134, 99, 120, 6, 99, 0, 234, 139, 199, 248, 141, 249, 7, 166, 97, 26, 112, 216, 5, 84, 224, 133, 33, 79, 132, 89, 192, 6, 57, 89, 151, 92, 208, 132, 41, 152, 2, 90, 232, 6, 94, 248, 7, 219, 108, 210, 148, 158, 229, 102, 192, 5, 92, 184, 66, 82, 48, 133, 77, 24, 3, 31, 56, 20, 30, 208, 130, 7, 120, 128, 11, 192, 0, 164, 73, 154, 74, 239, 121, 65, 73, 2, 32, 48, 148, 32, 48, 2, 49, 96, 3, 76, 200, 4, 79, 224, 4, 78, 232, 4, 102, 116, 122, 82, 0, 8, 60, 83, 50, 53, 187, 214, 173, 89, 184, 120, 233, 22, 166, 83, 167, 142, 97, 188, 136, 17, 211, 41, 124, 232, 208, 225, 66, 135, 235, 54, 170, 91, 231, 48, 31, 200, 123, 34, 233, 145, 44, 41, 239, 36, 202, 120, 39, 85, 202, 163, 119, 178, 100, 73, 145, 50, 241, 225, 227, 135, 47, 159, 204, 156, 247, 72, 222, 107, 169, 83, 158, 200, 126, 65, 233, 221, 123, 119, 175, 31, 208, 162, 73, 133, 30, 45, 218, 179, 232, 59, 161, 81, 119, 138, 196, 215, 12, 212, 160, 65, 172, 62, 13, 154, 254, 53, 238, 93, 61, 122, 240, 250, 181, 227, 150, 200, 141, 45, 91, 254, 224, 193, 243, 183, 143, 31, 92, 154, 112, 249, 229, 12, 85, 228, 136, 145, 34, 77, 74, 197, 50, 165, 171, 157, 63, 117, 227, 6, 139, 19, 71, 110, 240, 225, 111, 237, 142, 45, 210, 164, 9, 20, 181, 107, 215, 176, 81, 198, 118, 13, 156, 100, 201, 152, 179, 97, 238, 230, 217, 96, 182, 107, 217, 170, 221, 210, 102, 250, 52, 234, 211, 220, 82, 111, 59, 189, 173, 245, 173, 91, 186, 152, 49, 3, 183, 107, 151, 181, 93, 188, 110, 51, 219, 213, 140, 26, 53, 108, 145, 103, 165, 225, 53, 167, 201, 172, 108, 161, 45, 99, 6, 231, 141, 90, 38, 35, 120, 176, 245, 250, 12, 14, 179, 228, 102, 184, 120, 81, 195, 53, 171, 20, 170, 82, 155, 230, 36, 161, 17, 68, 77, 153, 35, 62, 56, 92, 176, 96, 225, 66, 6, 28, 52, 108, 208, 224, 192, 129, 6, 16, 36, 90, 144, 252, 72, 4, 135, 71, 25, 112, 100, 66, 74, 39, 165, 148, 210, 137, 40, 165, 68, 135, 135, 49, 222, 28, 196, 141, 66, 10, 53, 244, 208, 66, 18, 89, 8, 17, 67, 12, 105, 180, 17, 135, 32, 209, 132, 147, 72, 245, 200, 20, 22, 73, 246, 180, 132, 146, 75, 46, 181, 212, 15, 61, 76, 229, 132, 143, 62, 52, 213, 100, 19, 93, 58, 217, 248, 211, 81, 254, 76, 25, 21, 21, 74, 39, 189, 131, 82, 63, 253, 236, 104, 148, 80, 242, 24, 101, 100, 83, 230, 188, 194, 213, 34, 140, 36, 226, 137, 27, 112, 144, 130, 203, 46, 13, 142, 51, 72, 13, 58, 216, 160, 195, 26, 131, 172, 145, 205, 91, 52, 206, 117, 15, 93, 66, 241, 195, 138, 94, 77, 56, 161, 133, 47, 165, 132, 82, 77, 59, 131, 17, 102, 78, 54, 198, 100, 67, 142, 63, 230, 156, 227, 13, 40, 143, 129, 114, 203, 53, 205, 96, 99, 13, 101, 214, 52, 135, 29, 103, 154, 105, 198, 25, 56, 202, 85, 147, 139, 105, 207, 164, 38, 41, 165, 218, 84, 42, 169, 105, 206, 228, 66, 229, 160, 204, 100, 195, 140, 49, 221, 53, 115, 27, 169, 192, 81, 243, 15, 117, 86, 204, 34, 202, 17, 185, 116, 99, 205, 53, 187, 24, 164, 153, 51, 255, 100, 131, 139, 23, 120, 24, 196, 220, 117, 224, 80, 195, 221, 46, 186, 244, 82, 138, 40, 168, 136, 194, 137, 41, 131, 216, 224, 3, 18, 110, 180, 177, 134, 22, 70, 224, 112, 1, 4, 239, 93, 192, 193, 6, 246, 97, 208, 193, 5, 63, 40, 129, 4, 16, 249, 5, 209, 3, 19, 109, 108, 66, 10, 177, 9, 154, 210, 4, 30, 187, 124, 227, 77, 51, 207, 76, 148, 33, 189, 20, 85, 152, 142, 61, 246, 102, 72, 97, 67, 28, 174, 35, 35, 140, 54, 221, 4, 176, 254, 140, 33, 134, 72, 84, 139, 44, 194, 148, 147, 135, 0, 11, 140, 15, 153, 34, 213, 152, 212, 83, 34, 45, 149, 20, 80, 25, 7, 201, 162, 60, 72, 101, 172, 148, 143, 78, 53, 69, 212, 61, 205, 48, 194, 8, 33, 110, 156, 44, 138, 32, 77, 52, 193, 4, 24, 100, 184, 49, 136, 23, 52, 248, 160, 101, 17, 90, 36, 114, 207, 62, 61, 251, 76, 83, 196, 57, 158, 169, 23, 94, 107, 172, 82, 10, 41, 226, 140, 115, 24, 57, 231, 88, 51, 10, 29, 165, 176, 82, 11, 55, 122, 190, 162, 137, 40, 152, 152, 178, 11, 118, 147, 193, 122, 153, 100, 137, 50, 170, 89, 103, 221, 92, 70, 205, 45, 151, 70, 122, 154, 51, 207, 96, 106, 169, 49, 186, 220, 146, 75, 51, 213, 72, 102, 217, 175, 164, 234, 198, 11, 119, 163, 222, 150, 27, 19, 156, 164, 98, 132, 44, 215, 97, 243, 11, 47, 216, 152, 109, 248, 63, 162, 117, 131, 135, 23, 206, 116, 115, 93, 54, 216, 236, 18, 220, 46, 189, 248, 210, 11, 42, 8, 162, 18, 11, 45, 165, 112, 113, 193, 5, 72, 172, 33, 72, 34, 109, 148, 161, 69, 17, 27, 180, 87, 237, 3, 238, 89, 240, 192, 3, 63, 32, 209, 68, 15, 61, 36, 1, 4, 15, 31, 128, 129, 238, 41, 196, 154, 194, 4, 25, 184, 56, 88, 141, 51, 249, 74, 72, 209, 242, 203, 223, 59, 254, 175, 243, 22, 249, 219, 179, 62, 252, 232, 163, 207, 91, 62, 107, 191, 207, 245, 114, 221, 148, 19, 73, 45, 181, 72, 21, 195, 51, 214, 4, 52, 61, 53, 202, 228, 98, 199, 50, 101, 172, 49, 199, 65, 138, 223, 227, 59, 245, 35, 89, 127, 253, 69, 145, 100, 206, 40, 77, 178, 225, 201, 40, 112, 113, 12, 106, 212, 130, 21, 137, 88, 67, 23, 150, 224, 5, 45, 208, 32, 7, 14, 44, 2, 25, 8, 161, 134, 79, 200, 130, 25, 254, 232, 135, 246, 212, 39, 164, 123, 140, 34, 77, 69, 72, 4, 186, 114, 193, 142, 193, 156, 35, 23, 110, 240, 132, 26, 200, 224, 139, 81, 220, 226, 28, 230, 200, 69, 38, 46, 145, 9, 89, 236, 194, 50, 153, 9, 219, 13, 19, 213, 168, 235, 132, 173, 51, 152, 225, 5, 164, 44, 85, 141, 106, 60, 163, 109, 110, 195, 148, 51, 142, 81, 139, 185, 237, 162, 26, 176, 34, 148, 53, 8, 229, 27, 221, 104, 7, 23, 84, 218, 14, 51, 168, 209, 12, 94, 192, 65, 12, 189, 104, 3, 27, 176, 99, 141, 198, 161, 170, 57, 153, 41, 136, 55, 50, 209, 5, 197, 97, 163, 25, 191, 161, 198, 109, 124, 65, 138, 89, 208, 66, 20, 164, 232, 5, 46, 104, 65, 11, 82, 4, 225, 1, 164, 195, 129, 23, 218, 48, 51, 55, 164, 199, 6, 24, 88, 128, 1, 20, 192, 128, 69, 42, 254, 96, 3, 101, 0, 67, 19, 162, 0, 133, 33, 32, 97, 8, 99, 40, 197, 20, 18, 97, 71, 84, 128, 161, 11, 180, 232, 6, 55, 174, 225, 12, 137, 96, 200, 121, 231, 128, 72, 132, 234, 181, 175, 142, 172, 3, 123, 219, 123, 229, 43, 241, 193, 61, 236, 193, 232, 123, 67, 225, 201, 141, 8, 70, 38, 245, 185, 175, 39, 31, 35, 217, 72, 122, 146, 34, 152, 32, 197, 99, 25, 155, 199, 143, 128, 18, 164, 250, 145, 197, 25, 140, 104, 4, 35, 50, 193, 138, 92, 56, 227, 26, 239, 128, 199, 59, 200, 65, 13, 89, 176, 97, 13, 94, 168, 65, 14, 104, 64, 131, 34, 112, 65, 11, 230, 108, 130, 22, 214, 192, 134, 79, 204, 226, 26, 236, 224, 217, 91, 142, 242, 142, 121, 12, 66, 63, 90, 104, 2, 39, 88, 81, 138, 108, 140, 163, 29, 183, 232, 18, 40, 202, 80, 132, 81, 140, 66, 22, 222, 56, 71, 53, 46, 1, 138, 82, 188, 194, 114, 96, 227, 97, 175, 22, 213, 25, 70, 53, 42, 51, 216, 9, 214, 17, 221, 22, 41, 103, 196, 45, 54, 185, 48, 70, 53, 10, 21, 82, 88, 81, 102, 139, 91, 220, 197, 118, 122, 193, 11, 60, 174, 20, 21, 151, 32, 207, 28, 82, 209, 132, 94, 96, 166, 50, 15, 133, 168, 175, 36, 243, 13, 77, 172, 241, 141, 191, 185, 13, 231, 74, 49, 139, 89, 244, 226, 254, 22, 116, 164, 197, 44, 50, 97, 1, 9, 144, 14, 62, 62, 208, 66, 27, 6, 1, 135, 49, 104, 193, 7, 24, 104, 64, 2, 20, 176, 0, 247, 32, 129, 9, 74, 104, 67, 26, 232, 3, 4, 33, 48, 1, 13, 115, 64, 67, 26, 50, 177, 9, 77, 220, 130, 27, 102, 115, 70, 133, 230, 117, 47, 85, 50, 175, 94, 22, 233, 8, 43, 97, 169, 215, 189, 94, 143, 150, 182, 180, 17, 48, 103, 242, 161, 93, 218, 8, 72, 190, 68, 10, 85, 218, 167, 176, 141, 249, 8, 37, 248, 51, 146, 99, 123, 130, 142, 91, 48, 66, 134, 172, 184, 197, 49, 6, 152, 167, 113, 116, 35, 27, 206, 96, 69, 35, 214, 112, 4, 250, 212, 160, 8, 91, 64, 167, 57, 203, 192, 133, 46, 152, 83, 11, 101, 24, 4, 59, 175, 113, 65, 50, 181, 99, 13, 183, 107, 130, 10, 231, 120, 142, 113, 176, 130, 13, 39, 131, 214, 42, 72, 241, 138, 108, 156, 195, 25, 6, 66, 154, 19, 35, 115, 67, 69, 93, 38, 52, 157, 185, 27, 118, 186, 86, 39, 103, 104, 195, 26, 28, 205, 133, 45, 134, 138, 89, 102, 84, 102, 164, 149, 193, 70, 72, 171, 177, 27, 190, 225, 162, 23, 230, 165, 133, 121, 69, 65, 6, 37, 196, 1, 12, 73, 56, 197, 28, 202, 160, 153, 26, 90, 70, 113, 224, 160, 12, 118, 38, 119, 25, 111, 188, 1, 13, 254, 215, 56, 85, 222, 80, 26, 139, 89, 108, 135, 168, 42, 173, 133, 28, 145, 144, 200, 6, 184, 7, 3, 24, 216, 0, 16, 180, 160, 6, 104, 21, 129, 6, 16, 200, 234, 181, 50, 64, 188, 49, 128, 193, 193, 24, 184, 79, 19, 224, 176, 137, 77, 188, 65, 12, 120, 64, 69, 54, 190, 145, 141, 99, 148, 178, 174, 170, 116, 30, 189, 46, 194, 202, 141, 236, 181, 198, 124, 229, 158, 192, 66, 114, 163, 170, 12, 12, 98, 22, 67, 137, 48, 123, 130, 88, 197, 174, 15, 40, 246, 48, 166, 60, 230, 129, 18, 100, 226, 207, 29, 143, 61, 71, 55, 94, 161, 50, 80, 216, 194, 25, 152, 165, 198, 56, 252, 225, 15, 110, 100, 99, 155, 163, 16, 196, 17, 106, 32, 206, 187, 28, 129, 9, 71, 104, 109, 23, 88, 123, 206, 38, 156, 121, 13, 137, 88, 197, 49, 252, 113, 12, 46, 148, 97, 117, 156, 144, 197, 40, 152, 65, 142, 91, 44, 2, 19, 152, 152, 153, 38, 60, 81, 138, 92, 156, 227, 22, 171, 24, 5, 41, 98, 17, 153, 54, 46, 119, 86, 95, 235, 90, 102, 148, 115, 25, 236, 8, 103, 137, 182, 88, 34, 47, 220, 168, 220, 239, 114, 90, 56, 193, 209, 14, 74, 121, 49, 212, 163, 210, 66, 15, 64, 8, 195, 38, 218, 192, 129, 247, 154, 225, 18, 206, 253, 199, 169, 176, 1, 235, 45, 2, 199, 134, 102, 254, 235, 108, 54, 186, 48, 138, 88, 233, 226, 54, 185, 8, 150, 110, 136, 186, 27, 223, 52, 99, 22, 154, 96, 234, 3, 20, 208, 0, 28, 0, 161, 62, 216, 250, 129, 17, 212, 67, 3, 63, 98, 171, 3, 60, 160, 5, 28, 32, 192, 128, 106, 93, 235, 217, 101, 120, 131, 30, 200, 240, 134, 107, 140, 195, 27, 198, 192, 8, 133, 78, 185, 16, 117, 99, 40, 67, 167, 188, 72, 191, 252, 181, 14, 27, 211, 187, 198, 214, 219, 199, 135, 190, 7, 49, 16, 85, 165, 176, 35, 235, 152, 146, 123, 36, 164, 30, 117, 204, 177, 70, 250, 17, 54, 221, 225, 100, 133, 227, 239, 30, 222, 200, 70, 40, 22, 49, 10, 88, 88, 57, 45, 206, 248, 198, 8, 185, 92, 141, 100, 44, 137, 129, 226, 212, 193, 17, 206, 108, 206, 35, 160, 118, 13, 113, 72, 196, 39, 66, 17, 10, 86, 172, 194, 21, 4, 93, 133, 45, 94, 225, 11, 86, 140, 130, 21, 178, 120, 133, 44, 200, 177, 11, 216, 142, 162, 12, 100, 24, 132, 32, 48, 241, 137, 99, 124, 34, 22, 164, 88, 133, 162, 67, 115, 141, 106, 240, 144, 108, 189, 106, 250, 221, 8, 85, 13, 56, 234, 34, 23, 186, 168, 5, 149, 4, 5, 69, 66, 129, 119, 136, 33, 253, 47, 101, 168, 17, 82, 224, 88, 81, 23, 229, 165, 133, 44, 80, 241, 185, 75, 224, 64, 9, 156, 120, 254, 131, 18, 56, 32, 4, 78, 64, 193, 23, 102, 155, 204, 63, 130, 237, 27, 67, 13, 74, 56, 92, 3, 7, 40, 115, 81, 6, 189, 145, 106, 139, 179, 200, 52, 225, 131, 229, 134, 41, 176, 238, 2, 93, 0, 3, 16, 236, 99, 159, 12, 100, 160, 62, 30, 190, 0, 13, 54, 176, 9, 56, 212, 103, 1, 9, 96, 64, 2, 26, 128, 121, 27, 0, 1, 12, 76, 24, 67, 51, 202, 109, 140, 114, 160, 3, 222, 13, 161, 43, 140, 53, 180, 33, 121, 215, 187, 246, 244, 142, 75, 190, 239, 145, 143, 26, 241, 210, 151, 190, 44, 248, 146, 131, 164, 100, 252, 69, 229, 71, 196, 199, 102, 59, 20, 190, 240, 119, 180, 3, 30, 224, 184, 133, 53, 62, 145, 137, 90, 52, 3, 187, 49, 191, 248, 96, 148, 99, 13, 99, 216, 98, 20, 12, 172, 129, 13, 238, 114, 23, 115, 18, 34, 17, 43, 151, 69, 90, 230, 150, 89, 99, 28, 131, 25, 205, 96, 63, 252, 115, 113, 140, 161, 222, 92, 22, 171, 184, 63, 205, 89, 190, 10, 86, 208, 92, 22, 178, 64, 187, 46, 76, 157, 22, 133, 10, 112, 184, 209, 251, 225, 66, 175, 233, 70, 176, 240, 130, 46, 52, 160, 3, 250, 141, 221, 12, 10, 215, 69, 81, 173, 133, 20, 101, 12, 145, 167, 105, 145, 22, 245, 66, 3, 14, 213, 231, 144, 2, 42, 112, 2, 16, 244, 128, 21, 254, 164, 1, 25, 0, 193, 5, 68, 193, 30, 112, 1, 47, 40, 10, 117, 168, 212, 53, 224, 130, 226, 76, 14, 56, 104, 135, 103, 120, 3, 14, 102, 130, 27, 252, 138, 223, 4, 91, 166, 101, 209, 168, 244, 198, 109, 204, 194, 25, 104, 193, 24, 216, 192, 15, 52, 1, 18, 124, 88, 6, 108, 64, 182, 216, 71, 123, 112, 64, 14, 4, 129, 17, 180, 65, 19, 248, 64, 206, 92, 192, 0, 228, 140, 123, 248, 192, 15, 220, 69, 25, 84, 3, 59, 120, 131, 51, 120, 68, 235, 197, 24, 191, 172, 91, 140, 101, 196, 236, 173, 67, 52, 184, 161, 237, 197, 161, 189, 1, 13, 196, 248, 216, 142, 81, 76, 199, 144, 68, 49, 17, 223, 99, 189, 131, 59, 200, 3, 54, 97, 19, 254, 36, 159, 194, 181, 67, 59, 188, 131, 45, 176, 2, 46, 220, 130, 52, 85, 220, 43, 188, 2, 43, 216, 66, 138, 125, 3, 151, 53, 131, 46, 200, 2, 43, 104, 65, 105, 129, 95, 17, 120, 193, 32, 172, 156, 45, 204, 77, 46, 208, 6, 72, 121, 93, 53, 84, 23, 172, 208, 134, 19, 49, 67, 20, 69, 145, 0, 178, 95, 213, 45, 98, 45, 204, 98, 45, 232, 145, 255, 253, 223, 255, 161, 157, 44, 204, 130, 45, 32, 85, 40, 14, 149, 49, 224, 2, 53, 52, 32, 3, 154, 93, 19, 5, 138, 49, 244, 93, 20, 9, 71, 223, 253, 70, 254, 120, 97, 160, 0, 194, 145, 27, 101, 78, 47, 120, 32, 8, 26, 8, 24, 108, 192, 16, 0, 129, 25, 180, 1, 15, 92, 0, 29, 236, 129, 22, 200, 138, 112, 220, 215, 63, 252, 67, 65, 252, 70, 103, 1, 30, 54, 60, 159, 44, 232, 66, 65, 100, 67, 25, 208, 130, 73, 109, 209, 110, 140, 202, 79, 193, 145, 22, 221, 6, 41, 44, 1, 27, 28, 129, 0, 136, 147, 228, 13, 36, 20, 122, 152, 205, 112, 64, 2, 64, 128, 56, 5, 64, 23, 140, 131, 49, 12, 194, 131, 145, 65, 54, 112, 195, 55, 188, 139, 51, 148, 3, 71, 176, 161, 235, 237, 139, 93, 205, 222, 27, 186, 225, 188, 201, 161, 72, 198, 82, 207, 20, 204, 142, 177, 79, 83, 208, 143, 253, 248, 161, 242, 21, 34, 243, 253, 136, 33, 194, 131, 33, 26, 162, 60, 156, 195, 39, 164, 133, 27, 140, 194, 49, 96, 23, 44, 64, 226, 202, 89, 3, 40, 25, 131, 44, 28, 67, 51, 188, 2, 41, 172, 65, 56, 21, 193, 39, 202, 66, 45, 200, 223, 0, 153, 162, 215, 101, 209, 16, 181, 162, 19, 65, 165, 85, 46, 29, 86, 94, 67, 43, 62, 17, 161, 96, 229, 16, 221, 208, 215, 188, 145, 229, 84, 131, 222, 24, 67, 110, 0, 135, 5, 66, 17, 6, 50, 227, 212, 85, 70, 112, 152, 202, 229, 140, 74, 30, 13, 85, 44, 168, 157, 40, 136, 254, 130, 30, 244, 14, 16, 216, 64, 204, 112, 192, 3, 152, 193, 30, 44, 129, 49, 228, 93, 47, 184, 229, 100, 12, 35, 101, 120, 134, 53, 20, 165, 101, 188, 194, 49, 24, 195, 40, 184, 129, 229, 80, 209, 169, 76, 227, 169, 248, 6, 28, 221, 134, 46, 104, 194, 24, 192, 129, 122, 60, 161, 228, 101, 192, 64, 90, 0, 6, 204, 14, 105, 74, 94, 2, 36, 192, 5, 52, 1, 41, 152, 66, 7, 136, 192, 37, 248, 67, 69, 90, 36, 70, 174, 67, 235, 105, 4, 94, 201, 216, 70, 202, 158, 188, 189, 225, 27, 142, 36, 112, 110, 79, 45, 205, 136, 78, 4, 86, 80, 60, 5, 193, 49, 159, 60, 180, 131, 145, 36, 159, 33, 50, 95, 59, 156, 195, 57, 200, 228, 76, 250, 195, 56, 188, 2, 33, 216, 194, 204, 228, 66, 50, 196, 220, 35, 134, 194, 39, 188, 130, 54, 124, 131, 56, 220, 2, 245, 229, 66, 44, 132, 130, 23, 120, 1, 5, 213, 194, 99, 134, 10, 51, 32, 79, 124, 90, 165, 215, 45, 221, 85, 82, 165, 221, 208, 39, 84, 90, 195, 16, 137, 157, 100, 228, 103, 85, 254, 87, 92, 26, 160, 111, 24, 131, 111, 244, 39, 110, 72, 96, 161, 8, 199, 50, 102, 96, 53, 192, 90, 1, 102, 166, 128, 205, 130, 218, 29, 23, 40, 96, 1, 7, 240, 64, 16, 108, 128, 18, 164, 129, 131, 101, 1, 39, 254, 76, 65, 13, 81, 131, 74, 157, 84, 161, 236, 66, 55, 48, 29, 56, 160, 2, 46, 84, 67, 55, 60, 135, 55, 88, 195, 42, 116, 65, 47, 160, 20, 102, 254, 70, 51, 100, 81, 1, 94, 14, 169, 200, 194, 28, 116, 192, 6, 184, 65, 135, 105, 203, 228, 65, 225, 123, 60, 192, 135, 217, 199, 6, 56, 155, 5, 248, 0, 16, 20, 193, 24, 24, 1, 42, 152, 131, 55, 84, 36, 25, 122, 196, 69, 108, 68, 109, 114, 132, 140, 77, 8, 188, 205, 152, 111, 110, 68, 52, 68, 67, 112, 2, 167, 140, 224, 27, 190, 53, 76, 113, 202, 4, 48, 17, 92, 115, 18, 226, 57, 184, 67, 243, 57, 167, 156, 206, 164, 33, 186, 131, 54, 168, 194, 39, 124, 2, 43, 148, 129, 32, 196, 70, 204, 169, 66, 40, 52, 194, 40, 132, 66, 46, 184, 85, 108, 52, 224, 35, 178, 194, 44, 200, 95, 41, 90, 165, 51, 12, 81, 164, 90, 37, 127, 242, 103, 127, 106, 165, 19, 193, 74, 126, 218, 103, 215, 217, 141, 166, 254, 231, 210, 109, 37, 87, 190, 159, 216, 81, 131, 49, 24, 224, 168, 120, 90, 13, 73, 221, 119, 177, 234, 91, 154, 74, 1, 194, 154, 102, 234, 194, 119, 208, 66, 133, 118, 130, 99, 44, 225, 7, 100, 11, 16, 164, 193, 6, 88, 192, 21, 112, 2, 19, 92, 142, 169, 48, 195, 80, 193, 35, 53, 52, 42, 254, 46, 76, 206, 44, 128, 20, 54, 124, 67, 46, 212, 130, 44, 220, 66, 100, 102, 102, 216, 193, 165, 223, 244, 96, 230, 200, 194, 27, 116, 0, 19, 184, 65, 182, 136, 38, 145, 98, 0, 237, 32, 169, 125, 28, 228, 105, 210, 0, 25, 128, 2, 43, 120, 193, 18, 184, 203, 108, 94, 105, 235, 109, 68, 56, 212, 171, 150, 98, 41, 43, 221, 149, 151, 118, 196, 152, 130, 164, 152, 150, 105, 153, 186, 146, 140, 240, 219, 250, 176, 41, 249, 60, 5, 82, 212, 79, 33, 202, 105, 156, 186, 195, 57, 216, 233, 76, 178, 195, 60, 116, 223, 32, 52, 2, 38, 124, 1, 35, 132, 34, 36, 130, 66, 35, 168, 92, 120, 186, 168, 45, 200, 130, 51, 52, 195, 165, 201, 95, 142, 58, 67, 124, 138, 93, 53, 204, 39, 127, 58, 67, 165, 70, 165, 85, 70, 70, 85, 206, 44, 52, 14, 145, 54, 216, 167, 87, 130, 106, 43, 106, 37, 73, 53, 209, 212, 77, 163, 1, 182, 81, 27, 105, 29, 215, 129, 151, 209, 6, 71, 6, 194, 42, 129, 234, 70, 30, 161, 2, 41, 160, 139, 40, 116, 66, 170, 241, 0, 6, 104, 0, 7, 96, 128, 9, 164, 65, 16, 88, 128, 20, 144, 7, 149, 36, 14, 120, 241, 130, 21, 161, 103, 38, 88, 3, 53, 0, 222, 100, 100, 67, 51, 220, 130, 44, 80, 3, 55, 128, 212, 24, 16, 171, 167, 65, 254, 232, 27, 221, 6, 28, 161, 163, 46, 196, 2, 46, 8, 2, 18, 176, 129, 22, 88, 0, 65, 150, 230, 123, 96, 0, 181, 64, 192, 15, 48, 1, 7, 40, 128, 123, 92, 0, 144, 118, 65, 25, 140, 1, 55, 224, 96, 69, 118, 195, 51, 112, 72, 57, 132, 67, 57, 148, 195, 152, 106, 238, 58, 96, 228, 229, 226, 43, 133, 180, 161, 52, 248, 230, 152, 2, 39, 63, 4, 167, 44, 225, 155, 46, 73, 12, 193, 248, 88, 29, 186, 143, 99, 17, 34, 60, 196, 41, 237, 82, 231, 195, 238, 201, 51, 48, 194, 43, 172, 129, 58, 177, 193, 32, 188, 66, 79, 138, 66, 199, 14, 42, 35, 104, 194, 49, 144, 198, 78, 218, 194, 71, 165, 236, 202, 70, 106, 164, 170, 236, 124, 122, 221, 164, 210, 39, 51, 216, 39, 128, 94, 229, 53, 204, 39, 166, 130, 37, 207, 106, 229, 160, 8, 104, 132, 226, 232, 251, 241, 167, 229, 112, 154, 19, 49, 163, 217, 38, 45, 58, 106, 209, 52, 50, 45, 46, 188, 194, 7, 138, 130, 99, 224, 1, 26, 100, 192, 135, 121, 152, 25, 20, 1, 4, 60, 193, 30, 68, 65, 44, 164, 42, 51, 20, 163, 217, 225, 66, 44, 132, 10, 80, 198, 202, 71, 81, 131, 53, 104, 131, 55, 220, 130, 55, 40, 212, 53, 64, 168, 169, 248, 77, 102, 142, 74, 222, 237, 194, 80, 245, 2, 28, 132, 65, 17, 254, 196, 14, 233, 120, 152, 131, 61, 64, 106, 42, 110, 3, 29, 1, 6, 108, 155, 66, 230, 0, 6, 4, 129, 40, 188, 75, 149, 126, 3, 56, 84, 46, 189, 250, 102, 56, 132, 169, 27, 70, 3, 70, 222, 21, 94, 201, 219, 13, 223, 112, 153, 166, 174, 153, 170, 238, 140, 208, 197, 195, 20, 49, 113, 254, 132, 143, 52, 236, 116, 74, 167, 76, 74, 167, 57, 32, 98, 35, 12, 2, 44, 176, 129, 234, 176, 1, 27, 132, 194, 43, 12, 42, 120, 66, 19, 35, 224, 193, 42, 80, 67, 180, 222, 2, 72, 57, 3, 90, 170, 172, 126, 34, 143, 41, 78, 47, 205, 210, 103, 215, 25, 109, 125, 78, 229, 206, 86, 111, 20, 93, 195, 205, 242, 236, 251, 121, 154, 166, 193, 227, 88, 238, 93, 165, 94, 96, 43, 102, 32, 132, 18, 27, 58, 106, 38, 47, 220, 66, 47, 192, 175, 209, 69, 173, 30, 164, 1, 19, 144, 43, 185, 206, 14, 20, 48, 193, 254, 10, 171, 40, 228, 93, 166, 165, 2, 223, 96, 112, 45, 204, 194, 79, 13, 81, 48, 134, 130, 180, 202, 66, 53, 212, 194, 55, 112, 147, 217, 242, 168, 248, 222, 70, 222, 101, 171, 49, 84, 99, 30, 109, 130, 33, 145, 235, 3, 64, 64, 181, 188, 135, 5, 64, 192, 5, 96, 192, 15, 40, 0, 13, 164, 135, 5, 40, 64, 0, 24, 129, 17, 112, 128, 18, 184, 11, 254, 14, 122, 195, 56, 92, 195, 54, 208, 235, 58, 212, 240, 152, 190, 33, 231, 98, 41, 27, 242, 240, 13, 63, 243, 51, 7, 44, 192, 202, 18, 246, 156, 46, 141, 160, 41, 16, 123, 51, 196, 212, 8, 139, 32, 69, 60, 40, 220, 236, 54, 172, 195, 58, 172, 116, 54, 130, 42, 104, 69, 25, 228, 5, 27, 168, 129, 39, 176, 194, 51, 53, 2, 52, 225, 1, 27, 44, 194, 43, 224, 130, 123, 246, 103, 202, 50, 131, 26, 247, 231, 25, 15, 81, 244, 174, 177, 19, 89, 239, 51, 110, 170, 167, 242, 172, 28, 207, 241, 86, 154, 106, 27, 133, 175, 22, 69, 116, 50, 42, 104, 166, 246, 221, 160, 192, 42, 112, 20, 158, 110, 152, 157, 121, 193, 175, 211, 118, 130, 30, 188, 65, 27, 32, 1, 237, 116, 64, 236, 64, 128, 19, 36, 1, 3, 168, 0, 39, 132, 65, 34, 88, 142, 121, 101, 14, 2, 94, 206, 59, 30, 99, 12, 26, 67, 46, 124, 3, 51, 0, 74, 200, 198, 130, 24, 12, 232, 79, 173, 178, 52, 78, 145, 111, 224, 145, 119, 244, 66, 38, 4, 65, 19, 94, 237, 44, 39, 128, 236, 176, 135, 151, 16, 210, 104, 37, 192, 3, 176, 65, 134, 98, 130, 131, 84, 41, 14, 106, 195, 27, 134, 195, 13, 107, 238, 51, 215, 102, 26, 182, 161, 152, 250, 171, 53, 3, 44, 142, 109, 115, 28, 202, 210, 55, 195, 254, 210, 233, 150, 164, 140, 192, 69, 208, 36, 76, 63, 44, 223, 194, 41, 31, 55, 188, 130, 86, 172, 129, 27, 252, 128, 205, 124, 193, 24, 44, 66, 40, 112, 44, 52, 89, 113, 38, 192, 66, 63, 175, 172, 164, 166, 113, 124, 62, 234, 241, 70, 106, 65, 139, 93, 65, 83, 170, 215, 25, 45, 66, 71, 101, 206, 242, 236, 86, 10, 135, 27, 25, 104, 62, 254, 20, 54, 100, 154, 31, 123, 111, 112, 8, 160, 217, 78, 240, 79, 145, 10, 223, 196, 70, 45, 132, 7, 42, 140, 130, 72, 207, 1, 25, 244, 64, 185, 210, 14, 4, 124, 0, 20, 64, 128, 9, 112, 194, 37, 116, 193, 175, 48, 67, 42, 100, 14, 45, 244, 90, 51, 20, 183, 48, 2, 94, 19, 157, 109, 55, 232, 194, 53, 176, 194, 43, 52, 3, 27, 144, 66, 27, 13, 242, 109, 140, 10, 112, 228, 221, 142, 110, 135, 21, 29, 94, 41, 0, 129, 131, 113, 0, 229, 81, 75, 86, 209, 128, 17, 96, 194, 234, 20, 65, 184, 8, 192, 26, 128, 193, 7, 148, 129, 49, 220, 224, 49, 151, 97, 51, 67, 115, 191, 246, 43, 151, 202, 24, 53, 223, 183, 53, 79, 131, 90, 167, 46, 128, 191, 181, 94, 1, 120, 91, 159, 143, 46, 9, 9, 31, 42, 172, 31, 130, 86, 35, 176, 66, 27, 168, 1, 14, 224, 128, 15, 212, 153, 27, 124, 2, 52, 185, 129, 21, 254, 131, 50, 221, 32, 143, 25, 155, 98, 169, 118, 248, 212, 121, 114, 136, 123, 29, 90, 142, 248, 136, 11, 199, 127, 101, 246, 101, 135, 23, 206, 42, 116, 126, 18, 96, 149, 104, 224, 141, 34, 38, 20, 41, 168, 167, 185, 229, 111, 120, 118, 15, 54, 96, 119, 83, 40, 210, 140, 130, 38, 232, 129, 30, 136, 65, 31, 225, 54, 45, 99, 64, 23, 60, 128, 13, 108, 2, 42, 8, 1, 46, 108, 81, 47, 108, 17, 139, 238, 198, 38, 188, 194, 45, 68, 70, 55, 208, 130, 2, 95, 67, 46, 176, 130, 49, 0, 202, 56, 60, 9, 89, 94, 183, 62, 106, 116, 51, 12, 178, 21, 165, 57, 223, 248, 194, 132, 69, 158, 125, 60, 128, 0, 12, 128, 2, 20, 129, 26, 212, 12, 3, 208, 0, 3, 128, 193, 27, 108, 0, 19, 196, 194, 173, 189, 232, 195, 61, 3, 58, 100, 110, 189, 62, 51, 51, 83, 243, 89, 131, 36, 14, 87, 243, 51, 75, 67, 54, 171, 46, 154, 254, 140, 128, 199, 245, 72, 158, 174, 249, 184, 53, 190, 229, 136, 199, 196, 4, 61, 228, 67, 51, 240, 233, 23, 12, 2, 19, 228, 64, 132, 227, 128, 57, 173, 1, 38, 48, 194, 32, 248, 214, 43, 88, 157, 70, 171, 108, 168, 60, 47, 25, 171, 108, 137, 199, 172, 135, 11, 116, 127, 138, 157, 112, 152, 120, 136, 183, 177, 165, 254, 167, 221, 76, 70, 254, 176, 215, 26, 72, 153, 170, 6, 190, 223, 63, 232, 130, 2, 43, 227, 160, 88, 96, 136, 163, 227, 79, 157, 57, 107, 139, 109, 119, 211, 66, 44, 216, 145, 252, 234, 193, 28, 92, 193, 6, 24, 57, 45, 67, 64, 35, 111, 64, 38, 244, 130, 19, 148, 130, 22, 241, 13, 47, 160, 194, 44, 44, 209, 159, 224, 23, 53, 160, 66, 172, 212, 130, 220, 124, 131, 49, 24, 195, 55, 136, 2, 27, 228, 6, 102, 102, 183, 4, 75, 48, 74, 233, 2, 186, 231, 81, 47, 200, 2, 44, 12, 67, 43, 16, 130, 133, 125, 222, 2, 212, 142, 22, 216, 192, 236, 128, 129, 39, 124, 0, 19, 148, 194, 228, 0, 250, 139, 42, 115, 71, 96, 36, 88, 143, 105, 13, 159, 245, 150, 130, 53, 15, 27, 186, 53, 71, 131, 163, 183, 53, 44, 185, 245, 55, 163, 252, 163, 151, 100, 73, 82, 186, 73, 222, 131, 136, 200, 4, 78, 228, 66, 35, 184, 194, 39, 140, 1, 25, 68, 56, 13, 68, 56, 58, 49, 65, 86, 172, 83, 83, 54, 3, 25, 135, 184, 216, 29, 111, 168, 28, 175, 39, 83, 67, 124, 78, 170, 216, 133, 138, 64, 107, 52, 175, 147, 184, 210, 171, 172, 27, 155, 49, 127, 10, 251, 102, 131, 87, 189, 107, 96, 168, 160, 178, 52, 98, 116, 250, 46, 99, 250, 126, 56, 62, 234, 13, 121, 149, 23, 29, 93, 187, 108, 103, 254, 2, 30, 180, 1, 19, 240, 192, 44, 107, 219, 182, 41, 192, 16, 216, 64, 7, 160, 1, 47, 152, 1, 27, 140, 114, 45, 100, 26, 231, 220, 66, 168, 229, 20, 53, 236, 209, 35, 90, 131, 44, 112, 131, 169, 122, 3, 45, 172, 129, 6, 194, 218, 5, 50, 163, 51, 204, 250, 104, 159, 253, 109, 240, 13, 231, 128, 194, 48, 148, 3, 50, 32, 67, 17, 36, 164, 226, 250, 64, 106, 150, 1, 38, 4, 65, 20, 148, 130, 227, 120, 198, 13, 90, 131, 71, 112, 136, 51, 159, 53, 230, 214, 38, 231, 94, 46, 233, 226, 240, 200, 63, 179, 127, 203, 161, 44, 9, 140, 55, 255, 204, 238, 179, 252, 91, 83, 122, 207, 0, 63, 73, 214, 132, 164, 171, 238, 76, 8, 12, 207, 240, 207, 77, 134, 2, 25, 28, 193, 206, 111, 0, 14, 136, 128, 17, 52, 129, 17, 148, 129, 26, 132, 194, 220, 204, 122, 169, 78, 42, 202, 150, 184, 25, 163, 108, 53, 56, 61, 173, 111, 125, 15, 133, 198, 207, 106, 154, 114, 53, 138, 114, 36, 237, 90, 94, 32, 84, 202, 236, 212, 197, 165, 177, 243, 232, 68, 43, 187, 130, 22, 109, 131, 190, 234, 4, 243, 232, 222, 108, 202, 38, 91, 59, 64, 152, 18, 37, 106, 147, 30, 56, 74, 108, 64, 128, 192, 96, 33, 3, 5, 27, 144, 60, 64, 211, 12, 21, 18, 84, 163, 80, 161, 234, 132, 254, 42, 214, 44, 99, 183, 122, 97, 163, 182, 171, 214, 173, 76, 110, 64, 85, 27, 85, 237, 218, 181, 110, 188, 202, 80, 147, 73, 13, 155, 72, 106, 206, 154, 253, 251, 119, 141, 218, 63, 103, 188, 128, 234, 210, 197, 107, 215, 46, 106, 204, 118, 241, 66, 197, 42, 89, 185, 96, 11, 2, 36, 184, 80, 68, 141, 175, 56, 28, 194, 160, 98, 153, 141, 107, 55, 175, 215, 156, 173, 19, 27, 110, 29, 217, 112, 225, 162, 149, 91, 151, 86, 108, 180, 117, 229, 162, 185, 93, 187, 54, 109, 92, 187, 113, 167, 73, 219, 183, 151, 111, 95, 191, 251, 240, 237, 13, 28, 88, 31, 96, 124, 129, 5, 27, 46, 156, 152, 31, 224, 198, 141, 19, 255, 237, 59, 216, 47, 228, 195, 247, 26, 35, 230, 135, 239, 28, 171, 87, 159, 6, 121, 249, 129, 3, 199, 134, 13, 34, 126, 52, 105, 194, 227, 200, 170, 91, 185, 156, 221, 172, 70, 205, 24, 51, 103, 179, 153, 85, 171, 150, 91, 102, 181, 99, 179, 103, 2, 63, 186, 181, 90, 174, 88, 162, 4, 161, 1, 195, 68, 201, 16, 36, 207, 155, 48, 41, 19, 231, 146, 40, 90, 186, 176, 113, 181, 6, 188, 90, 205, 238, 186, 171, 89, 19, 223, 210, 40, 181, 102, 205, 70, 154, 79, 191, 171, 25, 54, 107, 53, 225, 119, 199, 246, 125, 230, 191, 158, 205, 216, 227, 79, 202, 43, 23, 254, 174, 89, 180, 100, 57, 110, 32, 77, 222, 72, 67, 137, 13, 30, 96, 64, 193, 5, 31, 64, 130, 3, 52, 58, 233, 68, 137, 77, 176, 41, 74, 148, 88, 72, 209, 228, 21, 90, 106, 193, 133, 148, 89, 52, 137, 69, 19, 55, 48, 33, 197, 141, 93, 188, 225, 166, 27, 99, 202, 64, 143, 38, 154, 106, 250, 7, 155, 150, 102, 116, 230, 31, 92, 130, 226, 69, 151, 102, 120, 26, 105, 151, 127, 118, 193, 48, 153, 80, 184, 24, 228, 21, 89, 68, 209, 2, 10, 81, 118, 153, 173, 154, 108, 186, 81, 209, 43, 107, 182, 41, 75, 172, 178, 162, 9, 7, 46, 185, 176, 164, 107, 46, 187, 232, 138, 75, 154, 49, 165, 201, 75, 25, 201, 208, 228, 139, 178, 195, 0, 3, 76, 159, 193, 22, 75, 140, 205, 52, 209, 164, 44, 179, 202, 2, 219, 108, 179, 190, 238, 121, 165, 17, 91, 60, 113, 227, 8, 17, 72, 163, 97, 131, 31, 140, 96, 226, 135, 34, 100, 193, 229, 152, 153, 152, 161, 6, 60, 217, 110, 186, 201, 24, 39, 133, 155, 137, 38, 112, 138, 27, 165, 13, 38, 128, 216, 160, 131, 14, 34, 176, 160, 3, 11, 40, 136, 224, 1, 10, 48, 192, 64, 3, 13, 54, 224, 224, 3, 32, 152, 128, 163, 20, 92, 88, 218, 174, 55, 221, 220, 123, 239, 61, 155, 206, 195, 47, 61, 243, 132, 245, 181, 215, 247, 94, 254, 68, 182, 55, 98, 241, 211, 143, 23, 92, 160, 237, 133, 150, 88, 142, 203, 68, 148, 76, 244, 48, 35, 138, 15, 30, 72, 96, 65, 135, 20, 0, 2, 9, 38, 56, 233, 69, 19, 37, 140, 209, 49, 150, 94, 148, 34, 133, 148, 76, 46, 129, 99, 148, 89, 72, 1, 99, 185, 37, 144, 208, 66, 16, 82, 142, 42, 99, 23, 248, 176, 1, 71, 96, 151, 156, 153, 177, 166, 103, 117, 36, 138, 23, 106, 192, 105, 38, 210, 162, 218, 107, 134, 221, 92, 114, 153, 101, 148, 68, 100, 97, 166, 165, 238, 90, 202, 6, 156, 110, 160, 12, 235, 44, 183, 228, 210, 146, 172, 184, 224, 10, 243, 46, 49, 237, 34, 83, 153, 49, 167, 81, 6, 50, 58, 255, 90, 140, 176, 57, 17, 107, 51, 231, 191, 240, 153, 121, 102, 158, 103, 222, 185, 47, 200, 32, 211, 71, 31, 103, 88, 105, 132, 21, 65, 150, 32, 141, 180, 13, 124, 48, 98, 9, 45, 192, 136, 37, 151, 99, 152, 65, 47, 182, 71, 111, 91, 86, 55, 153, 186, 62, 42, 182, 75, 179, 185, 166, 150, 76, 192, 8, 2, 131, 7, 32, 80, 64, 161, 7, 46, 224, 64, 110, 14, 46, 184, 192, 130, 8, 26, 130, 224, 129, 83, 59, 144, 53, 8, 40, 54, 153, 101, 198, 237, 192, 227, 117, 70, 153, 42, 76, 207, 152, 243, 254, 101, 175, 87, 247, 194, 115, 15, 70, 77, 254, 213, 147, 169, 168, 203, 135, 194, 165, 150, 255, 98, 185, 72, 19, 130, 230, 208, 22, 8, 12, 20, 84, 64, 1, 6, 44, 144, 85, 8, 49, 104, 249, 133, 151, 33, 64, 105, 134, 151, 88, 104, 161, 229, 148, 57, 224, 128, 99, 17, 55, 180, 96, 130, 141, 50, 202, 64, 98, 3, 12, 54, 208, 34, 20, 108, 154, 41, 35, 224, 128, 5, 22, 184, 155, 107, 102, 132, 222, 25, 28, 117, 193, 177, 40, 107, 120, 18, 214, 168, 102, 116, 187, 198, 154, 72, 175, 1, 103, 227, 193, 59, 246, 234, 249, 103, 214, 42, 7, 46, 245, 221, 26, 89, 46, 48, 87, 102, 57, 154, 49, 95, 86, 198, 126, 251, 247, 41, 44, 206, 191, 44, 155, 204, 47, 156, 215, 4, 192, 54, 25, 230, 103, 67, 19, 12, 63, 16, 104, 192, 52, 233, 227, 24, 159, 176, 197, 32, 220, 208, 180, 167, 109, 0, 7, 71, 88, 194, 20, 198, 32, 139, 91, 212, 166, 82, 203, 58, 138, 164, 124, 51, 19, 103, 68, 106, 54, 35, 124, 146, 49, 70, 49, 6, 30, 88, 128, 1, 15, 32, 94, 17, 186, 208, 59, 65, 108, 2, 19, 152, 216, 196, 37, 18, 177, 136, 54, 192, 33, 14, 100, 208, 130, 17, 16, 228, 16, 6, 116, 0, 3, 114, 227, 1, 24, 52, 193, 11, 239, 201, 231, 113, 46, 58, 15, 53, 118, 20, 44, 99, 252, 171, 38, 48, 178, 254, 201, 123, 102, 99, 147, 202, 25, 133, 139, 69, 169, 30, 180, 56, 247, 138, 81, 152, 194, 20, 240, 34, 131, 21, 156, 192, 129, 5, 245, 173, 3, 14, 225, 129, 24, 244, 208, 9, 106, 108, 98, 8, 254, 225, 132, 187, 244, 144, 134, 43, 156, 97, 19, 98, 248, 128, 6, 180, 96, 26, 32, 120, 161, 13, 178, 232, 198, 55, 190, 1, 19, 232, 133, 143, 145, 205, 251, 88, 75, 110, 180, 139, 161, 0, 133, 71, 208, 171, 134, 125, 62, 120, 148, 107, 176, 100, 145, 45, 241, 228, 53, 184, 2, 14, 41, 61, 3, 45, 233, 179, 203, 150, 208, 178, 165, 186, 196, 15, 47, 47, 139, 217, 253, 238, 55, 141, 194, 80, 102, 47, 119, 82, 147, 255, 116, 150, 51, 196, 172, 201, 48, 180, 220, 229, 47, 7, 216, 203, 200, 12, 243, 47, 238, 96, 69, 40, 30, 56, 134, 28, 224, 128, 6, 165, 193, 1, 16, 154, 160, 133, 50, 188, 34, 23, 151, 90, 150, 109, 46, 229, 155, 175, 197, 102, 54, 198, 144, 73, 214, 24, 150, 139, 77, 40, 129, 3, 108, 163, 65, 19, 220, 48, 144, 77, 184, 1, 12, 62, 0, 194, 7, 90, 37, 55, 12, 176, 138, 6, 54, 24, 130, 22, 200, 96, 6, 53, 196, 129, 9, 60, 96, 155, 11, 63, 240, 1, 26, 0, 193, 13, 178, 0, 33, 77, 138, 242, 34, 111, 114, 113, 61, 220, 147, 143, 254, 120, 224, 211, 30, 202, 201, 196, 97, 255, 104, 22, 81, 146, 82, 189, 94, 204, 130, 90, 98, 212, 68, 25, 179, 101, 5, 37, 4, 129, 2, 46, 76, 208, 233, 14, 240, 0, 43, 136, 97, 19, 186, 216, 5, 19, 22, 49, 11, 78, 140, 162, 20, 155, 128, 131, 24, 218, 144, 211, 38, 32, 225, 12, 27, 48, 129, 40, 46, 101, 12, 138, 81, 35, 22, 110, 120, 158, 75, 90, 242, 60, 71, 66, 15, 71, 58, 18, 10, 46, 42, 105, 73, 245, 116, 143, 37, 156, 244, 228, 147, 178, 129, 213, 174, 88, 35, 46, 104, 65, 75, 150, 192, 26, 214, 150, 221, 133, 76, 102, 42, 19, 44, 239, 71, 12, 98, 4, 115, 128, 253, 147, 147, 96, 40, 243, 166, 57, 69, 38, 128, 135, 177, 235, 93, 241, 42, 204, 195, 236, 137, 77, 66, 227, 203, 55, 88, 193, 10, 70, 176, 161, 11, 56, 16, 1, 13, 68, 64, 65, 31, 20, 129, 9, 99, 160, 230, 163, 176, 230, 155, 216, 72, 138, 54, 152, 234, 13, 111, 188, 153, 141, 93, 92, 34, 8, 70, 28, 131, 41, 124, 97, 138, 54, 56, 97, 120, 15, 120, 192, 6, 62, 192, 3, 30, 224, 128, 3, 107, 219, 128, 6, 76, 219, 54, 134, 96, 128, 7, 74, 32, 3, 63, 131, 216, 129, 13, 216, 96, 3, 60, 8, 67, 18, 103, 82, 148, 10, 9, 171, 89, 35, 225, 69, 77, 254, 124, 101, 13, 196, 189, 72, 36, 153, 66, 79, 176, 128, 228, 69, 104, 109, 142, 22, 175, 64, 69, 41, 174, 117, 67, 56, 132, 193, 10, 61, 216, 192, 66, 76, 7, 46, 6, 40, 1, 13, 154, 160, 198, 44, 46, 1, 4, 78, 108, 98, 19, 99, 212, 195, 25, 202, 160, 4, 126, 2, 97, 12, 65, 48, 197, 55, 176, 231, 49, 221, 120, 98, 16, 146, 220, 137, 249, 6, 70, 163, 102, 52, 213, 165, 249, 185, 6, 55, 188, 55, 31, 145, 64, 110, 99, 159, 244, 30, 40, 59, 230, 177, 108, 60, 35, 26, 218, 176, 203, 87, 89, 57, 191, 249, 73, 3, 26, 244, 67, 43, 52, 94, 185, 12, 101, 76, 99, 25, 203, 32, 113, 95, 119, 153, 153, 55, 233, 76, 48, 43, 14, 32, 92, 97, 124, 203, 188, 226, 181, 175, 134, 201, 165, 154, 236, 250, 23, 63, 177, 97, 12, 99, 24, 77, 161, 112, 16, 4, 104, 106, 193, 23, 213, 100, 198, 165, 38, 203, 155, 155, 116, 205, 24, 177, 209, 26, 109, 178, 106, 10, 32, 48, 4, 9, 152, 184, 150, 26, 130, 96, 129, 4, 157, 214, 7, 52, 64, 2, 20, 194, 48, 7, 61, 112, 2, 14, 76, 208, 3, 25, 124, 192, 4, 39, 8, 33, 86, 29, 88, 8, 4, 56, 16, 132, 36, 196, 65, 11, 106, 116, 128, 6, 62, 208, 91, 48, 188, 162, 25, 46, 53, 15, 196, 18, 254, 154, 20, 92, 88, 241, 69, 203, 117, 143, 139, 48, 217, 19, 245, 176, 103, 138, 64, 137, 214, 180, 172, 91, 10, 77, 176, 247, 13, 112, 0, 131, 16, 102, 21, 1, 5, 9, 128, 33, 9, 26, 2, 25, 218, 64, 138, 117, 137, 161, 9, 160, 88, 68, 38, 24, 81, 105, 49, 32, 241, 13, 57, 101, 3, 53, 126, 149, 157, 108, 140, 195, 13, 158, 232, 134, 23, 29, 231, 146, 110, 128, 195, 162, 187, 104, 42, 46, 32, 70, 141, 163, 138, 231, 87, 191, 218, 228, 177, 91, 98, 141, 108, 40, 27, 148, 161, 164, 240, 134, 199, 196, 74, 105, 196, 165, 195, 101, 226, 176, 153, 96, 137, 12, 98, 32, 99, 26, 106, 237, 182, 50, 212, 186, 86, 94, 246, 108, 197, 44, 222, 25, 48, 115, 188, 75, 186, 218, 152, 198, 57, 238, 229, 140, 55, 131, 143, 123, 236, 181, 103, 251, 160, 199, 45, 216, 176, 6, 48, 116, 193, 8, 203, 52, 44, 14, 22, 149, 168, 85, 92, 141, 54, 34, 92, 242, 55, 111, 162, 100, 73, 145, 109, 22, 80, 48, 141, 22, 68, 177, 138, 55, 76, 1, 12, 163, 226, 128, 168, 138, 104, 2, 28, 8, 65, 9, 80, 32, 66, 18, 244, 176, 135, 78, 220, 110, 14, 156, 216, 3, 39, 186, 160, 230, 206, 218, 77, 33, 28, 104, 66, 25, 124, 128, 131, 4, 201, 234, 3, 65, 32, 67, 47, 158, 123, 254, 57, 246, 96, 244, 184, 54, 89, 240, 76, 148, 219, 220, 137, 22, 37, 107, 151, 211, 209, 116, 57, 138, 138, 87, 116, 98, 210, 111, 120, 131, 27, 194, 144, 4, 104, 110, 96, 65, 122, 187, 192, 3, 154, 160, 4, 48, 228, 194, 215, 189, 72, 194, 20, 58, 145, 161, 77, 232, 176, 13, 4, 17, 133, 39, 100, 241, 224, 164, 64, 216, 11, 164, 240, 138, 55, 158, 55, 146, 234, 221, 226, 71, 64, 34, 74, 129, 237, 243, 15, 4, 67, 143, 216, 227, 137, 30, 39, 179, 234, 73, 174, 64, 152, 194, 20, 38, 211, 225, 165, 129, 12, 196, 75, 227, 101, 208, 24, 241, 52, 66, 12, 238, 17, 123, 27, 220, 196, 40, 241, 50, 138, 113, 87, 163, 165, 155, 221, 179, 4, 160, 231, 61, 239, 87, 25, 223, 213, 198, 112, 109, 119, 188, 249, 113, 15, 213, 239, 117, 31, 240, 72, 225, 26, 212, 192, 134, 31, 51, 243, 80, 70, 64, 194, 18, 6, 174, 139, 202, 86, 195, 155, 28, 52, 184, 76, 30, 85, 141, 243, 240, 4, 14, 62, 216, 0, 24, 74, 225, 139, 55, 128, 65, 12, 119, 164, 65, 3, 78, 199, 0, 7, 60, 96, 160, 206, 81, 194, 7, 244, 198, 230, 30, 124, 128, 8, 123, 136, 195, 38, 76, 16, 134, 77, 188, 65, 12, 72, 224, 129, 6, 58, 176, 101, 14, 216, 139, 7, 110, 107, 51, 16, 52, 49, 20, 254, 198, 37, 133, 61, 186, 159, 201, 207, 171, 56, 209, 153, 160, 135, 61, 22, 213, 207, 23, 53, 135, 163, 98, 97, 21, 58, 193, 19, 198, 175, 210, 200, 64, 9, 132, 96, 8, 128, 192, 2, 56, 13, 206, 120, 0, 2, 128, 64, 16, 68, 225, 232, 112, 225, 21, 130, 160, 13, 104, 161, 20, 58, 161, 20, 74, 238, 20, 6, 194, 19, 64, 1, 216, 102, 68, 99, 188, 193, 23, 214, 96, 97, 146, 202, 124, 186, 129, 26, 72, 225, 22, 102, 225, 63, 132, 226, 137, 134, 239, 121, 136, 237, 88, 136, 237, 193, 64, 201, 170, 242, 75, 27, 158, 225, 25, 198, 164, 218, 56, 172, 241, 202, 164, 195, 148, 193, 8, 209, 202, 126, 94, 169, 219, 136, 129, 9, 137, 161, 24, 72, 172, 196, 138, 97, 25, 218, 205, 174, 92, 204, 151, 72, 111, 48, 104, 201, 220, 134, 169, 10, 81, 172, 221, 4, 67, 245, 196, 48, 31, 246, 161, 27, 50, 129, 199, 212, 160, 13, 36, 200, 80, 54, 32, 7, 126, 96, 9, 154, 96, 21, 142, 225, 81, 188, 233, 24, 172, 169, 131, 76, 200, 131, 206, 35, 27, 104, 129, 7, 18, 224, 7, 48, 129, 21, 46, 65, 13, 46, 97, 20, 72, 33, 187, 222, 128, 12, 20, 69, 3, 50, 32, 8, 70, 74, 92, 50, 128, 3, 56, 142, 3, 128, 192, 7, 52, 224, 10, 152, 160, 20, 62, 32, 9, 146, 254, 64, 12, 224, 192, 13, 18, 33, 109, 74, 75, 65, 56, 64, 12, 200, 96, 3, 6, 0, 2, 122, 43, 8, 198, 32, 22, 238, 14, 71, 124, 68, 82, 132, 78, 139, 52, 5, 88, 40, 103, 254, 100, 231, 89, 64, 34, 6, 107, 71, 20, 52, 33, 19, 198, 47, 119, 248, 73, 8, 144, 96, 8, 176, 175, 85, 30, 192, 2, 6, 192, 4, 54, 193, 122, 4, 141, 20, 128, 224, 13, 78, 33, 35, 78, 110, 22, 124, 65, 20, 10, 145, 23, 110, 97, 115, 112, 46, 27, 214, 64, 22, 254, 197, 124, 194, 135, 43, 254, 97, 22, 236, 99, 23, 102, 225, 22, 50, 98, 22, 118, 196, 39, 14, 236, 121, 88, 240, 27, 188, 1, 238, 224, 14, 100, 184, 66, 194, 64, 70, 27, 130, 144, 195, 28, 47, 219, 236, 167, 31, 255, 241, 149, 236, 7, 25, 42, 15, 220, 74, 204, 242, 138, 193, 242, 20, 242, 242, 138, 97, 222, 192, 112, 151, 60, 207, 77, 242, 231, 221, 106, 172, 34, 215, 141, 34, 41, 146, 31, 228, 42, 222, 236, 74, 12, 239, 161, 31, 244, 193, 26, 6, 139, 199, 24, 225, 8, 10, 229, 52, 220, 169, 9, 142, 0, 22, 174, 225, 22, 142, 172, 26, 76, 232, 24, 156, 129, 201, 116, 195, 155, 246, 143, 26, 174, 65, 20, 56, 160, 3, 224, 96, 22, 26, 193, 7, 48, 192, 8, 166, 160, 12, 220, 224, 18, 254, 62, 199, 93, 72, 161, 19, 242, 136, 12, 174, 128, 8, 122, 64, 120, 212, 8, 111, 208, 64, 20, 152, 32, 12, 130, 32, 8, 76, 128, 9, 24, 32, 3, 172, 96, 19, 142, 132, 20, 200, 192, 6, 52, 160, 156, 22, 130, 7, 212, 160, 11, 220, 12, 3, 130, 108, 8, 50, 97, 22, 48, 202, 215, 202, 163, 59, 152, 75, 255, 52, 133, 161, 184, 8, 63, 44, 112, 115, 106, 1, 67, 68, 161, 140, 46, 161, 213, 218, 128, 12, 162, 110, 8, 182, 143, 116, 78, 167, 3, 4, 64, 3, 240, 96, 22, 138, 130, 23, 122, 1, 90, 222, 224, 3, 196, 160, 35, 78, 65, 15, 74, 1, 13, 200, 96, 10, 220, 0, 59, 68, 130, 93, 48, 161, 12, 116, 97, 22, 110, 229, 27, 118, 13, 122, 236, 131, 22, 208, 195, 207, 36, 73, 23, 72, 1, 20, 72, 193, 25, 192, 66, 118, 104, 129, 20, 176, 11, 20, 68, 161, 20, 68, 173, 22, 114, 1, 61, 186, 131, 43, 180, 225, 8, 161, 33, 56, 133, 211, 31, 149, 129, 32, 137, 97, 196, 136, 83, 219, 72, 44, 220, 44, 111, 26, 166, 240, 242, 48, 111, 10, 133, 193, 33, 189, 80, 11, 205, 13, 103, 96, 204, 58, 125, 169, 11, 105, 140, 34, 235, 205, 48, 84, 175, 31, 250, 1, 31, 174, 33, 19, 6, 33, 223, 220, 96, 12, 156, 134, 130, 158, 73, 53, 94, 97, 254, 28, 122, 193, 155, 156, 193, 155, 128, 35, 82, 108, 18, 107, 228, 243, 200, 110, 34, 17, 130, 128, 9, 124, 97, 22, 250, 136, 57, 98, 14, 3, 46, 32, 3, 102, 69, 9, 198, 0, 14, 46, 65, 15, 42, 77, 143, 86, 199, 32, 200, 160, 9, 122, 32, 13, 58, 1, 10, 174, 128, 3, 32, 64, 3, 134, 224, 2, 62, 96, 14, 220, 101, 22, 52, 103, 20, 68, 209, 2, 222, 12, 9, 218, 128, 6, 4, 0, 2, 104, 128, 7, 50, 144, 29, 169, 193, 122, 100, 34, 209, 52, 197, 162, 40, 7, 72, 234, 18, 208, 50, 39, 90, 80, 193, 93, 106, 234, 134, 112, 39, 167, 202, 64, 8, 84, 139, 7, 168, 142, 211, 48, 0, 2, 40, 224, 183, 80, 1, 23, 166, 101, 22, 100, 193, 16, 225, 128, 19, 102, 225, 20, 178, 192, 32, 110, 207, 13, 102, 1, 113, 192, 97, 22, 154, 128, 22, 172, 129, 22, 206, 96, 17, 138, 226, 31, 186, 1, 62, 104, 97, 97, 18, 202, 63, 64, 129, 17, 240, 0, 20, 58, 1, 15, 240, 128, 9, 140, 192, 187, 230, 102, 3, 50, 64, 3, 136, 39, 8, 202, 96, 16, 84, 33, 25, 138, 179, 126, 64, 12, 196, 6, 178, 56, 145, 161, 80, 143, 243, 126, 8, 50, 81, 155, 80, 173, 14, 114, 10, 159, 48, 58, 139, 97, 10, 159, 83, 24, 74, 108, 222, 44, 245, 174, 168, 254, 211, 174, 244, 228, 48, 174, 48, 221, 180, 243, 221, 216, 170, 58, 191, 16, 83, 197, 243, 30, 188, 65, 20, 240, 96, 16, 22, 97, 17, 10, 235, 223, 50, 192, 13, 151, 224, 8, 88, 193, 29, 226, 83, 63, 191, 41, 168, 18, 238, 185, 100, 194, 24, 172, 137, 12, 48, 160, 13, 110, 225, 16, 59, 39, 66, 58, 208, 9, 224, 70, 2, 98, 203, 133, 54, 0, 8, 134, 128, 8, 78, 192, 4, 176, 192, 50, 75, 193, 20, 52, 161, 19, 168, 117, 19, 206, 128, 9, 154, 96, 8, 50, 48, 236, 106, 231, 63, 98, 48, 189, 250, 134, 109, 20, 0, 235, 202, 224, 1, 20, 128, 120, 108, 128, 9, 24, 51, 97, 42, 135, 46, 99, 212, 137, 240, 195, 255, 116, 238, 232, 120, 97, 22, 50, 2, 21, 68, 129, 233, 198, 143, 65, 115, 10, 12, 128, 160, 7, 120, 192, 4, 134, 71, 65, 18, 36, 26, 53, 1, 21, 124, 129, 118, 120, 161, 20, 222, 128, 238, 112, 1, 36, 166, 117, 14, 244, 116, 20, 236, 47, 27, 80, 161, 8, 70, 225, 168, 230, 224, 13, 110, 45, 23, 122, 225, 49, 119, 129, 22, 140, 161, 66, 104, 65, 20, 212, 96, 12, 240, 160, 13, 206, 64, 12, 8, 115, 130, 62, 160, 52, 76, 99, 4, 114, 224, 11, 24, 225, 21, 144, 161, 218, 2, 213, 8, 29, 47, 56, 11, 213, 80, 23, 245, 103, 254, 187, 77, 81, 25, 245, 57, 151, 161, 18, 158, 48, 82, 45, 15, 58, 139, 129, 82, 49, 111, 245, 196, 80, 222, 228, 237, 30, 242, 33, 31, 240, 33, 31, 50, 21, 175, 50, 131, 77, 34, 178, 244, 4, 8, 199, 170, 16, 79, 62, 178, 31, 224, 97, 21, 206, 144, 16, 66, 129, 13, 250, 141, 52, 68, 64, 4, 114, 224, 57, 24, 225, 30, 154, 33, 23, 192, 102, 132, 100, 163, 54, 98, 35, 111, 11, 110, 161, 138, 224, 2, 18, 1, 23, 78, 130, 22, 54, 106, 29, 155, 1, 9, 26, 224, 234, 78, 101, 85, 216, 70, 111, 30, 64, 85, 76, 96, 8, 60, 113, 14, 46, 193, 93, 70, 97, 64, 226, 5, 14, 54, 225, 63, 121, 145, 90, 98, 65, 22, 86, 33, 14, 122, 128, 3, 180, 76, 65, 156, 32, 14, 108, 64, 42, 18, 43, 8, 110, 5, 216, 202, 3, 94, 137, 197, 60, 162, 11, 23, 141, 238, 89, 4, 112, 21, 6, 194, 23, 47, 97, 19, 4, 161, 213, 206, 64, 13, 150, 35, 8, 206, 143, 68, 31, 128, 160, 220, 229, 13, 74, 161, 115, 53, 161, 166, 218, 192, 254, 152, 20, 100, 35, 118, 23, 86, 23, 21, 222, 160, 8, 68, 225, 193, 168, 1, 19, 200, 64, 112, 193, 161, 66, 132, 194, 23, 50, 97, 20, 224, 96, 13, 220, 64, 16, 24, 161, 17, 220, 96, 13, 214, 224, 11, 188, 192, 254, 11, 180, 224, 135, 128, 224, 7, 124, 0, 9, 214, 0, 15, 32, 161, 195, 54, 76, 56, 125, 182, 56, 29, 47, 81, 167, 65, 219, 180, 141, 57, 149, 51, 220, 152, 54, 82, 159, 83, 58, 19, 114, 25, 40, 149, 128, 43, 161, 105, 61, 178, 129, 29, 88, 245, 176, 118, 245, 122, 70, 79, 178, 22, 59, 217, 132, 35, 245, 234, 174, 248, 106, 174, 112, 140, 31, 118, 161, 17, 214, 128, 17, 6, 203, 223, 254, 45, 53, 150, 128, 13, 228, 193, 27, 110, 161, 25, 120, 149, 247, 168, 225, 55, 238, 48, 107, 192, 169, 224, 118, 97, 116, 4, 97, 22, 4, 1, 15, 46, 225, 21, 28, 51, 100, 143, 107, 9, 14, 87, 203, 76, 107, 136, 25, 55, 182, 222, 6, 3, 62, 96, 8, 192, 128, 12, 224, 224, 233, 218, 224, 13, 238, 40, 6, 99, 80, 22, 2, 36, 22, 124, 97, 21, 98, 33, 19, 28, 228, 72, 219, 134, 3, 212, 160, 9, 24, 162, 181, 56, 32, 19, 116, 161, 23, 90, 247, 62, 42, 135, 70, 213, 195, 69, 0, 45, 163, 138, 66, 90, 98, 240, 186, 14, 81, 19, 126, 241, 18, 4, 33, 119, 200, 128, 12, 150, 3, 9, 4, 22, 8, 148, 160, 13, 38, 247, 56, 192, 32, 19, 222, 160, 9, 56, 192, 1, 252, 229, 13, 64, 1, 68, 117, 239, 89, 170, 103, 4, 117, 225, 108, 188, 180, 59, 182, 254, 67, 20, 192, 224, 63, 160, 135, 26, 122, 129, 20, 218, 192, 11, 62, 193, 21, 88, 1, 22, 88, 193, 21, 212, 10, 22, 132, 243, 103, 137, 97, 24, 134, 1, 22, 138, 33, 103, 159, 65, 56, 57, 236, 149, 241, 23, 81, 129, 214, 127, 255, 151, 57, 15, 152, 33, 165, 16, 129, 133, 161, 105, 123, 249, 104, 75, 76, 24, 18, 184, 105, 43, 193, 35, 35, 248, 129, 145, 217, 82, 47, 53, 108, 57, 111, 220, 252, 199, 83, 45, 114, 28, 70, 97, 16, 66, 120, 17, 150, 32, 7, 120, 160, 109, 221, 214, 130, 180, 192, 27, 238, 109, 113, 120, 181, 82, 156, 68, 62, 131, 133, 54, 108, 114, 12, 224, 79, 16, 220, 224, 212, 10, 241, 49, 217, 133, 23, 178, 129, 10, 10, 180, 136, 144, 177, 136, 223, 134, 113, 21, 194, 33, 12, 192, 109, 90, 229, 12, 220, 101, 90, 6, 112, 21, 144, 178, 114, 125, 209, 23, 187, 0, 158, 88, 72, 65, 152, 128, 9, 78, 39, 2, 228, 102, 14, 128, 226, 28, 105, 240, 60, 104, 20, 41, 98, 145, 61, 140, 238, 60, 202, 120, 22, 246, 210, 186, 244, 181, 19, 124, 241, 134, 22, 33, 119, 212, 96, 213, 152, 67, 9, 194, 224, 10, 134, 64, 3, 154, 96, 71, 47, 33, 109, 30, 64, 2, 54, 160, 7, 198, 128, 26, 144, 64, 2, 68, 192, 8, 172, 128, 17, 68, 1, 21, 254, 146, 194, 13, 94, 97, 54, 174, 97, 138, 194, 131, 39, 98, 161, 67, 72, 97, 147, 63, 161, 17, 84, 193, 21, 96, 225, 103, 145, 1, 22, 84, 1, 22, 96, 1, 18, 96, 97, 24, 182, 13, 149, 161, 154, 219, 96, 25, 127, 167, 193, 103, 11, 21, 220, 252, 55, 171, 153, 51, 220, 8, 152, 128, 121, 89, 152, 123, 185, 151, 139, 161, 18, 212, 90, 152, 143, 118, 24, 214, 58, 153, 27, 184, 30, 250, 129, 174, 31, 120, 51, 42, 24, 245, 42, 18, 11, 73, 47, 151, 240, 1, 23, 220, 0, 61, 141, 96, 61, 1, 174, 8, 166, 230, 22, 246, 193, 24, 236, 208, 54, 104, 227, 60, 108, 3, 155, 110, 210, 69, 198, 0, 9, 112, 1, 21, 220, 32, 19, 80, 45, 19, 60, 33, 100, 217, 101, 23, 174, 1, 9, 138, 72, 158, 8, 20, 3, 34, 17, 3, 44, 96, 250, 140, 152, 33, 20, 66, 33, 194, 229, 120, 103, 161, 23, 106, 129, 186, 0, 250, 138, 105, 179, 114, 51, 33, 44, 235, 166, 133, 4, 160, 120, 208, 149, 136, 30, 4, 53, 49, 154, 162, 136, 197, 255, 158, 168, 139, 46, 7, 63, 96, 48, 100, 171, 11, 67, 104, 202, 23, 235, 184, 210, 2, 179, 12, 4, 19, 9, 146, 192, 4, 46, 142, 6, 244, 180, 7, 214, 134, 182, 138, 0, 8, 136, 20, 120, 77, 227, 180, 57, 192, 7, 150, 64, 254, 13, 224, 128, 20, 140, 66, 179, 162, 168, 26, 116, 33, 168, 89, 147, 170, 91, 33, 25, 146, 97, 24, 92, 129, 190, 139, 33, 25, 144, 97, 190, 135, 129, 16, 26, 97, 190, 81, 185, 190, 91, 89, 191, 241, 23, 127, 185, 45, 172, 161, 154, 172, 205, 90, 173, 206, 154, 128, 135, 1, 129, 121, 57, 82, 133, 193, 173, 223, 186, 194, 39, 92, 152, 223, 225, 30, 222, 129, 30, 232, 161, 30, 232, 225, 30, 62, 28, 153, 51, 28, 175, 27, 184, 58, 239, 196, 221, 182, 80, 59, 3, 99, 28, 24, 97, 176, 221, 192, 11, 12, 27, 81, 166, 230, 19, 246, 97, 28, 54, 136, 88, 154, 140, 133, 189, 201, 69, 198, 198, 60, 46, 69, 12, 130, 224, 2, 215, 153, 17, 224, 133, 179, 99, 251, 179, 175, 161, 9, 76, 99, 201, 53, 224, 2, 98, 37, 86, 142, 84, 85, 234, 102, 113, 243, 70, 8, 56, 225, 168, 183, 81, 182, 121, 17, 64, 168, 229, 138, 177, 203, 19, 70, 33, 22, 202, 32, 3, 76, 75, 65, 130, 0, 14, 16, 19, 2, 58, 64, 2, 196, 224, 114, 206, 241, 71, 202, 121, 254, 214, 99, 123, 64, 150, 93, 0, 186, 115, 118, 52, 41, 207, 238, 18, 254, 210, 13, 254, 117, 164, 98, 69, 110, 68, 64, 180, 83, 212, 2, 158, 137, 7, 242, 172, 181, 76, 171, 85, 50, 0, 181, 8, 214, 52, 124, 254, 224, 7, 144, 160, 12, 74, 100, 22, 102, 35, 27, 116, 97, 51, 193, 195, 25, 232, 59, 25, 136, 97, 190, 183, 77, 174, 27, 1, 18, 92, 65, 21, 134, 65, 171, 253, 55, 33, 161, 26, 26, 114, 214, 103, 251, 55, 193, 183, 141, 193, 147, 54, 105, 135, 65, 194, 151, 161, 214, 19, 88, 174, 17, 120, 24, 220, 90, 174, 45, 92, 152, 43, 1, 24, 36, 97, 194, 57, 188, 31, 56, 156, 30, 228, 225, 216, 59, 252, 35, 235, 1, 196, 157, 253, 174, 67, 156, 196, 43, 152, 222, 80, 28, 197, 205, 77, 174, 106, 129, 13, 6, 129, 17, 96, 156, 109, 81, 67, 106, 180, 128, 13, 220, 225, 30, 114, 97, 71, 120, 53, 156, 71, 136, 6, 103, 98, 113, 154, 4, 14, 50, 96, 3, 217, 64, 132, 137, 156, 17, 232, 184, 167, 83, 225, 76, 109, 122, 3, 130, 192, 6, 2, 170, 183, 54, 192, 8, 108, 128, 72, 135, 167, 180, 59, 224, 234, 216, 134, 1, 134, 192, 58, 2, 112, 182, 169, 171, 115, 3, 196, 182, 13, 177, 22, 120, 67, 13, 250, 198, 181, 55, 0, 14, 56, 192, 0, 138, 136, 2, 40, 132, 61, 178, 38, 88, 180, 71, 39, 130, 133, 61, 70, 194, 135, 153, 84, 22, 240, 85, 212, 104, 179, 20, 198, 104, 19, 224, 5, 14, 124, 104, 116, 136, 136, 158, 49, 192, 7, 14, 196, 52, 48, 64, 109, 254, 24, 32, 69, 79, 203, 223, 29, 90, 209, 91, 101, 21, 125, 96, 181, 120, 0, 8, 150, 128, 12, 60, 225, 21, 4, 129, 100, 159, 171, 207, 116, 225, 24, 66, 129, 190, 91, 65, 21, 90, 193, 17, 78, 253, 170, 61, 29, 25, 244, 251, 150, 13, 149, 213, 89, 253, 213, 115, 54, 193, 199, 122, 193, 107, 93, 194, 155, 246, 236, 213, 58, 173, 43, 188, 18, 120, 29, 216, 129, 225, 237, 129, 65, 24, 90, 65, 18, 144, 157, 195, 55, 252, 29, 54, 92, 60, 233, 65, 60, 251, 161, 217, 229, 193, 217, 65, 252, 216, 197, 208, 216, 145, 121, 106, 181, 246, 11, 111, 76, 221, 240, 193, 104, 204, 1, 132, 217, 192, 13, 70, 35, 7, 40, 72, 198, 167, 64, 11, 152, 97, 31, 178, 1, 23, 142, 172, 201, 176, 105, 113, 230, 19, 111, 241, 243, 82, 116, 18, 21, 102, 33, 222, 229, 93, 179, 81, 13, 15, 80, 161, 23, 56, 130, 20, 184, 245, 3, 126, 128, 7, 186, 0, 9, 230, 64, 12, 196, 160, 42, 193, 160, 13, 162, 3, 7, 108, 160, 181, 72, 20, 2, 152, 128, 20, 104, 129, 163, 181, 28, 229, 101, 1, 64, 30, 126, 21, 74, 97, 21, 226, 243, 155, 158, 68, 16, 76, 67, 111, 24, 128, 3, 218, 128, 234, 56, 128, 17, 57, 161, 66, 0, 205, 70, 243, 3, 163, 237, 67, 118, 216, 5, 23, 54, 42, 254, 229, 105, 103, 71, 49, 196, 90, 13, 208, 13, 196, 192, 119, 175, 142, 85, 28, 186, 85, 104, 229, 57, 228, 223, 116, 4, 96, 0, 6, 224, 1, 23, 157, 13, 161, 220, 180, 228, 102, 3, 12, 101, 109, 0, 130, 193, 15, 108, 109, 216, 140, 170, 101, 140, 26, 181, 91, 177, 240, 208, 106, 166, 235, 88, 50, 88, 176, 138, 181, 26, 70, 172, 24, 178, 100, 197, 52, 38, 67, 6, 50, 36, 200, 143, 34, 69, 18, 59, 137, 178, 88, 198, 142, 44, 59, 14, 43, 54, 236, 165, 176, 153, 194, 138, 85, 26, 86, 73, 152, 36, 154, 52, 37, 1, 3, 38, 44, 167, 176, 119, 244, 228, 209, 179, 215, 207, 157, 188, 165, 242, 222, 33, 237, 215, 143, 40, 189, 169, 244, 250, 77, 189, 215, 239, 30, 85, 172, 92, 181, 122, 189, 7, 22, 44, 63, 126, 248, 240, 237, 195, 71, 246, 172, 217, 178, 101, 247, 237, 35, 203, 239, 155, 51, 54, 110, 24, 253, 192, 129, 67, 132, 136, 31, 72, 142, 116, 209, 194, 74, 223, 59, 93, 198, 154, 25, 54, 108, 44, 113, 98, 196, 9, 19, 82, 171, 229, 228, 147, 45, 60, 140, 40, 51, 186, 148, 9, 207, 34, 80, 165, 102, 237, 218, 133, 109, 151, 18, 36, 96, 152, 108, 210, 195, 137, 211, 37, 19, 80, 162, 36, 49, 163, 135, 142, 18, 38, 73, 108, 0, 225, 64, 134, 148, 173, 254, 89, 188, 123, 241, 158, 37, 75, 22, 45, 89, 175, 124, 173, 122, 85, 107, 151, 66, 133, 213, 174, 121, 243, 247, 137, 6, 7, 6, 16, 18, 96, 104, 242, 128, 129, 6, 14, 28, 124, 81, 251, 220, 76, 249, 46, 93, 224, 195, 55, 163, 198, 171, 87, 45, 94, 188, 104, 241, 70, 133, 42, 150, 172, 248, 177, 70, 149, 42, 229, 105, 83, 27, 55, 111, 222, 136, 193, 240, 0, 6, 0, 114, 135, 65, 16, 76, 104, 193, 68, 25, 104, 96, 247, 192, 3, 16, 60, 8, 1, 3, 10, 12, 32, 128, 0, 12, 4, 184, 65, 134, 25, 88, 0, 1, 7, 24, 88, 240, 0, 7, 27, 0, 65, 139, 22, 23, 108, 128, 131, 17, 93, 8, 18, 138, 40, 108, 144, 66, 158, 46, 189, 24, 115, 203, 45, 172, 192, 130, 140, 74, 26, 17, 3, 18, 143, 37, 33, 227, 35, 49, 36, 241, 40, 36, 144, 29, 101, 180, 146, 75, 29, 213, 196, 164, 48, 195, 204, 36, 84, 37, 197, 192, 50, 147, 79, 63, 73, 146, 19, 150, 62, 13, 213, 212, 59, 73, 33, 21, 79, 63, 75, 37, 21, 207, 59, 75, 209, 67, 148, 85, 86, 21, 53, 149, 60, 89, 129, 37, 79, 88, 114, 206, 121, 15, 91, 101, 193, 165, 150, 91, 118, 238, 243, 206, 43, 179, 208, 101, 132, 8, 120, 237, 101, 196, 20, 93, 128, 161, 6, 59, 251, 100, 131, 11, 254, 98, 135, 81, 211, 140, 51, 204, 48, 179, 24, 53, 138, 25, 19, 6, 35, 183, 176, 177, 8, 35, 158, 102, 226, 105, 35, 153, 128, 2, 74, 163, 183, 252, 131, 139, 30, 100, 148, 114, 74, 44, 155, 152, 146, 134, 24, 113, 192, 209, 70, 20, 87, 92, 17, 6, 18, 66, 8, 1, 4, 19, 137, 248, 226, 222, 44, 181, 212, 194, 219, 112, 178, 196, 66, 139, 47, 202, 34, 196, 140, 51, 204, 101, 227, 141, 55, 221, 84, 3, 14, 38, 31, 96, 192, 128, 5, 10, 116, 16, 7, 128, 54, 108, 208, 195, 44, 204, 236, 242, 79, 120, 188, 144, 27, 30, 104, 205, 248, 134, 11, 47, 179, 208, 2, 47, 125, 240, 209, 18, 11, 41, 246, 106, 34, 8, 28, 130, 8, 50, 8, 28, 101, 112, 16, 160, 135, 34, 114, 0, 4, 25, 98, 32, 49, 4, 19, 67, 92, 16, 96, 131, 22, 100, 112, 1, 6, 16, 40, 192, 0, 3, 2, 12, 160, 128, 2, 16, 72, 192, 97, 131, 24, 108, 64, 195, 134, 31, 111, 128, 1, 195, 16, 88, 192, 1, 14, 94, 140, 177, 72, 41, 183, 212, 162, 139, 46, 184, 100, 162, 137, 46, 197, 36, 131, 36, 143, 36, 253, 24, 36, 74, 62, 159, 164, 18, 206, 47, 41, 89, 211, 208, 77, 242, 4, 165, 78, 60, 237, 212, 138, 78, 149, 72, 34, 73, 60, 74, 121, 249, 142, 59, 102, 86, 237, 254, 142, 59, 80, 89, 221, 20, 83, 246, 52, 53, 213, 154, 84, 25, 5, 214, 59, 95, 209, 89, 39, 91, 112, 177, 117, 86, 158, 241, 132, 194, 74, 35, 140, 44, 145, 65, 94, 56, 228, 96, 196, 18, 93, 140, 161, 69, 46, 251, 192, 147, 203, 49, 205, 40, 230, 204, 98, 204, 68, 122, 169, 49, 187, 84, 179, 9, 25, 212, 84, 198, 72, 167, 148, 225, 49, 170, 38, 164, 206, 66, 141, 46, 168, 108, 210, 73, 44, 165, 136, 162, 137, 41, 164, 204, 226, 219, 44, 177, 156, 114, 202, 30, 165, 144, 178, 201, 16, 72, 104, 34, 156, 111, 196, 194, 11, 111, 112, 177, 248, 18, 75, 47, 199, 80, 195, 204, 179, 221, 120, 3, 206, 53, 213, 40, 110, 12, 28, 27, 116, 64, 157, 0, 60, 192, 129, 65, 7, 31, 112, 128, 68, 47, 223, 237, 194, 94, 121, 212, 224, 210, 75, 47, 188, 220, 66, 47, 41, 157, 160, 242, 46, 178, 180, 216, 123, 239, 27, 130, 100, 178, 137, 32, 110, 184, 1, 6, 192, 220, 61, 160, 65, 196, 77, 192, 129, 6, 19, 0, 111, 224, 33, 201, 1, 242, 64, 3, 13, 0, 126, 12, 176, 6, 69, 40, 66, 13, 123, 64, 134, 50, 228, 160, 6, 93, 32, 3, 52, 192, 129, 116, 68, 36, 130, 28, 44, 97, 12, 153, 120, 69, 101, 110, 209, 145, 143, 36, 3, 103, 62, 50, 73, 143, 80, 210, 254, 35, 32, 1, 77, 72, 48, 105, 137, 147, 106, 82, 12, 164, 245, 68, 105, 176, 16, 10, 48, 114, 242, 180, 160, 204, 164, 21, 149, 200, 90, 214, 164, 102, 195, 119, 188, 67, 106, 56, 172, 154, 14, 205, 196, 20, 52, 21, 197, 40, 104, 186, 71, 83, 140, 24, 39, 171, 116, 37, 44, 118, 66, 75, 91, 202, 162, 15, 39, 214, 227, 22, 131, 192, 195, 18, 150, 224, 64, 14, 212, 237, 7, 122, 27, 195, 24, 18, 33, 143, 124, 116, 35, 23, 131, 27, 92, 99, 204, 152, 152, 195, 21, 46, 33, 178, 0, 194, 44, 74, 209, 134, 200, 121, 170, 83, 153, 24, 85, 35, 72, 69, 139, 93, 100, 162, 20, 177, 64, 5, 39, 68, 1, 62, 94, 224, 194, 115, 154, 216, 132, 33, 231, 160, 58, 84, 100, 226, 13, 163, 235, 197, 110, 222, 245, 46, 90, 216, 34, 56, 190, 144, 69, 47, 116, 97, 24, 72, 53, 7, 28, 192, 203, 198, 164, 118, 145, 11, 98, 213, 34, 14, 207, 139, 208, 0, 122, 213, 161, 107, 129, 97, 22, 188, 48, 207, 114, 118, 145, 61, 92, 224, 226, 61, 157, 232, 68, 41, 232, 99, 58, 84, 144, 194, 115, 152, 184, 132, 38, 10, 185, 136, 124, 181, 129, 9, 26, 8, 16, 5, 80, 134, 1, 14, 40, 193, 13, 109, 32, 3, 16, 124, 0, 132, 12, 249, 96, 3, 39, 10, 130, 3, 51, 144, 76, 254, 20, 37, 147, 6, 207, 219, 64, 131, 178, 35, 33, 234, 0, 200, 2, 40, 34, 217, 5, 34, 198, 129, 144, 113, 136, 1, 6, 104, 192, 4, 24, 129, 138, 70, 112, 228, 72, 35, 9, 137, 206, 58, 136, 12, 104, 152, 4, 37, 56, 107, 201, 75, 98, 114, 52, 21, 210, 164, 24, 59, 161, 82, 37, 90, 241, 19, 96, 64, 173, 21, 62, 129, 218, 57, 220, 209, 142, 115, 180, 3, 135, 54, 188, 97, 69, 43, 186, 20, 32, 50, 229, 76, 102, 26, 226, 152, 178, 34, 38, 180, 49, 241, 78, 78, 52, 139, 51, 6, 177, 134, 49, 28, 1, 47, 28, 184, 0, 14, 248, 178, 183, 51, 140, 225, 24, 130, 249, 76, 97, 26, 83, 152, 50, 158, 39, 167, 230, 65, 130, 41, 102, 1, 135, 78, 45, 98, 168, 140, 160, 25, 35, 72, 5, 138, 81, 224, 1, 15, 240, 17, 197, 28, 58, 67, 58, 82, 240, 64, 3, 27, 240, 193, 16, 148, 0, 4, 10, 152, 64, 8, 97, 16, 69, 44, 120, 35, 202, 223, 0, 231, 88, 177, 72, 206, 164, 140, 209, 187, 106, 252, 174, 27, 215, 176, 148, 49, 66, 89, 139, 99, 173, 130, 20, 96, 208, 223, 196, 130, 208, 132, 14, 105, 64, 3, 112, 144, 89, 245, 4, 153, 189, 244, 204, 2, 62, 175, 66, 197, 231, 220, 99, 175, 122, 137, 2, 125, 158, 208, 4, 250, 18, 193, 204, 54, 254, 52, 129, 3, 29, 2, 16, 254, 50, 0, 134, 57, 192, 1, 14, 72, 0, 2, 16, 130, 0, 46, 208, 238, 37, 8, 65, 224, 193, 199, 120, 208, 3, 30, 4, 193, 179, 64, 248, 1, 6, 66, 86, 50, 147, 89, 140, 98, 15, 176, 0, 0, 169, 217, 0, 109, 53, 224, 1, 18, 144, 128, 2, 188, 160, 11, 97, 172, 100, 131, 65, 251, 81, 72, 166, 145, 207, 15, 230, 232, 102, 25, 249, 103, 76, 158, 148, 66, 129, 206, 176, 105, 74, 219, 137, 117, 21, 10, 181, 236, 98, 169, 21, 231, 232, 174, 119, 221, 241, 208, 135, 86, 148, 162, 54, 108, 135, 15, 185, 150, 181, 174, 109, 148, 41, 86, 217, 40, 86, 222, 36, 167, 38, 222, 67, 31, 218, 104, 196, 250, 188, 112, 132, 37, 228, 0, 98, 120, 211, 219, 25, 200, 240, 137, 123, 228, 195, 27, 184, 72, 220, 165, 24, 195, 83, 106, 104, 34, 12, 216, 184, 132, 131, 35, 71, 199, 81, 29, 149, 84, 120, 112, 67, 39, 122, 33, 10, 86, 165, 130, 22, 122, 120, 21, 18, 156, 240, 129, 12, 56, 168, 1, 212, 25, 130, 40, 220, 51, 44, 245, 252, 70, 56, 200, 50, 235, 89, 141, 161, 86, 224, 181, 149, 82, 112, 157, 69, 113, 62, 231, 88, 36, 28, 15, 2, 217, 81, 3, 15, 24, 192, 129, 15, 152, 160, 20, 189, 192, 158, 145, 219, 101, 186, 83, 108, 254, 130, 19, 134, 253, 28, 249, 98, 81, 31, 199, 130, 66, 20, 160, 112, 236, 37, 214, 23, 135, 56, 36, 65, 98, 26, 248, 16, 254, 56, 208, 133, 77, 244, 103, 52, 70, 152, 38, 16, 140, 80, 213, 103, 250, 32, 8, 34, 130, 38, 52, 59, 139, 132, 213, 34, 129, 7, 248, 195, 129, 55, 29, 4, 33, 138, 5, 32, 1, 26, 203, 216, 3, 20, 192, 219, 28, 120, 161, 17, 21, 185, 25, 71, 240, 185, 145, 228, 42, 26, 103, 64, 234, 103, 63, 89, 242, 220, 39, 73, 151, 38, 66, 129, 26, 148, 24, 218, 80, 237, 62, 45, 187, 222, 237, 244, 69, 179, 214, 142, 136, 102, 237, 29, 233, 8, 181, 60, 46, 122, 106, 171, 229, 112, 189, 242, 152, 135, 155, 206, 244, 38, 248, 50, 241, 30, 252, 96, 71, 40, 6, 193, 6, 252, 234, 173, 8, 34, 160, 129, 4, 99, 202, 6, 107, 228, 163, 31, 153, 187, 84, 225, 14, 119, 24, 51, 154, 17, 23, 96, 216, 5, 38, 200, 160, 137, 43, 211, 241, 19, 158, 0, 69, 181, 73, 117, 134, 77, 160, 226, 196, 168, 120, 66, 18, 146, 96, 171, 52, 112, 130, 124, 164, 184, 196, 21, 156, 16, 7, 90, 168, 7, 23, 181, 96, 247, 111, 134, 227, 158, 92, 244, 14, 82, 212, 168, 134, 55, 190, 17, 188, 106, 64, 36, 23, 47, 11, 206, 42, 62, 231, 9, 79, 128, 74, 254, 16, 65, 160, 1, 242, 26, 20, 7, 14, 68, 224, 3, 26, 32, 130, 123, 216, 37, 200, 119, 149, 130, 19, 182, 212, 229, 40, 116, 249, 10, 40, 131, 78, 19, 247, 249, 101, 33, 213, 215, 6, 53, 144, 193, 9, 24, 136, 0, 192, 146, 249, 177, 41, 100, 66, 15, 151, 80, 66, 19, 176, 186, 218, 38, 64, 115, 8, 158, 117, 130, 136, 60, 187, 1, 215, 229, 45, 8, 31, 240, 193, 156, 121, 0, 116, 0, 241, 216, 67, 18, 19, 64, 2, 2, 144, 49, 8, 92, 224, 7, 107, 128, 4, 44, 116, 118, 51, 29, 133, 68, 159, 208, 64, 174, 62, 19, 205, 65, 34, 161, 4, 35, 144, 118, 174, 10, 129, 178, 19, 164, 49, 205, 105, 45, 212, 174, 166, 37, 209, 233, 180, 119, 23, 188, 161, 142, 232, 57, 208, 177, 246, 238, 162, 163, 162, 226, 253, 244, 168, 127, 216, 143, 121, 136, 201, 42, 82, 169, 10, 88, 160, 2, 248, 81, 184, 129, 13, 107, 248, 65, 14, 142, 48, 5, 35, 228, 192, 215, 75, 64, 212, 24, 60, 65, 143, 123, 124, 163, 192, 105, 52, 112, 225, 206, 179, 139, 52, 94, 130, 19, 187, 216, 0, 25, 50, 1, 135, 186, 52, 194, 177, 159, 8, 133, 29, 245, 208, 9, 212, 247, 162, 20, 39, 232, 193, 16, 68, 208, 131, 39, 216, 42, 10, 97, 48, 67, 26, 54, 65, 10, 84, 204, 50, 197, 254, 194, 122, 55, 45, 106, 145, 139, 204, 47, 39, 198, 249, 54, 134, 204, 134, 37, 87, 128, 255, 18, 19, 137, 200, 23, 25, 62, 112, 231, 7, 4, 161, 13, 15, 160, 192, 6, 40, 32, 6, 248, 200, 242, 93, 168, 56, 5, 39, 88, 69, 138, 82, 140, 15, 202, 186, 4, 221, 234, 62, 103, 10, 77, 96, 98, 17, 111, 24, 252, 24, 202, 0, 132, 7, 116, 192, 67, 1, 74, 38, 24, 162, 189, 137, 50, 36, 40, 206, 72, 104, 130, 103, 145, 208, 127, 77, 144, 33, 70, 192, 102, 120, 165, 4, 74, 0, 6, 70, 0, 4, 100, 6, 116, 27, 96, 1, 32, 66, 3, 116, 6, 1, 21, 146, 0, 231, 212, 0, 56, 160, 10, 28, 241, 92, 42, 49, 18, 84, 151, 104, 27, 81, 36, 34, 36, 36, 66, 3, 19, 56, 83, 17, 145, 6, 80, 146, 38, 12, 84, 2, 20, 194, 208, 130, 218, 21, 20, 102, 151, 93, 145, 128, 37, 52, 24, 9, 52, 136, 14, 232, 240, 13, 57, 168, 131, 60, 200, 131, 236, 192, 14, 112, 39, 119, 111, 199, 131, 18, 213, 118, 161, 102, 119, 89, 147, 20, 91, 163, 53, 74, 193, 106, 65, 84, 15, 175, 48, 8, 99, 192, 6, 119, 209, 95, 71, 80, 4, 47, 133, 128, 98, 224, 5, 204, 176, 15, 237, 96, 13, 148, 119, 41, 153, 183, 24, 8, 102, 12, 181, 192, 96, 100, 144, 1, 254, 76, 176, 8, 112, 128, 7, 141, 48, 122, 159, 160, 9, 161, 80, 101, 154, 192, 100, 23, 214, 9, 27, 64, 4, 102, 64, 4, 187, 18, 5, 116, 48, 7, 105, 112, 43, 115, 112, 10, 194, 17, 44, 193, 242, 110, 158, 161, 56, 131, 67, 13, 215, 192, 73, 217, 112, 13, 189, 163, 11, 188, 128, 124, 198, 49, 10, 213, 230, 88, 153, 112, 9, 111, 16, 122, 106, 48, 76, 65, 38, 64, 90, 0, 6, 64, 246, 1, 54, 112, 9, 224, 19, 31, 167, 208, 9, 167, 224, 11, 247, 145, 88, 199, 98, 88, 154, 32, 10, 246, 50, 10, 162, 0, 58, 232, 35, 76, 100, 0, 6, 96, 224, 3, 13, 210, 82, 17, 99, 125, 101, 144, 126, 141, 99, 5, 100, 192, 4, 62, 160, 4, 90, 224, 89, 74, 176, 4, 76, 192, 4, 248, 19, 4, 54, 96, 1, 20, 96, 3, 63, 96, 3, 91, 208, 4, 69, 0, 110, 254, 103, 3, 56, 32, 32, 24, 224, 102, 24, 32, 0, 19, 226, 82, 69, 128, 4, 159, 16, 105, 56, 3, 13, 30, 8, 13, 31, 161, 79, 68, 178, 65, 90, 55, 79, 26, 56, 37, 205, 245, 92, 42, 68, 93, 213, 229, 130, 192, 128, 80, 10, 133, 93, 152, 6, 53, 145, 80, 9, 148, 32, 9, 55, 104, 131, 223, 32, 14, 57, 40, 14, 9, 217, 131, 8, 217, 131, 57, 232, 93, 227, 176, 144, 226, 32, 254, 145, 232, 48, 14, 57, 24, 106, 105, 7, 94, 224, 245, 80, 239, 80, 119, 74, 209, 14, 242, 96, 94, 63, 100, 38, 245, 144, 11, 107, 240, 5, 248, 37, 2, 40, 34, 65, 75, 160, 120, 69, 208, 4, 187, 24, 7, 58, 212, 13, 49, 99, 96, 99, 120, 83, 139, 1, 7, 157, 145, 33, 78, 128, 7, 110, 248, 75, 213, 230, 9, 45, 194, 57, 245, 178, 11, 165, 160, 1, 80, 64, 7, 112, 32, 4, 73, 32, 4, 81, 176, 7, 115, 144, 5, 137, 112, 10, 189, 240, 85, 136, 88, 44, 80, 22, 11, 242, 150, 46, 205, 112, 13, 221, 208, 13, 224, 144, 13, 213, 176, 11, 199, 144, 11, 182, 48, 28, 190, 192, 10, 163, 96, 10, 109, 153, 9, 235, 199, 137, 180, 18, 7, 98, 0, 6, 240, 183, 87, 16, 208, 1, 17, 208, 6, 65, 208, 1, 61, 240, 1, 73, 32, 126, 126, 180, 138, 167, 0, 31, 172, 40, 31, 227, 99, 139, 228, 115, 31, 182, 168, 126, 155, 232, 6, 106, 80, 6, 96, 0, 5, 222, 100, 114, 12, 35, 32, 65, 64, 6, 162, 192, 9, 166, 208, 6, 93, 48, 76, 189, 2, 6, 77, 224, 4, 206, 8, 6, 93, 96, 3, 233, 212, 1, 53, 160, 3, 91, 176, 3, 59, 160, 3, 128, 80, 4, 177, 217, 4, 50, 231, 3, 25, 176, 1, 25, 224, 3, 71, 128, 85, 39, 99, 1, 23, 254, 80, 4, 106, 192, 4, 140, 16, 19, 28, 1, 18, 208, 224, 12, 250, 164, 142, 27, 193, 65, 143, 150, 65, 67, 227, 156, 48, 33, 19, 78, 34, 105, 84, 130, 143, 59, 113, 37, 153, 182, 93, 102, 119, 131, 5, 105, 144, 145, 176, 131, 226, 176, 13, 11, 137, 14, 12, 153, 144, 59, 152, 131, 23, 137, 14, 230, 48, 158, 19, 153, 144, 227, 96, 14, 237, 144, 158, 222, 101, 14, 222, 197, 14, 18, 181, 145, 229, 37, 146, 75, 97, 94, 249, 41, 15, 183, 240, 5, 93, 240, 5, 83, 96, 155, 182, 153, 3, 64, 208, 5, 75, 16, 155, 71, 0, 6, 69, 96, 11, 124, 50, 121, 55, 153, 56, 100, 136, 86, 179, 208, 108, 83, 32, 34, 61, 192, 31, 120, 240, 9, 27, 74, 42, 166, 39, 58, 224, 211, 11, 61, 96, 2, 182, 183, 7, 38, 160, 1, 31, 240, 1, 68, 0, 7, 94, 165, 149, 144, 84, 44, 166, 195, 74, 187, 96, 24, 187, 227, 136, 222, 144, 13, 217, 96, 41, 185, 144, 11, 239, 34, 11, 173, 8, 10, 156, 176, 124, 204, 215, 47, 110, 64, 43, 106, 48, 6, 187, 88, 154, 167, 25, 1, 120, 185, 1, 110, 64, 1, 28, 192, 3, 31, 96, 6, 170, 200, 9, 168, 131, 10, 184, 35, 62, 138, 101, 47, 175, 96, 47, 159, 179, 113, 151, 176, 8, 204, 68, 151, 90, 32, 128, 245, 247, 77, 254, 17, 179, 147, 28, 55, 7, 96, 224, 6, 98, 0, 4, 162, 168, 4, 70, 32, 138, 187, 136, 3, 15, 64, 3, 91, 0, 8, 120, 10, 8, 123, 202, 167, 91, 80, 4, 52, 96, 27, 27, 192, 63, 64, 208, 120, 93, 240, 90, 41, 147, 128, 70, 192, 8, 21, 129, 51, 27, 180, 142, 84, 231, 35, 31, 33, 36, 25, 209, 168, 67, 3, 157, 41, 8, 11, 49, 177, 36, 39, 244, 36, 146, 208, 52, 12, 213, 19, 216, 133, 93, 155, 22, 144, 220, 217, 157, 6, 57, 9, 232, 16, 158, 19, 185, 13, 58, 232, 13, 226, 185, 131, 221, 96, 145, 18, 201, 158, 23, 105, 171, 235, 217, 158, 233, 57, 158, 234, 153, 118, 240, 144, 53, 231, 240, 14, 237, 0, 15, 241, 16, 106, 30, 73, 10, 99, 176, 50, 90, 64, 3, 26, 130, 23, 18, 148, 120, 63, 80, 4, 64, 80, 4, 221, 208, 15, 221, 64, 13, 185, 96, 96, 101, 68, 134, 136, 161, 28, 110, 208, 25, 26, 176, 146, 27, 192, 6, 154, 177, 161, 67, 105, 101, 155, 80, 47, 188, 0, 7, 25, 48, 4, 105, 64, 7, 116, 160, 1, 20, 18, 4, 112, 128, 165, 90, 9, 101, 180, 243, 85, 188, 80, 111, 153, 228, 136, 224, 32, 150, 137, 161, 11, 161, 148, 150, 163, 0, 10, 166, 192, 9, 2, 119, 9, 131, 0, 89, 114, 73, 6, 101, 16, 153, 127, 1, 254, 5, 76, 96, 4, 84, 197, 99, 12, 0, 4, 77, 192, 0, 31, 192, 3, 66, 64, 7, 85, 186, 58, 200, 66, 58, 180, 208, 100, 187, 84, 47, 180, 40, 10, 233, 135, 139, 112, 0, 153, 161, 137, 4, 1, 84, 91, 10, 132, 1, 112, 64, 10, 179, 152, 9, 96, 0, 7, 206, 100, 5, 101, 48, 27, 6, 51, 6, 76, 208, 63, 124, 10, 8, 129, 64, 8, 123, 234, 7, 59, 208, 167, 53, 208, 141, 63, 224, 89, 96, 64, 6, 106, 208, 64, 27, 240, 3, 151, 208, 5, 63, 176, 9, 21, 241, 129, 198, 137, 156, 35, 72, 169, 81, 215, 92, 151, 138, 130, 255, 180, 130, 97, 59, 105, 150, 102, 93, 218, 213, 10, 12, 245, 52, 167, 122, 131, 4, 73, 131, 148, 208, 170, 173, 10, 158, 170, 10, 158, 226, 25, 14, 57, 136, 144, 228, 57, 145, 183, 58, 145, 187, 42, 14, 228, 176, 158, 230, 0, 184, 231, 48, 159, 222, 5, 15, 15, 213, 14, 224, 101, 172, 0, 218, 5, 93, 32, 2, 3, 122, 55, 63, 32, 2, 122, 179, 4, 63, 240, 3, 28, 48, 8, 194, 250, 13, 228, 1, 161, 153, 103, 30, 54, 133, 11, 100, 128, 13, 96, 96, 155, 43, 249, 121, 139, 144, 9, 161, 224, 9, 159, 208, 8, 151, 80, 113, 204, 64, 10, 86, 176, 177, 239, 74, 7, 20, 112, 1, 106, 48, 58, 248, 10, 178, 238, 254, 1, 47, 141, 162, 16, 231, 129, 13, 224, 208, 13, 99, 73, 41, 52, 34, 44, 175, 176, 10, 108, 105, 10, 141, 245, 150, 234, 195, 76, 113, 32, 114, 15, 91, 154, 17, 59, 155, 77, 0, 90, 7, 7, 1, 109, 192, 1, 29, 192, 115, 92, 80, 165, 132, 169, 110, 189, 208, 61, 164, 64, 47, 241, 209, 165, 56, 86, 72, 151, 32, 8, 33, 215, 179, 77, 96, 4, 148, 245, 164, 18, 240, 32, 15, 144, 1, 111, 176, 109, 165, 112, 9, 76, 16, 114, 72, 96, 5, 116, 9, 5, 97, 48, 6, 98, 48, 4, 175, 25, 8, 129, 112, 8, 135, 240, 9, 176, 224, 10, 8, 12, 12, 137, 80, 8, 124, 90, 4, 27, 208, 4, 76, 112, 4, 99, 0, 7, 111, 96, 4, 253, 227, 3, 87, 246, 3, 139, 0, 11, 27, 148, 79, 201, 112, 117, 33, 113, 104, 26, 232, 156, 95, 251, 36, 39, 156, 130, 99, 27, 118, 216, 41, 131, 54, 168, 182, 6, 73, 9, 145, 224, 8, 219, 64, 195, 52, 172, 170, 55, 172, 170, 173, 202, 13, 184, 202, 158, 226, 185, 183, 11, 249, 157, 130, 43, 14, 234, 73, 196, 186, 250, 118, 157, 54, 184, 231, 64, 11, 108, 96, 40, 93, 176, 95, 141, 251, 82, 69, 176, 4, 185, 57, 5, 74, 16, 155, 63, 96, 12, 247, 208, 14, 221, 128, 11, 54, 165, 56, 216, 58, 134, 205, 112, 12, 254, 196, 35, 139, 184, 144, 1, 25, 160, 69, 24, 112, 127, 137, 112, 186, 71, 229, 9, 109, 128, 7, 165, 192, 8, 110, 138, 3, 23, 154, 48, 103, 64, 10, 216, 131, 187, 240, 2, 163, 184, 208, 59, 205, 144, 86, 192, 11, 14, 213, 64, 99, 195, 66, 47, 163, 112, 137, 201, 235, 88, 139, 176, 176, 109, 16, 7, 100, 240, 126, 165, 169, 5, 210, 203, 190, 78, 224, 4, 56, 87, 76, 15, 82, 48, 7, 112, 2, 65, 32, 4, 79, 245, 112, 220, 71, 10, 44, 214, 71, 228, 83, 139, 183, 184, 9, 144, 229, 6, 186, 200, 4, 157, 37, 49, 15, 176, 164, 212, 1, 1, 27, 160, 9, 134, 37, 10, 111, 96, 179, 198, 8, 5, 101, 208, 5, 76, 48, 6, 106, 0, 5, 57, 16, 180, 129, 208, 10, 199, 96, 11, 181, 112, 12, 176, 96, 11, 199, 112, 12, 187, 224, 10, 135, 176, 167, 129, 176, 5, 190, 12, 6, 107, 0, 7, 137, 112, 4, 110, 118, 9, 155, 176, 4, 122, 192, 10, 25, 20, 52, 32, 76, 92, 196, 240, 18, 28, 145, 12, 38, 60, 12, 84, 242, 36, 153, 42, 182, 97, 43, 9, 20, 33, 12, 159, 186, 66, 158, 138, 93, 218, 9, 195, 145, 48, 9, 248, 236, 8, 142, 48, 9, 252, 60, 9, 219, 16, 14, 225, 25, 208, 1, 13, 208, 220, 80, 208, 0, 29, 158, 52, 220, 195, 61, 188, 254, 158, 227, 233, 208, 231, 64, 14, 228, 57, 158, 230, 9, 184, 233, 57, 159, 183, 224, 6, 94, 160, 55, 79, 156, 1, 130, 146, 55, 93, 112, 4, 23, 43, 193, 76, 151, 13, 236, 0, 15, 215, 250, 25, 187, 32, 75, 153, 87, 150, 132, 193, 210, 225, 161, 11, 112, 192, 12, 110, 0, 63, 248, 131, 1, 101, 80, 72, 140, 240, 9, 172, 144, 186, 83, 128, 3, 101, 112, 1, 9, 96, 3, 107, 112, 4, 63, 64, 3, 15, 104, 1, 54, 208, 5, 151, 32, 190, 244, 130, 44, 125, 196, 187, 150, 210, 59, 216, 112, 13, 194, 147, 163, 183, 48, 73, 173, 40, 10, 1, 215, 88, 189, 36, 76, 143, 44, 6, 14, 27, 189, 206, 56, 155, 70, 112, 201, 106, 22, 4, 38, 192, 29, 23, 114, 189, 207, 35, 4, 31, 192, 5, 171, 56, 88, 241, 146, 149, 80, 166, 152, 214, 102, 101, 236, 199, 6, 98, 208, 203, 70, 192, 3, 9, 36, 64, 60, 22, 4, 154, 96, 47, 162, 160, 7, 101, 176, 89, 206, 168, 127, 76, 64, 6, 92, 32, 4, 91, 16, 8, 128, 224, 10, 218, 160, 13, 198, 236, 10, 137, 112, 8, 137, 16, 9, 174, 176, 11, 224, 80, 192, 4, 188, 6, 90, 16, 7, 227, 186, 8, 83, 236, 127, 130, 160, 9, 75, 224, 6, 161, 48, 12, 231, 236, 168, 196, 117, 169, 231, 252, 181, 234, 28, 19, 212, 254, 169, 66, 176, 32, 9, 209, 165, 19, 212, 181, 80, 241, 124, 93, 246, 252, 8, 55, 232, 8, 50, 28, 9, 143, 176, 207, 252, 108, 220, 207, 176, 13, 207, 96, 208, 204, 189, 220, 219, 64, 217, 203, 109, 208, 52, 236, 220, 207, 93, 195, 10, 189, 170, 225, 121, 183, 64, 156, 144, 247, 38, 158, 222, 48, 171, 112, 199, 13, 151, 240, 5, 27, 61, 160, 117, 147, 55, 83, 80, 154, 208, 228, 140, 63, 48, 10, 240, 224, 15, 153, 27, 124, 49, 3, 198, 44, 189, 24, 160, 244, 25, 177, 112, 9, 212, 112, 125, 255, 67, 26, 166, 128, 9, 130, 48, 10, 131, 48, 8, 152, 80, 4, 99, 240, 9, 28, 114, 4, 158, 32, 8, 159, 192, 8, 144, 181, 6, 69, 80, 185, 27, 0, 5, 226, 87, 202, 160, 49, 61, 132, 193, 28, 131, 195, 111, 181, 144, 44, 164, 64, 176, 158, 128, 178, 232, 27, 89, 144, 252, 176, 189, 236, 140, 0, 56, 4, 78, 64, 128, 62, 224, 3, 221, 40, 2, 54, 112, 162, 29, 192, 99, 61, 208, 6, 12, 224, 201, 66, 80, 165, 135, 248, 110, 199, 194, 165, 225, 103, 139, 139, 165, 137, 237, 215, 6, 124, 211, 4, 58, 150, 29, 223, 68, 29, 15, 96, 2, 94, 21, 126, 157, 0, 199, 130, 80, 26, 116, 201, 4, 161, 93, 4, 3, 60, 192, 18, 145, 8, 129, 80, 8, 126, 0, 8, 254, 126, 0, 230, 135, 96, 11, 132, 144, 11, 208, 28, 8, 95, 96, 5, 108, 240, 75, 99, 32, 65, 70, 224, 6, 163, 208, 4, 110, 224, 9, 174, 160, 169, 255, 84, 130, 178, 141, 130, 43, 120, 143, 60, 65, 157, 84, 66, 67, 84, 242, 206, 214, 165, 143, 0, 217, 194, 47, 44, 195, 251, 220, 207, 147, 64, 9, 198, 77, 217, 207, 240, 12, 209, 160, 220, 142, 190, 220, 145, 238, 232, 149, 110, 233, 149, 110, 156, 146, 78, 195, 218, 96, 221, 224, 185, 170, 12, 29, 45, 11, 105, 14, 175, 48, 6, 75, 224, 5, 63, 112, 198, 103, 156, 34, 234, 125, 164, 108, 222, 3, 179, 169, 5, 205, 192, 14, 254, 192, 197, 184, 96, 147, 132, 241, 86, 50, 10, 211, 49, 35, 163, 155, 64, 11, 165, 16, 1, 55, 141, 4, 55, 176, 5, 220, 139, 9, 27, 202, 6, 69, 208, 1, 22, 32, 8, 152, 240, 32, 52, 160, 6, 113, 160, 176, 159, 64, 224, 113, 192, 5, 107, 192, 1, 10, 224, 6, 201, 226, 11, 186, 128, 13, 198, 23, 176, 154, 27, 51, 47, 3, 28, 115, 21, 226, 234, 215, 75, 237, 231, 6, 143, 124, 164, 127, 225, 140, 76, 112, 228, 72, 160, 128, 69, 176, 102, 214, 212, 141, 7, 180, 1, 20, 187, 164, 110, 0, 4, 17, 16, 141, 97, 144, 123, 240, 226, 27, 224, 59, 28, 245, 50, 87, 65, 238, 254, 88, 155, 144, 176, 235, 174, 127, 31, 70, 3, 241, 27, 216, 16, 16, 4, 162, 83, 178, 109, 48, 7, 247, 203, 4, 104, 80, 26, 97, 176, 4, 195, 28, 217, 5, 92, 8, 145, 13, 8, 133, 64, 242, 209, 76, 8, 182, 48, 12, 145, 192, 229, 69, 160, 5, 25, 22, 7, 60, 160, 5, 110, 94, 10, 101, 224, 6, 162, 160, 10, 145, 230, 18, 95, 219, 206, 39, 52, 19, 182, 77, 80, 99, 183, 219, 250, 232, 169, 67, 47, 131, 51, 104, 170, 55, 248, 8, 198, 189, 207, 148, 112, 220, 199, 109, 233, 220, 192, 220, 145, 30, 13, 205, 125, 233, 85, 255, 12, 153, 174, 233, 156, 206, 13, 209, 96, 221, 53, 188, 144, 171, 218, 208, 206, 144, 209, 42, 137, 198, 28, 176, 23, 93, 116, 164, 144, 107, 4, 179, 25, 7, 227, 224, 15, 227, 80, 13, 48, 147, 210, 41, 173, 56, 227, 65, 30, 227, 1, 74, 115, 192, 12, 97, 16, 1, 94, 176, 10, 100, 176, 5, 55, 64, 8, 137, 96, 10, 155, 208, 8, 137, 112, 40, 76, 176, 62, 14, 194, 242, 71, 32, 237, 123, 3, 210, 107, 192, 6, 148, 149, 110, 68, 214, 12, 188, 144, 11, 152, 47, 75, 184, 144, 11, 238, 38, 11, 255, 182, 213, 93, 237, 213, 12, 123, 164, 146, 9, 239, 73, 96, 4, 0, 200, 90, 209, 200, 63, 208, 55, 160, 220, 33, 34, 31, 254, 64, 227, 16, 240, 1, 76, 96, 0, 26, 160, 189, 167, 240, 27, 42, 6, 47, 118, 61, 179, 182, 56, 226, 236, 119, 179, 165, 113, 201, 148, 197, 99, 14, 66, 29, 14, 240, 58, 186, 100, 47, 68, 138, 241, 109, 160, 127, 73, 128, 167, 88, 206, 229, 33, 143, 229, 94, 222, 229, 92, 78, 192, 18, 193, 229, 128, 208, 4, 136, 12, 7, 57, 208, 5, 77, 208, 6, 177, 208, 6, 109, 224, 9, 194, 73, 17, 20, 241, 92, 153, 154, 206, 52, 145, 169, 125, 110, 219, 190, 77, 37, 176, 128, 105, 103, 123, 182, 68, 95, 244, 80, 3, 9, 167, 218, 255, 197, 13, 16, 143, 34, 77, 114, 228, 40, 82, 164, 130, 147, 38, 61, 114, 244, 204, 225, 195, 135, 219, 32, 78, 140, 72, 81, 226, 54, 109, 207, 182, 69, 219, 214, 81, 99, 184, 142, 219, 194, 137, 19, 183, 77, 28, 58, 113, 231, 66, 125, 241, 114, 68, 68, 6, 152, 56, 114, 24, 153, 210, 101, 76, 23, 35, 34, 68, 24, 97, 194, 132, 149, 187, 111, 228, 118, 225, 218, 85, 116, 151, 177, 163, 185, 116, 45, 45, 218, 204, 105, 44, 78, 188, 138, 220, 170, 85, 6, 206, 13, 64, 135, 20, 153, 242, 20, 138, 149, 27, 79, 90, 48, 185, 121, 144, 128, 141, 172, 53, 101, 6, 165, 77, 244, 201, 205, 40, 26, 9, 226, 144, 226, 180, 43, 23, 174, 94, 254, 189, 106, 213, 154, 85, 139, 86, 44, 95, 171, 74, 141, 18, 229, 73, 19, 166, 68, 130, 222, 184, 105, 19, 135, 204, 24, 48, 86, 122, 50, 105, 210, 4, 137, 19, 32, 65, 124, 4, 225, 193, 99, 195, 6, 14, 161, 69, 139, 222, 16, 196, 6, 131, 8, 12, 200, 108, 112, 0, 66, 195, 28, 84, 178, 250, 246, 154, 213, 43, 22, 224, 85, 164, 70, 149, 50, 37, 74, 147, 38, 70, 151, 222, 180, 81, 211, 133, 137, 17, 32, 28, 32, 64, 120, 240, 96, 121, 115, 36, 154, 72, 161, 162, 126, 9, 206, 38, 48, 72, 218, 128, 105, 18, 100, 75, 32, 240, 224, 11, 141, 15, 15, 200, 207, 120, 63, 128, 2, 1, 82, 165, 42, 80, 33, 67, 95, 48, 137, 186, 244, 163, 103, 155, 85, 109, 220, 148, 98, 4, 75, 152, 176, 97, 2, 132, 37, 192, 255, 254, 243, 79, 18, 97, 252, 131, 165, 149, 255, 24, 44, 80, 146, 86, 36, 129, 80, 194, 8, 37, 132, 176, 66, 11, 35, 145, 4, 18, 73, 52, 244, 16, 18, 13, 5, 162, 228, 160, 72, 4, 154, 4, 33, 134, 24, 130, 198, 153, 21, 159, 129, 134, 34, 135, 194, 129, 232, 69, 138, 156, 137, 241, 25, 144, 66, 202, 177, 163, 29, 73, 66, 199, 27, 146, 156, 89, 195, 139, 41, 104, 224, 32, 166, 28, 128, 88, 162, 166, 46, 126, 208, 73, 132, 31, 154, 254, 208, 226, 152, 113, 188, 233, 134, 23, 92, 152, 218, 69, 151, 45, 115, 225, 133, 75, 163, 148, 202, 36, 22, 83, 200, 56, 166, 12, 58, 230, 168, 99, 205, 53, 185, 168, 99, 13, 53, 48, 17, 132, 150, 53, 202, 90, 99, 27, 99, 86, 97, 69, 150, 79, 62, 193, 4, 19, 86, 46, 128, 32, 14, 83, 88, 193, 101, 150, 89, 104, 145, 69, 209, 88, 94, 241, 69, 55, 81, 184, 202, 4, 177, 65, 220, 96, 76, 13, 53, 198, 40, 3, 12, 45, 122, 74, 194, 8, 228, 128, 240, 161, 51, 30, 104, 248, 224, 51, 13, 70, 3, 237, 179, 13, 104, 248, 172, 185, 7, 154, 8, 195, 1, 14, 62, 136, 34, 21, 90, 242, 66, 116, 150, 219, 30, 37, 165, 148, 72, 127, 203, 100, 145, 68, 134, 35, 163, 139, 38, 138, 8, 162, 131, 231, 156, 99, 128, 185, 232, 110, 35, 133, 148, 75, 208, 192, 14, 8, 56, 192, 24, 162, 8, 245, 192, 51, 228, 189, 66, 0, 41, 228, 189, 247, 210, 35, 47, 16, 63, 252, 0, 55, 144, 65, 52, 89, 164, 136, 37, 202, 96, 131, 20, 198, 68, 113, 3, 194, 1, 253, 27, 70, 193, 86, 250, 237, 247, 192, 126, 133, 241, 55, 66, 88, 38, 172, 16, 67, 12, 45, 220, 80, 194, 131, 64, 108, 152, 146, 14, 71, 52, 200, 17, 74, 18, 42, 200, 145, 71, 50, 118, 196, 153, 105, 254, 156, 97, 113, 69, 144, 97, 116, 72, 34, 135, 160, 1, 153, 198, 136, 66, 18, 73, 229, 146, 182, 1, 210, 27, 116, 208, 113, 6, 148, 155, 112, 184, 0, 38, 17, 124, 48, 2, 9, 38, 186, 152, 2, 135, 13, 158, 196, 33, 222, 108, 188, 241, 230, 26, 92, 120, 49, 74, 23, 165, 190, 4, 179, 168, 165, 116, 97, 36, 145, 35, 108, 72, 68, 148, 58, 18, 97, 243, 134, 16, 110, 184, 33, 130, 54, 106, 17, 132, 13, 45, 156, 179, 129, 141, 79, 100, 97, 197, 151, 90, 94, 249, 196, 24, 89, 44, 128, 160, 11, 83, 124, 81, 52, 48, 95, 98, 201, 109, 48, 80, 184, 10, 110, 145, 197, 26, 115, 108, 83, 78, 123, 178, 12, 137, 204, 130, 192, 193, 51, 86, 71, 227, 96, 85, 86, 69, 216, 192, 132, 30, 62, 248, 224, 1, 12, 52, 120, 163, 3, 16, 62, 56, 65, 143, 92, 119, 165, 229, 175, 105, 129, 21, 197, 183, 195, 46, 73, 132, 177, 49, 180, 104, 66, 84, 9, 154, 133, 128, 1, 204, 193, 16, 5, 149, 71, 69, 121, 3, 13, 56, 160, 232, 225, 141, 49, 144, 104, 98, 92, 64, 190, 27, 119, 188, 113, 195, 59, 47, 249, 227, 199, 51, 196, 16, 64, 46, 217, 4, 136, 35, 192, 80, 35, 22, 76, 108, 103, 67, 21, 255, 12, 116, 80, 96, 6, 91, 89, 112, 224, 129, 41, 84, 88, 225, 254, 86, 56, 84, 152, 195, 15, 37, 121, 4, 18, 16, 5, 122, 228, 68, 138, 47, 182, 159, 32, 140, 229, 247, 24, 25, 104, 144, 113, 198, 255, 22, 89, 4, 70, 40, 19, 160, 202, 84, 54, 18, 147, 72, 4, 15, 108, 96, 131, 17, 96, 146, 129, 13, 228, 192, 9, 75, 88, 2, 19, 166, 224, 36, 28, 8, 13, 9, 131, 32, 7, 56, 184, 65, 141, 44, 45, 197, 105, 186, 80, 90, 212, 68, 168, 139, 91, 8, 226, 19, 86, 115, 135, 214, 180, 86, 7, 175, 221, 32, 8, 55, 0, 1, 13, 138, 80, 53, 35, 48, 199, 57, 16, 8, 141, 13, 142, 160, 5, 45, 156, 206, 57, 74, 208, 196, 43, 92, 65, 10, 223, 252, 138, 48, 160, 48, 12, 98, 18, 49, 8, 56, 184, 33, 14, 154, 42, 195, 166, 160, 160, 5, 37, 84, 6, 113, 162, 226, 129, 13, 88, 149, 129, 84, 97, 32, 52, 27, 72, 21, 171, 54, 240, 129, 32, 52, 225, 12, 110, 16, 66, 16, 52, 16, 129, 14, 144, 65, 8, 17, 48, 193, 7, 196, 64, 139, 90, 208, 38, 81, 210, 250, 21, 176, 76, 161, 137, 76, 108, 98, 17, 149, 106, 195, 24, 160, 128, 132, 34, 224, 64, 110, 14, 216, 33, 115, 40, 32, 6, 81, 76, 11, 21, 162, 64, 67, 27, 182, 3, 132, 55, 144, 1, 8, 91, 88, 94, 120, 214, 181, 30, 245, 156, 199, 147, 254, 200, 115, 94, 32, 220, 96, 10, 35, 28, 161, 12, 99, 136, 69, 38, 154, 144, 137, 54, 52, 34, 65, 221, 131, 197, 248, 202, 71, 190, 243, 109, 8, 126, 18, 90, 208, 249, 212, 167, 33, 248, 9, 196, 32, 40, 178, 95, 254, 16, 82, 16, 134, 28, 19, 99, 246, 243, 95, 199, 76, 246, 49, 2, 18, 80, 100, 15, 209, 134, 54, 60, 114, 64, 150, 157, 4, 29, 231, 64, 71, 35, 166, 176, 132, 35, 220, 12, 130, 60, 160, 201, 20, 174, 152, 131, 39, 65, 48, 104, 64, 96, 133, 55, 178, 145, 13, 99, 100, 233, 75, 91, 138, 218, 210, 182, 180, 165, 82, 60, 138, 6, 172, 80, 68, 214, 180, 118, 131, 172, 105, 193, 12, 167, 232, 103, 27, 164, 176, 134, 35, 212, 192, 2, 11, 133, 149, 5, 18, 80, 0, 15, 60, 192, 2, 12, 88, 64, 18, 18, 113, 81, 81, 100, 2, 15, 160, 64, 93, 38, 166, 86, 41, 55, 192, 33, 14, 97, 128, 12, 20, 186, 208, 41, 45, 26, 225, 7, 163, 226, 193, 7, 92, 117, 164, 208, 136, 145, 3, 26, 48, 227, 103, 76, 128, 4, 49, 184, 97, 17, 151, 184, 68, 23, 122, 16, 132, 7, 68, 128, 7, 111, 112, 128, 231, 136, 128, 10, 68, 245, 130, 22, 168, 144, 86, 41, 76, 151, 209, 76, 92, 2, 112, 34, 5, 3, 19, 16, 103, 131, 7, 60, 171, 57, 203, 254, 129, 192, 6, 220, 16, 73, 82, 4, 198, 146, 111, 8, 3, 38, 201, 64, 4, 113, 33, 239, 16, 206, 32, 135, 36, 224, 67, 46, 114, 169, 7, 16, 105, 133, 207, 241, 2, 193, 9, 38, 248, 64, 11, 96, 136, 133, 40, 128, 128, 9, 60, 184, 33, 65, 224, 3, 31, 249, 250, 37, 9, 85, 68, 168, 95, 28, 130, 196, 193, 26, 107, 190, 14, 129, 168, 67, 25, 107, 88, 50, 33, 54, 177, 98, 230, 175, 32, 37, 210, 88, 49, 57, 102, 35, 27, 61, 35, 180, 14, 201, 200, 69, 118, 180, 145, 103, 112, 99, 35, 24, 201, 81, 56, 70, 34, 14, 4, 106, 147, 155, 231, 136, 135, 60, 232, 177, 143, 90, 124, 97, 10, 57, 184, 128, 5, 26, 112, 129, 157, 28, 97, 9, 39, 5, 66, 208, 54, 128, 3, 32, 76, 225, 12, 131, 200, 132, 49, 184, 113, 141, 108, 232, 34, 105, 95, 82, 90, 117, 73, 104, 66, 46, 117, 130, 23, 110, 184, 1, 43, 130, 145, 8, 55, 173, 105, 11, 116, 88, 19, 29, 236, 192, 166, 56, 144, 247, 6, 82, 176, 129, 13, 104, 16, 23, 12, 212, 32, 1, 92, 85, 128, 20, 214, 116, 81, 55, 140, 225, 18, 127, 82, 221, 27, 162, 232, 152, 199, 128, 1, 12, 198, 105, 66, 18, 144, 128, 184, 30, 248, 192, 4, 238, 253, 76, 76, 49, 240, 224, 49, 154, 209, 4, 64, 176, 254, 194, 25, 246, 203, 211, 157, 194, 193, 9, 66, 232, 128, 115, 172, 208, 129, 14, 152, 224, 4, 157, 80, 106, 162, 72, 247, 171, 211, 21, 6, 144, 60, 21, 132, 27, 210, 194, 4, 204, 108, 96, 118, 140, 132, 64, 3, 30, 192, 1, 31, 192, 225, 118, 177, 8, 235, 28, 230, 64, 214, 13, 144, 33, 12, 76, 64, 151, 33, 198, 227, 10, 109, 180, 34, 24, 133, 248, 195, 120, 154, 60, 158, 110, 137, 43, 60, 207, 251, 86, 39, 202, 224, 3, 47, 240, 213, 23, 69, 184, 68, 40, 186, 224, 47, 91, 30, 86, 177, 18, 82, 223, 133, 14, 107, 176, 133, 145, 25, 126, 32, 130, 196, 251, 38, 65, 137, 100, 46, 243, 98, 37, 194, 236, 197, 24, 162, 217, 98, 62, 194, 33, 220, 120, 70, 105, 53, 18, 13, 142, 116, 132, 36, 37, 25, 180, 143, 96, 118, 18, 114, 136, 131, 28, 49, 99, 244, 54, 207, 97, 142, 118, 200, 67, 30, 245, 184, 7, 63, 246, 177, 143, 91, 124, 97, 13, 77, 250, 193, 5, 26, 144, 129, 31, 44, 73, 11, 93, 8, 194, 6, 236, 227, 6, 77, 236, 169, 23, 185, 56, 6, 51, 178, 97, 141, 106, 220, 229, 46, 80, 27, 10, 83, 174, 187, 20, 92, 48, 2, 23, 77, 104, 3, 38, 6, 17, 7, 27, 212, 129, 11, 94, 27, 197, 121, 185, 6, 130, 174, 217, 1, 160, 253, 92, 19, 254, 32, 104, 104, 131, 24, 214, 224, 6, 210, 190, 104, 29, 232, 32, 6, 41, 152, 225, 13, 80, 132, 67, 27, 216, 64, 6, 49, 8, 184, 170, 148, 57, 66, 168, 128, 192, 184, 6, 115, 64, 140, 50, 61, 18, 76, 88, 213, 3, 38, 196, 193, 13, 111, 16, 4, 79, 237, 125, 137, 76, 64, 97, 8, 28, 232, 0, 3, 120, 0, 4, 1, 104, 224, 3, 105, 40, 177, 162, 80, 81, 58, 211, 1, 50, 170, 151, 16, 4, 28, 200, 192, 29, 35, 248, 96, 3, 206, 129, 85, 115, 36, 32, 4, 60, 136, 34, 22, 7, 39, 19, 28, 230, 176, 154, 51, 148, 33, 8, 230, 169, 235, 33, 200, 49, 9, 63, 24, 98, 25, 147, 48, 4, 202, 145, 49, 137, 96, 24, 34, 230, 133, 128, 249, 243, 224, 99, 8, 66, 180, 33, 7, 199, 34, 133, 44, 152, 224, 134, 88, 108, 47, 204, 7, 75, 223, 194, 36, 27, 63, 198, 114, 72, 21, 235, 235, 16, 103, 229, 151, 49, 168, 227, 57, 127, 80, 143, 58, 213, 163, 78, 137, 67, 60, 162, 17, 13, 121, 72, 52, 70, 150, 64, 147, 20, 250, 36, 231, 32, 251, 57, 220, 225, 14, 179, 187, 163, 29, 236, 104, 199, 59, 206, 222, 143, 126, 200, 227, 30, 115, 199, 135, 165, 47, 109, 233, 91, 120, 193, 11, 93, 16, 193, 208, 114, 96, 1, 28, 20, 161, 11, 94, 208, 130, 15, 254, 144, 240, 85, 89, 220, 226, 22, 199, 168, 69, 46, 106, 209, 234, 106, 104, 163, 26, 73, 131, 26, 81, 160, 198, 11, 204, 155, 112, 22, 157, 40, 69, 4, 64, 161, 9, 68, 114, 32, 134, 55, 32, 132, 34, 226, 112, 108, 26, 46, 187, 159, 253, 180, 131, 34, 248, 160, 8, 102, 51, 59, 107, 176, 167, 61, 29, 4, 17, 135, 56, 100, 10, 50, 3, 166, 76, 22, 49, 243, 131, 32, 72, 174, 113, 234, 126, 48, 25, 35, 247, 153, 32, 36, 225, 12, 111, 144, 170, 98, 240, 253, 167, 63, 101, 66, 19, 113, 24, 194, 7, 58, 64, 131, 32, 56, 1, 53, 32, 136, 194, 232, 70, 167, 183, 105, 237, 166, 48, 166, 152, 148, 112, 46, 197, 157, 115, 79, 188, 195, 152, 115, 14, 6, 192, 176, 9, 141, 203, 66, 22, 7, 215, 3, 28, 208, 240, 129, 66, 2, 1, 61, 136, 24, 79, 48, 230, 81, 9, 100, 24, 135, 100, 64, 6, 126, 40, 6, 145, 32, 135, 96, 72, 134, 67, 120, 30, 109, 64, 30, 35, 51, 132, 54, 40, 130, 49, 152, 2, 81, 152, 133, 41, 120, 131, 89, 200, 132, 70, 32, 31, 86, 16, 179, 93, 90, 179, 54, 11, 193, 53, 67, 44, 93, 98, 172, 247, 57, 136, 170, 75, 145, 101, 178, 186, 140, 105, 51, 170, 203, 44, 251, 57, 132, 67, 184, 136, 145, 81, 45, 65, 19, 59, 116, 48, 254, 135, 178, 139, 52, 121, 232, 7, 122, 176, 173, 124, 8, 194, 124, 192, 7, 124, 152, 187, 75, 59, 66, 36, 220, 7, 92, 96, 131, 189, 179, 153, 28, 88, 130, 31, 200, 0, 28, 64, 130, 41, 16, 3, 51, 72, 4, 95, 56, 134, 91, 200, 133, 45, 220, 194, 100, 88, 60, 102, 208, 6, 107, 160, 134, 90, 224, 5, 47, 17, 33, 234, 58, 33, 92, 227, 49, 81, 232, 128, 55, 232, 2, 91, 224, 2, 27, 24, 182, 174, 169, 3, 59, 160, 3, 173, 25, 54, 33, 144, 131, 243, 234, 167, 96, 176, 3, 59, 144, 131, 58, 144, 3, 69, 248, 133, 213, 131, 161, 16, 8, 196, 40, 168, 131, 95, 72, 133, 76, 42, 131, 46, 176, 2, 32, 202, 162, 3, 51, 130, 34, 200, 12, 27, 112, 28, 12, 160, 0, 153, 162, 41, 157, 240, 12, 30, 72, 2, 50, 120, 3, 70, 136, 170, 55, 120, 131, 157, 242, 4, 174, 248, 141, 63, 58, 140, 215, 1, 130, 15, 232, 14, 14, 96, 0, 207, 17, 133, 188, 152, 63, 95, 56, 56, 194, 232, 40, 158, 90, 157, 54, 32, 3, 215, 57, 55, 12, 168, 184, 29, 122, 0, 50, 184, 132, 54, 120, 131, 77, 144, 158, 77, 88, 70, 56, 48, 129, 100, 4, 2, 112, 65, 30, 64, 72, 4, 127, 32, 135, 5, 196, 70, 109, 32, 135, 62, 123, 134, 4, 204, 8, 109, 80, 134, 73, 254, 184, 57, 67, 96, 3, 9, 164, 155, 94, 0, 3, 55, 152, 5, 83, 104, 132, 161, 35, 31, 16, 140, 159, 247, 249, 64, 8, 73, 58, 247, 105, 51, 167, 123, 65, 22, 108, 65, 126, 132, 65, 71, 32, 4, 66, 56, 132, 139, 57, 4, 74, 216, 51, 144, 136, 173, 65, 67, 137, 147, 208, 193, 180, 123, 7, 122, 184, 135, 33, 36, 194, 36, 156, 200, 137, 188, 6, 6, 98, 3, 155, 201, 0, 14, 104, 9, 157, 48, 130, 54, 8, 5, 89, 96, 188, 90, 216, 194, 90, 192, 5, 147, 92, 53, 102, 184, 134, 107, 176, 6, 102, 232, 5, 187, 24, 138, 162, 248, 146, 164, 145, 167, 165, 184, 5, 84, 232, 5, 81, 120, 128, 77, 112, 3, 240, 90, 47, 174, 129, 33, 65, 108, 47, 33, 0, 1, 41, 32, 175, 243, 90, 19, 101, 171, 131, 48, 72, 133, 53, 97, 61, 69, 184, 129, 64, 4, 1, 15, 0, 0, 128, 162, 3, 50, 96, 2, 40, 160, 12, 203, 192, 12, 32, 248, 129, 30, 240, 12, 226, 91, 63, 78, 28, 35, 151, 154, 28, 39, 16, 3, 60, 48, 140, 122, 147, 170, 57, 224, 169, 63, 73, 4, 75, 234, 9, 147, 98, 130, 36, 224, 129, 32, 128, 128, 228, 240, 128, 4, 160, 0, 16, 152, 3, 89, 144, 158, 82, 56, 56, 20, 59, 29, 79, 216, 4, 70, 96, 132, 69, 16, 169, 214, 65, 130, 254, 31, 192, 170, 173, 130, 21, 8, 112, 0, 32, 32, 131, 54, 128, 3, 235, 248, 54, 43, 216, 148, 30, 104, 2, 52, 72, 130, 64, 120, 30, 75, 128, 143, 96, 48, 185, 121, 88, 178, 109, 48, 132, 100, 64, 192, 100, 8, 134, 96, 32, 7, 109, 56, 132, 112, 208, 134, 114, 120, 64, 232, 17, 188, 41, 184, 132, 170, 40, 3, 90, 24, 5, 65, 16, 159, 119, 188, 144, 164, 99, 179, 72, 24, 65, 16, 212, 165, 13, 153, 199, 125, 124, 159, 121, 12, 38, 125, 244, 199, 139, 1, 200, 127, 204, 17, 31, 225, 166, 148, 136, 25, 109, 98, 187, 182, 123, 7, 120, 120, 7, 136, 164, 72, 239, 76, 66, 115, 248, 4, 47, 112, 131, 78, 187, 25, 12, 144, 18, 26, 88, 130, 76, 176, 5, 46, 36, 201, 45, 228, 66, 46, 196, 133, 90, 112, 6, 107, 128, 181, 93, 88, 53, 46, 145, 174, 93, 192, 18, 18, 146, 73, 147, 196, 133, 82, 232, 133, 68, 184, 128, 68, 160, 131, 27, 224, 2, 33, 144, 2, 174, 145, 2, 41, 8, 202, 16, 8, 1, 15, 32, 68, 175, 201, 26, 57, 16, 196, 139, 210, 6, 41, 8, 1, 217, 187, 129, 10, 245, 154, 14, 40, 0, 57, 216, 3, 46, 72, 2, 45, 2, 2, 19, 205, 12, 176, 124, 176, 8, 168, 184, 204, 65, 149, 13, 232, 1, 43, 184, 142, 223, 208, 132, 102, 220, 254, 132, 225, 56, 3, 199, 80, 3, 253, 96, 4, 55, 240, 200, 85, 176, 5, 91, 184, 132, 243, 164, 128, 32, 160, 1, 128, 227, 0, 34, 128, 2, 65, 26, 5, 80, 40, 29, 194, 48, 133, 63, 138, 170, 69, 104, 177, 56, 40, 3, 45, 112, 130, 31, 192, 129, 230, 224, 0, 78, 108, 14, 6, 80, 0, 32, 168, 204, 198, 176, 36, 49, 168, 162, 51, 32, 3, 43, 181, 1, 64, 120, 30, 150, 51, 4, 102, 128, 7, 109, 8, 6, 127, 40, 6, 111, 88, 134, 104, 240, 6, 100, 40, 6, 214, 84, 134, 100, 168, 166, 67, 120, 134, 113, 52, 4, 75, 32, 4, 32, 232, 2, 40, 128, 131, 89, 24, 14, 30, 115, 131, 198, 234, 151, 196, 82, 5, 245, 105, 133, 196, 74, 31, 16, 28, 206, 96, 90, 51, 72, 101, 172, 18, 129, 4, 85, 120, 132, 123, 212, 186, 53, 211, 199, 70, 184, 51, 231, 44, 8, 129, 36, 132, 130, 104, 132, 152, 209, 193, 120, 56, 135, 119, 104, 135, 115, 88, 59, 181, 123, 59, 121, 200, 7, 125, 224, 135, 185, 235, 206, 239, 252, 78, 126, 32, 5, 54, 88, 3, 35, 184, 25, 224, 202, 1, 26, 208, 130, 68, 120, 133, 246, 84, 60, 199, 83, 188, 198, 123, 207, 90, 160, 6, 201, 163, 6, 233, 210, 146, 161, 160, 46, 204, 251, 79, 147, 68, 5, 92, 56, 3, 31, 136, 3, 24, 254, 170, 26, 21, 80, 80, 58, 144, 2, 15, 72, 196, 9, 93, 19, 2, 8, 129, 172, 177, 195, 95, 72, 132, 81, 248, 133, 113, 77, 4, 216, 227, 208, 59, 220, 154, 162, 52, 209, 33, 64, 28, 224, 235, 12, 160, 121, 176, 7, 144, 128, 11, 120, 0, 10, 80, 55, 117, 211, 0, 19, 72, 130, 94, 251, 60, 64, 2, 164, 110, 99, 131, 55, 208, 4, 89, 200, 133, 106, 232, 134, 110, 112, 134, 106, 96, 5, 26, 168, 5, 119, 24, 135, 121, 112, 6, 14, 72, 2, 12, 216, 128, 12, 32, 3, 8, 232, 0, 88, 44, 133, 105, 49, 133, 240, 35, 204, 194, 196, 4, 158, 90, 12, 53, 168, 42, 149, 154, 184, 77, 204, 42, 6, 184, 89, 6, 64, 130, 235, 176, 142, 95, 4, 3, 37, 48, 212, 37, 80, 2, 46, 144, 130, 53, 165, 178, 113, 89, 192, 66, 72, 64, 147, 195, 198, 107, 36, 135, 100, 136, 134, 68, 216, 134, 121, 136, 132, 100, 0, 134, 155, 11, 4, 32, 40, 3, 94, 163, 5, 80, 88, 4, 82, 160, 5, 55, 96, 131, 129, 153, 212, 90, 154, 212, 165, 139, 71, 226, 132, 133, 198, 106, 15, 182, 205, 84, 180, 237, 172, 20, 25, 85, 100, 146, 91, 71, 216, 58, 71, 16, 200, 173, 179, 219, 127, 196, 58, 116, 128, 187, 34, 44, 194, 184, 235, 65, 122, 232, 135, 123, 232, 135, 122, 72, 66, 254, 125, 216, 85, 197, 117, 6, 54, 232, 81, 17, 184, 128, 11, 216, 0, 32, 48, 2, 45, 24, 5, 91, 80, 60, 101, 197, 133, 92, 216, 92, 197, 147, 79, 91, 208, 92, 106, 168, 6, 99, 112, 6, 254, 84, 26, 162, 112, 26, 44, 153, 73, 233, 154, 133, 82, 192, 5, 44, 130, 131, 97, 75, 132, 53, 0, 129, 45, 208, 130, 34, 40, 3, 46, 64, 54, 59, 132, 161, 212, 171, 3, 89, 0, 168, 84, 248, 132, 68, 248, 5, 95, 224, 195, 96, 184, 129, 5, 240, 0, 24, 2, 129, 27, 104, 175, 10, 197, 129, 32, 48, 209, 149, 98, 156, 152, 90, 81, 11, 192, 28, 117, 203, 128, 155, 34, 131, 77, 240, 4, 223, 200, 4, 240, 189, 4, 77, 16, 95, 89, 184, 6, 120, 160, 7, 124, 232, 7, 127, 200, 6, 103, 200, 6, 120, 176, 6, 14, 200, 132, 126, 200, 19, 79, 216, 0, 39, 192, 0, 27, 200, 28, 231, 224, 1, 10, 152, 3, 233, 232, 132, 240, 219, 69, 97, 1, 28, 40, 138, 217, 227, 72, 14, 174, 74, 96, 5, 120, 128, 50, 88, 132, 77, 176, 63, 52, 16, 178, 200, 208, 130, 32, 8, 2, 32, 10, 132, 5, 52, 90, 154, 43, 135, 147, 75, 57, 54, 133, 185, 61, 77, 6, 102, 72, 192, 98, 240, 96, 67, 216, 43, 38, 56, 3, 89, 208, 157, 81, 152, 133, 69, 248, 2, 87, 40, 254, 219, 73, 77, 31, 73, 101, 172, 179, 5, 65, 72, 109, 15, 73, 221, 97, 73, 109, 15, 16, 76, 206, 20, 92, 65, 186, 173, 91, 189, 205, 186, 139, 185, 7, 137, 196, 135, 125, 192, 7, 125, 248, 219, 36, 86, 92, 40, 70, 66, 125, 96, 132, 33, 201, 0, 200, 53, 181, 38, 16, 4, 89, 104, 86, 248, 100, 214, 189, 144, 207, 199, 251, 5, 99, 120, 188, 99, 48, 6, 99, 224, 207, 105, 237, 207, 44, 89, 227, 153, 156, 5, 109, 237, 2, 32, 56, 212, 68, 128, 5, 53, 112, 47, 27, 248, 1, 246, 146, 202, 16, 40, 128, 16, 0, 129, 210, 91, 19, 36, 0, 129, 214, 83, 132, 90, 144, 5, 69, 0, 196, 126, 90, 0, 16, 61, 100, 160, 60, 175, 31, 96, 21, 27, 232, 59, 208, 160, 128, 21, 189, 128, 14, 224, 196, 204, 201, 90, 61, 208, 4, 212, 49, 133, 102, 132, 216, 106, 248, 6, 118, 144, 7, 92, 117, 200, 102, 56, 6, 91, 168, 134, 113, 128, 7, 121, 184, 6, 30, 40, 2, 86, 96, 133, 99, 56, 6, 30, 120, 100, 14, 176, 128, 15, 0, 130, 14, 96, 130, 10, 176, 150, 72, 217, 141, 93, 244, 132, 38, 154, 154, 225, 40, 142, 215, 225, 1, 9, 184, 217, 29, 186, 89, 5, 24, 217, 75, 0, 5, 61, 168, 76, 100, 180, 130, 48, 40, 171, 56, 134, 130, 207, 108, 185, 54, 254, 53, 4, 110, 100, 205, 243, 176, 57, 254, 75, 151, 129, 24, 15, 25, 164, 178, 19, 238, 137, 50, 200, 141, 75, 40, 133, 89, 240, 132, 41, 88, 219, 29, 214, 97, 121, 150, 84, 163, 131, 159, 25, 214, 97, 71, 101, 91, 170, 115, 65, 126, 204, 152, 81, 221, 71, 100, 34, 213, 60, 43, 136, 40, 46, 104, 131, 214, 133, 47, 224, 59, 200, 181, 0, 27, 208, 2, 79, 184, 220, 189, 184, 5, 92, 192, 92, 47, 174, 5, 166, 89, 133, 57, 40, 2, 36, 48, 134, 89, 30, 10, 147, 68, 67, 92, 243, 79, 147, 228, 133, 89, 16, 133, 82, 128, 2, 39, 32, 131, 80, 24, 133, 76, 8, 131, 40, 0, 2, 33, 48, 131, 58, 0, 1, 27, 232, 99, 15, 184, 1, 33, 184, 2, 78, 0, 1, 230, 144, 0, 117, 133, 61, 59, 180, 80, 222, 85, 87, 64, 12, 106, 41, 40, 53, 208, 208, 196, 11, 24, 70, 204, 49, 129, 37, 224, 94, 97, 217, 4, 240, 221, 4, 95, 216, 5, 127, 200, 213, 123, 144, 180, 119, 224, 206, 89, 222, 134, 107, 200, 133, 79, 24, 132, 68, 240, 1, 26, 200, 134, 111, 120, 39, 101, 1, 2, 27, 80, 128, 11, 80, 2, 37, 208, 3, 12, 128, 2, 78, 54, 105, 72, 105, 197, 242, 107, 177, 95, 12, 70, 30, 200, 42, 230, 136, 128, 217, 97, 0, 1, 240, 129, 75, 208, 3, 254, 82, 208, 4, 61, 96, 62, 135, 35, 3, 50, 120, 29, 46, 0, 131, 53, 96, 83, 155, 59, 4, 127, 168, 132, 148, 11, 134, 149, 83, 8, 155, 243, 131, 1, 92, 30, 114, 60, 4, 47, 224, 2, 45, 72, 130, 56, 248, 197, 83, 194, 3, 35, 160, 132, 86, 112, 5, 8, 73, 172, 24, 174, 225, 120, 70, 219, 127, 177, 103, 182, 93, 24, 183, 181, 231, 31, 22, 193, 80, 213, 186, 228, 252, 231, 71, 128, 179, 71, 48, 104, 224, 222, 85, 99, 112, 131, 46, 224, 1, 12, 0, 46, 27, 104, 130, 79, 184, 92, 146, 140, 232, 137, 222, 11, 139, 182, 133, 68, 40, 130, 172, 74, 128, 38, 48, 227, 99, 112, 188, 94, 192, 60, 212, 85, 227, 255, 188, 5, 219, 32, 133, 205, 193, 36, 65, 0, 131, 180, 174, 224, 30, 48, 81, 39, 16, 74, 43, 80, 107, 33, 16, 128, 8, 168, 149, 61, 230, 195, 65, 4, 40, 54, 177, 129, 228, 181, 239, 27, 80, 1, 49, 224, 129, 199, 137, 41, 10, 192, 228, 14, 8, 89, 32, 0, 131, 202, 20, 132, 102, 196, 132, 76, 56, 157, 88, 0, 135, 126, 216, 7, 107, 32, 5, 126, 128, 187, 194, 237, 7, 75, 251, 134, 88, 232, 133, 88, 158, 133, 99, 24, 132, 34, 128, 128, 99, 96, 7, 111, 96, 6, 45, 0, 2, 36, 224, 128, 2, 48, 0, 19, 157, 3, 202, 41, 254, 140, 55, 48, 233, 193, 56, 157, 86, 116, 217, 2, 54, 14, 36, 224, 1, 101, 94, 102, 8, 16, 128, 232, 216, 4, 36, 146, 62, 83, 152, 131, 110, 131, 3, 43, 48, 2, 49, 96, 3, 53, 48, 103, 35, 59, 4, 111, 72, 132, 66, 0, 134, 107, 44, 7, 169, 141, 134, 73, 80, 205, 203, 86, 242, 67, 0, 132, 53, 96, 2, 47, 200, 189, 135, 171, 42, 28, 248, 2, 88, 96, 133, 90, 42, 243, 127, 73, 109, 127, 49, 91, 86, 224, 84, 74, 181, 237, 182, 101, 91, 76, 221, 165, 28, 174, 109, 31, 70, 91, 126, 246, 103, 23, 12, 110, 61, 79, 194, 106, 88, 2, 47, 136, 194, 155, 193, 1, 46, 24, 5, 231, 38, 73, 145, 220, 11, 93, 152, 5, 54, 216, 0, 101, 238, 128, 11, 88, 131, 236, 206, 238, 89, 24, 233, 17, 154, 201, 145, 206, 163, 89, 120, 5, 84, 0, 131, 4, 192, 36, 37, 56, 163, 116, 115, 244, 235, 189, 229, 7, 112, 0, 30, 250, 0, 27, 64, 28, 230, 253, 128, 8, 64, 0, 230, 109, 202, 53, 161, 33, 15, 152, 245, 16, 64, 163, 46, 0, 141, 7, 123, 48, 75, 198, 28, 201, 101, 130, 50, 208, 81, 56, 88, 75, 233, 139, 131, 90, 216, 135, 9, 231, 7, 99, 32, 131, 10, 183, 52, 126, 248, 6, 106, 96, 133, 68, 200, 133, 102, 16, 93, 109, 88, 33, 14, 254, 88, 5, 142, 174, 6, 38, 144, 92, 12, 152, 29, 52, 186, 132, 48, 72, 2, 56, 184, 14, 211, 129, 82, 64, 90, 198, 196, 128, 3, 53, 40, 3, 37, 64, 2, 31, 224, 0, 5, 160, 29, 47, 189, 89, 1, 96, 2, 158, 66, 34, 124, 51, 108, 143, 123, 3, 49, 0, 130, 49, 224, 29, 37, 31, 23, 4, 244, 131, 96, 64, 134, 67, 144, 242, 96, 208, 6, 117, 56, 134, 106, 218, 70, 102, 160, 77, 25, 252, 2, 234, 9, 2, 29, 85, 236, 197, 240, 129, 46, 40, 243, 90, 242, 23, 50, 23, 159, 86, 32, 115, 88, 224, 158, 143, 151, 225, 14, 228, 84, 87, 112, 133, 177, 173, 243, 58, 231, 84, 55, 15, 85, 126, 134, 212, 126, 222, 103, 131, 206, 7, 127, 104, 6, 120, 80, 98, 61, 199, 5, 36, 208, 130, 31, 24, 70, 11, 16, 129, 41, 176, 220, 199, 171, 232, 146, 100, 207, 90, 112, 3, 14, 16, 128, 7, 232, 128, 208, 176, 33, 65, 200, 110, 170, 152, 244, 212, 149, 73, 233, 50, 73, 240, 166, 13, 90, 208, 13, 49, 40, 0, 39, 200, 4, 55, 88, 130, 204, 120, 175, 7, 3, 177, 14, 176, 128, 14, 99, 164, 32, 104, 35, 51, 16, 2, 8, 136, 128, 144, 157, 156, 90, 1, 1, 16, 144, 54, 104, 99, 94, 104, 179, 1, 8, 128, 130, 178, 207, 245, 92, 223, 128, 127, 107, 2, 254, 95, 23, 3, 50, 128, 131, 83, 220, 132, 54, 64, 130, 75, 168, 134, 9, 191, 135, 125, 96, 134, 38, 240, 135, 125, 232, 7, 111, 56, 6, 60, 170, 5, 40, 242, 132, 199, 187, 6, 203, 111, 2, 14, 96, 132, 14, 250, 6, 45, 144, 92, 229, 16, 0, 203, 65, 130, 228, 123, 131, 38, 141, 113, 79, 224, 132, 73, 113, 89, 197, 232, 89, 38, 48, 81, 12, 208, 42, 174, 194, 89, 48, 24, 247, 72, 153, 3, 61, 208, 131, 76, 208, 3, 225, 32, 131, 33, 16, 131, 100, 36, 4, 15, 134, 178, 214, 76, 218, 215, 172, 166, 4, 156, 7, 152, 211, 6, 102, 32, 135, 74, 112, 158, 231, 57, 132, 64, 112, 130, 100, 121, 131, 68, 96, 3, 48, 192, 132, 43, 203, 129, 86, 176, 5, 141, 55, 243, 5, 9, 255, 241, 39, 127, 223, 212, 248, 87, 40, 219, 178, 117, 5, 85, 96, 5, 56, 103, 249, 57, 111, 132, 79, 200, 152, 76, 29, 85, 23, 116, 65, 74, 248, 206, 196, 237, 7, 120, 232, 134, 82, 16, 3, 128, 24, 51, 166, 20, 53, 112, 244, 246, 33, 76, 168, 112, 225, 190, 93, 75, 30, 250, 192, 177, 192, 2, 146, 81, 181, 106, 29, 171, 117, 235, 150, 198, 139, 24, 69, 1, 129, 240, 0, 3, 135, 13, 27, 50, 100, 40, 34, 232, 216, 198, 91, 179, 122, 225, 226, 37, 19, 23, 46, 93, 52, 254, 105, 246, 170, 53, 139, 22, 41, 81, 72, 30, 32, 73, 132, 137, 12, 152, 38, 72, 130, 240, 48, 137, 129, 100, 201, 12, 28, 162, 152, 137, 66, 39, 200, 3, 11, 29, 48, 80, 192, 112, 129, 195, 82, 173, 11, 106, 120, 184, 122, 1, 131, 6, 14, 102, 73, 150, 213, 176, 129, 7, 15, 32, 72, 152, 148, 33, 195, 6, 142, 38, 81, 77, 214, 106, 226, 183, 143, 223, 189, 125, 221, 138, 188, 58, 246, 234, 22, 51, 111, 236, 114, 57, 97, 146, 200, 22, 171, 80, 190, 66, 33, 57, 80, 134, 221, 56, 120, 101, 52, 4, 217, 240, 96, 0, 15, 14, 14, 32, 8, 129, 35, 138, 212, 40, 81, 162, 76, 105, 202, 132, 105, 209, 34, 55, 110, 218, 144, 209, 162, 4, 136, 15, 11, 12, 68, 62, 128, 192, 128, 129, 2, 12, 112, 222, 108, 42, 189, 73, 19, 167, 76, 154, 76, 93, 74, 211, 132, 76, 155, 68, 132, 10, 65, 143, 30, 232, 26, 60, 111, 224, 200, 145, 243, 23, 44, 25, 188, 96, 193, 152, 41, 75, 228, 109, 82, 116, 67, 134, 8, 149, 41, 131, 4, 14, 114, 48, 151, 220, 136, 49, 210, 40, 25, 44, 91, 182, 96, 225, 207, 95, 223, 150, 179, 100, 206, 116, 57, 227, 12, 44, 183, 248, 103, 11, 128, 254, 5, 216, 204, 45, 195, 216, 167, 31, 126, 175, 188, 2, 139, 42, 174, 168, 162, 10, 254, 43, 170, 180, 82, 161, 134, 144, 112, 216, 97, 135, 143, 64, 210, 200, 35, 12, 37, 164, 207, 61, 179, 88, 209, 132, 19, 56, 136, 144, 195, 20, 70, 148, 49, 26, 46, 125, 145, 168, 208, 53, 108, 104, 177, 196, 5, 61, 20, 209, 0, 14, 163, 112, 228, 81, 71, 30, 225, 18, 135, 72, 24, 208, 16, 4, 16, 75, 58, 225, 68, 17, 152, 228, 98, 75, 45, 175, 208, 2, 19, 77, 186, 232, 194, 203, 77, 189, 244, 50, 139, 151, 60, 109, 178, 1, 3, 78, 108, 242, 9, 28, 106, 148, 49, 69, 19, 60, 60, 16, 65, 7, 28, 208, 224, 3, 16, 74, 66, 65, 71, 24, 105, 80, 85, 213, 85, 15, 140, 212, 21, 6, 29, 0, 106, 1, 159, 23, 140, 196, 149, 159, 134, 154, 85, 210, 6, 31, 0, 193, 67, 23, 106, 152, 128, 3, 18, 130, 48, 3, 207, 59, 242, 128, 227, 11, 13, 106, 144, 51, 142, 59, 237, 180, 3, 207, 49, 71, 188, 130, 139, 40, 153, 28, 195, 140, 44, 90, 64, 128, 4, 57, 213, 220, 194, 4, 14, 64, 96, 240, 128, 1, 60, 32, 129, 193, 7, 66, 160, 145, 73, 41, 199, 105, 18, 44, 38, 155, 92, 114, 201, 34, 109, 176, 33, 134, 22, 77, 208, 246, 192, 109, 16, 64, 123, 155, 2, 34, 192, 209, 198, 38, 157, 152, 86, 138, 41, 156, 4, 187, 137, 27, 203, 181, 33, 254, 200, 115, 230, 5, 98, 72, 33, 129, 4, 146, 200, 33, 135, 120, 151, 12, 187, 193, 104, 227, 15, 56, 209, 4, 3, 78, 48, 126, 64, 103, 30, 33, 106, 184, 177, 4, 28, 165, 92, 82, 134, 113, 112, 140, 225, 70, 127, 1, 34, 252, 95, 50, 8, 58, 243, 204, 51, 223, 112, 179, 205, 54, 220, 56, 179, 13, 58, 223, 160, 131, 142, 56, 19, 247, 103, 75, 50, 197, 36, 115, 31, 126, 173, 144, 108, 97, 43, 20, 158, 60, 33, 133, 24, 66, 82, 97, 35, 30, 190, 204, 225, 136, 8, 229, 211, 15, 62, 250, 236, 163, 207, 55, 154, 0, 33, 2, 139, 63, 228, 240, 3, 16, 63, 40, 193, 132, 17, 99, 232, 114, 205, 55, 11, 241, 179, 244, 62, 253, 192, 225, 197, 17, 181, 250, 96, 196, 15, 172, 72, 121, 81, 50, 66, 206, 194, 81, 18, 16, 32, 105, 68, 23, 15, 105, 1, 6, 19, 77, 60, 57, 229, 43, 162, 196, 50, 203, 77, 87, 222, 116, 75, 78, 59, 197, 242, 10, 38, 54, 40, 0, 196, 37, 163, 96, 34, 8, 124, 101, 108, 16, 64, 0, 15, 4, 17, 4, 18, 106, 70, 113, 133, 25, 105, 192, 113, 2, 159, 18, 88, 96, 65, 173, 126, 254, 217, 65, 228, 35, 93, 16, 1, 229, 148, 27, 74, 22, 83, 87, 45, 186, 65, 16, 54, 248, 112, 68, 19, 54, 0, 177, 65, 19, 137, 124, 254, 50, 139, 49, 179, 28, 115, 13, 43, 110, 172, 18, 37, 99, 161, 104, 241, 0, 7, 113, 28, 97, 22, 16, 70, 132, 1, 129, 0, 52, 88, 193, 1, 18, 81, 132, 129, 201, 40, 158, 48, 159, 218, 106, 139, 188, 81, 45, 27, 99, 104, 129, 68, 234, 187, 225, 166, 27, 4, 7, 240, 0, 7, 26, 120, 152, 18, 190, 41, 195, 117, 11, 135, 18, 101, 192, 145, 136, 115, 230, 21, 114, 72, 34, 133, 152, 11, 29, 32, 129, 224, 123, 46, 33, 238, 79, 18, 204, 47, 241, 231, 59, 200, 111, 72, 180, 129, 20, 151, 16, 131, 175, 54, 113, 38, 110, 120, 227, 97, 226, 240, 134, 56, 32, 198, 13, 110, 124, 99, 28, 18, 100, 7, 60, 216, 241, 169, 10, 134, 170, 31, 21, 252, 198, 55, 2, 148, 12, 100, 132, 204, 65, 172, 40, 25, 203, 90, 166, 33, 85, 60, 226, 17, 21, 106, 25, 204, 100, 246, 50, 120, 32, 228, 27, 177, 32, 5, 41, 120, 129, 7, 37, 228, 32, 3, 23, 16, 129, 4, 20, 160, 0, 9, 92, 32, 3, 27, 16, 65, 17, 166, 80, 6, 55, 80, 99, 33, 227, 32, 67, 47, 216, 241, 10, 35, 28, 33, 3, 124, 194, 128, 22, 100, 81, 11, 91, 4, 73, 72, 88, 92, 5, 13, 30, 128, 58, 36, 40, 97, 10, 93, 96, 66, 23, 48, 193, 134, 34, 252, 32, 19, 175, 24, 69, 39, 254, 52, 17, 11, 43, 213, 228, 109, 184, 232, 133, 75, 232, 246, 138, 55, 124, 192, 0, 65, 16, 196, 42, 60, 129, 137, 55, 184, 129, 12, 72, 240, 129, 73, 126, 199, 4, 162, 136, 225, 10, 79, 136, 194, 28, 136, 48, 69, 206, 145, 228, 79, 86, 137, 156, 4, 38, 55, 185, 11, 100, 110, 115, 137, 82, 148, 73, 58, 105, 18, 174, 152, 101, 3, 28, 120, 211, 40, 57, 96, 3, 39, 52, 74, 11, 110, 72, 68, 25, 4, 17, 7, 32, 152, 197, 42, 85, 177, 129, 5, 186, 160, 129, 3, 216, 0, 14, 31, 176, 2, 26, 210, 96, 6, 211, 156, 42, 53, 155, 72, 196, 34, 4, 1, 72, 53, 152, 13, 9, 63, 224, 192, 109, 248, 20, 173, 221, 52, 1, 14, 112, 200, 68, 248, 52, 209, 137, 54, 110, 194, 20, 153, 128, 3, 19, 196, 0, 7, 66, 168, 175, 125, 126, 56, 4, 57, 10, 225, 7, 246, 153, 199, 92, 233, 68, 23, 32, 218, 233, 206, 124, 53, 2, 14, 139, 88, 15, 41, 188, 53, 26, 77, 96, 66, 11, 205, 232, 135, 59, 224, 113, 14, 120, 152, 195, 28, 20, 252, 39, 60, 10, 106, 208, 12, 194, 3, 84, 240, 240, 7, 7, 183, 145, 176, 99, 44, 236, 22, 13, 202, 143, 43, 90, 209, 136, 21, 178, 16, 133, 159, 80, 33, 11, 91, 38, 9, 15, 113, 136, 12, 222, 48, 199, 46, 64, 254, 209, 5, 17, 100, 64, 4, 65, 20, 1, 75, 85, 122, 129, 6, 44, 160, 1, 48, 109, 233, 18, 154, 161, 144, 111, 48, 162, 11, 108, 96, 131, 23, 122, 182, 128, 9, 192, 137, 21, 199, 144, 69, 214, 60, 146, 53, 86, 104, 198, 7, 77, 232, 194, 91, 186, 208, 133, 34, 168, 33, 17, 90, 248, 193, 17, 18, 145, 154, 76, 100, 2, 21, 47, 129, 201, 45, 228, 232, 54, 47, 209, 13, 15, 7, 80, 128, 15, 104, 71, 10, 63, 46, 162, 90, 100, 16, 3, 19, 150, 128, 4, 40, 192, 129, 57, 97, 56, 129, 16, 210, 32, 4, 201, 65, 114, 41, 146, 19, 212, 3, 198, 162, 149, 177, 248, 181, 43, 155, 236, 36, 7, 132, 104, 18, 19, 36, 37, 41, 158, 68, 9, 39, 133, 24, 74, 81, 66, 118, 3, 26, 176, 1, 13, 112, 128, 3, 205, 4, 0, 3, 80, 96, 11, 16, 148, 64, 6, 38, 180, 33, 174, 100, 208, 131, 38, 64, 33, 44, 98, 93, 194, 111, 129, 76, 230, 15, 46, 240, 44, 62, 221, 230, 54, 76, 120, 195, 28, 64, 33, 138, 82, 116, 130, 20, 184, 229, 196, 169, 230, 0, 133, 50, 180, 225, 18, 153, 216, 68, 32, 224, 167, 13, 88, 4, 35, 58, 240, 67, 103, 58, 207, 233, 92, 239, 156, 51, 16, 158, 112, 195, 34, 152, 192, 6, 82, 152, 98, 17, 165, 64, 69, 176, 186, 64, 254, 138, 122, 24, 212, 160, 26, 212, 96, 120, 203, 171, 65, 118, 176, 131, 131, 227, 240, 70, 128, 158, 145, 176, 136, 58, 8, 22, 120, 96, 68, 35, 50, 164, 10, 14, 93, 104, 133, 247, 237, 16, 70, 57, 36, 2, 43, 48, 226, 12, 70, 24, 65, 74, 93, 202, 82, 9, 140, 128, 165, 152, 76, 176, 8, 26, 240, 133, 28, 72, 192, 8, 120, 184, 70, 59, 176, 177, 136, 12, 176, 193, 169, 70, 16, 1, 159, 156, 242, 9, 99, 88, 81, 72, 23, 233, 90, 41, 108, 176, 129, 30, 76, 1, 12, 96, 16, 163, 217, 150, 218, 5, 45, 148, 110, 16, 87, 205, 106, 149, 184, 36, 199, 155, 124, 41, 22, 177, 192, 131, 1, 4, 144, 203, 88, 172, 162, 20, 162, 192, 167, 223, 166, 7, 6, 45, 148, 225, 13, 161, 69, 195, 108, 236, 250, 0, 10, 80, 64, 114, 64, 236, 74, 159, 186, 178, 21, 77, 58, 37, 81, 134, 245, 228, 6, 104, 16, 169, 208, 93, 246, 178, 159, 28, 172, 90, 178, 108, 18, 26, 16, 54, 205, 206, 10, 195, 154, 248, 212, 39, 27, 40, 193, 13, 198, 9, 214, 112, 139, 101, 76, 181, 118, 129, 89, 63, 112, 86, 246, 162, 21, 129, 49, 68, 175, 46, 165, 32, 5, 42, 72, 161, 137, 225, 108, 226, 13, 96, 176, 194, 111, 134, 75, 136, 115, 30, 34, 18, 206, 80, 46, 252, 240, 229, 7, 254, 231, 26, 226, 156, 153, 54, 4, 189, 240, 245, 199, 75, 116, 19, 21, 184, 45, 197, 42, 76, 235, 6, 60, 144, 119, 188, 240, 32, 239, 170, 11, 202, 106, 241, 106, 240, 98, 0, 101, 111, 194, 222, 171, 11, 250, 192, 2, 18, 120, 104, 4, 30, 32, 145, 31, 85, 192, 162, 162, 176, 104, 5, 125, 91, 225, 134, 47, 52, 130, 215, 103, 56, 67, 35, 10, 140, 132, 28, 96, 50, 3, 18, 104, 192, 180, 19, 64, 237, 159, 46, 64, 1, 13, 216, 161, 8, 186, 144, 131, 150, 158, 129, 13, 67, 195, 193, 18, 170, 134, 131, 6, 40, 192, 2, 27, 88, 3, 53, 94, 97, 139, 89, 216, 39, 107, 82, 90, 133, 13, 74, 130, 132, 50, 168, 184, 12, 93, 24, 3, 19, 138, 176, 4, 50, 160, 173, 9, 130, 48, 86, 38, 240, 160, 213, 173, 222, 24, 23, 93, 253, 210, 43, 240, 48, 0, 1, 108, 32, 14, 178, 160, 5, 144, 75, 1, 10, 70, 188, 6, 54, 98, 32, 67, 244, 222, 64, 6, 84, 78, 165, 42, 153, 115, 51, 201, 249, 196, 215, 145, 68, 96, 44, 125, 93, 202, 38, 53, 128, 146, 78, 154, 88, 4, 54, 96, 75, 151, 191, 108, 3, 17, 160, 153, 203, 158, 68, 51, 39, 207, 252, 201, 12, 208, 32, 2, 2, 128, 194, 25, 162, 96, 1, 10, 112, 192, 4, 66, 72, 194, 25, 170, 73, 103, 76, 254, 20, 171, 152, 74, 38, 3, 83, 129, 112, 238, 102, 62, 83, 1, 27, 128, 67, 106, 77, 129, 173, 82, 8, 249, 18, 155, 200, 132, 30, 60, 14, 6, 52, 188, 161, 88, 111, 160, 95, 33, 152, 145, 12, 115, 94, 58, 238, 113, 223, 244, 165, 51, 61, 9, 123, 249, 129, 16, 158, 152, 175, 190, 123, 2, 10, 82, 119, 98, 19, 139, 24, 67, 55, 94, 237, 106, 85, 135, 23, 189, 171, 254, 198, 53, 118, 225, 13, 120, 160, 99, 189, 20, 123, 6, 55, 220, 123, 141, 107, 56, 204, 189, 206, 96, 197, 174, 117, 13, 137, 6, 221, 71, 100, 141, 16, 193, 17, 84, 33, 134, 17, 228, 128, 10, 57, 24, 193, 15, 198, 176, 96, 28, 100, 160, 1, 19, 208, 54, 38, 21, 48, 0, 5, 36, 192, 0, 50, 77, 128, 15, 27, 176, 1, 35, 188, 40, 7, 88, 192, 3, 22, 168, 48, 132, 30, 108, 64, 2, 60, 148, 128, 242, 139, 160, 139, 90, 16, 21, 172, 35, 134, 62, 44, 197, 4, 132, 50, 140, 97, 9, 48, 2, 3, 16, 138, 16, 134, 57, 76, 117, 82, 154, 88, 4, 86, 75, 209, 54, 132, 123, 137, 38, 96, 101, 56, 30, 68, 32, 0, 14, 144, 65, 22, 184, 152, 97, 41, 22, 145, 136, 55, 8, 162, 90, 170, 188, 68, 218, 201, 176, 36, 58, 8, 193, 3, 64, 14, 16, 117, 0, 201, 65, 75, 201, 254, 149, 156, 160, 0, 81, 95, 153, 92, 202, 97, 18, 39, 125, 192, 7, 232, 156, 73, 176, 133, 137, 89, 22, 14, 84, 214, 206, 157, 153, 8, 44, 10, 207, 113, 152, 1, 48, 154, 24, 136, 128, 156, 140, 1, 16, 12, 1, 20, 152, 134, 41, 52, 79, 38, 24, 203, 157, 197, 65, 25, 48, 193, 17, 0, 129, 13, 236, 134, 155, 69, 203, 1, 0, 129, 27, 204, 193, 28, 0, 147, 215, 157, 198, 37, 232, 1, 255, 165, 1, 47, 189, 129, 30, 108, 130, 30, 60, 154, 33, 28, 194, 51, 4, 67, 166, 201, 93, 220, 33, 66, 221, 213, 93, 50, 144, 195, 36, 228, 93, 118, 37, 2, 81, 148, 70, 93, 160, 2, 40, 8, 94, 23, 204, 2, 226, 245, 195, 120, 177, 67, 55, 124, 3, 64, 81, 16, 122, 209, 2, 40, 156, 193, 240, 49, 130, 46, 224, 65, 44, 60, 16, 55, 116, 131, 197, 100, 76, 122, 77, 204, 49, 28, 131, 45, 44, 27, 30, 76, 65, 35, 52, 76, 50, 188, 66, 41, 212, 7, 44, 120, 193, 2, 92, 0, 30, 60, 91, 130, 201, 30, 35, 78, 192, 8, 76, 155, 15, 253, 208, 180, 201, 148, 2, 24, 192, 37, 98, 162, 1, 40, 0, 10, 96, 193, 178, 101, 65, 22, 80, 193, 9, 248, 204, 6, 224, 128, 4, 248, 128, 6, 224, 0, 6, 216, 192, 40, 80, 195, 42, 216, 199, 21, 209, 130, 254, 21, 209, 2, 46, 132, 129, 4, 238, 134, 15, 148, 193, 25, 48, 1, 16, 116, 193, 17, 248, 64, 23, 208, 65, 27, 28, 193, 15, 104, 129, 32, 232, 1, 249, 109, 2, 161, 165, 66, 215, 116, 13, 46, 184, 141, 194, 49, 227, 78, 172, 13, 30, 48, 0, 6, 148, 65, 44, 232, 130, 151, 108, 66, 18, 128, 1, 25, 184, 193, 37, 124, 22, 28, 108, 194, 192, 9, 210, 16, 204, 129, 16, 64, 192, 5, 92, 78, 148, 217, 32, 201, 21, 32, 228, 184, 217, 5, 116, 64, 86, 180, 9, 2, 22, 138, 89, 184, 220, 95, 5, 214, 96, 81, 160, 9, 208, 128, 8, 124, 0, 139, 224, 128, 5, 118, 217, 206, 93, 128, 0, 40, 142, 21, 188, 197, 17, 1, 193, 7, 76, 65, 176, 92, 213, 161, 25, 203, 27, 0, 210, 11, 86, 15, 44, 53, 147, 51, 65, 75, 171, 180, 65, 27, 188, 1, 39, 232, 86, 39, 136, 218, 144, 73, 83, 181, 88, 1, 25, 136, 163, 17, 94, 2, 219, 185, 2, 59, 44, 67, 165, 69, 161, 220, 57, 225, 165, 5, 3, 57, 220, 139, 31, 184, 129, 38, 20, 11, 27, 48, 129, 41, 88, 92, 39, 128, 66, 39, 224, 1, 30, 140, 1, 35, 124, 67, 225, 149, 215, 53, 116, 3, 45, 92, 195, 197, 48, 212, 63, 188, 66, 241, 81, 1, 240, 13, 1, 30, 80, 65, 35, 116, 131, 25, 54, 254, 3, 42, 96, 67, 63, 176, 3, 58, 164, 215, 55, 224, 66, 128, 141, 129, 213, 136, 0, 21, 80, 201, 49, 132, 2, 21, 236, 218, 23, 12, 1, 75, 173, 158, 4, 204, 158, 182, 25, 192, 8, 40, 192, 2, 180, 84, 236, 69, 226, 0, 240, 158, 15, 13, 0, 186, 33, 192, 8, 108, 0, 21, 208, 65, 22, 196, 64, 30, 84, 1, 21, 180, 0, 21, 244, 192, 15, 84, 13, 74, 136, 192, 15, 212, 64, 17, 84, 131, 44, 132, 216, 21, 17, 149, 44, 220, 2, 35, 152, 4, 111, 64, 128, 26, 136, 65, 27, 24, 193, 209, 44, 193, 245, 173, 65, 17, 24, 129, 15, 104, 65, 34, 96, 213, 112, 109, 23, 45, 120, 9, 151, 88, 73, 51, 50, 99, 45, 172, 33, 30, 212, 10, 19, 144, 130, 46, 116, 149, 38, 180, 1, 30, 128, 35, 190, 145, 65, 177, 204, 193, 37, 156, 129, 16, 32, 1, 29, 56, 14, 86, 84, 197, 209, 181, 163, 61, 74, 128, 201, 153, 220, 201, 149, 92, 36, 113, 128, 6, 144, 68, 4, 88, 64, 116, 86, 133, 155, 145, 132, 83, 136, 82, 162, 44, 5, 96, 49, 133, 39, 241, 0, 6, 8, 64, 20, 60, 65, 15, 156, 100, 27, 100, 194, 6, 12, 128, 18, 180, 166, 78, 118, 36, 25, 140, 1, 190, 105, 193, 217, 52, 10, 155, 48, 128, 70, 70, 11, 4, 120, 150, 18, 140, 193, 28, 254, 108, 2, 216, 25, 154, 41, 136, 194, 38, 204, 65, 244, 0, 23, 28, 4, 33, 215, 233, 1, 253, 4, 130, 54, 76, 130, 36, 144, 195, 76, 94, 90, 76, 250, 1, 188, 32, 3, 56, 88, 97, 32, 20, 75, 177, 180, 129, 18, 100, 147, 53, 129, 194, 197, 97, 220, 18, 244, 194, 46, 96, 195, 25, 122, 101, 63, 252, 3, 42, 52, 3, 13, 53, 67, 55, 96, 3, 40, 80, 193, 17, 80, 193, 84, 182, 136, 17, 232, 192, 23, 232, 194, 25, 238, 66, 35, 144, 194, 81, 138, 131, 57, 112, 144, 46, 116, 193, 20, 176, 129, 8, 140, 192, 2, 236, 218, 20, 12, 165, 14, 156, 37, 10, 164, 64, 10, 160, 30, 180, 221, 37, 234, 193, 84, 3, 16, 24, 130, 181, 148, 8, 204, 165, 2, 60, 192, 7, 156, 0, 16, 80, 65, 22, 208, 193, 30, 20, 102, 22, 84, 1, 12, 44, 38, 21, 92, 105, 15, 40, 137, 20, 225, 192, 134, 121, 2, 136, 217, 66, 44, 66, 95, 159, 150, 194, 6, 152, 128, 40, 93, 128, 15, 44, 2, 24, 116, 129, 164, 8, 88, 17, 220, 103, 17, 160, 145, 42, 13, 87, 193, 137, 228, 249, 189, 132, 51, 226, 68, 151, 128, 213, 109, 210, 96, 19, 136, 130, 76, 184, 132, 161, 169, 70, 185, 125, 22, 19, 228, 18, 26, 56, 193, 16, 40, 167, 119, 70, 89, 37, 149, 28, 110, 116, 39, 254, 2, 98, 146, 61, 78, 209, 89, 44, 197, 85, 96, 197, 5, 168, 170, 96, 41, 202, 89, 172, 106, 172, 170, 197, 6, 80, 128, 0, 36, 1, 20, 36, 1, 191, 36, 130, 40, 124, 128, 3, 36, 65, 106, 164, 214, 192, 97, 2, 35, 240, 223, 106, 49, 75, 103, 100, 228, 51, 49, 64, 4, 116, 19, 24, 253, 6, 216, 161, 2, 42, 120, 29, 16, 42, 25, 209, 113, 221, 17, 110, 194, 38, 16, 2, 32, 136, 83, 50, 28, 195, 36, 24, 130, 21, 202, 228, 50, 48, 195, 187, 90, 33, 32, 36, 2, 255, 241, 159, 249, 224, 193, 112, 33, 218, 80, 226, 1, 10, 224, 193, 43, 116, 194, 53, 80, 3, 29, 198, 3, 55, 224, 65, 30, 48, 194, 23, 116, 130, 197, 45, 193, 183, 161, 64, 14, 160, 192, 2, 140, 64, 130, 233, 0, 30, 236, 193, 96, 240, 26, 196, 56, 195, 3, 125, 67, 40, 0, 223, 17, 56, 233, 5, 76, 193, 18, 148, 0, 10, 108, 88, 100, 142, 64, 9, 56, 169, 147, 218, 229, 130, 197, 148, 75, 61, 41, 196, 170, 148, 74, 61, 192, 9, 160, 192, 12, 200, 64, 30, 124, 34, 29, 196, 0, 12, 196, 64, 12, 36, 38, 21, 160, 128, 156, 166, 0, 10, 156, 64, 160, 254, 213, 17, 112, 67, 244, 73, 73, 102, 90, 17, 24, 4, 129, 19, 52, 65, 105, 118, 129, 23, 180, 149, 234, 168, 254, 129, 17, 0, 65, 19, 104, 65, 17, 192, 88, 23, 136, 130, 216, 129, 66, 38, 136, 228, 182, 194, 230, 164, 186, 13, 151, 212, 145, 151, 144, 66, 38, 124, 192, 152, 96, 2, 47, 232, 66, 78, 196, 194, 169, 92, 2, 24, 64, 64, 234, 224, 192, 3, 144, 193, 25, 0, 129, 16, 232, 65, 15, 76, 81, 95, 69, 167, 58, 194, 234, 115, 6, 46, 161, 72, 231, 160, 100, 133, 149, 97, 146, 160, 164, 220, 118, 238, 163, 6, 148, 133, 161, 32, 96, 37, 21, 214, 90, 160, 103, 209, 40, 65, 218, 41, 207, 177, 34, 129, 78, 38, 2, 249, 52, 107, 34, 248, 77, 92, 21, 69, 163, 212, 224, 70, 234, 70, 53, 170, 24, 18, 52, 193, 111, 222, 214, 118, 209, 144, 68, 182, 193, 217, 121, 36, 53, 105, 139, 115, 0, 2, 190, 4, 131, 43, 108, 3, 50, 216, 164, 186, 46, 131, 33, 192, 139, 77, 38, 215, 56, 9, 5, 30, 180, 6, 55, 113, 29, 11, 110, 2, 40, 204, 23, 30, 124, 193, 17, 228, 65, 39, 124, 195, 32, 162, 194, 42, 232, 2, 21, 252, 232, 18, 80, 193, 20, 80, 129, 130, 69, 236, 183, 129, 105, 100, 138, 128, 17, 220, 66, 30, 124, 65, 30, 148, 66, 51, 208, 194, 45, 52, 131, 51, 60, 216, 8, 96, 82, 14, 172, 158, 14, 68, 172, 202, 182, 212, 8, 84, 162, 242, 57, 169, 151, 254, 82, 226, 180, 77, 64, 16, 85, 192, 9, 16, 65, 21, 208, 1, 29, 228, 65, 155, 170, 105, 21, 244, 108, 12, 100, 193, 29, 128, 98, 11, 244, 0, 10, 176, 20, 209, 138, 0, 15, 72, 192, 43, 112, 131, 47, 100, 205, 44, 88, 166, 21, 129, 194, 211, 2, 193, 24, 140, 205, 17, 24, 1, 24, 44, 236, 33, 57, 102, 16, 104, 193, 26, 108, 1, 27, 208, 130, 46, 96, 220, 161, 105, 194, 182, 162, 66, 217, 210, 17, 218, 186, 132, 51, 122, 9, 119, 57, 193, 221, 186, 1, 46, 236, 2, 46, 216, 38, 41, 96, 130, 30, 128, 65, 173, 244, 213, 6, 176, 1, 25, 4, 129, 16, 156, 42, 95, 109, 103, 7, 192, 227, 227, 180, 170, 225, 86, 197, 2, 194, 42, 227, 94, 69, 148, 81, 192, 5, 44, 110, 173, 140, 197, 38, 49, 39, 2, 178, 92, 73, 112, 192, 0, 68, 129, 18, 52, 193, 37, 152, 6, 41, 124, 64, 4, 32, 1, 177, 204, 217, 38, 12, 11, 198, 193, 129, 69, 90, 143, 152, 104, 100, 110, 240, 198, 6, 48, 193, 217, 40, 65, 104, 197, 110, 161, 25, 154, 216, 193, 193, 217, 113, 220, 113, 132, 15, 217, 125, 129, 185, 142, 147, 54, 80, 178, 54, 4, 3, 49, 108, 67, 50, 248, 129, 54, 48, 3, 187, 6, 66, 93, 140, 93, 162, 185, 1, 19, 76, 211, 248, 117, 66, 40, 160, 6, 254, 81, 138, 192, 25, 112, 195, 44, 140, 193, 25, 140, 193, 20, 140, 193, 247, 226, 0, 15, 156, 64, 15, 244, 0, 132, 49, 159, 242, 93, 128, 2, 76, 128, 242, 161, 172, 4, 228, 1, 254, 146, 30, 175, 185, 8, 44, 124, 65, 131, 73, 192, 183, 181, 148, 92, 46, 192, 79, 77, 0, 181, 197, 30, 93, 54, 64, 75, 161, 192, 181, 53, 128, 3, 160, 192, 1, 171, 169, 2, 103, 1, 12, 200, 128, 97, 26, 38, 4, 87, 65, 57, 187, 105, 11, 176, 64, 11, 160, 64, 254, 142, 0, 10, 184, 51, 16, 44, 37, 211, 218, 7, 45, 196, 162, 18, 244, 128, 81, 100, 95, 47, 182, 213, 15, 240, 128, 22, 140, 1, 6, 22, 65, 25, 120, 1, 27, 220, 194, 127, 104, 2, 26, 160, 164, 38, 108, 23, 14, 175, 159, 220, 124, 21, 88, 197, 130, 38, 144, 1, 4, 108, 0, 25, 204, 194, 46, 116, 9, 79, 104, 194, 27, 44, 129, 152, 8, 128, 4, 224, 0, 28, 136, 129, 13, 4, 129, 25, 56, 142, 44, 81, 128, 201, 113, 39, 172, 30, 96, 225, 230, 6, 201, 29, 29, 6, 168, 42, 161, 48, 177, 160, 96, 146, 96, 73, 86, 87, 20, 32, 201, 97, 5, 73, 40, 5, 27, 71, 193, 231, 210, 208, 42, 124, 64, 7, 48, 129, 112, 9, 139, 106, 144, 110, 69, 194, 160, 245, 96, 0, 3, 56, 64, 110, 80, 254, 43, 174, 32, 129, 235, 34, 180, 216, 130, 93, 194, 22, 139, 1, 157, 29, 26, 112, 29, 39, 160, 198, 37, 84, 203, 22, 196, 29, 187, 80, 97, 50, 104, 3, 21, 182, 15, 187, 22, 2, 27, 152, 6, 157, 165, 157, 21, 148, 193, 216, 221, 107, 224, 93, 66, 27, 76, 129, 8, 76, 129, 51, 144, 130, 5, 48, 152, 207, 64, 216, 254, 142, 64, 52, 195, 20, 255, 242, 16, 76, 213, 64, 74, 233, 64, 129, 37, 216, 4, 76, 128, 147, 166, 20, 181, 165, 44, 36, 70, 51, 97, 55, 128, 1, 72, 64, 236, 161, 155, 76, 141, 175, 8, 104, 27, 234, 33, 112, 2, 23, 38, 156, 126, 98, 22, 16, 193, 19, 184, 105, 21, 200, 64, 11, 192, 0, 12, 176, 64, 10, 148, 64, 9, 168, 243, 58, 183, 243, 58, 75, 128, 27, 112, 3, 41, 64, 31, 211, 18, 85, 38, 240, 0, 12, 142, 13, 19, 72, 205, 20, 32, 129, 101, 169, 24, 14, 112, 192, 18, 140, 2, 27, 44, 130, 46, 228, 66, 51, 128, 66, 27, 32, 1, 25, 40, 52, 14, 211, 51, 88, 217, 152, 151, 164, 109, 116, 235, 78, 23, 248, 194, 46, 24, 67, 220, 174, 2, 114, 164, 14, 4, 12, 0, 7, 228, 160, 211, 74, 241, 114, 118, 231, 171, 186, 153, 118, 10, 224, 174, 138, 4, 171, 174, 116, 117, 50, 177, 86, 12, 96, 7, 100, 78, 116, 254, 106, 133, 230, 88, 39, 126, 187, 25, 119, 234, 183, 79, 99, 64, 0, 68, 65, 80, 123, 228, 104, 124, 0, 6, 88, 1, 38, 24, 135, 39, 96, 85, 11, 186, 6, 50, 25, 13, 85, 244, 231, 70, 198, 22, 4, 24, 206, 16, 128, 17, 26, 180, 193, 113, 96, 139, 66, 143, 171, 1, 65, 1, 66, 179, 193, 71, 134, 207, 107, 120, 245, 26, 236, 238, 165, 181, 143, 43, 4, 195, 33, 168, 2, 134, 62, 113, 53, 133, 207, 216, 137, 193, 25, 128, 50, 130, 234, 164, 161, 254, 128, 94, 27, 129, 255, 42, 88, 116, 238, 178, 236, 197, 84, 101, 83, 219, 101, 27, 192, 4, 100, 0, 149, 102, 64, 130, 45, 64, 102, 59, 243, 47, 71, 108, 130, 1, 145, 92, 202, 212, 37, 66, 115, 13, 52, 216, 37, 202, 94, 202, 250, 64, 154, 230, 1, 31, 100, 193, 11, 84, 1, 11, 84, 65, 11, 148, 179, 208, 170, 118, 207, 182, 118, 11, 244, 108, 11, 92, 169, 59, 59, 105, 5, 48, 121, 236, 145, 66, 46, 184, 219, 196, 217, 66, 8, 211, 66, 25, 40, 1, 27, 32, 193, 18, 192, 5, 179, 244, 34, 14, 252, 0, 50, 249, 192, 24, 144, 194, 46, 12, 2, 35, 232, 161, 46, 148, 2, 28, 240, 0, 24, 84, 247, 182, 166, 194, 117, 175, 159, 250, 129, 85, 130, 110, 64, 4, 104, 234, 46, 216, 196, 252, 157, 74, 254, 23, 97, 128, 2, 24, 143, 27, 92, 65, 225, 100, 193, 7, 136, 196, 224, 62, 14, 161, 40, 96, 60, 218, 224, 70, 210, 122, 171, 178, 106, 224, 190, 183, 0, 18, 138, 202, 69, 46, 73, 100, 206, 88, 208, 170, 173, 150, 103, 129, 7, 171, 19, 188, 193, 118, 137, 66, 4, 104, 64, 25, 64, 164, 106, 64, 157, 253, 189, 6, 81, 168, 8, 13, 64, 245, 75, 171, 238, 5, 252, 0, 18, 56, 193, 91, 4, 161, 79, 130, 36, 13, 105, 147, 40, 188, 193, 73, 138, 129, 156, 189, 181, 72, 147, 1, 25, 204, 129, 27, 180, 248, 19, 202, 29, 32, 16, 130, 30, 148, 1, 28, 67, 164, 136, 178, 193, 35, 111, 194, 15, 150, 193, 194, 114, 219, 144, 203, 229, 4, 60, 0, 181, 105, 27, 186, 249, 242, 147, 2, 112, 38, 102, 192, 4, 232, 158, 100, 75, 219, 147, 143, 128, 14, 160, 0, 149, 82, 118, 52, 55, 124, 150, 47, 121, 15, 13, 192, 95, 58, 246, 5, 44, 0, 155, 210, 65, 56, 191, 105, 154, 195, 192, 55, 27, 112, 57, 239, 108, 10, 176, 246, 156, 171, 115, 9, 156, 192, 8, 84, 192, 96, 203, 165, 173, 218, 64, 8, 243, 182, 101, 142, 66, 15, 104, 193, 216, 76, 109, 23, 164, 166, 22, 24, 1, 14, 248, 128, 125, 174, 129, 77, 220, 194, 32, 124, 194, 49, 232, 66, 51, 172, 130, 31, 126, 254, 248, 66, 147, 109, 217, 110, 149, 118, 131, 85, 61, 1, 193, 3, 0, 65, 34, 216, 132, 109, 202, 66, 224, 125, 203, 175, 110, 0, 18, 148, 123, 20, 155, 116, 58, 182, 137, 160, 80, 167, 5, 32, 238, 170, 170, 174, 155, 81, 39, 182, 187, 9, 76, 51, 113, 119, 94, 121, 149, 109, 142, 86, 144, 113, 24, 51, 133, 5, 4, 64, 18, 4, 245, 27, 144, 194, 44, 100, 66, 7, 124, 192, 135, 27, 7, 11, 50, 130, 212, 85, 139, 9, 115, 59, 51, 65, 64, 4, 248, 39, 4, 100, 64, 85, 119, 123, 23, 204, 107, 110, 9, 25, 41, 180, 209, 37, 152, 194, 28, 116, 53, 215, 153, 130, 0, 109, 28, 108, 196, 1, 193, 172, 1, 253, 60, 225, 31, 0, 2, 23, 168, 193, 27, 100, 66, 28, 92, 130, 182, 28, 7, 30, 168, 85, 157, 193, 177, 1, 217, 103, 107, 217, 234, 97, 71, 51, 37, 246, 158, 37, 106, 185, 180, 77, 64, 13, 48, 223, 236, 97, 98, 76, 193, 84, 236, 61, 182, 14, 148, 0, 254, 62, 249, 51, 59, 182, 4, 44, 64, 195, 51, 252, 37, 78, 192, 244, 203, 84, 246, 55, 128, 10, 172, 192, 149, 206, 0, 108, 171, 252, 39, 162, 54, 156, 202, 121, 11, 180, 192, 19, 12, 109, 10, 168, 128, 59, 159, 192, 203, 35, 88, 149, 211, 175, 17, 140, 194, 43, 216, 60, 253, 211, 191, 26, 254, 112, 64, 212, 50, 65, 126, 118, 193, 15, 16, 35, 18, 0, 4, 141, 38, 175, 220, 172, 201, 85, 235, 150, 155, 80, 186, 142, 233, 162, 181, 8, 79, 38, 60, 157, 80, 85, 140, 101, 113, 86, 198, 94, 183, 102, 245, 154, 197, 17, 21, 30, 32, 16, 120, 140, 153, 149, 11, 87, 45, 90, 166, 54, 209, 114, 243, 128, 193, 6, 36, 139, 166, 240, 32, 146, 198, 196, 131, 11, 23, 30, 244, 236, 201, 211, 103, 79, 11, 62, 33, 20, 45, 202, 160, 168, 79, 9, 15, 140, 66, 112, 16, 20, 234, 131, 14, 62, 35, 60, 192, 208, 19, 3, 6, 14, 90, 183, 114, 216, 154, 245, 170, 85, 12, 29, 2, 8, 17, 227, 164, 101, 173, 57, 17, 78, 188, 49, 165, 73, 83, 166, 76, 151, 22, 45, 130, 227, 134, 77, 25, 45, 72, 128, 116, 64, 122, 20, 41, 131, 7, 27, 156, 32, 113, 162, 132, 137, 27, 60, 166, 68, 137, 234, 164, 201, 84, 166, 57, 154, 244, 132, 105, 3, 135, 76, 26, 77, 163, 52, 145, 137, 3, 103, 209, 155, 56, 99, 194, 208, 145, 162, 101, 75, 234, 45, 107, 184, 112, 129, 147, 72, 83, 155, 76, 164, 68, 105, 226, 116, 233, 13, 26, 50, 151, 52, 93, 186, 36, 106, 211, 27, 49, 76, 144, 236, 108, 208, 64, 129, 2, 228, 13, 36, 52, 111, 222, 192, 64, 116, 233, 13, 38, 32, 55, 254, 176, 224, 120, 131, 12, 18, 50, 140, 216, 222, 125, 68, 141, 17, 222, 69, 140, 31, 33, 2, 133, 136, 9, 6, 142, 27, 24, 96, 160, 186, 114, 9, 11, 214, 27, 80, 113, 31, 69, 10, 20, 39, 90, 84, 169, 66, 164, 138, 20, 4, 204, 79, 192, 1, 243, 75, 175, 188, 243, 18, 212, 96, 132, 10, 192, 24, 229, 21, 89, 36, 148, 48, 150, 87, 86, 1, 98, 3, 45, 186, 232, 66, 195, 46, 112, 8, 98, 175, 53, 108, 57, 198, 13, 55, 116, 185, 37, 161, 133, 114, 57, 230, 21, 60, 22, 201, 196, 19, 80, 72, 169, 136, 70, 84, 104, 161, 37, 163, 143, 116, 156, 133, 150, 76, 128, 24, 140, 137, 82, 118, 193, 37, 35, 77, 90, 130, 3, 166, 13, 142, 72, 196, 10, 19, 134, 160, 35, 39, 160, 148, 186, 138, 167, 161, 134, 146, 96, 40, 192, 32, 96, 224, 47, 8, 162, 98, 170, 39, 47, 131, 162, 224, 203, 43, 193, 242, 42, 3, 14, 54, 240, 42, 43, 10, 134, 202, 42, 130, 178, 194, 16, 66, 19, 89, 112, 33, 35, 2, 33, 120, 147, 107, 147, 77, 46, 73, 68, 16, 55, 48, 3, 131, 184, 32, 146, 218, 50, 48, 8, 36, 160, 1, 136, 195, 192, 8, 3, 142, 223, 58, 105, 140, 19, 83, 76, 185, 100, 147, 57, 192, 32, 163, 13, 78, 47, 233, 196, 148, 56, 200, 128, 99, 14, 52, 254, 192, 8, 98, 171, 14, 58, 136, 224, 128, 238, 114, 40, 226, 136, 53, 226, 184, 68, 49, 82, 44, 21, 197, 183, 54, 202, 232, 211, 55, 81, 60, 17, 132, 13, 48, 140, 16, 65, 4, 232, 222, 75, 78, 1, 9, 228, 147, 0, 58, 233, 164, 91, 239, 189, 232, 184, 19, 33, 135, 17, 170, 205, 160, 4, 29, 38, 224, 110, 130, 12, 68, 200, 182, 4, 4, 71, 96, 207, 186, 227, 6, 8, 96, 128, 227, 20, 72, 64, 128, 20, 90, 64, 33, 191, 18, 10, 76, 1, 6, 20, 84, 24, 240, 94, 123, 247, 219, 175, 193, 241, 18, 36, 86, 3, 17, 76, 104, 131, 21, 89, 96, 153, 240, 149, 132, 51, 217, 192, 8, 45, 192, 224, 208, 139, 37, 56, 0, 2, 19, 47, 66, 57, 198, 24, 55, 24, 201, 5, 197, 69, 70, 65, 241, 150, 90, 228, 210, 4, 20, 25, 107, 164, 49, 71, 142, 114, 204, 72, 20, 56, 120, 120, 192, 8, 76, 80, 234, 5, 19, 48, 156, 248, 97, 131, 14, 20, 216, 128, 9, 65, 144, 216, 128, 136, 57, 114, 202, 42, 168, 161, 30, 176, 160, 185, 7, 150, 10, 10, 176, 46, 137, 58, 154, 40, 167, 146, 234, 224, 77, 165, 126, 122, 160, 170, 51, 215, 220, 96, 131, 52, 179, 50, 186, 167, 0, 78, 128, 2, 136, 76, 60, 138, 162, 3, 36, 50, 129, 75, 46, 223, 46, 17, 4, 14, 254, 54, 200, 0, 163, 9, 35, 54, 232, 242, 47, 164, 48, 8, 2, 136, 33, 180, 40, 35, 142, 55, 52, 41, 69, 148, 82, 64, 181, 116, 46, 225, 208, 128, 163, 13, 60, 54, 1, 245, 13, 50, 186, 48, 84, 128, 202, 43, 47, 32, 129, 117, 5, 24, 192, 3, 15, 58, 40, 226, 53, 60, 70, 153, 180, 20, 220, 200, 176, 130, 55, 60, 244, 40, 37, 19, 50, 200, 96, 194, 136, 28, 46, 80, 192, 61, 100, 147, 139, 14, 89, 103, 223, 171, 14, 186, 0, 2, 48, 192, 219, 224, 207, 203, 33, 135, 238, 36, 232, 118, 187, 11, 50, 200, 224, 130, 109, 23, 160, 143, 186, 236, 6, 120, 15, 185, 233, 13, 56, 1, 5, 34, 80, 24, 33, 92, 33, 10, 132, 55, 191, 119, 75, 184, 111, 252, 19, 16, 112, 128, 130, 17, 78, 232, 183, 188, 19, 54, 56, 97, 145, 8, 15, 142, 240, 21, 86, 86, 97, 3, 131, 37, 188, 224, 112, 137, 46, 140, 56, 226, 21, 205, 232, 194, 66, 156, 193, 134, 141, 133, 236, 13, 165, 0, 89, 45, 56, 3, 151, 77, 148, 2, 21, 23, 177, 72, 44, 104, 17, 139, 142, 92, 208, 35, 179, 40, 197, 38, 172, 224, 128, 32, 168, 97, 22, 184, 32, 5, 111, 200, 192, 129, 1, 232, 140, 6, 76, 88, 4, 18, 108, 242, 134, 161, 185, 169, 42, 87, 171, 146, 78, 152, 214, 52, 46, 254, 37, 229, 75, 76, 193, 225, 82, 174, 98, 129, 24, 66, 37, 2, 103, 202, 0, 215, 214, 244, 149, 158, 80, 128, 39, 1, 8, 66, 24, 128, 208, 134, 82, 208, 34, 8, 31, 80, 2, 92, 226, 50, 151, 183, 189, 193, 13, 113, 40, 3, 221, 156, 128, 129, 3, 216, 16, 41, 54, 104, 84, 18, 186, 240, 40, 56, 108, 162, 49, 165, 24, 133, 99, 88, 130, 27, 49, 128, 225, 13, 109, 224, 141, 40, 244, 176, 132, 242, 144, 96, 2, 213, 113, 143, 179, 164, 83, 185, 1, 8, 224, 1, 78, 48, 195, 40, 72, 65, 56, 90, 145, 97, 10, 130, 187, 196, 234, 54, 209, 134, 54, 48, 129, 110, 65, 120, 0, 237, 208, 245, 30, 75, 94, 146, 0, 211, 179, 94, 186, 26, 128, 174, 100, 77, 96, 1, 35, 216, 214, 8, 154, 147, 199, 5, 28, 79, 143, 216, 121, 86, 118, 248, 200, 157, 12, 52, 192, 122, 224, 27, 79, 246, 180, 23, 174, 237, 141, 64, 5, 37, 24, 95, 9, 78, 192, 203, 245, 157, 96, 125, 254, 106, 16, 131, 78, 48, 132, 76, 172, 34, 66, 190, 120, 133, 47, 88, 193, 138, 82, 32, 225, 1, 90, 24, 67, 23, 150, 112, 4, 55, 140, 129, 17, 206, 184, 197, 0, 27, 114, 6, 79, 132, 108, 22, 140, 96, 133, 45, 108, 129, 144, 81, 44, 194, 20, 160, 208, 132, 40, 34, 120, 50, 10, 174, 254, 108, 101, 175, 184, 4, 16, 98, 194, 4, 82, 224, 194, 87, 184, 42, 195, 154, 234, 137, 7, 38, 216, 36, 13, 34, 176, 138, 210, 102, 184, 180, 35, 70, 197, 134, 70, 249, 161, 80, 122, 242, 148, 160, 44, 69, 2, 11, 109, 232, 3, 200, 148, 149, 33, 166, 201, 43, 70, 124, 19, 6, 2, 96, 130, 51, 0, 225, 18, 164, 24, 5, 8, 62, 48, 134, 183, 100, 194, 79, 151, 192, 131, 32, 224, 166, 6, 189, 32, 1, 9, 24, 80, 0, 151, 110, 200, 165, 7, 52, 234, 48, 74, 0, 195, 166, 86, 71, 138, 78, 116, 130, 112, 157, 216, 132, 30, 230, 240, 70, 61, 44, 174, 168, 31, 96, 150, 2, 232, 163, 128, 250, 68, 231, 143, 211, 187, 92, 2, 14, 176, 57, 6, 36, 129, 19, 141, 201, 4, 28, 208, 192, 132, 54, 68, 70, 112, 165, 120, 3, 28, 186, 96, 5, 39, 0, 1, 3, 2, 64, 215, 239, 52, 73, 0, 223, 105, 242, 146, 211, 59, 78, 30, 155, 195, 30, 248, 92, 135, 62, 235, 161, 142, 30, 159, 197, 71, 184, 14, 192, 169, 25, 0, 101, 125, 182, 119, 130, 30, 8, 1, 124, 41, 192, 194, 126, 128, 185, 159, 112, 169, 239, 4, 19, 168, 64, 130, 128, 185, 190, 10, 172, 47, 3, 21, 152, 2, 40, 232, 183, 204, 85, 172, 98, 20, 160, 240, 65, 6, 250, 199, 132, 46, 48, 162, 254, 25, 140, 24, 196, 49, 108, 209, 133, 87, 220, 66, 23, 95, 0, 133, 74, 106, 97, 139, 27, 213, 162, 22, 179, 120, 133, 39, 60, 161, 9, 79, 176, 243, 100, 21, 153, 133, 5, 225, 201, 35, 77, 196, 20, 102, 130, 152, 69, 33, 123, 211, 134, 152, 110, 0, 7, 76, 72, 68, 20, 62, 64, 4, 58, 84, 224, 106, 8, 125, 128, 67, 183, 235, 0, 239, 54, 133, 166, 137, 50, 10, 214, 194, 228, 37, 137, 70, 229, 41, 94, 202, 138, 87, 136, 152, 38, 13, 24, 81, 43, 28, 253, 192, 156, 218, 48, 139, 77, 116, 160, 7, 109, 168, 162, 159, 22, 241, 54, 65, 185, 148, 56, 74, 216, 18, 162, 2, 195, 0, 14, 24, 225, 48, 144, 212, 13, 26, 52, 81, 200, 82, 16, 238, 193, 189, 185, 68, 27, 80, 215, 6, 48, 152, 160, 2, 163, 204, 163, 177, 2, 32, 0, 247, 252, 245, 143, 149, 211, 220, 0, 48, 32, 6, 63, 193, 1, 14, 76, 128, 67, 109, 48, 165, 137, 177, 186, 238, 7, 24, 82, 0, 186, 160, 218, 86, 2, 220, 24, 196, 214, 91, 128, 96, 243, 248, 225, 232, 52, 11, 62, 131, 133, 234, 30, 135, 44, 29, 77, 2, 185, 89, 61, 104, 129, 128, 122, 128, 61, 20, 148, 160, 201, 133, 93, 159, 6, 24, 164, 129, 19, 152, 192, 60, 21, 232, 87, 5, 38, 235, 157, 18, 139, 226, 179, 254, 9, 91, 5, 43, 66, 155, 9, 13, 108, 224, 7, 72, 240, 196, 32, 94, 81, 192, 76, 56, 163, 181, 176, 224, 24, 35, 158, 200, 163, 220, 218, 246, 70, 175, 40, 217, 218, 26, 236, 206, 8, 18, 247, 130, 60, 154, 197, 40, 52, 5, 129, 37, 174, 66, 22, 190, 32, 133, 39, 22, 17, 4, 5, 96, 128, 180, 151, 120, 194, 18, 231, 160, 129, 47, 137, 169, 41, 94, 50, 74, 120, 195, 123, 128, 153, 50, 224, 211, 52, 245, 146, 67, 15, 149, 105, 193, 132, 169, 39, 29, 0, 11, 87, 50, 202, 1, 10, 96, 128, 2, 177, 14, 192, 7, 204, 0, 4, 56, 228, 34, 12, 17, 24, 130, 30, 52, 129, 9, 76, 45, 130, 17, 128, 66, 241, 220, 154, 160, 5, 71, 23, 152, 166, 10, 16, 1, 19, 130, 192, 131, 32, 12, 129, 9, 77, 96, 130, 25, 218, 240, 6, 107, 235, 65, 15, 151, 152, 3, 28, 132, 195, 4, 61, 48, 161, 202, 204, 106, 214, 8, 22, 240, 30, 1, 52, 203, 173, 149, 148, 106, 136, 19, 48, 189, 252, 114, 170, 11, 98, 232, 4, 40, 230, 176, 9, 83, 56, 210, 117, 27, 242, 193, 3, 142, 245, 158, 74, 222, 56, 0, 55, 206, 228, 0, 110, 204, 158, 60, 30, 28, 150, 68, 174, 241, 143, 161, 154, 73, 4, 240, 17, 62, 10, 208, 164, 143, 127, 236, 31, 139, 123, 15, 124, 218, 254, 83, 31, 188, 84, 0, 76, 43, 3, 115, 60, 84, 254, 128, 8, 214, 103, 2, 42, 159, 160, 13, 161, 72, 88, 253, 154, 57, 138, 95, 97, 192, 7, 94, 88, 69, 46, 214, 208, 102, 60, 132, 162, 25, 182, 248, 194, 107, 111, 65, 139, 132, 209, 194, 22, 60, 146, 5, 57, 19, 86, 102, 185, 140, 34, 184, 237, 204, 209, 141, 134, 59, 11, 84, 92, 2, 14, 17, 224, 192, 20, 105, 129, 138, 82, 120, 226, 18, 74, 0, 36, 6, 140, 112, 137, 52, 144, 74, 15, 25, 16, 83, 121, 139, 226, 221, 78, 159, 157, 1, 7, 224, 146, 2, 14, 224, 105, 46, 169, 157, 75, 14, 96, 128, 119, 205, 14, 106, 6, 24, 128, 237, 225, 213, 52, 119, 115, 88, 21, 50, 81, 32, 78, 31, 72, 67, 16, 224, 128, 11, 33, 72, 145, 79, 110, 91, 132, 32, 176, 216, 41, 45, 52, 161, 11, 126, 225, 146, 7, 62, 173, 0, 8, 0, 1, 13, 111, 132, 164, 25, 198, 32, 6, 53, 180, 193, 13, 109, 208, 77, 24, 192, 160, 4, 190, 76, 65, 12, 72, 144, 0, 164, 43, 32, 129, 233, 76, 64, 148, 188, 139, 78, 192, 63, 188, 185, 168, 22, 192, 195, 155, 139, 128, 24, 4, 193, 4, 50, 136, 34, 50, 235, 156, 195, 220, 202, 128, 25, 35, 92, 192, 122, 190, 195, 49, 193, 125, 23, 112, 130, 91, 79, 57, 217, 185, 254, 221, 95, 13, 64, 99, 247, 16, 64, 225, 53, 206, 177, 145, 165, 211, 2, 42, 252, 167, 5, 0, 162, 2, 188, 82, 112, 2, 9, 140, 64, 123, 41, 24, 255, 129, 190, 7, 62, 2, 209, 82, 116, 175, 32, 197, 152, 213, 248, 9, 79, 168, 193, 2, 62, 216, 152, 45, 212, 208, 102, 70, 52, 226, 22, 108, 161, 13, 94, 193, 22, 80, 228, 70, 124, 174, 179, 42, 36, 22, 70, 65, 46, 124, 173, 193, 102, 68, 130, 98, 65, 2, 47, 66, 208, 50, 130, 22, 100, 193, 20, 244, 96, 36, 124, 160, 13, 36, 144, 112, 4, 1, 12, 98, 10, 7, 104, 0, 236, 222, 96, 14, 130, 128, 76, 122, 34, 2, 170, 98, 5, 17, 42, 189, 192, 139, 192, 8, 140, 166, 190, 107, 192, 228, 142, 75, 4, 64, 1, 10, 0, 119, 12, 0, 238, 230, 206, 6, 19, 234, 212, 130, 34, 0, 54, 0, 74, 220, 32, 22, 72, 170, 12, 140, 100, 19, 48, 33, 165, 160, 174, 13, 92, 74, 9, 160, 96, 8, 58, 45, 1, 64, 77, 1, 30, 0, 9, 172, 160, 12, 96, 138, 9, 44, 227, 12, 230, 192, 4, 181, 109, 145, 198, 10, 13, 148, 160, 11, 84, 239, 56, 142, 199, 169, 96, 111, 195, 162, 67, 173, 156, 207, 200, 50, 9, 93, 44, 39, 247, 6, 128, 1, 226, 128, 108, 92, 71, 12, 70, 101, 10, 248, 162, 7, 124, 254, 128, 7, 54, 192, 2, 102, 76, 249, 220, 202, 61, 2, 78, 14, 167, 39, 147, 156, 69, 57, 140, 140, 198, 44, 73, 58, 216, 10, 147, 6, 110, 122, 156, 239, 146, 62, 108, 122, 72, 0, 228, 206, 163, 4, 68, 9, 152, 180, 12, 246, 212, 103, 4, 24, 164, 227, 224, 5, 152, 228, 197, 64, 224, 165, 10, 60, 70, 254, 90, 110, 20, 178, 106, 12, 32, 128, 6, 24, 33, 0, 217, 192, 22, 114, 65, 156, 80, 228, 21, 110, 4, 207, 86, 78, 22, 94, 161, 66, 86, 142, 117, 48, 161, 46, 66, 202, 34, 94, 33, 130, 128, 49, 35, 36, 176, 233, 42, 136, 20, 54, 1, 12, 6, 163, 9, 68, 33, 22, 174, 110, 17, 154, 104, 12, 152, 128, 3, 62, 96, 14, 188, 238, 10, 136, 64, 3, 108, 200, 1, 182, 132, 238, 198, 209, 41, 34, 192, 187, 176, 230, 135, 154, 99, 5, 187, 98, 85, 86, 80, 2, 94, 13, 3, 126, 136, 187, 192, 43, 111, 154, 38, 212, 238, 113, 75, 0, 96, 3, 190, 45, 83, 38, 32, 191, 50, 193, 215, 46, 193, 215, 22, 33, 17, 66, 79, 13, 192, 160, 127, 56, 96, 211, 212, 206, 211, 20, 128, 3, 154, 0, 9, 146, 0, 9, 154, 64, 9, 226, 0, 12, 123, 3, 14, 50, 65, 15, 76, 129, 112, 172, 13, 12, 128, 160, 245, 212, 101, 175, 14, 142, 118, 224, 163, 147, 254, 206, 37, 93, 102, 207, 119, 108, 47, 196, 112, 80, 226, 24, 0, 8, 130, 160, 218, 46, 3, 51, 148, 0, 205, 68, 128, 7, 122, 96, 146, 206, 229, 173, 32, 209, 39, 153, 111, 226, 246, 104, 40, 159, 79, 40, 137, 12, 196, 40, 177, 173, 212, 205, 146, 50, 105, 64, 116, 105, 123, 158, 140, 123, 58, 177, 60, 202, 67, 203, 204, 99, 60, 184, 204, 178, 180, 114, 60, 122, 0, 15, 68, 161, 153, 10, 105, 20, 66, 129, 183, 202, 0, 2, 126, 224, 19, 110, 129, 32, 104, 225, 22, 84, 142, 156, 122, 142, 156, 242, 12, 25, 129, 113, 229, 72, 225, 21, 74, 129, 17, 232, 34, 52, 40, 2, 24, 37, 136, 70, 46, 130, 25, 41, 168, 26, 53, 193, 13, 50, 224, 166, 58, 144, 20, 52, 33, 197, 230, 96, 22, 86, 161, 12, 48, 224, 235, 196, 224, 4, 86, 208, 0, 56, 77, 238, 12, 192, 3, 206, 14, 81, 8, 76, 237, 138, 34, 2, 42, 64, 3, 64, 160, 2, 62, 0, 3, 64, 147, 2, 52, 224, 3, 52, 96, 30, 81, 243, 3, 76, 224, 3, 12, 75, 8, 132, 128, 8, 132, 128, 111, 132, 224, 4, 130, 192, 4, 54, 32, 53, 83, 83, 3, 76, 192, 55, 55, 192, 55, 77, 110, 3, 132, 32, 82, 54, 65, 8, 64, 64, 8, 222, 96, 9, 151, 240, 18, 24, 97, 17, 4, 101, 52, 32, 169, 254, 9, 200, 49, 188, 146, 227, 242, 154, 128, 108, 164, 13, 12, 220, 160, 79, 54, 97, 46, 122, 195, 20, 10, 105, 168, 128, 224, 2, 198, 99, 169, 162, 15, 58, 170, 39, 90, 216, 202, 174, 2, 174, 249, 52, 137, 14, 113, 16, 176, 104, 32, 243, 154, 0, 12, 156, 203, 7, 54, 32, 63, 113, 224, 7, 50, 96, 16, 7, 206, 200, 20, 209, 249, 4, 206, 122, 48, 49, 174, 152, 15, 17, 41, 209, 61, 159, 79, 41, 9, 78, 41, 17, 49, 0, 98, 0, 6, 238, 128, 10, 88, 192, 5, 92, 224, 14, 40, 212, 5, 90, 192, 251, 170, 224, 14, 96, 0, 6, 42, 148, 5, 88, 128, 67, 93, 96, 94, 108, 105, 4, 80, 128, 10, 50, 65, 20, 72, 129, 20, 200, 12, 20, 66, 65, 46, 98, 209, 7, 26, 193, 22, 8, 162, 0, 227, 178, 23, 43, 136, 46, 237, 231, 179, 92, 84, 141, 88, 103, 16, 26, 79, 15, 254, 114, 70, 78, 230, 231, 112, 228, 34, 232, 136, 9, 32, 96, 3, 166, 49, 49, 225, 160, 12, 222, 128, 20, 104, 225, 13, 52, 32, 10, 210, 0, 83, 204, 128, 85, 142, 130, 238, 56, 77, 212, 16, 37, 2, 84, 147, 166, 10, 224, 211, 228, 206, 1, 208, 17, 2, 34, 96, 242, 122, 16, 41, 62, 243, 53, 133, 64, 5, 228, 244, 4, 102, 224, 9, 136, 0, 152, 94, 243, 4, 64, 254, 96, 78, 159, 32, 10, 158, 224, 9, 176, 192, 12, 232, 32, 11, 232, 32, 13, 6, 21, 10, 122, 19, 10, 48, 37, 241, 84, 10, 139, 0, 172, 12, 108, 192, 6, 211, 14, 212, 14, 32, 1, 210, 198, 8, 144, 32, 8, 36, 146, 9, 206, 0, 55, 224, 0, 15, 120, 131, 55, 104, 195, 20, 150, 128, 57, 36, 160, 2, 124, 108, 2, 218, 78, 119, 236, 170, 250, 162, 229, 250, 154, 111, 173, 254, 72, 7, 105, 167, 114, 154, 128, 12, 156, 160, 12, 4, 129, 7, 46, 96, 43, 124, 224, 2, 112, 32, 43, 238, 142, 225, 62, 108, 249, 126, 167, 224, 10, 116, 40, 161, 234, 61, 149, 111, 64, 151, 207, 223, 18, 84, 90, 1, 46, 0, 96, 160, 10, 88, 128, 10, 52, 148, 10, 92, 128, 10, 178, 117, 68, 191, 245, 91, 43, 180, 66, 57, 116, 68, 91, 32, 92, 91, 0, 11, 24, 65, 70, 8, 105, 44, 61, 97, 70, 25, 224, 7, 18, 97, 232, 18, 38, 232, 230, 117, 229, 238, 85, 164, 28, 76, 20, 66, 97, 20, 250, 53, 19, 28, 73, 110, 208, 0, 130, 146, 238, 100, 42, 40, 22, 92, 116, 19, 200, 160, 39, 130, 32, 14, 88, 71, 87, 32, 5, 14, 148, 0, 3, 144, 224, 240, 62, 128, 7, 28, 64, 0, 144, 130, 238, 96, 66, 237, 188, 171, 1, 204, 206, 187, 14, 224, 3, 160, 64, 9, 254, 226, 238, 30, 235, 206, 75, 157, 13, 38, 54, 237, 237, 60, 64, 76, 58, 0, 2, 134, 192, 197, 64, 64, 99, 191, 107, 5, 85, 51, 2, 40, 64, 52, 65, 32, 12, 194, 224, 10, 122, 86, 8, 200, 32, 46, 188, 179, 32, 159, 179, 83, 118, 170, 9, 48, 128, 101, 43, 53, 1, 38, 22, 8, 128, 64, 8, 202, 42, 9, 32, 229, 50, 222, 32, 219, 30, 103, 82, 208, 192, 58, 120, 240, 0, 224, 99, 125, 144, 131, 85, 127, 140, 175, 160, 202, 211, 212, 234, 92, 148, 178, 114, 42, 211, 3, 50, 22, 12, 208, 64, 191, 148, 128, 6, 130, 32, 3, 148, 0, 8, 186, 0, 173, 38, 41, 64, 5, 110, 173, 8, 0, 0, 16, 17, 196, 12, 0, 1, 158, 10, 65, 43, 81, 221, 8, 52, 221, 10, 87, 147, 152, 178, 10, 178, 245, 14, 92, 32, 15, 242, 192, 92, 41, 52, 67, 189, 149, 5, 172, 21, 92, 73, 212, 92, 203, 21, 91, 73, 180, 10, 240, 0, 20, 74, 129, 21, 66, 1, 20, 220, 85, 32, 215, 64, 1, 104, 128, 16, 8, 208, 22, 230, 245, 70, 239, 213, 66, 228, 111, 44, 69, 97, 141, 68, 1, 20, 102, 215, 19, 216, 96, 12, 92, 135, 12, 30, 104, 70, 92, 20, 21, 142, 180, 70, 118, 241, 96, 99, 193, 20, 200, 128, 158, 100, 2, 19, 50, 193, 13, 154, 0, 8, 122, 32, 254, 16, 35, 64, 9, 120, 210, 14, 33, 128, 7, 143, 98, 5, 209, 84, 188, 226, 78, 7, 117, 112, 238, 110, 104, 51, 97, 162, 123, 139, 226, 3, 62, 224, 237, 10, 0, 212, 214, 214, 75, 78, 109, 75, 136, 128, 84, 194, 145, 211, 22, 118, 3, 138, 34, 99, 53, 224, 80, 127, 22, 26, 5, 39, 46, 6, 242, 57, 25, 135, 12, 254, 38, 8, 194, 2, 48, 218, 238, 116, 153, 32, 218, 186, 64, 84, 54, 101, 172, 224, 64, 9, 251, 68, 20, 240, 224, 1, 2, 224, 36, 219, 238, 178, 110, 73, 4, 184, 236, 169, 158, 229, 92, 120, 144, 2, 86, 21, 66, 13, 96, 115, 44, 167, 10, 15, 96, 0, 36, 96, 84, 54, 129, 9, 126, 160, 9, 162, 139, 9, 196, 64, 9, 112, 96, 118, 224, 138, 64, 125, 242, 112, 15, 113, 251, 14, 145, 18, 13, 96, 224, 4, 78, 135, 211, 173, 173, 12, 64, 148, 42, 241, 198, 40, 116, 68, 183, 85, 136, 179, 181, 91, 55, 23, 68, 97, 32, 92, 73, 116, 136, 57, 52, 115, 99, 160, 115, 53, 129, 95, 71, 151, 116, 47, 129, 13, 0, 105, 16, 88, 193, 23, 93, 55, 97, 156, 137, 95, 105, 183, 100, 192, 24, 20, 124, 197, 19, 58, 133, 13, 116, 3, 14, 128, 234, 193, 78, 225, 193, 28, 204, 69, 171, 180, 144, 80, 1, 168, 244, 128, 12, 200, 132, 7, 196, 254, 0, 19, 218, 32, 8, 58, 96, 136, 156, 116, 8, 80, 229, 134, 50, 54, 188, 228, 174, 237, 216, 148, 75, 26, 0, 111, 40, 85, 238, 54, 13, 8, 15, 192, 3, 186, 214, 131, 253, 8, 7, 53, 13, 213, 62, 160, 0, 98, 136, 166, 212, 142, 162, 156, 0, 7, 30, 192, 48, 25, 32, 79, 230, 180, 48, 194, 64, 46, 80, 106, 19, 130, 237, 32, 221, 192, 165, 8, 229, 101, 198, 145, 211, 60, 224, 166, 134, 160, 12, 200, 32, 12, 116, 23, 14, 244, 96, 172, 250, 132, 138, 22, 198, 195, 104, 231, 0, 36, 139, 4, 58, 145, 123, 204, 131, 4, 50, 236, 224, 38, 0, 1, 186, 86, 178, 40, 192, 1, 14, 64, 249, 250, 214, 143, 254, 168, 237, 184, 100, 0, 56, 64, 12, 46, 161, 171, 196, 192, 8, 182, 72, 114, 140, 224, 7, 248, 109, 111, 229, 80, 111, 37, 177, 16, 55, 137, 40, 221, 138, 135, 13, 119, 135, 221, 10, 134, 127, 167, 250, 100, 149, 91, 179, 149, 91, 27, 215, 66, 45, 180, 10, 64, 212, 63, 98, 96, 68, 149, 184, 66, 161, 248, 91, 249, 25, 68, 177, 0, 15, 60, 161, 95, 61, 225, 19, 26, 144, 17, 220, 96, 166, 216, 192, 19, 236, 103, 229, 180, 184, 153, 212, 104, 44, 75, 70, 116, 225, 66, 116, 169, 152, 183, 22, 65, 119, 201, 128, 13, 52, 97, 14, 40, 194, 193, 254, 8, 199, 49, 58, 129, 20, 216, 184, 69, 75, 225, 25, 219, 96, 8, 32, 18, 8, 66, 143, 3, 30, 128, 7, 192, 96, 3, 172, 2, 108, 152, 226, 5, 211, 139, 75, 34, 64, 75, 54, 179, 166, 208, 84, 106, 182, 235, 40, 130, 26, 2, 50, 167, 221, 166, 71, 48, 32, 96, 30, 225, 196, 73, 31, 224, 3, 162, 166, 40, 124, 83, 8, 154, 224, 3, 108, 128, 76, 56, 0, 9, 62, 224, 105, 49, 64, 191, 188, 243, 18, 230, 34, 52, 254, 11, 12, 180, 121, 166, 201, 171, 41, 12, 128, 3, 152, 64, 167, 206, 32, 12, 160, 224, 50, 228, 8, 55, 54, 193, 113, 48, 69, 12, 192, 39, 65, 198, 3, 153, 43, 0, 1, 50, 236, 151, 17, 192, 124, 84, 128, 4, 70, 224, 175, 185, 12, 1, 70, 32, 2, 2, 23, 1, 62, 160, 237, 68, 248, 131, 5, 160, 170, 102, 170, 114, 250, 81, 16, 222, 8, 9, 202, 128, 9, 172, 128, 9, 128, 224, 155, 155, 79, 14, 53, 123, 17, 47, 9, 93, 8, 20, 19, 153, 117, 157, 21, 113, 135, 43, 137, 40, 219, 195, 65, 7, 160, 113, 87, 27, 67, 51, 87, 114, 147, 24, 138, 161, 56, 68, 245, 185, 114, 67, 84, 68, 241, 153, 10, 206, 0, 19, 120, 139, 183, 122, 141, 17, 88, 234, 2, 4, 192, 11, 62, 193, 126, 32, 218, 69, 215, 40, 70, 75, 38, 254, 70, 212, 105, 100, 64, 97, 109, 122, 27, 19, 200, 96, 150, 201, 224, 154, 89, 66, 15, 56, 129, 19, 246, 96, 19, 56, 65, 15, 132, 74, 15, 236, 13, 165, 109, 69, 49, 193, 64, 167, 121, 166, 13, 242, 179, 7, 246, 201, 2, 148, 54, 8, 153, 38, 76, 188, 151, 146, 205, 17, 48, 114, 240, 114, 46, 71, 167, 189, 247, 237, 62, 152, 93, 4, 32, 77, 165, 230, 41, 116, 186, 39, 62, 160, 212, 198, 17, 56, 125, 147, 202, 96, 77, 138, 104, 243, 3, 144, 96, 79, 172, 8, 55, 2, 69, 139, 182, 104, 180, 6, 42, 106, 24, 32, 8, 166, 105, 84, 218, 96, 15, 73, 197, 55, 4, 71, 57, 233, 40, 6, 238, 32, 15, 50, 244, 67, 93, 160, 4, 76, 92, 152, 17, 64, 197, 85, 156, 4, 84, 60, 195, 84, 252, 0, 2, 183, 237, 128, 249, 3, 90, 188, 2, 6, 0, 247, 48, 167, 107, 211, 206, 61, 152, 224, 18, 30, 101, 8, 178, 147, 9, 76, 224, 42, 230, 138, 143, 86, 117, 85, 219, 206, 61, 63, 155, 157, 219, 234, 61, 154, 92, 221, 138, 108, 147, 96, 53, 58, 16, 78, 147, 54, 52, 15, 230, 185, 5, 46, 116, 203, 235, 57, 137, 107, 91, 68, 191, 15, 92, 101, 27, 159, 109, 141, 183, 236, 79, 32, 23, 207, 13, 56, 32, 0, 150, 100, 20, 90, 142, 204, 46, 186, 100, 64, 254, 161, 19, 96, 132, 109, 216, 70, 32, 211, 124, 194, 92, 71, 13, 196, 224, 140, 10, 233, 187, 177, 77, 117, 42, 69, 15, 28, 71, 164, 113, 69, 15, 82, 143, 1, 58, 32, 8, 196, 160, 9, 212, 132, 217, 198, 2, 43, 216, 68, 43, 34, 224, 2, 170, 98, 42, 12, 128, 40, 62, 150, 41, 144, 141, 1, 92, 178, 249, 212, 142, 177, 189, 203, 37, 29, 128, 124, 9, 32, 154, 227, 115, 115, 2, 160, 111, 127, 50, 170, 44, 39, 217, 28, 64, 9, 46, 246, 3, 132, 214, 59, 153, 19, 55, 192, 154, 12, 52, 21, 44, 150, 226, 2, 174, 66, 48, 148, 64, 12, 160, 224, 12, 134, 13, 13, 186, 81, 219, 52, 1, 15, 224, 32, 49, 71, 60, 67, 157, 61, 196, 51, 52, 6, 94, 32, 6, 100, 0, 6, 86, 96, 5, 88, 96, 5, 116, 137, 219, 185, 221, 152, 243, 40, 175, 249, 250, 176, 17, 96, 0, 246, 59, 57, 30, 217, 131, 31, 0, 14, 196, 64, 12, 128, 160, 15, 167, 32, 36, 141, 0, 8, 26, 0, 176, 39, 224, 175, 17, 14, 62, 154, 217, 134, 245, 214, 201, 111, 248, 225, 192, 125, 175, 2, 55, 143, 240, 200, 222, 239, 125, 4, 2, 23, 43, 71, 224, 66, 55, 116, 225, 189, 85, 68, 247, 89, 66, 105, 251, 67, 89, 224, 14, 192, 149, 10, 148, 216, 63, 96, 0, 11, 224, 128, 183, 254, 49, 1, 19, 126, 187, 68, 126, 32, 0, 104, 96, 16, 118, 91, 116, 193, 56, 20, 124, 203, 185, 53, 161, 17, 214, 70, 46, 92, 4, 216, 138, 81, 47, 169, 187, 12, 72, 67, 15, 72, 97, 2, 71, 250, 167, 26, 3, 60, 89, 2, 56, 176, 89, 166, 33, 210, 8, 218, 125, 98, 55, 0, 210, 136, 200, 4, 120, 32, 16, 185, 6, 163, 214, 36, 2, 184, 134, 7, 76, 192, 6, 62, 96, 77, 194, 130, 40, 238, 14, 212, 222, 16, 2, 204, 55, 77, 69, 56, 0, 10, 96, 6, 108, 64, 8, 48, 54, 235, 111, 167, 50, 87, 125, 14, 223, 234, 39, 55, 39, 125, 5, 224, 172, 35, 224, 3, 146, 179, 138, 6, 50, 215, 59, 165, 12, 202, 0, 8, 94, 6, 240, 148, 134, 188, 32, 18, 87, 179, 179, 12, 160, 0, 173, 197, 224, 12, 92, 71, 112, 244, 0, 14, 68, 60, 218, 239, 32, 226, 99, 32, 196, 29, 95, 6, 100, 224, 5, 64, 244, 5, 180, 125, 68, 177, 61, 219, 93, 0, 219, 187, 157, 243, 41, 0, 7, 113, 144, 1, 170, 48, 237, 4, 64, 4, 198, 160, 12, 182, 89, 34, 155, 160, 7, 128, 128, 9, 178, 35, 20, 235, 29, 143, 92, 220, 1, 30, 110, 200, 162, 101, 0, 84, 28, 153, 73, 64, 247, 117, 127, 60, 130, 121, 60, 74, 32, 152, 57, 31, 197, 117, 9, 197, 139, 255, 254, 14, 200, 21, 91, 143, 223, 5, 104, 123, 115, 199, 28, 92, 147, 24, 68, 53, 151, 5, 4, 154, 17, 16, 218, 191, 220, 0, 12, 12, 0, 2, 214, 160, 228, 63, 193, 254, 236, 143, 183, 27, 208, 215, 10, 210, 13, 172, 173, 24, 137, 81, 16, 136, 239, 238, 193, 96, 197, 112, 254, 96, 81, 65, 118, 81, 225, 46, 13, 7, 141, 186, 211, 116, 160, 160, 40, 54, 64, 9, 212, 0, 146, 96, 202, 34, 209, 26, 32, 152, 52, 65, 130, 164, 137, 18, 35, 78, 8, 26, 1, 2, 228, 71, 16, 30, 60, 112, 224, 224, 17, 196, 68, 196, 13, 28, 48, 60, 120, 0, 129, 129, 128, 0, 1, 6, 48, 96, 176, 145, 65, 0, 2, 17, 160, 96, 208, 115, 66, 228, 72, 5, 12, 32, 200, 236, 88, 64, 192, 128, 3, 102, 218, 196, 105, 131, 166, 12, 24, 12, 0, 46, 108, 192, 192, 1, 200, 7, 6, 31, 194, 108, 202, 148, 9, 19, 166, 75, 139, 22, 189, 129, 163, 102, 12, 153, 38, 64, 54, 60, 160, 64, 129, 227, 3, 7, 35, 121, 52, 65, 195, 132, 194, 16, 172, 27, 130, 0, 57, 194, 240, 13, 60, 78, 49, 238, 200, 189, 243, 162, 238, 139, 185, 115, 235, 210, 181, 203, 183, 239, 11, 22, 46, 234, 6, 126, 177, 130, 176, 135, 2, 7, 10, 192, 28, 121, 64, 0, 3, 36, 98, 144, 140, 97, 98, 254, 68, 9, 193, 50, 28, 30, 156, 40, 49, 98, 68, 9, 206, 159, 73, 148, 56, 65, 130, 68, 231, 211, 35, 68, 127, 94, 205, 186, 51, 235, 215, 46, 92, 148, 136, 45, 59, 246, 138, 216, 179, 75, 180, 112, 65, 197, 69, 11, 192, 44, 88, 80, 17, 30, 60, 56, 237, 223, 200, 131, 195, 88, 190, 92, 249, 11, 44, 120, 24, 105, 106, 244, 84, 144, 160, 65, 112, 216, 88, 72, 208, 196, 13, 35, 76, 153, 52, 101, 242, 196, 180, 41, 163, 69, 214, 173, 163, 135, 42, 168, 77, 25, 36, 60, 48, 40, 216, 64, 166, 140, 152, 50, 97, 46, 161, 162, 69, 139, 20, 170, 255, 164, 148, 66, 138, 41, 162, 116, 178, 137, 41, 151, 232, 177, 137, 30, 111, 88, 97, 130, 0, 15, 240, 0, 6, 28, 100, 140, 113, 134, 85, 99, 140, 113, 223, 24, 246, 77, 214, 5, 24, 62, 77, 1, 162, 79, 101, 88, 1, 134, 22, 2, 13, 100, 196, 15, 63, 240, 48, 212, 5, 15, 120, 116, 19, 4, 15, 68, 96, 82, 0, 2, 208, 209, 203, 28, 52, 70, 52, 209, 6, 16, 65, 68, 67, 72, 56, 206, 210, 11, 47, 187, 240, 210, 75, 42, 64, 48, 0, 68, 19, 65, 208, 48, 4, 4, 32, 8, 241, 134, 120, 155, 56, 117, 201, 150, 110, 184, 81, 21, 25, 69, 4, 65, 129, 4, 27, 57, 48, 19, 73, 64, 64, 65, 254, 6, 19, 64, 128, 33, 134, 6, 2, 248, 0, 129, 0, 0, 108, 208, 196, 16, 86, 100, 33, 215, 93, 120, 245, 73, 215, 158, 128, 218, 37, 215, 96, 46, 12, 234, 215, 11, 37, 8, 208, 88, 2, 35, 53, 10, 33, 25, 74, 180, 193, 230, 20, 76, 40, 81, 198, 80, 179, 209, 86, 155, 108, 43, 188, 182, 154, 108, 171, 117, 154, 91, 166, 46, 164, 224, 169, 166, 46, 220, 166, 233, 10, 183, 253, 230, 219, 166, 46, 176, 176, 27, 112, 48, 184, 26, 107, 111, 45, 228, 186, 234, 111, 44, 44, 87, 5, 12, 85, 156, 129, 71, 38, 151, 108, 34, 8, 35, 120, 184, 209, 70, 27, 56, 4, 64, 67, 25, 131, 44, 226, 84, 38, 231, 69, 149, 222, 34, 151, 88, 215, 198, 85, 65, 100, 166, 128, 0, 2, 48, 10, 1, 19, 98, 104, 88, 70, 27, 156, 148, 18, 75, 44, 254, 253, 215, 73, 39, 165, 16, 120, 224, 84, 153, 224, 161, 7, 25, 80, 100, 32, 0, 6, 60, 144, 65, 6, 27, 202, 46, 187, 172, 26, 108, 240, 228, 158, 24, 100, 160, 225, 239, 25, 9, 251, 91, 238, 125, 76, 128, 193, 196, 18, 119, 2, 225, 226, 6, 23, 200, 24, 192, 1, 14, 56, 240, 17, 1, 4, 112, 0, 69, 4, 3, 60, 192, 80, 67, 56, 156, 108, 4, 15, 3, 0, 16, 18, 42, 189, 208, 50, 75, 42, 179, 92, 254, 98, 2, 19, 90, 132, 97, 132, 9, 28, 56, 240, 1, 24, 152, 100, 153, 229, 34, 140, 36, 242, 134, 178, 254, 178, 105, 195, 70, 28, 117, 52, 146, 0, 118, 134, 97, 69, 23, 112, 192, 81, 22, 184, 1, 184, 12, 4, 25, 98, 164, 145, 135, 159, 96, 231, 245, 103, 159, 124, 242, 57, 246, 161, 21, 8, 240, 109, 163, 50, 49, 80, 0, 18, 76, 156, 161, 5, 16, 72, 88, 1, 69, 25, 64, 100, 48, 130, 170, 169, 178, 234, 183, 223, 125, 175, 192, 130, 224, 132, 253, 245, 55, 223, 180, 177, 26, 219, 224, 180, 1, 22, 235, 109, 142, 211, 70, 197, 110, 84, 244, 54, 220, 112, 48, 20, 103, 92, 172, 177, 6, 215, 130, 224, 45, 100, 46, 107, 113, 192, 98, 209, 198, 38, 140, 48, 50, 136, 32, 71, 195, 209, 198, 18, 2, 64, 208, 132, 26, 110, 88, 247, 6, 235, 209, 162, 231, 198, 154, 69, 120, 107, 147, 218, 139, 189, 100, 3, 25, 97, 216, 23, 198, 28, 162, 160, 18, 11, 42, 164, 156, 178, 201, 128, 5, 154, 98, 202, 82, 10, 110, 242, 198, 27, 97, 40, 17, 35, 7, 31, 136, 241, 20, 182, 203, 190, 129, 71, 34, 122, 20, 91, 181, 32, 139, 232, 209, 101, 34, 112, 92, 127, 180, 27, 20, 158, 161, 70, 25, 93, 40, 177, 4, 18, 22, 99, 224, 52, 4, 14, 28, 16, 193, 9, 39, 254, 48, 129, 6, 34, 0, 150, 145, 48, 109, 36, 22, 216, 8, 81, 34, 144, 128, 3, 32, 229, 3, 26, 248, 64, 155, 172, 208, 132, 130, 237, 228, 3, 7, 0, 1, 16, 230, 160, 9, 240, 4, 45, 17, 120, 176, 142, 235, 198, 160, 6, 252, 101, 230, 43, 49, 105, 148, 147, 152, 128, 47, 38, 188, 193, 20, 112, 0, 194, 156, 2, 32, 1, 48, 128, 97, 12, 94, 11, 27, 216, 248, 36, 131, 189, 8, 106, 47, 127, 226, 139, 161, 236, 178, 2, 3, 52, 166, 0, 49, 161, 209, 156, 30, 192, 4, 171, 245, 160, 77, 76, 96, 194, 15, 54, 80, 129, 22, 196, 128, 5, 127, 33, 204, 224, 88, 85, 56, 24, 24, 46, 85, 193, 41, 140, 232, 10, 183, 56, 192, 100, 145, 136, 117, 129, 220, 224, 176, 216, 170, 87, 89, 142, 87, 189, 130, 193, 29, 42, 151, 57, 24, 244, 166, 140, 158, 99, 193, 21, 53, 55, 58, 24, 96, 225, 12, 68, 83, 93, 178, 220, 192, 6, 54, 140, 1, 2, 1, 176, 129, 22, 214, 80, 187, 65, 116, 73, 13, 90, 48, 130, 86, 190, 53, 0, 112, 53, 80, 1, 223, 202, 36, 38, 15, 0, 1, 45, 136, 225, 147, 96, 32, 3, 39, 252, 19, 11, 1, 189, 75, 20, 155, 232, 132, 30, 56, 145, 74, 84, 106, 98, 19, 154, 128, 67, 246, 32, 224, 64, 10, 108, 96, 3, 54, 248, 254, 0, 7, 118, 185, 129, 15, 244, 242, 3, 52, 248, 0, 15, 128, 64, 4, 33, 56, 97, 32, 67, 56, 25, 16, 130, 16, 4, 33, 4, 193, 6, 60, 240, 37, 70, 34, 192, 17, 51, 241, 47, 49, 116, 160, 67, 26, 162, 240, 129, 174, 124, 101, 38, 16, 144, 0, 81, 110, 201, 129, 142, 40, 209, 1, 17, 216, 64, 15, 134, 96, 2, 12, 124, 32, 8, 106, 104, 2, 58, 79, 48, 6, 166, 136, 71, 75, 82, 121, 100, 125, 138, 208, 3, 166, 181, 45, 38, 6, 192, 64, 66, 196, 0, 134, 38, 188, 97, 19, 112, 80, 66, 56, 47, 224, 3, 200, 156, 161, 10, 58, 220, 161, 217, 244, 226, 67, 31, 30, 234, 46, 47, 144, 65, 93, 78, 96, 196, 145, 240, 239, 155, 6, 216, 192, 27, 196, 0, 4, 43, 144, 1, 68, 72, 208, 10, 10, 188, 56, 198, 194, 172, 192, 139, 122, 172, 139, 25, 89, 181, 197, 194, 209, 148, 115, 46, 37, 220, 11, 98, 144, 198, 53, 178, 106, 6, 138, 243, 141, 113, 238, 112, 171, 202, 5, 167, 114, 49, 88, 78, 92, 88, 48, 199, 59, 84, 33, 169, 124, 140, 35, 83, 171, 192, 130, 42, 140, 1, 15, 139, 72, 196, 117, 186, 212, 6, 54, 144, 129, 7, 1, 128, 128, 17, 188, 208, 133, 37, 0, 129, 6, 25, 3, 87, 37, 21, 80, 128, 4, 124, 43, 92, 7, 192, 164, 254, 92, 229, 154, 0, 30, 220, 39, 12, 96, 64, 194, 28, 4, 196, 60, 1, 109, 130, 149, 10, 74, 151, 41, 74, 33, 10, 80, 112, 66, 60, 113, 200, 235, 71, 78, 66, 0, 0, 128, 172, 177, 0, 136, 172, 100, 29, 187, 47, 96, 246, 114, 3, 54, 25, 0, 72, 28, 75, 0, 28, 193, 4, 38, 14, 4, 87, 77, 24, 128, 129, 8, 16, 97, 15, 116, 168, 192, 73, 78, 162, 168, 197, 60, 224, 150, 26, 216, 64, 4, 38, 91, 2, 150, 18, 166, 101, 0, 0, 2, 19, 2, 224, 51, 37, 204, 33, 19, 75, 113, 138, 32, 178, 117, 180, 109, 169, 225, 32, 90, 161, 0, 53, 155, 198, 0, 3, 240, 128, 32, 98, 32, 203, 149, 222, 240, 32, 142, 180, 140, 7, 120, 200, 75, 92, 4, 53, 24, 162, 22, 202, 162, 24, 181, 232, 158, 252, 50, 152, 140, 106, 52, 5, 35, 49, 64, 76, 188, 98, 78, 127, 245, 0, 68, 110, 106, 2, 15, 44, 80, 129, 229, 188, 128, 165, 48, 173, 11, 12, 98, 32, 131, 24, 196, 128, 80, 47, 45, 76, 26, 179, 136, 69, 190, 0, 103, 112, 134, 211, 226, 11, 234, 192, 224, 196, 53, 149, 10, 115, 156, 170, 112, 242, 208, 28, 57, 82, 193, 87, 254, 173, 48, 31, 49, 92, 5, 48, 0, 18, 119, 202, 98, 67, 85, 180, 128, 72, 14, 52, 1, 3, 154, 13, 128, 1, 254, 48, 217, 40, 5, 92, 178, 129, 108, 115, 154, 3, 97, 226, 0, 37, 156, 8, 10, 105, 210, 68, 41, 212, 85, 32, 85, 110, 226, 64, 131, 221, 49, 41, 58, 161, 9, 233, 153, 162, 13, 97, 24, 2, 7, 104, 128, 75, 26, 116, 224, 177, 4, 224, 200, 98, 192, 245, 0, 131, 44, 129, 9, 41, 53, 19, 3, 60, 192, 128, 198, 4, 128, 36, 212, 228, 159, 3, 30, 192, 204, 104, 6, 1, 182, 89, 72, 195, 16, 62, 80, 129, 54, 71, 32, 179, 56, 18, 11, 221, 130, 144, 181, 0, 20, 0, 1, 124, 113, 192, 73, 20, 16, 133, 2, 20, 160, 74, 109, 16, 79, 83, 182, 148, 173, 57, 56, 178, 13, 159, 12, 130, 17, 52, 242, 77, 115, 22, 0, 2, 64, 112, 194, 16, 38, 4, 5, 56, 104, 226, 18, 72, 144, 128, 1, 52, 219, 128, 50, 232, 73, 80, 59, 157, 75, 96, 198, 54, 222, 59, 104, 20, 188, 24, 173, 11, 79, 65, 173, 23, 141, 202, 160, 2, 14, 28, 137, 153, 198, 236, 0, 3, 108, 109, 8, 100, 56, 67, 165, 154, 160, 75, 7, 148, 64, 6, 48, 144, 65, 129, 131, 45, 131, 98, 23, 187, 192, 130, 33, 140, 128, 3, 23, 28, 101, 219, 38, 113, 129, 137, 169, 23, 237, 240, 139, 61, 172, 32, 5, 130, 139, 205, 110, 58, 39, 156, 59, 228, 33, 15, 113, 132, 170, 82, 123, 254, 229, 223, 224, 36, 117, 191, 122, 188, 176, 23, 171, 208, 133, 218, 117, 201, 13, 131, 104, 3, 135, 192, 0, 86, 5, 248, 224, 7, 10, 48, 64, 236, 156, 198, 128, 197, 40, 96, 198, 42, 12, 120, 163, 54, 128, 162, 74, 1, 1, 13, 240, 10, 144, 244, 254, 218, 137, 32, 51, 15, 21, 162, 200, 132, 41, 52, 97, 160, 51, 156, 33, 148, 93, 26, 195, 3, 8, 48, 0, 2, 64, 224, 126, 116, 195, 95, 90, 172, 160, 4, 45, 148, 1, 10, 20, 232, 38, 5, 58, 160, 1, 88, 35, 69, 3, 45, 231, 202, 255, 114, 34, 181, 53, 49, 225, 3, 66, 184, 66, 213, 210, 80, 151, 22, 24, 192, 101, 46, 251, 128, 17, 152, 153, 21, 140, 12, 16, 1, 26, 61, 65, 214, 4, 0, 6, 147, 252, 79, 41, 88, 186, 196, 83, 216, 3, 191, 127, 205, 237, 3, 76, 179, 38, 88, 32, 68, 55, 131, 180, 97, 10, 167, 211, 131, 21, 40, 96, 128, 6, 240, 160, 13, 103, 216, 238, 94, 248, 27, 94, 140, 22, 170, 80, 125, 17, 239, 15, 129, 120, 81, 25, 172, 0, 137, 178, 30, 51, 141, 24, 224, 0, 28, 219, 167, 9, 61, 72, 2, 7, 52, 0, 129, 10, 152, 247, 47, 249, 133, 129, 224, 22, 127, 155, 100, 31, 46, 112, 126, 251, 20, 169, 62, 179, 248, 25, 80, 155, 14, 159, 1, 163, 30, 243, 104, 254, 28, 42, 228, 193, 168, 119, 16, 221, 184, 247, 123, 197, 191, 108, 94, 56, 192, 138, 1, 21, 44, 132, 135, 214, 23, 204, 95, 18, 67, 194, 3, 2, 240, 128, 34, 92, 64, 1, 77, 107, 64, 76, 130, 247, 18, 129, 171, 176, 1, 50, 41, 66, 20, 177, 172, 132, 55, 112, 66, 20, 67, 62, 254, 40, 69, 81, 138, 190, 18, 246, 160, 175, 188, 196, 72, 253, 229, 175, 13, 0, 32, 179, 27, 96, 50, 6, 160, 24, 4, 200, 192, 72, 9, 98, 216, 10, 87, 42, 48, 192, 145, 124, 224, 3, 44, 39, 127, 5, 78, 48, 7, 56, 164, 33, 13, 120, 184, 4, 28, 134, 112, 130, 39, 108, 66, 20, 112, 200, 130, 224, 60, 210, 92, 91, 15, 129, 36, 70, 192, 4, 65, 128, 1, 238, 116, 0, 172, 210, 113, 0, 112, 82, 1, 240, 63, 76, 144, 8, 175, 196, 20, 132, 38, 125, 216, 209, 6, 4, 67, 16, 26, 129, 1, 214, 36, 19, 7, 192, 1, 235, 148, 4, 80, 96, 5, 122, 128, 7, 154, 192, 124, 170, 132, 7, 157, 176, 31, 123, 224, 95, 198, 182, 130, 50, 80, 94, 113, 87, 23, 61, 4, 131, 25, 229, 23, 26, 117, 81, 124, 81, 1, 230, 244, 81, 100, 210, 17, 195, 100, 67, 108, 162, 4, 27, 144, 1, 9, 84, 2, 65, 133, 42, 129, 67, 121, 162, 194, 42, 68, 232, 41, 162, 194, 26, 254, 181, 49, 42, 63, 69, 109, 138, 96, 3, 46, 128, 2, 220, 198, 109, 162, 243, 109, 218, 214, 57, 80, 21, 71, 112, 20, 85, 157, 83, 5, 84, 240, 5, 133, 84, 134, 28, 210, 5, 83, 176, 4, 65, 160, 89, 24, 64, 3, 15, 0, 35, 18, 32, 19, 13, 48, 135, 189, 55, 18, 110, 197, 98, 253, 230, 81, 29, 177, 1, 76, 48, 5, 246, 227, 4, 86, 48, 130, 200, 135, 124, 66, 22, 32, 1, 162, 9, 122, 160, 99, 164, 176, 136, 248, 135, 46, 39, 245, 0, 224, 66, 0, 24, 144, 22, 34, 199, 66, 43, 163, 113, 2, 192, 38, 50, 23, 1, 156, 72, 1, 14, 128, 0, 109, 198, 102, 32, 192, 102, 31, 208, 126, 240, 87, 44, 111, 112, 2, 14, 96, 2, 204, 247, 6, 121, 64, 24, 13, 224, 24, 164, 245, 0, 71, 193, 135, 89, 193, 16, 209, 132, 0, 7, 208, 88, 54, 240, 6, 11, 120, 2, 73, 240, 6, 225, 17, 92, 132, 22, 21, 83, 17, 7, 106, 0, 6, 201, 132, 78, 14, 112, 1, 28, 16, 19, 2, 224, 4, 134, 248, 31, 50, 99, 36, 181, 176, 11, 205, 208, 12, 187, 176, 141, 205, 144, 10, 42, 88, 131, 135, 103, 131, 51, 120, 40, 46, 213, 23, 224, 40, 96, 125, 81, 2, 41, 212, 49, 254, 132, 38, 62, 216, 3, 76, 32, 2, 90, 241, 0, 21, 160, 56, 194, 129, 254, 42, 172, 113, 56, 159, 163, 132, 184, 17, 56, 216, 150, 109, 155, 2, 24, 47, 5, 3, 150, 167, 8, 167, 240, 4, 219, 70, 27, 247, 37, 43, 188, 242, 121, 156, 179, 133, 198, 129, 110, 218, 6, 28, 119, 49, 28, 189, 34, 28, 83, 32, 6, 132, 228, 85, 54, 212, 5, 2, 97, 4, 23, 16, 18, 22, 144, 25, 224, 212, 111, 180, 212, 111, 6, 224, 86, 224, 162, 54, 121, 152, 111, 43, 230, 17, 62, 144, 134, 247, 67, 4, 112, 240, 46, 139, 120, 130, 59, 86, 10, 6, 194, 9, 13, 199, 87, 171, 160, 60, 165, 208, 6, 102, 48, 6, 78, 160, 54, 149, 4, 6, 186, 133, 1, 149, 161, 4, 134, 4, 1, 4, 128, 68, 20, 208, 3, 202, 213, 1, 109, 70, 149, 232, 244, 1, 32, 112, 2, 31, 64, 2, 108, 22, 4, 115, 240, 126, 246, 146, 32, 174, 179, 87, 165, 112, 105, 119, 176, 2, 94, 134, 1, 96, 144, 0, 16, 18, 4, 112, 16, 4, 25, 224, 3, 38, 195, 3, 31, 1, 0, 78, 176, 9, 243, 148, 4, 129, 230, 9, 154, 32, 30, 82, 7, 21, 215, 227, 58, 106, 208, 6, 77, 208, 4, 27, 48, 102, 28, 8, 4, 49, 194, 0, 151, 48, 11, 178, 176, 46, 252, 49, 11, 70, 210, 11, 205, 192, 11, 184, 128, 11, 189, 128, 11, 187, 208, 11, 194, 198, 2, 197, 214, 23, 46, 254, 104, 131, 22, 197, 69, 125, 129, 142, 232, 200, 23, 43, 48, 1, 252, 35, 19, 95, 209, 49, 29, 33, 2, 32, 50, 5, 60, 160, 4, 38, 160, 21, 252, 147, 42, 163, 178, 42, 43, 240, 27, 153, 195, 42, 254, 69, 84, 100, 244, 2, 129, 241, 25, 59, 85, 28, 253, 24, 24, 192, 150, 84, 118, 160, 8, 138, 160, 39, 254, 245, 2, 120, 176, 7, 205, 167, 7, 224, 6, 24, 120, 0, 145, 48, 240, 42, 156, 179, 57, 187, 97, 122, 88, 152, 57, 84, 48, 5, 99, 32, 98, 62, 225, 145, 19, 99, 86, 133, 215, 2, 39, 192, 21, 18, 48, 0, 238, 137, 73, 43, 102, 0, 16, 48, 78, 183, 52, 73, 16, 144, 1, 65, 114, 75, 65, 112, 63, 246, 19, 4, 81, 176, 9, 59, 86, 74, 162, 112, 10, 240, 66, 113, 10, 71, 74, 202, 163, 60, 248, 215, 4, 81, 0, 4, 54, 65, 123, 109, 2, 1, 27, 64, 16, 227, 195, 4, 195, 244, 90, 151, 128, 117, 17, 80, 1, 84, 89, 1, 87, 89, 1, 163, 136, 149, 89, 105, 138, 111, 80, 44, 213, 163, 7, 162, 192, 124, 154, 176, 7, 36, 224, 88, 0, 128, 4, 112, 192, 3, 76, 208, 6, 210, 167, 4, 28, 224, 34, 65, 176, 88, 65, 112, 10, 29, 144, 65, 79, 16, 7, 154, 192, 151, 226, 209, 65, 152, 144, 8, 140, 32, 8, 143, 212, 6, 254, 96, 96, 4, 72, 64, 77, 81, 25, 4, 235, 249, 0, 26, 160, 60, 177, 16, 153, 146, 217, 11, 189, 176, 153, 38, 248, 46, 13, 135, 11, 223, 72, 108, 53, 56, 94, 47, 104, 23, 53, 8, 142, 104, 52, 24, 92, 116, 56, 126, 51, 2, 171, 57, 102, 53, 194, 17, 12, 64, 1, 62, 161, 4, 34, 32, 95, 27, 176, 131, 35, 0, 24, 45, 224, 93, 68, 117, 7, 254, 181, 71, 63, 53, 3, 121, 80, 40, 75, 168, 42, 44, 0, 107, 175, 225, 25, 249, 232, 55, 203, 169, 8, 153, 19, 3, 117, 208, 9, 169, 240, 15, 188, 144, 10, 150, 58, 168, 84, 112, 6, 187, 161, 43, 154, 179, 169, 95, 232, 42, 219, 150, 43, 188, 146, 134, 93, 112, 33, 99, 0, 6, 93, 144, 170, 88, 118, 4, 56, 48, 1, 41, 0, 85, 13, 224, 50, 3, 144, 73, 2, 208, 1, 44, 84, 162, 7, 5, 7, 75, 224, 0, 60, 80, 147, 157, 128, 74, 169, 132, 7, 247, 67, 16, 64, 144, 6, 204, 183, 136, 124, 101, 10, 157, 16, 32, 191, 186, 136, 164, 16, 11, 175, 192, 46, 177, 128, 127, 87, 176, 7, 78, 144, 98, 100, 150, 22, 60, 224, 4, 112, 112, 9, 60, 113, 9, 103, 39, 10, 74, 224, 0, 24, 192, 21, 84, 137, 0, 8, 112, 2, 32, 64, 2, 32, 160, 2, 109, 118, 2, 217, 132, 7, 105, 80, 254, 44, 91, 162, 7, 200, 19, 47, 158, 64, 6, 154, 21, 20, 215, 19, 41, 60, 1, 37, 31, 64, 128, 144, 24, 0, 56, 64, 10, 38, 80, 0, 192, 72, 6, 153, 32, 10, 125, 201, 151, 63, 6, 21, 131, 80, 92, 131, 89, 16, 60, 192, 0, 18, 16, 65, 39, 144, 1, 15, 112, 0, 93, 48, 11, 203, 131, 10, 167, 80, 10, 180, 128, 165, 179, 208, 12, 212, 32, 10, 111, 48, 7, 115, 144, 11, 177, 208, 11, 121, 192, 95, 197, 70, 23, 49, 56, 166, 165, 121, 154, 2, 198, 69, 144, 247, 55, 64, 245, 55, 40, 208, 49, 236, 200, 52, 77, 99, 99, 178, 57, 5, 78, 48, 128, 13, 32, 1, 18, 112, 7, 228, 150, 7, 123, 128, 10, 131, 154, 121, 160, 226, 2, 51, 32, 7, 118, 240, 15, 255, 176, 7, 155, 82, 2, 40, 208, 92, 36, 32, 27, 157, 225, 2, 85, 64, 42, 161, 19, 3, 51, 80, 7, 204, 89, 7, 89, 128, 7, 121, 160, 147, 150, 154, 10, 189, 80, 10, 169, 144, 7, 45, 48, 168, 70, 232, 27, 159, 3, 70, 200, 145, 43, 12, 169, 109, 122, 27, 158, 72, 112, 67, 99, 240, 33, 101, 160, 5, 4, 225, 4, 64, 32, 2, 7, 80, 2, 85, 80, 1, 178, 186, 86, 35, 129, 1, 101, 128, 6, 226, 179, 8, 8, 117, 6, 12, 48, 4, 38, 40, 61, 92, 218, 9, 98, 254, 96, 4, 8, 1, 4, 67, 240, 66, 205, 23, 32, 132, 149, 162, 54, 249, 172, 235, 178, 60, 236, 226, 11, 162, 128, 100, 97, 208, 4, 10, 0, 18, 6, 176, 75, 64, 48, 0, 29, 176, 76, 78, 208, 5, 65, 208, 4, 162, 112, 9, 24, 80, 0, 233, 7, 2, 30, 16, 138, 0, 148, 149, 31, 112, 2, 105, 80, 53, 173, 151, 32, 91, 34, 186, 72, 0, 1, 17, 160, 63, 0, 160, 4, 112, 128, 55, 72, 198, 1, 29, 55, 39, 149, 4, 0, 62, 48, 10, 60, 112, 0, 39, 16, 5, 74, 193, 176, 162, 192, 151, 76, 241, 61, 70, 227, 58, 74, 90, 16, 250, 19, 1, 26, 32, 4, 88, 23, 19, 166, 64, 11, 203, 3, 4, 14, 208, 3, 252, 49, 178, 205, 112, 13, 164, 112, 0, 3, 32, 1, 184, 80, 11, 189, 32, 23, 49, 107, 166, 165, 105, 83, 182, 161, 108, 47, 176, 179, 127, 131, 27, 183, 17, 121, 16, 76, 83, 30, 202, 52, 100, 114, 64, 64, 16, 6, 147, 178, 4, 62, 64, 1, 115, 184, 0, 121, 218, 2, 148, 32, 12, 176, 48, 13, 209, 128, 10, 159, 130, 96, 118, 32, 7, 114, 208, 7, 186, 32, 14, 180, 16, 43, 45, 144, 5, 44, 80, 107, 179, 33, 43, 96, 75, 97, 147, 147, 97, 252, 101, 182, 117, 32, 5, 85, 208, 3, 45, 208, 182, 66, 140, 10, 154, 224, 121, 254, 84, 144, 2, 45, 144, 27, 166, 82, 2, 255, 200, 42, 188, 162, 56, 187, 49, 27, 162, 74, 57, 72, 176, 4, 229, 82, 6, 101, 176, 4, 90, 172, 197, 158, 155, 1, 6, 160, 2, 177, 26, 0, 111, 5, 1, 238, 57, 0, 73, 176, 37, 246, 130, 80, 104, 32, 6, 112, 128, 7, 135, 245, 46, 166, 112, 88, 153, 64, 127, 106, 225, 3, 80, 144, 8, 201, 35, 11, 164, 176, 9, 28, 196, 147, 200, 135, 186, 169, 27, 200, 165, 0, 7, 80, 48, 7, 122, 64, 198, 154, 5, 33, 117, 134, 1, 240, 145, 25, 96, 64, 22, 29, 208, 5, 38, 80, 1, 17, 128, 0, 88, 249, 1, 42, 16, 162, 89, 153, 188, 238, 215, 62, 83, 209, 126, 169, 68, 6, 249, 38, 4, 25, 64, 3, 100, 208, 125, 183, 100, 2, 141, 229, 158, 141, 1, 0, 34, 80, 10, 62, 48, 0, 66, 16, 5, 102, 112, 9, 229, 91, 190, 125, 217, 20, 223, 195, 58, 1, 83, 16, 138, 249, 0, 23, 187, 52, 35, 209, 3, 30, 219, 31, 40, 54, 7, 188, 48, 178, 188, 64, 13, 216, 64, 11, 28, 145, 1, 1, 60, 192, 143, 67, 68, 133, 17, 56, 130, 129, 166, 118, 119, 95, 45, 144, 205, 92, 52, 3, 11, 12, 94, 164, 153, 132, 59, 165, 2, 52, 2, 204, 93, 81, 193, 12, 176, 1, 4, 101, 63, 72, 96, 4, 56, 112, 254, 1, 23, 224, 193, 121, 128, 7, 176, 16, 10, 148, 160, 10, 148, 224, 12, 141, 64, 5, 98, 136, 7, 84, 16, 157, 33, 48, 3, 157, 0, 29, 206, 128, 181, 46, 128, 7, 112, 48, 2, 6, 80, 2, 136, 151, 2, 41, 112, 196, 41, 208, 3, 85, 208, 95, 193, 150, 5, 85, 192, 3, 68, 128, 5, 84, 128, 5, 147, 186, 7, 167, 96, 169, 123, 240, 46, 121, 144, 5, 154, 18, 58, 153, 67, 121, 44, 128, 109, 185, 34, 42, 181, 145, 43, 153, 167, 27, 43, 64, 4, 64, 176, 4, 62, 81, 41, 170, 122, 63, 134, 139, 1, 6, 240, 115, 157, 21, 18, 12, 144, 98, 6, 160, 4, 104, 144, 32, 122, 128, 6, 104, 96, 10, 33, 216, 9, 156, 192, 147, 154, 112, 88, 105, 240, 3, 4, 49, 16, 144, 97, 10, 236, 66, 10, 109, 16, 4, 87, 144, 74, 2, 130, 160, 164, 180, 46, 190, 80, 74, 216, 163, 7, 122, 176, 1, 48, 161, 86, 251, 154, 78, 20, 161, 4, 31, 144, 48, 39, 208, 102, 32, 176, 161, 21, 128, 149, 42, 112, 188, 231, 119, 6, 105, 128, 5, 83, 144, 6, 104, 96, 6, 86, 128, 5, 86, 144, 188, 111, 208, 3, 4, 0, 46, 110, 2, 25, 248, 19, 4, 7, 224, 64, 6, 144, 53, 76, 48, 11, 66, 80, 37, 87, 96, 6, 247, 151, 162, 65, 202, 151, 78, 49, 117, 197, 254, 5, 7, 90, 208, 4, 76, 160, 177, 48, 242, 0, 13, 192, 73, 6, 0, 7, 189, 208, 178, 112, 96, 0, 20, 16, 11, 152, 153, 165, 38, 219, 11, 27, 139, 1, 1, 140, 11, 224, 246, 153, 226, 200, 23, 116, 80, 108, 95, 195, 7, 166, 70, 131, 42, 188, 23, 225, 220, 41, 119, 134, 0, 74, 232, 166, 20, 188, 92, 20, 16, 74, 105, 136, 4, 56, 32, 2, 72, 43, 1, 13, 144, 3, 120, 64, 9, 215, 217, 122, 148, 0, 9, 83, 128, 2, 45, 112, 9, 98, 144, 182, 19, 32, 2, 254, 204, 2, 157, 128, 7, 88, 148, 5, 108, 64, 5, 35, 128, 221, 40, 48, 2, 39, 128, 2, 40, 32, 2, 35, 128, 3, 23, 54, 209, 89, 176, 7, 71, 76, 4, 84, 96, 223, 169, 208, 9, 32, 32, 5, 89, 144, 77, 123, 160, 182, 85, 112, 28, 95, 216, 192, 157, 131, 143, 73, 172, 27, 86, 24, 27, 61, 16, 4, 76, 48, 6, 34, 2, 6, 148, 130, 101, 11, 209, 3, 24, 32, 0, 32, 227, 88, 10, 144, 98, 153, 5, 6, 155, 176, 37, 70, 205, 9, 98, 61, 61, 125, 217, 212, 154, 64, 6, 16, 16, 4, 150, 49, 16, 220, 58, 10, 160, 96, 10, 110, 208, 4, 38, 48, 7, 233, 226, 172, 163, 235, 31, 95, 157, 186, 164, 64, 200, 105, 192, 9, 76, 80, 206, 142, 17, 18, 26, 176, 187, 254, 28, 128, 63, 80, 160, 61, 221, 244, 1, 17, 48, 138, 0, 164, 174, 90, 201, 126, 122, 160, 215, 98, 45, 125, 136, 102, 34, 86, 176, 1, 219, 43, 50, 73, 192, 16, 93, 208, 1, 35, 32, 3, 31, 48, 216, 111, 208, 11, 3, 68, 203, 146, 61, 10, 229, 235, 9, 12, 155, 203, 78, 97, 164, 239, 198, 6, 77, 208, 5, 138, 41, 1, 97, 246, 18, 35, 192, 10, 209, 58, 11, 40, 48, 0, 88, 192, 11, 70, 130, 11, 218, 88, 153, 23, 96, 0, 19, 112, 11, 132, 254, 53, 198, 70, 81, 61, 132, 23, 51, 232, 2, 123, 112, 23, 121, 176, 130, 254, 229, 82, 44, 48, 181, 114, 32, 233, 1, 230, 55, 45, 144, 6, 251, 37, 56, 21, 0, 204, 226, 71, 1, 140, 246, 0, 72, 80, 6, 76, 96, 184, 25, 192, 104, 24, 35, 2, 95, 240, 5, 59, 160, 3, 121, 192, 234, 95, 96, 222, 37, 48, 5, 85, 128, 5, 159, 135, 5, 26, 93, 57, 89, 96, 209, 85, 176, 235, 34, 32, 2, 230, 61, 2, 192, 254, 235, 35, 96, 4, 84, 128, 2, 27, 141, 215, 84, 48, 4, 153, 250, 71, 116, 176, 7, 72, 14, 2, 51, 32, 5, 104, 139, 5, 1, 174, 167, 119, 187, 155, 164, 67, 110, 219, 25, 181, 180, 161, 27, 41, 192, 27, 108, 129, 134, 169, 138, 34, 115, 227, 3, 13, 49, 69, 139, 221, 254, 0, 40, 240, 3, 157, 53, 0, 250, 198, 0, 63, 246, 99, 122, 0, 7, 166, 96, 47, 175, 244, 46, 60, 105, 32, 50, 225, 185, 78, 96, 184, 68, 96, 203, 166, 240, 6, 99, 240, 3, 74, 192, 124, 101, 185, 9, 84, 58, 227, 169, 155, 160, 137, 0, 5, 102, 112, 10, 115, 112, 2, 100, 252, 211, 98, 172, 22, 39, 62, 105, 91, 209, 114, 109, 166, 1, 35, 48, 138, 237, 122, 126, 39, 0, 7, 79, 222, 198, 10, 146, 32, 98, 240, 129, 86, 32, 2, 46, 3, 18, 105, 17, 69, 54, 16, 0, 51, 48, 3, 3, 16, 1, 167, 112, 10, 21, 176, 1, 97, 160, 215, 11, 155, 162, 62, 63, 226, 248, 148, 8, 202, 242, 6, 74, 48, 49, 90, 17, 135, 253, 247, 211, 88, 208, 11, 175, 112, 11, 154, 0, 1, 13, 32, 10, 88, 138, 11, 188, 208, 12, 216, 128, 13, 187, 224, 197, 18, 48, 11, 184, 48, 11, 175, 136, 70, 60, 149, 83, 43, 0, 108, 138, 179, 28, 43, 16, 3, 45, 160, 2, 253, 197, 95, 164, 135, 69, 123, 193, 130, 50, 21, 3, 189, 94, 108, 252, 165, 2, 64, 75, 38, 229, 202, 17, 91, 163, 4, 160, 139, 1, 159, 13, 207, 18, 176, 4, 173, 167, 3, 171, 190, 3, 95, 160, 3, 19, 112, 222, 40, 112, 6, 170, 244, 6, 199, 62, 5, 103, 144, 5, 84, 112, 2, 41, 254, 128, 235, 200, 158, 235, 45, 192, 207, 184, 158, 249, 85, 208, 249, 79, 37, 134, 88, 32, 249, 84, 144, 5, 81, 112, 2, 254, 163, 1, 79, 224, 195, 14, 185, 43, 178, 226, 55, 7, 214, 237, 154, 66, 42, 165, 130, 2, 68, 240, 3, 185, 75, 63, 93, 48, 55, 177, 227, 3, 65, 240, 3, 62, 32, 2, 15, 16, 82, 116, 6, 18, 31, 161, 1, 185, 140, 136, 47, 52, 21, 243, 94, 100, 137, 184, 9, 24, 16, 0, 69, 1, 4, 11, 1, 4, 92, 0, 75, 122, 240, 117, 244, 81, 10, 156, 112, 37, 252, 145, 6, 24, 240, 6, 205, 71, 165, 251, 241, 10, 153, 16, 6, 81, 160, 178, 66, 64, 252, 32, 3, 1, 1, 123, 126, 29, 81, 174, 26, 0, 2, 113, 45, 242, 90, 57, 215, 236, 55, 21, 105, 112, 61, 196, 242, 6, 248, 98, 5, 86, 144, 4, 0, 17, 128, 192, 0, 0, 6, 128, 104, 248, 224, 64, 64, 1, 15, 66, 82, 205, 113, 0, 36, 14, 156, 55, 153, 70, 149, 18, 149, 209, 211, 70, 77, 153, 54, 97, 90, 180, 72, 16, 28, 65, 96, 152, 48, 65, 242, 64, 37, 4, 5, 7, 4, 40, 128, 208, 105, 22, 170, 94, 98, 2, 156, 184, 53, 171, 23, 175, 93, 187, 176, 81, 219, 197, 131, 65, 131, 87, 184, 112, 229, 113, 177, 66, 233, 11, 25, 47, 156, 58, 141, 241, 226, 254, 206, 29, 25, 83, 249, 228, 41, 145, 162, 68, 137, 170, 119, 248, 220, 137, 145, 69, 70, 213, 60, 85, 199, 158, 61, 11, 118, 108, 140, 24, 68, 56, 100, 192, 176, 97, 131, 6, 14, 24, 234, 250, 96, 2, 68, 196, 144, 7, 18, 32, 60, 128, 0, 193, 0, 14, 74, 132, 142, 224, 65, 140, 103, 9, 149, 197, 84, 196, 152, 201, 146, 134, 197, 8, 42, 44, 92, 180, 80, 145, 149, 10, 21, 24, 48, 98, 84, 169, 66, 37, 79, 150, 60, 88, 178, 32, 222, 131, 71, 79, 39, 56, 86, 70, 137, 234, 244, 100, 130, 0, 6, 12, 28, 56, 56, 65, 5, 79, 149, 20, 46, 124, 255, 246, 93, 34, 233, 138, 22, 150, 93, 176, 176, 108, 252, 114, 112, 23, 194, 87, 184, 72, 194, 3, 201, 148, 46, 121, 31, 4, 224, 96, 2, 199, 143, 31, 62, 120, 80, 72, 160, 32, 0, 128, 0, 1, 4, 132, 185, 52, 231, 18, 30, 56, 170, 211, 192, 185, 164, 39, 211, 158, 213, 122, 244, 32, 49, 192, 128, 7, 16, 32, 65, 128, 56, 65, 99, 147, 76, 222, 96, 163, 137, 15, 244, 16, 229, 141, 57, 102, 121, 163, 3, 6, 32, 72, 164, 148, 82, 98, 161, 133, 22, 89, 98, 137, 69, 148, 54, 162, 136, 130, 19, 56, 56, 24, 32, 68, 2, 2, 235, 128, 7, 1, 34, 208, 64, 3, 10, 40, 152, 224, 3, 19, 254, 78, 80, 1, 132, 15, 62, 0, 225, 4, 56, 230, 104, 35, 13, 61, 222, 216, 4, 49, 49, 168, 136, 2, 10, 43, 48, 32, 175, 60, 7, 6, 112, 41, 0, 13, 72, 57, 69, 8, 7, 158, 160, 99, 142, 68, 76, 185, 40, 35, 43, 53, 241, 36, 147, 76, 48, 193, 228, 18, 65, 222, 16, 164, 13, 37, 186, 208, 194, 6, 5, 0, 99, 192, 128, 240, 2, 24, 162, 151, 88, 102, 41, 133, 2, 1, 222, 224, 101, 150, 91, 118, 105, 134, 23, 108, 154, 249, 199, 68, 3, 80, 209, 101, 150, 61, 152, 146, 170, 171, 169, 204, 162, 74, 172, 166, 88, 40, 129, 132, 15, 96, 84, 97, 5, 18, 182, 130, 113, 210, 17, 80, 80, 65, 5, 4, 54, 69, 128, 4, 16, 16, 168, 160, 2, 9, 110, 163, 160, 130, 21, 53, 240, 193, 9, 31, 56, 224, 64, 37, 6, 40, 24, 98, 3, 12, 154, 192, 0, 3, 149, 36, 120, 96, 130, 6, 128, 232, 2, 133, 41, 116, 56, 66, 7, 29, 168, 184, 163, 138, 22, 90, 248, 172, 138, 44, 66, 195, 3, 11, 60, 242, 72, 140, 145, 78, 74, 9, 133, 20, 79, 168, 80, 229, 149, 87, 100, 65, 165, 91, 84, 74, 57, 69, 148, 57, 176, 88, 77, 19, 32, 20, 56, 19, 3, 11, 46, 184, 192, 2, 30, 122, 107, 46, 141, 44, 132, 107, 161, 4, 226, 46, 43, 14, 6, 254, 42, 82, 56, 86, 57, 120, 91, 88, 142, 133, 208, 140, 192, 97, 9, 50, 143, 240, 97, 3, 130, 183, 235, 206, 7, 28, 68, 184, 128, 129, 242, 24, 0, 2, 12, 33, 173, 176, 162, 9, 36, 194, 16, 50, 140, 48, 176, 184, 2, 11, 49, 160, 0, 130, 3, 133, 30, 240, 143, 63, 32, 194, 192, 163, 163, 55, 196, 232, 47, 145, 54, 152, 216, 36, 37, 10, 24, 152, 163, 20, 78, 80, 153, 101, 22, 10, 121, 62, 229, 18, 48, 158, 224, 228, 20, 40, 24, 32, 32, 128, 1, 204, 11, 172, 130, 20, 53, 8, 117, 198, 71, 167, 126, 20, 142, 52, 174, 190, 36, 62, 61, 54, 65, 131, 195, 41, 172, 152, 130, 72, 2, 4, 120, 41, 0, 8, 224, 216, 37, 145, 3, 34, 184, 98, 14, 65, 54, 25, 133, 148, 81, 230, 22, 5, 20, 142, 58, 202, 228, 18, 70, 22, 113, 195, 141, 75, 180, 168, 174, 137, 7, 30, 100, 137, 1, 1, 18, 16, 96, 19, 55, 225, 68, 172, 231, 89, 112, 249, 9, 207, 102, 154, 1, 195, 137, 33, 98, 193, 37, 23, 60, 182, 226, 188, 243, 17, 72, 232, 180, 4, 78, 17, 56, 96, 105, 2, 12, 48, 224, 0, 213, 85, 7, 21, 129, 8, 36, 248, 32, 212, 9, 90, 111, 244, 3, 18, 68, 24, 97, 4, 206, 85, 96, 96, 3, 32, 112, 192, 33, 131, 13, 50, 0, 12, 254, 2, 35, 130, 224, 0, 9, 86, 37, 184, 192, 86, 91, 55, 192, 98, 136, 41, 196, 104, 15, 49, 61, 82, 219, 58, 163, 81, 54, 161, 98, 90, 9, 37, 36, 101, 143, 61, 96, 219, 67, 147, 52, 84, 67, 12, 142, 200, 176, 168, 194, 140, 48, 174, 184, 2, 10, 44, 168, 128, 160, 1, 8, 56, 144, 139, 3, 26, 124, 240, 225, 4, 128, 93, 192, 67, 22, 158, 3, 176, 231, 92, 198, 50, 45, 88, 194, 18, 166, 128, 4, 42, 156, 225, 11, 88, 192, 194, 20, 74, 147, 7, 208, 68, 16, 5, 70, 48, 2, 15, 154, 64, 166, 38, 240, 64, 46, 34, 224, 1, 14, 130, 240, 48, 28, 240, 32, 3, 22, 168, 77, 96, 28, 160, 18, 10, 168, 228, 1, 173, 186, 85, 96, 208, 84, 27, 5, 48, 192, 6, 42, 251, 65, 19, 224, 176, 9, 81, 108, 194, 13, 96, 16, 129, 17, 206, 208, 132, 30, 152, 1, 8, 12, 16, 3, 45, 80, 65, 10, 10, 53, 81, 137, 21, 234, 68, 28, 130, 196, 137, 77, 148, 161, 3, 100, 171, 13, 5, 52, 208, 129, 8, 96, 160, 2, 29, 56, 193, 212, 194, 120, 2, 50, 190, 1, 15, 239, 201, 27, 30, 226, 67, 134, 42, 4, 9, 11, 74, 192, 67, 25, 128, 0, 1, 243, 128, 193, 77, 54, 24, 128, 9, 116, 52, 135, 76, 124, 111, 20, 160, 208, 68, 221, 68, 193, 254, 145, 45, 97, 34, 17, 139, 224, 209, 24, 192, 208, 5, 37, 248, 192, 1, 129, 49, 156, 0, 74, 247, 129, 11, 209, 162, 103, 184, 168, 147, 78, 244, 180, 11, 94, 76, 142, 26, 212, 192, 70, 53, 172, 177, 147, 44, 24, 128, 116, 35, 152, 192, 1, 64, 53, 129, 80, 157, 160, 7, 175, 116, 2, 21, 166, 48, 5, 44, 156, 161, 13, 189, 202, 74, 9, 34, 149, 75, 123, 165, 64, 41, 190, 92, 129, 86, 86, 96, 47, 21, 160, 0, 5, 186, 196, 212, 3, 48, 0, 4, 31, 244, 96, 3, 193, 179, 0, 96, 74, 6, 1, 36, 108, 0, 134, 182, 146, 0, 6, 36, 96, 198, 44, 116, 139, 20, 160, 32, 69, 56, 195, 105, 10, 78, 116, 130, 62, 231, 59, 231, 25, 177, 96, 6, 34, 76, 65, 9, 68, 160, 2, 17, 128, 32, 132, 30, 56, 65, 9, 78, 112, 194, 15, 168, 144, 4, 37, 12, 97, 8, 248, 60, 66, 96, 2, 115, 129, 225, 213, 106, 3, 52, 16, 130, 29, 234, 64, 135, 42, 172, 0, 57, 205, 113, 65, 10, 224, 185, 4, 60, 116, 161, 11, 106, 80, 2, 175, 20, 232, 133, 209, 108, 134, 95, 41, 152, 66, 10, 82, 48, 132, 31, 4, 1, 9, 9, 68, 130, 17, 128, 240, 131, 149, 6, 33, 8, 33, 220, 159, 7, 91, 85, 27, 154, 66, 96, 133, 54, 125, 64, 4, 0, 3, 152, 254, 51, 53, 111, 3, 220, 97, 169, 202, 198, 192, 71, 81, 92, 130, 13, 75, 216, 128, 24, 218, 80, 6, 36, 80, 143, 20, 74, 100, 98, 133, 44, 137, 33, 90, 188, 105, 21, 153, 48, 195, 16, 184, 192, 9, 78, 164, 129, 3, 54, 165, 64, 7, 160, 22, 187, 8, 72, 109, 140, 51, 58, 193, 213, 208, 240, 30, 138, 192, 161, 13, 96, 8, 195, 25, 200, 96, 134, 54, 136, 65, 12, 60, 192, 64, 27, 230, 192, 9, 40, 20, 160, 2, 105, 160, 162, 69, 86, 177, 10, 113, 142, 226, 19, 175, 177, 82, 38, 52, 209, 37, 47, 101, 2, 14, 96, 40, 131, 22, 104, 245, 151, 52, 41, 128, 108, 1, 104, 131, 207, 42, 228, 184, 199, 245, 162, 25, 216, 232, 73, 51, 170, 129, 141, 80, 142, 86, 23, 186, 0, 5, 21, 148, 48, 5, 55, 180, 97, 173, 137, 193, 131, 27, 204, 200, 30, 121, 157, 79, 157, 103, 104, 168, 82, 134, 9, 175, 25, 204, 64, 41, 199, 106, 65, 103, 60, 147, 5, 8, 102, 193, 62, 156, 184, 207, 5, 126, 192, 131, 32, 248, 46, 131, 126, 241, 65, 16, 30, 48, 4, 19, 96, 192, 167, 112, 201, 192, 5, 78, 176, 7, 62, 136, 15, 49, 145, 201, 194, 21, 148, 64, 5, 40, 40, 225, 157, 227, 21, 2, 17, 144, 64, 4, 127, 10, 193, 9, 39, 8, 130, 17, 156, 160, 50, 39, 254, 44, 1, 9, 63, 200, 103, 15, 132, 128, 4, 254, 56, 161, 7, 67, 136, 230, 3, 162, 105, 1, 252, 169, 11, 3, 26, 176, 67, 130, 235, 240, 28, 229, 180, 96, 10, 103, 224, 89, 69, 23, 241, 133, 37, 228, 33, 15, 63, 96, 67, 60, 118, 99, 225, 22, 160, 226, 21, 155, 161, 130, 74, 123, 96, 4, 37, 32, 1, 9, 71, 224, 15, 255, 18, 70, 3, 30, 208, 0, 120, 192, 163, 1, 92, 84, 242, 200, 218, 20, 143, 1, 181, 194, 64, 6, 120, 16, 84, 32, 24, 129, 165, 78, 48, 194, 125, 19, 161, 7, 77, 152, 98, 17, 99, 168, 38, 142, 200, 160, 132, 57, 196, 130, 20, 166, 32, 133, 183, 80, 33, 213, 55, 189, 137, 22, 164, 184, 68, 24, 132, 112, 133, 78, 116, 130, 19, 98, 8, 66, 4, 34, 64, 1, 49, 31, 160, 2, 31, 64, 8, 66, 62, 208, 1, 10, 16, 129, 8, 87, 16, 195, 27, 234, 74, 6, 52, 48, 225, 12, 115, 192, 3, 26, 148, 128, 1, 36, 128, 225, 18, 189, 80, 130, 140, 158, 48, 135, 77, 188, 129, 200, 117, 211, 68, 71, 178, 150, 8, 60, 8, 162, 111, 110, 109, 3, 27, 212, 192, 134, 50, 48, 65, 11, 76, 24, 66, 19, 128, 112, 83, 72, 6, 102, 3, 177, 232, 69, 207, 66, 221, 11, 92, 220, 98, 39, 123, 106, 134, 49, 112, 209, 11, 93, 128, 254, 131, 23, 167, 173, 69, 45, 70, 1, 94, 211, 44, 11, 130, 200, 105, 65, 21, 88, 112, 172, 225, 48, 170, 10, 105, 16, 67, 22, 194, 146, 133, 240, 166, 33, 53, 123, 160, 195, 38, 196, 199, 9, 240, 69, 25, 21, 162, 200, 132, 39, 86, 241, 189, 50, 80, 160, 7, 34, 240, 129, 6, 140, 224, 131, 149, 184, 244, 1, 170, 138, 38, 4, 106, 69, 208, 11, 72, 224, 159, 250, 69, 129, 8, 78, 96, 2, 17, 244, 0, 5, 78, 112, 51, 21, 144, 80, 226, 33, 172, 119, 8, 246, 237, 129, 9, 120, 176, 31, 254, 188, 178, 158, 254, 124, 37, 17, 146, 64, 132, 39, 68, 1, 11, 236, 125, 192, 5, 84, 210, 46, 1, 211, 128, 3, 23, 224, 128, 13, 18, 108, 135, 225, 8, 199, 5, 84, 96, 131, 37, 59, 49, 133, 44, 208, 1, 15, 108, 72, 77, 23, 218, 128, 10, 44, 140, 129, 15, 124, 160, 194, 51, 158, 53, 203, 122, 247, 56, 8, 83, 96, 42, 146, 183, 253, 131, 34, 20, 65, 85, 204, 228, 129, 138, 85, 28, 194, 23, 3, 143, 127, 43, 13, 50, 18, 154, 160, 233, 30, 115, 7, 200, 65, 206, 196, 28, 76, 161, 137, 55, 144, 129, 63, 155, 32, 67, 19, 134, 160, 84, 83, 160, 34, 22, 178, 112, 156, 37, 117, 162, 245, 89, 92, 249, 18, 100, 32, 3, 96, 73, 93, 10, 44, 84, 151, 254, 2, 25, 208, 128, 8, 76, 16, 4, 19, 248, 123, 234, 103, 112, 43, 69, 222, 32, 231, 183, 134, 33, 236, 240, 49, 69, 24, 152, 192, 220, 48, 192, 193, 173, 110, 88, 132, 150, 224, 176, 8, 188, 105, 201, 19, 88, 202, 210, 70, 20, 239, 9, 80, 184, 1, 19, 140, 232, 155, 27, 202, 48, 249, 50, 40, 178, 11, 83, 96, 68, 44, 150, 216, 45, 12, 253, 172, 19, 187, 208, 252, 44, 2, 37, 10, 102, 52, 3, 79, 165, 214, 196, 9, 80, 144, 130, 204, 108, 133, 10, 85, 232, 101, 110, 129, 153, 235, 71, 245, 96, 9, 67, 168, 128, 9, 102, 148, 34, 230, 158, 64, 8, 66, 112, 105, 240, 129, 255, 123, 151, 126, 32, 8, 235, 238, 193, 9, 156, 11, 228, 37, 244, 224, 1, 26, 32, 168, 19, 150, 9, 4, 133, 43, 19, 199, 182, 210, 0, 16, 180, 88, 129, 190, 212, 42, 69, 25, 32, 35, 6, 40, 224, 125, 151, 122, 135, 185, 205, 12, 170, 7, 221, 157, 2, 116, 139, 244, 9, 41, 168, 131, 20, 158, 240, 4, 190, 88, 32, 48, 4, 110, 23, 4, 216, 101, 1, 16, 200, 33, 193, 160, 89, 22, 98, 155, 2, 54, 56, 131, 8, 194, 130, 60, 232, 46, 90, 122, 163, 41, 104, 167, 49, 208, 23, 34, 192, 3, 209, 16, 57, 52, 0, 3, 176, 131, 185, 50, 32, 3, 43, 248, 128, 38, 72, 254, 4, 56, 0, 2, 36, 112, 130, 248, 234, 1, 141, 17, 161, 232, 234, 1, 238, 80, 153, 149, 226, 15, 149, 226, 1, 35, 88, 130, 75, 107, 130, 4, 186, 61, 39, 64, 2, 38, 88, 2, 50, 128, 186, 75, 104, 58, 38, 240, 1, 51, 248, 186, 54, 160, 8, 1, 209, 4, 174, 226, 4, 79, 48, 133, 77, 40, 178, 33, 252, 8, 76, 208, 18, 60, 27, 153, 51, 16, 131, 36, 216, 33, 35, 27, 131, 33, 226, 1, 13, 16, 191, 156, 210, 128, 126, 58, 1, 246, 122, 165, 122, 3, 131, 55, 32, 133, 92, 216, 133, 82, 48, 3, 14, 161, 131, 41, 76, 52, 38, 194, 16, 89, 192, 8, 82, 120, 5, 81, 152, 155, 139, 24, 133, 197, 203, 146, 45, 33, 3, 53, 0, 59, 48, 248, 192, 32, 232, 0, 251, 99, 0, 151, 104, 0, 81, 144, 42, 206, 234, 133, 91, 192, 5, 84, 224, 9, 81, 64, 5, 211, 139, 133, 207, 34, 45, 93, 232, 5, 81, 64, 187, 15, 192, 159, 71, 250, 129, 12, 40, 15, 1, 48, 145, 2, 32, 155, 6, 112, 0, 3, 8, 128, 12, 160, 128, 13, 224, 1, 0, 8, 17, 178, 25, 128, 203, 74, 69, 178, 49, 128, 8, 72, 19, 212, 57, 128, 7, 121, 21, 136, 171, 139, 30, 24, 161, 229, 194, 129, 184, 120, 33, 38, 8, 130, 122, 218, 0, 149, 200, 177, 90, 121, 184, 82, 254, 124, 0, 27, 128, 69, 21, 2, 140, 10, 24, 1, 83, 17, 30, 185, 208, 0, 107, 98, 149, 235, 211, 128, 12, 56, 65, 39, 152, 130, 120, 234, 1, 145, 18, 41, 21, 152, 129, 58, 152, 191, 20, 128, 36, 194, 225, 128, 14, 128, 0, 6, 104, 23, 15, 8, 129, 4, 83, 132, 57, 208, 131, 196, 56, 131, 41, 80, 32, 142, 59, 57, 58, 152, 129, 50, 152, 159, 205, 80, 61, 42, 192, 1, 19, 160, 2, 17, 32, 130, 61, 16, 131, 75, 16, 19, 33, 0, 3, 43, 104, 167, 50, 232, 2, 36, 232, 5, 86, 0, 131, 76, 136, 2, 98, 27, 2, 26, 0, 2, 9, 240, 1, 160, 98, 41, 30, 75, 65, 102, 90, 193, 149, 162, 65, 19, 251, 15, 19, 115, 2, 63, 99, 2, 49, 96, 3, 48, 88, 2, 28, 128, 130, 57, 80, 143, 77, 64, 194, 54, 240, 158, 83, 16, 39, 95, 64, 5, 95, 232, 60, 10, 233, 58, 82, 200, 132, 56, 226, 129, 34, 42, 42, 56, 0, 173, 77, 184, 178, 76, 88, 4, 32, 244, 59, 213, 208, 132, 81, 136, 133, 82, 168, 133, 89, 192, 6, 93, 56, 133, 166, 195, 3, 9, 25, 164, 64, 2, 5, 186, 241, 132, 140, 208, 146, 55, 192, 146, 68, 195, 146, 45, 73, 132, 46, 73, 4, 70, 208, 4, 50, 40, 131, 69, 98, 130, 35, 152, 149, 13, 168, 141, 151, 72, 128, 254, 1, 96, 130, 94, 72, 5, 157, 208, 137, 90, 24, 53, 94, 0, 148, 93, 136, 50, 211, 163, 133, 79, 250, 164, 93, 232, 133, 81, 176, 11, 89, 217, 0, 213, 73, 152, 0, 64, 28, 30, 168, 33, 1, 48, 143, 16, 25, 0, 187, 184, 0, 39, 80, 154, 1, 72, 29, 79, 44, 29, 165, 49, 128, 165, 97, 0, 7, 113, 204, 51, 137, 0, 113, 203, 41, 12, 112, 128, 232, 146, 11, 28, 240, 1, 94, 204, 0, 48, 24, 130, 255, 88, 21, 149, 144, 21, 28, 59, 187, 30, 80, 1, 19, 120, 145, 17, 56, 1, 168, 201, 21, 7, 48, 21, 187, 192, 0, 22, 83, 25, 23, 212, 130, 147, 98, 2, 119, 2, 56, 30, 32, 2, 23, 136, 20, 21, 72, 129, 25, 144, 130, 244, 18, 71, 251, 129, 9, 152, 232, 128, 226, 121, 128, 16, 8, 1, 255, 179, 3, 58, 56, 3, 96, 59, 131, 203, 155, 165, 46, 200, 2, 175, 224, 3, 25, 200, 3, 58, 32, 182, 44, 8, 169, 42, 248, 1, 28, 176, 40, 37, 16, 3, 36, 0, 5, 56, 80, 2, 84, 208, 4, 43, 64, 131, 51, 32, 133, 82, 136, 3, 58, 136, 131, 138, 16, 131, 235, 41, 3, 27, 224, 0, 5, 192, 1, 254, 96, 169, 34, 96, 41, 149, 82, 80, 12, 10, 2, 31, 232, 177, 21, 196, 32, 31, 235, 201, 232, 2, 130, 172, 17, 131, 68, 120, 254, 3, 48, 112, 166, 100, 43, 167, 82, 160, 207, 206, 179, 36, 169, 226, 58, 199, 169, 5, 90, 208, 5, 106, 208, 133, 81, 48, 5, 104, 155, 59, 70, 96, 131, 188, 137, 50, 205, 195, 144, 172, 244, 153, 82, 216, 132, 48, 40, 3, 243, 162, 139, 32, 88, 201, 55, 192, 208, 236, 121, 5, 39, 35, 5, 95, 24, 172, 171, 242, 132, 57, 204, 136, 80, 88, 188, 188, 185, 4, 79, 128, 44, 53, 56, 75, 141, 121, 128, 106, 74, 0, 6, 176, 172, 2, 96, 0, 153, 216, 44, 81, 51, 181, 157, 32, 5, 93, 208, 75, 82, 216, 5, 93, 232, 75, 191, 220, 133, 153, 184, 72, 39, 144, 142, 87, 2, 2, 37, 64, 8, 12, 112, 2, 75, 156, 11, 241, 195, 149, 118, 219, 128, 38, 112, 0, 54, 195, 128, 14, 56, 48, 107, 35, 2, 221, 147, 154, 90, 201, 41, 234, 124, 0, 7, 240, 11, 79, 195, 1, 83, 180, 83, 89, 137, 128, 233, 88, 130, 18, 147, 11, 30, 16, 1, 185, 144, 11, 241, 59, 1, 214, 43, 1, 50, 186, 84, 248, 106, 208, 30, 3, 193, 30, 0, 65, 218, 244, 160, 15, 160, 212, 13, 88, 55, 19, 48, 130, 30, 240, 1, 35, 216, 138, 214, 99, 206, 229, 84, 1, 5, 104, 0, 116, 249, 139, 4, 248, 11, 150, 128, 137, 7, 144, 3, 236, 228, 130, 44, 248, 24, 25, 180, 168, 44, 254, 56, 185, 175, 24, 11, 24, 32, 182, 37, 32, 130, 243, 20, 214, 61, 80, 2, 5, 2, 3, 106, 120, 7, 55, 72, 3, 48, 248, 184, 74, 171, 152, 119, 130, 2, 48, 0, 3, 37, 72, 2, 33, 56, 70, 31, 211, 200, 149, 178, 185, 255, 240, 177, 19, 92, 208, 32, 243, 49, 27, 200, 185, 151, 2, 2, 51, 208, 4, 52, 112, 43, 45, 216, 128, 15, 136, 146, 14, 189, 132, 24, 117, 34, 173, 11, 209, 194, 210, 132, 18, 221, 60, 79, 112, 3, 54, 64, 3, 45, 32, 177, 32, 248, 0, 30, 152, 145, 3, 128, 128, 19, 232, 214, 15, 96, 128, 1, 80, 2, 51, 176, 130, 190, 115, 71, 30, 241, 4, 82, 24, 44, 95, 96, 162, 112, 34, 172, 193, 194, 18, 80, 176, 146, 172, 76, 52, 45, 97, 66, 77, 144, 52, 50, 208, 214, 234, 224, 129, 111, 219, 128, 212, 73, 0, 81, 68, 130, 174, 27, 209, 186, 196, 133, 102, 64, 5, 92, 8, 211, 158, 136, 133, 79, 154, 156, 93, 176, 16, 92, 28, 49, 40, 64, 2, 19, 224, 21, 255, 248, 1, 166, 90, 215, 95, 116, 169, 54, 237, 51, 92, 156, 167, 33, 72, 2, 39, 136, 130, 51, 140, 2, 41, 224, 144, 130, 139, 130, 39, 72, 130, 249, 131, 2, 127, 234, 51, 15, 188, 161, 229, 10, 161, 31, 168, 212, 222, 153, 2, 38, 208, 24, 31, 48, 129, 254, 106, 2, 130, 17, 211, 52, 89, 81, 1, 128, 155, 39, 248, 66, 216, 82, 157, 87, 21, 137, 70, 23, 155, 212, 22, 203, 159, 90, 209, 41, 8, 96, 198, 220, 25, 1, 26, 57, 1, 220, 177, 85, 203, 170, 210, 7, 160, 85, 43, 133, 137, 235, 84, 48, 46, 16, 3, 48, 224, 47, 23, 164, 71, 241, 228, 3, 58, 48, 184, 44, 232, 2, 42, 128, 32, 44, 72, 1, 58, 216, 131, 89, 106, 131, 93, 64, 133, 55, 88, 130, 51, 40, 133, 51, 24, 131, 50, 216, 32, 76, 224, 47, 37, 136, 131, 41, 168, 183, 36, 232, 51, 109, 53, 9, 25, 84, 160, 37, 208, 152, 35, 184, 47, 79, 53, 2, 141, 73, 169, 30, 43, 130, 16, 226, 159, 32, 104, 2, 42, 18, 3, 50, 128, 3, 53, 96, 2, 52, 216, 131, 14, 221, 4, 95, 16, 81, 10, 177, 16, 153, 45, 5, 172, 243, 153, 85, 144, 217, 158, 25, 133, 80, 120, 133, 215, 96, 132, 185, 99, 131, 200, 197, 52, 49, 152, 3, 40, 8, 3, 48, 16, 3, 120, 157, 131, 29, 194, 132, 172, 196, 88, 95, 32, 210, 88, 240, 133, 87, 136, 50, 251, 149, 27, 82, 96, 66, 57, 180, 155, 197, 91, 44, 77, 0, 133, 56, 96, 131, 214, 98, 36, 146, 41, 71, 35, 248, 0, 218, 64, 156, 3, 208, 132, 94, 152, 89, 187, 220, 9, 210, 197, 5, 93, 248, 254, 22, 157, 109, 6, 106, 48, 61, 208, 163, 5, 83, 116, 41, 39, 192, 31, 94, 233, 201, 54, 61, 9, 38, 208, 214, 49, 80, 222, 183, 121, 3, 70, 74, 130, 217, 85, 2, 40, 160, 218, 94, 53, 3, 248, 185, 2, 41, 136, 12, 33, 224, 0, 52, 203, 142, 32, 88, 77, 83, 4, 2, 49, 80, 164, 49, 233, 2, 192, 136, 0, 30, 48, 1, 233, 105, 130, 102, 237, 2, 133, 52, 175, 106, 210, 0, 213, 131, 175, 87, 114, 17, 19, 216, 128, 151, 162, 84, 21, 169, 149, 22, 10, 176, 115, 20, 168, 21, 82, 137, 14, 200, 0, 193, 141, 26, 252, 17, 129, 240, 176, 172, 16, 169, 161, 4, 168, 82, 116, 97, 0, 199, 77, 176, 27, 128, 160, 46, 88, 2, 124, 82, 2, 44, 176, 138, 58, 24, 214, 42, 16, 3, 38, 16, 153, 49, 24, 131, 44, 232, 4, 34, 232, 130, 252, 236, 4, 55, 168, 37, 241, 233, 2, 50, 8, 131, 54, 104, 3, 217, 98, 3, 50, 120, 131, 69, 32, 24, 184, 24, 3, 27, 248, 0, 33, 72, 2, 40, 128, 131, 195, 162, 133, 81, 72, 2, 171, 229, 2, 143, 225, 2, 51, 112, 159, 170, 141, 130, 78, 142, 131, 48, 160, 3, 41, 144, 130, 36, 72, 130, 40, 224, 2, 46, 136, 130, 76, 136, 5, 77, 104, 131, 48, 8, 229, 52, 48, 131, 68, 224, 4, 81, 56, 133, 83, 254, 232, 58, 199, 233, 5, 89, 115, 156, 88, 24, 5, 153, 197, 186, 80, 248, 132, 170, 194, 144, 80, 40, 5, 185, 201, 8, 77, 240, 18, 12, 141, 3, 76, 128, 54, 80, 184, 87, 250, 29, 44, 33, 45, 82, 194, 194, 88, 110, 182, 150, 64, 178, 18, 81, 192, 155, 75, 0, 96, 50, 24, 96, 50, 88, 93, 221, 245, 14, 8, 0, 2, 26, 120, 137, 2, 24, 0, 32, 152, 5, 236, 213, 137, 81, 35, 53, 158, 64, 133, 59, 41, 133, 78, 0, 83, 84, 192, 147, 127, 166, 133, 90, 104, 2, 45, 0, 131, 49, 168, 142, 49, 96, 131, 75, 232, 27, 65, 64, 36, 134, 126, 3, 191, 83, 222, 56, 56, 75, 33, 97, 2, 37, 0, 3, 34, 8, 3, 170, 133, 31, 46, 128, 159, 44, 16, 229, 43, 72, 131, 15, 32, 128, 164, 33, 0, 84, 20, 128, 85, 20, 0, 9, 168, 232, 138, 182, 152, 74, 197, 128, 15, 232, 129, 36, 0, 2, 127, 82, 130, 138, 134, 130, 74, 235, 129, 253, 64, 1, 122, 146, 226, 186, 112, 161, 115, 60, 105, 218, 72, 161, 132, 171, 11, 118, 17, 63, 131, 26, 158, 13, 24, 129, 15, 18, 1, 181, 251, 160, 151, 120, 137, 50, 134, 106, 178, 9, 15, 54, 78, 48, 8, 226, 227, 50, 88, 130, 42, 120, 130, 44, 168, 3, 170, 160, 138, 10, 90, 130, 22, 192, 2, 33, 218, 3, 254, 84, 216, 3, 39, 195, 2, 54, 72, 3, 50, 16, 4, 61, 48, 201, 55, 72, 3, 54, 96, 3, 65, 0, 187, 72, 35, 16, 53, 240, 2, 45, 200, 4, 26, 8, 12, 5, 192, 128, 50, 1, 131, 85, 240, 4, 39, 168, 57, 92, 200, 134, 86, 128, 133, 97, 64, 135, 79, 176, 129, 34, 152, 39, 39, 248, 5, 102, 232, 6, 52, 64, 8, 27, 232, 0, 38, 208, 132, 77, 104, 131, 77, 200, 139, 42, 164, 3, 92, 142, 3, 81, 54, 131, 56, 192, 229, 40, 145, 18, 174, 98, 162, 156, 204, 137, 95, 182, 8, 205, 131, 67, 107, 25, 210, 85, 144, 133, 46, 248, 41, 200, 14, 2, 77, 160, 133, 82, 88, 5, 77, 192, 144, 32, 141, 133, 85, 112, 50, 251, 229, 102, 140, 208, 8, 79, 240, 18, 46, 17, 4, 71, 131, 131, 133, 126, 171, 60, 92, 221, 109, 109, 2, 110, 123, 0, 3, 88, 46, 73, 178, 172, 76, 88, 28, 206, 210, 137, 9, 198, 19, 90, 184, 19, 90, 232, 4, 90, 216, 133, 91, 168, 6, 106, 224, 5, 94, 232, 5, 89, 168, 133, 55, 80, 104, 12, 76, 223, 129, 46, 49, 40, 232, 2, 147, 96, 2, 40, 208, 130, 154, 198, 239, 200, 181, 130, 50, 72, 95, 36, 16, 101, 14, 217, 232, 94, 229, 2, 58, 32, 109, 204, 133, 128, 147, 46, 15, 202, 12, 106, 1, 160, 128, 40, 54, 254, 88, 184, 168, 139, 106, 156, 11, 53, 107, 59, 254, 232, 201, 33, 64, 9, 18, 62, 75, 38, 144, 39, 254, 26, 49, 254, 106, 219, 18, 106, 46, 13, 96, 59, 180, 235, 1, 254, 144, 198, 90, 201, 0, 167, 73, 187, 121, 253, 32, 203, 34, 27, 178, 145, 241, 150, 32, 8, 0, 40, 128, 93, 85, 176, 2, 172, 194, 200, 53, 13, 58, 24, 13, 25, 168, 3, 25, 200, 130, 25, 184, 130, 49, 192, 99, 39, 248, 145, 212, 184, 4, 234, 144, 107, 69, 150, 43, 55, 176, 235, 54, 32, 75, 246, 56, 131, 143, 91, 36, 12, 164, 107, 47, 96, 2, 238, 120, 3, 28, 112, 130, 87, 96, 4, 13, 224, 1, 39, 224, 134, 101, 88, 7, 125, 136, 134, 104, 160, 133, 35, 176, 168, 41, 0, 3, 102, 0, 7, 102, 208, 4, 255, 200, 40, 32, 208, 4, 82, 8, 137, 202, 187, 4, 49, 232, 4, 81, 208, 131, 32, 93, 162, 81, 248, 207, 164, 155, 131, 209, 134, 43, 81, 166, 3, 76, 160, 131, 68, 24, 133, 83, 184, 170, 235, 149, 5, 109, 121, 5, 86, 232, 163, 81, 88, 5, 38, 112, 49, 83, 196, 1, 65, 24, 133, 64, 186, 132, 65, 138, 182, 44, 97, 194, 66, 226, 146, 83, 191, 4, 1, 233, 27, 45, 185, 4, 45, 201, 4, 70, 16, 5, 76, 80, 222, 55, 112, 131, 56, 88, 221, 123, 170, 238, 3, 254, 8, 128, 245, 28, 0, 195, 1, 130, 94, 0, 246, 96, 95, 181, 97, 55, 138, 91, 136, 133, 93, 248, 135, 91, 184, 133, 82, 152, 133, 78, 168, 5, 92, 104, 74, 92, 32, 133, 89, 16, 218, 121, 45, 241, 13, 216, 187, 152, 158, 130, 49, 176, 52, 43, 208, 2, 43, 88, 36, 40, 136, 110, 40, 160, 39, 243, 125, 31, 142, 129, 130, 40, 120, 39, 246, 26, 130, 87, 82, 62, 91, 121, 128, 63, 204, 191, 218, 168, 82, 254, 0, 193, 213, 212, 189, 43, 154, 204, 165, 41, 0, 120, 30, 0, 79, 52, 128, 2, 160, 49, 7, 16, 179, 14, 224, 211, 14, 64, 51, 39, 224, 130, 36, 240, 15, 186, 176, 68, 151, 162, 0, 8, 232, 128, 152, 30, 130, 32, 128, 11, 83, 9, 21, 102, 172, 0, 71, 161, 128, 17, 208, 128, 133, 72, 128, 3, 80, 128, 240, 160, 234, 218, 40, 0, 0, 184, 78, 29, 183, 131, 146, 3, 131, 51, 32, 192, 171, 41, 79, 25, 160, 3, 153, 143, 2, 24, 96, 192, 33, 56, 131, 37, 16, 3, 196, 24, 130, 49, 104, 130, 69, 208, 131, 54, 64, 104, 176, 51, 163, 49, 104, 131, 188, 73, 3, 52, 96, 3, 128, 21, 131, 74, 27, 3, 55, 56, 137, 130, 166, 235, 49, 96, 132, 87, 64, 5, 45, 41, 133, 98, 64, 243, 103, 136, 134, 74, 88, 246, 185, 97, 102, 102, 248, 7, 254, 102, 232, 133, 143, 237, 136, 34, 115, 131, 216, 106, 121, 30, 113, 201, 112, 162, 16, 82, 208, 4, 236, 173, 144, 89, 126, 50, 47, 1, 131, 78, 238, 86, 37, 112, 229, 87, 142, 146, 70, 31, 4, 67, 250, 132, 46, 72, 212, 120, 183, 128, 54, 24, 133, 104, 131, 3, 196, 82, 252, 139, 8, 167, 102, 110, 252, 57, 228, 18, 198, 51, 133, 44, 209, 132, 82, 104, 58, 65, 72, 4, 65, 24, 132, 230, 142, 52, 47, 56, 130, 37, 176, 65, 54, 136, 35, 62, 22, 5, 154, 188, 73, 171, 175, 144, 96, 6, 246, 78, 184, 217, 9, 238, 103, 156, 213, 133, 87, 195, 156, 33, 232, 0, 7, 229, 47, 36, 16, 130, 49, 224, 214, 154, 174, 52, 251, 134, 243, 138, 110, 122, 43, 16, 130, 13, 232, 129, 43, 144, 105, 33, 88, 183, 156, 187, 200, 149, 90, 79, 86, 97, 23, 134, 59, 71, 5, 40, 0, 5, 48, 128, 115, 12, 130, 223, 163, 167, 30, 32, 213, 32, 240, 0, 17, 25, 128, 164, 41, 143, 129, 80, 240, 242, 32, 127, 129, 8, 255, 242, 95, 69, 195, 89, 197, 2, 192, 128, 135, 101, 128, 7, 88, 59, 219, 36, 197, 10, 96, 165, 140, 103, 37, 26, 9, 149, 195, 97, 0, 50, 46, 128, 42, 37, 27, 8, 0, 8, 15, 5, 10, 200, 41, 104, 199, 14, 22, 44, 99, 176, 156, 33, 147, 6, 75, 254, 150, 60, 89, 170, 204, 168, 18, 165, 202, 148, 33, 67, 166, 240, 88, 130, 71, 201, 148, 46, 103, 94, 49, 114, 3, 134, 141, 24, 49, 139, 220, 156, 97, 147, 9, 83, 67, 55, 158, 220, 144, 33, 163, 70, 16, 38, 54, 99, 152, 32, 1, 211, 69, 132, 24, 84, 43, 193, 128, 169, 100, 212, 146, 165, 74, 170, 152, 128, 97, 146, 100, 10, 29, 69, 138, 218, 40, 97, 194, 4, 72, 16, 38, 98, 224, 184, 185, 196, 230, 77, 155, 52, 109, 82, 182, 209, 163, 233, 210, 27, 80, 153, 46, 109, 210, 164, 105, 147, 40, 77, 160, 52, 189, 241, 20, 42, 20, 163, 81, 131, 4, 37, 162, 19, 135, 75, 148, 36, 109, 160, 8, 145, 34, 36, 72, 144, 15, 54, 62, 196, 25, 165, 169, 20, 38, 95, 177, 100, 173, 170, 252, 106, 21, 41, 82, 163, 54, 151, 42, 181, 121, 51, 35, 70, 161, 74, 129, 18, 37, 138, 148, 169, 69, 160, 212, 190, 196, 36, 200, 77, 28, 48, 72, 128, 240, 216, 224, 227, 199, 3, 6, 78, 104, 197, 234, 61, 235, 119, 175, 89, 189, 122, 225, 42, 206, 139, 214, 44, 93, 197, 147, 199, 234, 165, 139, 23, 47, 92, 164, 112, 113, 56, 160, 97, 67, 207, 41, 83, 216, 64, 105, 194, 100, 10, 152, 36, 74, 64, 46, 65, 226, 228, 199, 85, 17, 56, 214, 171, 95, 143, 131, 7, 15, 26, 254, 28, 56, 96, 120, 0, 1, 2, 3, 6, 2, 246, 15, 8, 48, 224, 191, 0, 255, 21, 16, 192, 1, 21, 116, 80, 129, 129, 20, 80, 96, 193, 126, 254, 5, 24, 0, 132, 16, 10, 0, 97, 127, 20, 86, 56, 192, 128, 1, 238, 151, 128, 7, 10, 236, 7, 1, 6, 12, 20, 192, 192, 3, 61, 8, 97, 130, 9, 25, 40, 136, 32, 139, 21, 76, 48, 1, 8, 21, 104, 32, 128, 135, 6, 36, 32, 64, 2, 249, 49, 96, 128, 1, 16, 24, 0, 64, 8, 5, 201, 145, 197, 23, 10, 157, 113, 134, 24, 88, 84, 81, 135, 12, 85, 56, 89, 133, 16, 85, 80, 49, 196, 148, 78, 116, 65, 5, 18, 75, 116, 49, 10, 27, 38, 141, 113, 134, 21, 99, 96, 226, 198, 24, 109, 104, 130, 7, 25, 101, 184, 1, 138, 27, 58, 145, 113, 201, 34, 100, 180, 116, 134, 27, 130, 248, 0, 198, 40, 44, 45, 161, 4, 49, 72, 37, 85, 137, 41, 64, 52, 209, 4, 18, 70, 88, 65, 135, 20, 222, 1, 129, 68, 161, 100, 244, 228, 198, 27, 105, 93, 210, 198, 25, 102, 102, 98, 10, 93, 55, 45, 242, 198, 37, 153, 104, 98, 10, 41, 190, 208, 66, 138, 38, 177, 212, 194, 202, 43, 178, 244, 53, 199, 28, 152, 140, 178, 202, 40, 152, 132, 33, 200, 27, 97, 96, 208, 1, 8, 24, 124, 80, 24, 17, 82, 72, 254, 193, 5, 176, 137, 144, 50, 71, 34, 154, 112, 82, 202, 42, 148, 141, 226, 203, 42, 161, 124, 2, 74, 35, 128, 124, 145, 9, 35, 159, 36, 18, 199, 34, 112, 190, 209, 230, 24, 93, 48, 97, 4, 15, 20, 48, 112, 0, 3, 3, 108, 192, 67, 0, 2, 92, 50, 75, 44, 236, 6, 247, 219, 111, 184, 8, 87, 28, 42, 168, 220, 82, 28, 46, 187, 32, 55, 92, 45, 210, 225, 130, 1, 1, 7, 96, 0, 68, 18, 140, 98, 209, 196, 121, 61, 44, 97, 132, 8, 62, 172, 183, 129, 8, 24, 24, 241, 3, 7, 34, 208, 87, 223, 125, 12, 120, 200, 0, 4, 10, 24, 224, 225, 126, 251, 121, 168, 128, 2, 58, 30, 16, 96, 127, 2, 20, 96, 192, 1, 7, 20, 208, 242, 132, 17, 250, 7, 33, 1, 50, 219, 76, 33, 206, 22, 226, 152, 114, 2, 29, 232, 215, 35, 6, 25, 84, 160, 224, 139, 19, 56, 80, 52, 210, 20, 84, 208, 224, 0, 40, 55, 253, 224, 126, 5, 4, 25, 66, 8, 51, 96, 209, 69, 66, 72, 66, 148, 70, 22, 19, 85, 241, 132, 147, 72, 244, 64, 5, 30, 120, 76, 161, 4, 17, 75, 148, 180, 68, 25, 99, 168, 193, 6, 24, 98, 140, 121, 6, 28, 153, 44, 194, 6, 25, 120, 176, 201, 70, 25, 111, 50, 82, 134, 24, 68, 213, 137, 4, 25, 163, 224, 1, 71, 23, 96, 254, 192, 51, 141, 81, 211, 200, 179, 9, 16, 67, 0, 49, 57, 16, 54, 252, 64, 104, 15, 70, 56, 172, 5, 15, 76, 184, 113, 150, 39, 166, 29, 174, 9, 41, 165, 144, 130, 9, 40, 163, 104, 70, 90, 38, 112, 44, 242, 58, 30, 101, 116, 154, 137, 105, 99, 32, 113, 131, 13, 190, 38, 82, 74, 167, 154, 133, 194, 112, 14, 57, 28, 177, 153, 91, 96, 133, 65, 56, 20, 54, 36, 81, 152, 175, 192, 114, 97, 70, 28, 92, 185, 177, 198, 22, 107, 48, 130, 9, 28, 76, 212, 84, 6, 19, 11, 7, 193, 195, 7, 31, 112, 16, 193, 6, 17, 60, 32, 238, 6, 64, 16, 208, 3, 45, 168, 196, 66, 11, 114, 240, 10, 215, 11, 47, 195, 241, 130, 10, 41, 181, 244, 75, 92, 115, 216, 248, 15, 14, 114, 156, 16, 1, 13, 152, 128, 7, 65, 184, 13, 24, 166, 176, 132, 41, 240, 100, 9, 78, 0, 130, 9, 68, 160, 129, 12, 148, 104, 70, 6, 112, 154, 127, 254, 51, 0, 6, 108, 96, 3, 56, 136, 0, 141, 56, 166, 163, 252, 144, 140, 70, 23, 188, 32, 5, 52, 160, 66, 12, 40, 232, 1, 17, 80, 192, 127, 50, 248, 31, 2, 12, 160, 102, 253, 137, 225, 204, 110, 168, 193, 29, 198, 240, 63, 7, 184, 17, 128, 2, 196, 0, 7, 28, 237, 69, 69, 60, 162, 4, 42, 112, 179, 32, 2, 113, 254, 63, 30, 160, 90, 20, 158, 192, 144, 47, 157, 1, 13, 103, 72, 131, 68, 186, 86, 5, 37, 81, 97, 10, 72, 152, 2, 41, 64, 193, 4, 37, 12, 1, 9, 106, 232, 130, 23, 214, 0, 134, 49, 172, 65, 123, 94, 1, 3, 25, 50, 97, 146, 50, 168, 134, 111, 125, 179, 91, 154, 192, 227, 6, 55, 0, 193, 13, 161, 216, 20, 25, 218, 0, 141, 104, 76, 99, 25, 202, 80, 134, 27, 156, 192, 40, 35, 40, 18, 8, 66, 152, 77, 228, 122, 128, 3, 38, 224, 160, 11, 108, 128, 195, 37, 76, 81, 26, 81, 232, 161, 13, 112, 232, 204, 38, 218, 66, 10, 84, 96, 134, 20, 153, 80, 29, 239, 220, 176, 136, 79, 104, 2, 14, 69, 96, 66, 223, 224, 64, 44, 78, 172, 226, 18, 158, 136, 197, 42, 48, 193, 136, 76, 128, 194, 19, 158, 26, 69, 34, 70, 113, 74, 207, 96, 162, 13, 151, 192, 158, 26, 192, 160, 132, 30, 216, 32, 8, 54, 120, 38, 8, 62, 16, 4, 33, 60, 210, 87, 73, 128, 2, 41, 184, 240, 4, 195, 8, 161, 7, 137, 225, 192, 4, 93, 116, 1, 7, 152, 64, 8, 7, 200, 68, 251, 80, 1, 191, 248, 193, 79, 56, 238, 172, 69, 189, 104, 49, 156, 89, 224, 2, 21, 187, 0, 199, 63, 176, 193, 139, 83, 144, 194, 81, 176, 196, 130, 24, 178, 32, 6, 79, 182, 161, 13, 254, 100, 176, 66, 66, 196, 96, 134, 148, 96, 161, 12, 72, 96, 10, 79, 140, 128, 149, 14, 82, 212, 7, 140, 234, 66, 23, 54, 112, 31, 3, 228, 231, 1, 28, 48, 1, 56, 35, 144, 159, 11, 30, 0, 156, 29, 92, 97, 4, 48, 0, 129, 144, 105, 16, 101, 44, 229, 33, 76, 159, 246, 52, 13, 113, 244, 100, 251, 25, 162, 3, 30, 32, 129, 7, 24, 141, 167, 71, 147, 192, 139, 34, 176, 211, 167, 37, 224, 70, 56, 162, 145, 81, 7, 0, 20, 44, 164, 193, 12, 88, 160, 2, 214, 166, 56, 133, 174, 81, 53, 33, 218, 89, 2, 17, 166, 64, 134, 166, 40, 161, 80, 222, 100, 194, 25, 202, 128, 18, 38, 176, 33, 78, 76, 104, 67, 38, 218, 64, 20, 76, 120, 2, 37, 98, 213, 132, 32, 106, 66, 20, 65, 180, 225, 3, 106, 0, 197, 182, 242, 102, 148, 189, 86, 194, 13, 131, 154, 92, 25, 145, 80, 198, 33, 24, 97, 54, 147, 20, 65, 23, 202, 16, 4, 76, 124, 42, 46, 151, 16, 197, 37, 100, 137, 9, 37, 68, 193, 12, 152, 200, 68, 102, 52, 113, 74, 80, 216, 114, 20, 200, 241, 4, 7, 58, 0, 193, 19, 156, 43, 9, 97, 216, 234, 32, 222, 64, 45, 210, 173, 37, 17, 109, 34, 67, 23, 170, 34, 152, 86, 66, 129, 11, 97, 56, 45, 26, 200, 176, 6, 49, 148, 161, 12, 94, 254, 28, 193, 14, 182, 144, 152, 14, 116, 32, 9, 111, 136, 38, 8, 158, 41, 132, 27, 248, 202, 87, 79, 120, 66, 18, 136, 144, 5, 51, 16, 97, 19, 199, 42, 197, 41, 36, 179, 206, 248, 177, 203, 125, 156, 228, 4, 39, 68, 1, 138, 61, 224, 65, 15, 116, 48, 131, 25, 194, 112, 5, 43, 64, 97, 60, 86, 0, 73, 67, 7, 202, 18, 222, 2, 206, 139, 64, 240, 129, 13, 236, 3, 129, 8, 92, 64, 2, 22, 192, 64, 125, 232, 147, 129, 12, 156, 235, 92, 72, 240, 193, 6, 130, 208, 131, 69, 141, 7, 9, 68, 24, 194, 6, 236, 195, 50, 8, 112, 224, 3, 27, 80, 33, 7, 30, 224, 0, 10, 212, 199, 62, 34, 106, 217, 5, 19, 96, 128, 2, 68, 45, 100, 2, 184, 160, 137, 57, 202, 35, 252, 40, 128, 92, 247, 33, 23, 3, 6, 200, 66, 10, 76, 160, 2, 64, 53, 98, 18, 47, 160, 32, 10, 28, 128, 100, 37, 35, 225, 8, 33, 48, 0, 30, 180, 9, 13, 98, 56, 3, 30, 206, 80, 166, 54, 100, 225, 72, 89, 72, 200, 22, 147, 164, 157, 171, 54, 120, 8, 63, 224, 129, 15, 150, 176, 4, 38, 136, 4, 12, 109, 88, 132, 24, 172, 96, 76, 181, 130, 225, 178, 72, 2, 131, 27, 50, 241, 6, 57, 1, 110, 16, 108, 224, 65, 27, 64, 81, 80, 43, 144, 1, 18, 146, 128, 254, 132, 42, 34, 1, 9, 56, 144, 33, 204, 60, 17, 44, 16, 30, 216, 131, 33, 4, 97, 3, 75, 216, 128, 22, 192, 224, 131, 198, 58, 182, 51, 162, 168, 147, 18, 58, 192, 131, 208, 152, 166, 20, 152, 98, 68, 34, 60, 17, 89, 154, 112, 0, 8, 59, 185, 138, 9, 108, 192, 5, 76, 242, 153, 12, 104, 112, 91, 27, 246, 248, 134, 108, 185, 102, 14, 219, 2, 197, 38, 12, 122, 91, 246, 142, 193, 10, 86, 40, 3, 218, 136, 160, 3, 105, 93, 1, 5, 212, 68, 243, 24, 158, 251, 4, 106, 82, 243, 4, 31, 152, 65, 115, 65, 0, 130, 27, 44, 183, 185, 207, 163, 3, 29, 244, 176, 7, 78, 244, 2, 21, 172, 162, 195, 28, 210, 128, 135, 52, 160, 129, 219, 121, 216, 118, 83, 167, 155, 94, 45, 96, 33, 10, 87, 8, 204, 3, 29, 41, 132, 112, 153, 175, 1, 40, 14, 0, 0, 226, 45, 239, 121, 203, 155, 0, 246, 142, 119, 0, 108, 184, 97, 10, 108, 128, 208, 28, 216, 192, 124, 114, 67, 174, 7, 96, 224, 58, 23, 214, 128, 134, 11, 142, 129, 208, 102, 236, 62, 30, 112, 64, 126, 78, 134, 226, 149, 241, 200, 3, 7, 224, 40, 199, 30, 160, 113, 243, 221, 39, 165, 246, 209, 56, 7, 100, 148, 1, 9, 80, 64, 2, 36, 55, 185, 141, 149, 70, 1, 14, 36, 224, 199, 28, 195, 15, 254, 4, 22, 64, 34, 11, 60, 64, 3, 113, 75, 210, 145, 148, 140, 7, 42, 178, 33, 231, 82, 158, 50, 19, 154, 16, 88, 39, 56, 65, 162, 63, 8, 116, 150, 166, 208, 55, 150, 120, 249, 18, 97, 21, 67, 38, 50, 129, 18, 52, 99, 79, 12, 99, 136, 219, 32, 220, 32, 6, 70, 180, 178, 13, 91, 30, 35, 18, 146, 32, 30, 45, 132, 161, 111, 100, 8, 131, 21, 152, 32, 57, 202, 5, 33, 3, 90, 78, 92, 19, 162, 126, 137, 75, 204, 161, 13, 111, 72, 3, 28, 48, 41, 132, 93, 133, 102, 13, 74, 32, 20, 18, 148, 224, 6, 81, 148, 1, 69, 56, 168, 193, 17, 130, 160, 158, 35, 232, 64, 8, 113, 184, 68, 41, 244, 160, 135, 75, 148, 247, 18, 110, 80, 195, 217, 199, 80, 91, 219, 206, 193, 13, 90, 104, 203, 38, 22, 113, 184, 35, 37, 121, 13, 230, 14, 195, 23, 116, 240, 133, 51, 136, 59, 13, 152, 216, 132, 25, 178, 112, 133, 174, 153, 33, 13, 105, 184, 2, 31, 250, 160, 251, 127, 220, 33, 15, 41, 56, 193, 9, 64, 16, 252, 240, 41, 27, 4, 66, 136, 5, 23, 64, 208, 60, 51, 212, 193, 12, 208, 78, 195, 121, 157, 15, 7, 58, 128, 65, 114, 54, 24, 223, 0, 53, 174, 49, 93, 57, 160, 105, 47, 135, 128, 135, 121, 196, 31, 254, 104, 208, 66, 51, 3, 128, 132, 254, 82, 86, 240, 15, 168, 176, 124, 29, 245, 168, 6, 254, 13, 78, 136, 235, 74, 225, 26, 214, 184, 134, 29, 128, 159, 159, 233, 103, 63, 228, 18, 0, 140, 101, 92, 3, 128, 159, 126, 61, 64, 127, 225, 95, 6, 0, 24, 128, 81, 192, 5, 12, 216, 128, 97, 128, 142, 1, 88, 6, 216, 8, 3, 20, 213, 247, 221, 7, 1, 98, 192, 20, 36, 4, 7, 98, 65, 145, 36, 217, 25, 228, 193, 21, 157, 193, 6, 34, 148, 21, 44, 1, 21, 144, 81, 209, 17, 29, 163, 76, 142, 19, 12, 214, 16, 128, 85, 77, 172, 218, 86, 145, 1, 38, 96, 130, 26, 148, 93, 154, 145, 9, 24, 104, 193, 78, 136, 1, 26, 44, 130, 154, 189, 129, 118, 88, 133, 18, 236, 73, 19, 84, 69, 85, 64, 129, 17, 78, 140, 15, 4, 193, 125, 101, 5, 83, 56, 16, 40, 44, 130, 96, 57, 65, 19, 4, 26, 16, 48, 193, 37, 12, 1, 8, 56, 129, 32, 52, 66, 25, 240, 64, 15, 244, 0, 15, 0, 65, 93, 48, 129, 8, 240, 64, 14, 20, 1, 16, 244, 0, 30, 80, 1, 64, 129, 64, 24, 96, 66, 41, 204, 1, 122, 217, 158, 237, 25, 212, 30, 232, 129, 24, 112, 77, 21, 152, 65, 27, 68, 15, 24, 132, 1, 16, 22, 84, 217, 52, 194, 165, 132, 66, 21, 134, 6, 35, 224, 65, 88, 224, 129, 167, 132, 91, 254, 237, 157, 87, 215, 212, 129, 29, 232, 94, 31, 236, 193, 30, 68, 27, 244, 205, 1, 182, 209, 65, 83, 65, 1, 20, 188, 129, 19, 44, 6, 8, 116, 64, 4, 172, 98, 241, 217, 0, 115, 53, 87, 20, 248, 74, 44, 138, 93, 20, 68, 129, 19, 32, 134, 18, 64, 65, 18, 40, 198, 6, 160, 200, 248, 64, 192, 201, 20, 192, 6, 65, 128, 254, 17, 28, 5, 184, 208, 194, 249, 12, 137, 104, 216, 197, 77, 200, 0, 232, 10, 138, 116, 144, 207, 8, 0, 193, 41, 156, 6, 80, 64, 4, 64, 156, 252, 109, 0, 6, 68, 0, 1, 226, 159, 246, 181, 204, 202, 180, 76, 0, 130, 159, 3, 248, 151, 2, 66, 224, 5, 44, 92, 6, 172, 35, 6, 136, 128, 8, 100, 0, 123, 192, 227, 60, 170, 199, 15, 252, 0, 14, 144, 11, 201, 84, 96, 2, 220, 199, 3, 88, 128, 5, 92, 192, 5, 112, 64, 25, 36, 217, 145, 29, 9, 67, 80, 10, 22, 224, 129, 64, 33, 137, 118, 196, 77, 25, 88, 65, 23, 40, 80, 247, 12, 129, 208, 21, 214, 11, 10, 214, 16, 192, 81, 18, 192, 18, 87, 136, 129, 13, 94, 66, 154, 148, 129, 106, 153, 132, 183, 240, 150, 17, 244, 64, 154, 217, 157, 39, 145, 65, 208, 181, 32, 16, 48, 225, 75, 154, 199, 27, 34, 6, 124, 116, 4, 83, 16, 10, 94, 209, 228, 218, 1, 254, 65, 23, 92, 130, 16, 68, 0, 18, 96, 66, 35, 176, 1, 14, 80, 142, 18, 44, 194, 38, 88, 193, 16, 64, 65, 17, 232, 64, 16, 68, 65, 39, 156, 194, 41, 224, 65, 16, 152, 129, 38, 140, 2, 28, 228, 161, 30, 206, 129, 238, 165, 2, 28, 224, 157, 182, 185, 193, 40, 104, 218, 27, 112, 69, 26, 136, 1, 70, 109, 153, 21, 128, 193, 173, 85, 10, 30, 104, 130, 40, 140, 194, 38, 200, 68, 39, 132, 210, 28, 132, 37, 215, 164, 65, 29, 228, 158, 238, 53, 149, 30, 162, 215, 21, 12, 102, 96, 52, 229, 107, 48, 1, 25, 94, 227, 7, 172, 162, 6, 120, 99, 4, 168, 34, 113, 225, 74, 4, 20, 95, 114, 229, 78, 115, 253, 138, 243, 68, 65, 24, 0, 134, 18, 148, 194, 43, 108, 66, 38, 48, 1, 6, 56, 0, 137, 13, 200, 0, 224, 135, 3, 104, 0, 196, 117, 0, 246, 121, 0, 202, 104, 192, 9, 152, 128, 6, 0, 152, 72, 29, 64, 53, 2, 24, 7, 92, 128, 198, 129, 200, 108, 6, 28, 56, 110, 28, 48, 50, 64, 3, 64, 220, 184, 52, 192, 0, 230, 148, 198, 53, 32, 128, 1, 28, 7, 224, 0, 13, 208, 192, 195, 184, 7, 14, 228, 0, 14, 252, 128, 8, 252, 128, 17, 4, 207, 122, 228, 128, 17, 100, 103, 144, 93, 160, 1, 174, 227, 5, 52, 65, 206, 133, 32, 66, 254, 98, 1, 24, 108, 17, 21, 200, 33, 22, 76, 65, 74, 36, 144, 91, 86, 5, 208, 253, 157, 150, 105, 89, 193, 60, 148, 17, 52, 193, 64, 201, 23, 156, 240, 22, 154, 77, 10, 81, 48, 129, 26, 184, 65, 23, 12, 193, 27, 20, 83, 27, 132, 1, 24, 248, 150, 18, 36, 1, 229, 56, 65, 87, 85, 217, 228, 28, 144, 18, 96, 69, 121, 200, 198, 18, 60, 90, 161, 36, 225, 120, 24, 193, 24, 36, 130, 16, 116, 64, 19, 92, 207, 34, 180, 229, 21, 152, 1, 25, 40, 101, 83, 153, 129, 22, 20, 129, 13, 152, 65, 39, 252, 67, 42, 184, 129, 16, 112, 129, 41, 136, 2, 28, 208, 141, 88, 228, 221, 30, 248, 195, 63, 248, 168, 88, 20, 148, 32, 56, 70, 217, 177, 65, 207, 65, 98, 217, 44, 194, 46, 49, 66, 35, 224, 1, 147, 126, 65, 209, 125, 4, 19, 228, 93, 34, 112, 66, 233, 212, 11, 42, 228, 158, 95, 138, 193, 115, 9, 193, 9, 104, 192, 7, 156, 128, 249, 228, 134, 3, 64, 193, 220, 117, 129, 9, 68, 129, 70, 132, 207, 7, 120, 211, 160, 29, 6, 98, 132, 15, 5, 40, 70, 72, 57, 128, 64, 12, 68, 1, 120, 128, 7, 176, 34, 114, 93, 1, 53, 240, 130, 114, 96, 38, 96, 36, 193, 41, 138, 15, 5, 116, 64, 199, 196, 76, 190, 17, 0, 0, 16, 128, 0, 232, 199, 254, 0, 40, 0, 113, 218, 102, 58, 142, 143, 198, 57, 128, 53, 118, 99, 49, 254, 163, 2, 238, 212, 78, 185, 144, 78, 105, 156, 167, 170, 163, 8, 108, 0, 13, 192, 35, 116, 178, 199, 109, 228, 192, 109, 252, 64, 17, 4, 79, 118, 222, 35, 118, 186, 234, 61, 242, 227, 125, 88, 64, 2, 88, 64, 126, 64, 0, 64, 2, 164, 16, 32, 217, 25, 96, 193, 26, 112, 96, 146, 116, 96, 214, 36, 68, 125, 117, 129, 21, 20, 97, 85, 140, 81, 131, 46, 208, 158, 104, 1, 19, 44, 152, 21, 156, 1, 25, 41, 193, 24, 208, 85, 25, 128, 193, 32, 56, 157, 130, 158, 196, 32, 88, 65, 31, 121, 197, 25, 24, 97, 87, 49, 202, 45, 42, 216, 209, 21, 150, 3, 245, 192, 15, 8, 129, 18, 188, 160, 23, 197, 22, 24, 224, 85, 220, 32, 9, 122, 13, 20, 30, 8, 1, 8, 36, 65, 35, 60, 162, 66, 165, 196, 155, 96, 79, 237, 105, 65, 226, 113, 129, 32, 164, 2, 42, 140, 129, 13, 144, 129, 232, 176, 129, 21, 245, 28, 27, 104, 226, 63, 252, 131, 30, 56, 169, 147, 146, 6, 43, 160, 130, 103, 190, 130, 45, 208, 2, 44, 80, 2, 40, 144, 194, 43, 120, 236, 43, 148, 66, 40, 120, 1, 14, 40, 193, 37, 12, 2, 35, 116, 129, 115, 190, 199, 15, 32, 65, 25, 208, 9, 28, 36, 130, 117, 153, 254, 130, 41, 108, 66, 100, 25, 148, 24, 16, 1, 15, 68, 16, 5, 48, 1, 104, 130, 193, 7, 24, 144, 9, 124, 0, 6, 36, 70, 47, 126, 64, 210, 94, 88, 54, 106, 220, 62, 58, 205, 137, 245, 223, 158, 14, 145, 203, 152, 192, 40, 92, 130, 38, 68, 65, 158, 62, 145, 178, 93, 102, 243, 112, 65, 29, 212, 162, 216, 9, 193, 98, 104, 0, 8, 56, 64, 54, 238, 223, 1, 172, 34, 201, 25, 160, 135, 121, 128, 4, 112, 227, 124, 140, 105, 74, 53, 32, 116, 122, 16, 14, 116, 16, 13, 108, 0, 129, 253, 109, 7, 81, 167, 116, 6, 143, 195, 220, 227, 170, 78, 167, 172, 222, 99, 240, 228, 192, 117, 250, 0, 228, 26, 65, 17, 148, 12, 248, 189, 156, 8, 97, 32, 205, 253, 42, 24, 32, 217, 24, 80, 145, 27, 64, 98, 170, 181, 201, 145, 88, 93, 74, 104, 135, 183, 48, 129, 22, 28, 225, 160, 148, 199, 119, 12, 74, 83, 44, 152, 85, 48, 202, 20, 44, 130, 90, 21, 148, 146, 110, 149, 91, 182, 129, 32, 48, 129, 16, 12, 66, 156, 224, 110, 123, 9, 214, 223, 105, 196, 27, 74, 14, 24, 160, 129, 70, 154, 7, 132, 190, 151, 85, 148, 129, 39, 204, 65, 183, 101, 1, 96, 162, 129, 39, 137, 169, 13, 52, 193, 17, 156, 193, 66, 41, 84, 138, 94, 66, 90, 138, 193, 22, 232, 128, 13, 254, 208, 192, 17, 232, 129, 27, 28, 1, 15, 196, 129, 232, 224, 129, 16, 138, 66, 40, 176, 130, 95, 234, 94, 47, 188, 2, 44, 156, 73, 24, 221, 130, 45, 192, 2, 253, 190, 2, 37, 148, 205, 23, 124, 1, 33, 124, 110, 104, 52, 130, 34, 202, 209, 165, 188, 65, 89, 221, 205, 24, 120, 193, 20, 20, 1, 55, 218, 7, 13, 64, 161, 18, 196, 77, 27, 204, 65, 38, 116, 130, 41, 120, 66, 6, 215, 165, 229, 149, 7, 16, 196, 35, 6, 72, 128, 219, 158, 76, 133, 68, 200, 211, 228, 7, 219, 166, 80, 99, 178, 237, 42, 118, 128, 4, 232, 6, 45, 136, 66, 41, 164, 129, 64, 100, 16, 205, 224, 169, 158, 238, 169, 178, 225, 14, 243, 56, 207, 243, 0, 6, 41, 146, 98, 22, 78, 142, 15, 136, 79, 7, 108, 192, 245, 5, 28, 6, 130, 95, 74, 65, 32, 2, 118, 144, 195, 240, 173, 226, 202, 106, 27, 222, 163, 14, 28, 193, 15, 8, 15, 118, 22, 193, 116, 22, 65, 119, 206, 234, 15, 28, 65, 14, 100, 241, 109, 40, 64, 81, 229, 200, 25, 199, 92, 198, 48, 192, 158, 118, 209, 230, 198, 13, 30, 64, 44, 221, 20, 148, 146, 137, 193, 6, 170, 37, 120, 36, 16, 83, 232, 241, 30, 63, 164, 119, 92, 93, 85, 44, 171, 216, 76, 41, 28, 68, 14, 83, 156, 165, 24, 72, 107, 170, 117, 1, 254, 18, 184, 78, 77, 216, 90, 218, 141, 71, 18, 14, 65, 18, 72, 78, 16, 56, 193, 86, 13, 1, 17, 160, 205, 16, 152, 200, 85, 4, 93, 189, 194, 1, 81, 92, 1, 83, 217, 30, 87, 4, 31, 5, 56, 65, 17, 140, 1, 222, 181, 165, 74, 76, 74, 159, 29, 129, 139, 2, 1, 29, 212, 65, 21, 228, 64, 16, 20, 142, 39, 220, 2, 45, 212, 2, 47, 11, 7, 31, 100, 162, 238, 225, 129, 26, 172, 193, 25, 44, 2, 41, 48, 66, 119, 230, 192, 22, 124, 1, 30, 236, 64, 32, 4, 2, 37, 76, 179, 157, 169, 194, 43, 132, 194, 43, 208, 66, 158, 200, 197, 27, 44, 193, 15, 248, 128, 160, 184, 135, 19, 196, 7, 7, 196, 171, 13, 116, 80, 135, 29, 177, 52, 245, 192, 89, 185, 65, 16, 160, 213, 105, 144, 2, 172, 200, 17, 27, 76, 129, 68, 61, 48, 48, 114, 20, 200, 213, 135, 130, 24, 28, 194, 97, 35, 199, 25, 192, 110, 136, 23, 29, 68, 128, 12, 241, 16, 127, 8, 35, 134, 64, 200, 64, 228, 240, 42, 134, 0, 101, 186, 98, 179, 73, 65, 44, 82, 52, 41, 114, 1, 41, 254, 153, 96, 177, 1, 41, 120, 2, 43, 112, 133, 21, 74, 32, 125, 208, 7, 224, 202, 163, 123, 140, 113, 22, 51, 174, 171, 162, 244, 61, 86, 167, 74, 35, 46, 14, 180, 170, 189, 217, 219, 205, 216, 254, 176, 7, 204, 0, 21, 92, 221, 83, 117, 17, 79, 91, 213, 78, 51, 4, 214, 76, 25, 3, 45, 40, 83, 108, 43, 81, 180, 165, 85, 108, 21, 83, 144, 193, 20, 56, 168, 246, 48, 1, 98, 0, 1, 221, 156, 132, 65, 113, 69, 19, 8, 193, 30, 25, 162, 18, 142, 71, 46, 142, 145, 173, 165, 196, 31, 162, 1, 245, 218, 222, 225, 216, 157, 24, 116, 79, 41, 30, 14, 28, 252, 97, 83, 81, 111, 93, 69, 128, 9, 228, 171, 66, 245, 128, 8, 104, 193, 37, 8, 66, 162, 133, 194, 23, 184, 232, 26, 212, 193, 29, 208, 1, 161, 169, 65, 89, 218, 5, 43, 136, 66, 35, 12, 194, 25, 208, 1, 31, 248, 165, 149, 33, 193, 25, 48, 2, 43, 148, 13, 146, 53, 2, 36, 52, 2, 180, 48, 2, 33, 44, 41, 30, 124, 193, 20, 124, 243, 6, 144, 129, 27, 96, 10, 27, 44, 129, 226, 42, 26, 124, 248, 0, 150, 29, 157, 195, 220, 36, 14, 124, 79, 4, 137, 192, 3, 32, 193, 37, 169, 1, 18, 24, 16, 7, 64, 33, 19, 132, 129, 221, 101, 66, 232, 148, 130, 44, 196, 2, 41, 136, 66, 38, 108, 194, 154, 121, 81, 219, 81, 192, 126, 41, 200, 201, 12, 28, 201, 149, 193, 44, 140, 2, 40, 152, 65, 5, 192, 140, 134, 84, 247, 137, 145, 35, 105, 178, 140, 202, 40, 8, 199, 17, 156, 50, 254, 178, 49, 27, 235, 169, 157, 174, 226, 99, 82, 38, 53, 69, 1, 46, 92, 67, 40, 52, 3, 38, 56, 131, 49, 0, 75, 208, 253, 29, 161, 20, 29, 16, 224, 35, 117, 94, 39, 123, 76, 39, 117, 114, 177, 14, 24, 65, 23, 167, 116, 22, 83, 231, 24, 7, 15, 77, 223, 76, 2, 4, 192, 129, 19, 64, 8, 212, 193, 20, 224, 129, 21, 229, 28, 64, 137, 1, 21, 84, 145, 214, 160, 103, 224, 184, 101, 83, 88, 69, 19, 64, 202, 173, 113, 79, 162, 85, 197, 86, 41, 129, 22, 108, 21, 18, 36, 161, 108, 128, 79, 19, 192, 193, 27, 84, 168, 86, 128, 54, 28, 196, 65, 87, 116, 70, 41, 200, 176, 103, 148, 2, 39, 220, 165, 117, 133, 210, 37, 36, 130, 30, 68, 202, 27, 160, 129, 130, 70, 1, 20, 48, 202, 18, 0, 129, 86, 169, 56, 28, 160, 65, 237, 81, 47, 26, 152, 64, 4, 252, 170, 25, 36, 249, 21, 12, 1, 15, 128, 193, 235, 0, 193, 191, 233, 64, 17, 124, 128, 83, 24, 159, 27, 198, 1, 43, 228, 132, 145, 186, 108, 35, 132, 130, 30, 100, 193, 19, 212, 65, 217, 172, 193, 24, 184, 132, 48, 93, 158, 79, 108, 46, 74, 24, 233, 15, 92, 0, 60, 78, 65, 240, 96, 103, 170, 121, 194, 76, 124, 179, 115, 158, 225, 125, 129, 179, 130, 21, 26, 248, 80, 148, 133, 193, 199, 254, 247, 148, 193, 158, 107, 65, 18, 42, 156, 130, 40, 224, 6, 28, 45, 193, 64, 193, 24, 168, 120, 120, 169, 142, 44, 188, 130, 102, 196, 5, 30, 176, 4, 71, 196, 227, 6, 52, 129, 40, 160, 65, 38, 132, 1, 8, 136, 208, 1, 52, 192, 184, 144, 203, 197, 193, 152, 3, 184, 140, 139, 53, 64, 6, 188, 225, 197, 52, 230, 16, 149, 92, 125, 124, 106, 71, 181, 144, 72, 13, 145, 7, 60, 192, 220, 141, 193, 39, 168, 13, 25, 48, 64, 42, 70, 147, 98, 16, 27, 45, 166, 238, 18, 52, 65, 119, 72, 235, 160, 20, 65, 17, 28, 129, 44, 183, 104, 17, 184, 170, 44, 223, 134, 15, 60, 39, 116, 206, 116, 190, 25, 120, 2, 44, 64, 8, 216, 65, 207, 33, 228, 145, 37, 196, 35, 118, 186, 214, 81, 56, 25, 92, 221, 130, 54, 133, 118, 184, 86, 110, 55, 133, 79, 136, 184, 24, 40, 40, 72, 42, 147, 136, 131, 65, 22, 242, 192, 67, 85, 31, 53, 61, 144, 136, 183, 115, 16, 87, 242, 16, 80, 83, 229, 216, 64, 108, 2, 31, 98, 160, 200, 98, 40, 152, 9, 216, 100, 216, 41, 1, 26, 96, 129, 18, 208, 25, 26, 32, 57, 159, 125, 0, 8, 64, 129, 88, 199, 65, 152, 21, 10, 24, 160, 133, 17, 64, 204, 22, 184, 232, 98, 112, 0, 13, 64, 101, 27, 196, 10, 246, 82, 251, 17, 108, 254, 232, 97, 240, 0, 21, 148, 199, 20, 140, 1, 233, 44, 194, 18, 64, 46, 13, 48, 129, 92, 172, 5, 28, 216, 179, 14, 96, 103, 172, 210, 0, 25, 164, 5, 155, 232, 128, 195, 208, 64, 14, 192, 199, 211, 194, 135, 25, 98, 25, 15, 244, 109, 169, 78, 144, 10, 41, 250, 224, 137, 1, 20, 200, 198, 108, 148, 161, 55, 125, 192, 26, 6, 193, 9, 244, 192, 133, 101, 192, 247, 148, 97, 18, 50, 16, 104, 235, 1, 237, 180, 203, 44, 212, 194, 44, 148, 66, 38, 160, 129, 16, 148, 129, 25, 156, 192, 4, 12, 231, 1, 56, 64, 3, 144, 99, 223, 239, 253, 112, 186, 219, 137, 109, 88, 71, 64, 24, 6, 116, 208, 184, 44, 227, 253, 93, 42, 3, 96, 0, 15, 24, 28, 11, 185, 208, 6, 184, 1, 28, 140, 129, 39, 24, 1, 153, 120, 152, 136, 121, 128, 1, 228, 48, 27, 179, 48, 110, 134, 143, 1, 57, 193, 35, 13, 74, 18, 104, 1, 234, 107, 25, 204, 75, 46, 16, 72, 251, 15, 120, 187, 204, 156, 241, 25, 47, 192, 13, 180, 167, 237, 183, 167, 118, 0, 212, 83, 37, 196, 132, 75, 153, 173, 129, 193, 214, 115, 153, 85, 192, 145, 187, 211, 251, 24, 244, 217, 246, 16, 69, 159, 253, 89, 19, 0, 191, 55, 93, 114, 87, 241, 192, 16, 92, 30, 156, 162, 54, 47, 154, 64, 47, 38, 70, 208, 254, 34, 58, 216, 55, 45, 13, 236, 74, 25, 94, 171, 24, 68, 1, 17, 64, 87, 20, 88, 65, 224, 16, 193, 7, 116, 128, 169, 221, 59, 22, 164, 93, 243, 211, 202, 18, 152, 128, 15, 104, 249, 7, 72, 129, 51, 249, 128, 112, 181, 252, 82, 106, 120, 87, 157, 11, 64, 116, 113, 194, 3, 135, 15, 48, 103, 212, 104, 34, 245, 166, 203, 146, 34, 70, 32, 22, 41, 162, 227, 71, 14, 29, 23, 115, 136, 200, 145, 3, 7, 25, 55, 160, 64, 13, 186, 72, 131, 131, 14, 19, 65, 122, 248, 8, 242, 163, 71, 16, 19, 27, 54, 152, 16, 17, 100, 101, 16, 32, 55, 201, 180, 129, 51, 138, 76, 23, 48, 40, 133, 12, 1, 210, 132, 137, 146, 162, 76, 152, 148, 41, 3, 134, 73, 27, 38, 83, 152, 184, 233, 50, 101, 202, 145, 30, 63, 128, 200, 252, 225, 164, 73, 24, 49, 111, 200, 16, 97, 98, 37, 5, 30, 81, 157, 52, 225, 25, 211, 197, 72, 16, 13, 21, 26, 28, 144, 59, 32, 192, 128, 3, 15, 40, 136, 120, 73, 225, 193, 6, 13, 14, 24, 48, 112, 224, 224, 193, 224, 194, 128, 57, 192, 212, 176, 129, 195, 3, 199, 25, 222, 192, 41, 147, 9, 9, 155, 68, 63, 48, 108, 192, 128, 33, 67, 6, 11, 29, 30, 96, 232, 208, 65, 194, 3, 6, 16, 32, 56, 64, 125, 218, 131, 135, 8, 163, 254, 71, 127, 248, 96, 131, 7, 214, 34, 67, 134, 36, 105, 210, 132, 64, 239, 222, 1, 128, 7, 79, 144, 160, 64, 130, 26, 103, 166, 136, 201, 196, 8, 15, 30, 54, 103, 176, 136, 161, 42, 70, 58, 85, 43, 100, 206, 48, 69, 106, 197, 40, 19, 48, 98, 200, 40, 45, 227, 157, 204, 152, 48, 100, 212, 136, 65, 74, 134, 12, 24, 37, 73, 152, 136, 233, 34, 36, 200, 7, 30, 65, 120, 240, 0, 2, 102, 72, 75, 154, 65, 24, 211, 224, 131, 13, 62, 48, 65, 182, 19, 236, 163, 9, 136, 30, 122, 16, 194, 137, 160, 130, 26, 66, 8, 40, 160, 176, 66, 140, 40, 196, 200, 2, 139, 43, 156, 168, 239, 3, 51, 208, 96, 79, 12, 43, 250, 3, 227, 146, 55, 172, 64, 2, 9, 137, 108, 16, 130, 62, 26, 182, 0, 194, 141, 80, 18, 105, 66, 69, 32, 144, 0, 162, 182, 41, 144, 128, 200, 8, 32, 140, 24, 67, 33, 54, 54, 192, 193, 134, 28, 124, 216, 232, 162, 37, 153, 180, 40, 135, 49, 62, 18, 101, 144, 35, 40, 186, 136, 7, 31, 126, 192, 207, 38, 27, 85, 116, 194, 75, 6, 97, 130, 41, 39, 55, 70, 113, 99, 140, 54, 160, 0, 99, 10, 11, 193, 0, 99, 12, 49, 206, 131, 227, 141, 57, 219, 184, 164, 140, 231, 200, 152, 98, 137, 51, 212, 115, 130, 137, 38, 148, 64, 162, 7, 254, 39, 192, 40, 131, 61, 164, 122, 112, 0, 9, 48, 220, 184, 68, 148, 88, 102, 169, 165, 150, 91, 106, 121, 101, 148, 75, 218, 24, 99, 137, 30, 68, 200, 64, 191, 31, 52, 195, 171, 176, 3, 24, 112, 140, 47, 194, 6, 115, 128, 64, 191, 62, 192, 128, 175, 7, 112, 192, 228, 18, 50, 40, 115, 99, 144, 34, 48, 224, 32, 49, 152, 56, 216, 76, 87, 26, 112, 8, 54, 88, 27, 76, 160, 97, 131, 12, 116, 237, 213, 2, 11, 32, 240, 32, 176, 192, 72, 117, 13, 130, 215, 122, 3, 0, 0, 223, 128, 27, 96, 128, 225, 134, 219, 162, 57, 60, 46, 193, 163, 13, 54, 208, 16, 3, 11, 44, 166, 192, 130, 10, 44, 248, 148, 143, 61, 48, 180, 152, 226, 59, 49, 204, 51, 148, 189, 123, 217, 11, 195, 171, 56, 196, 0, 195, 138, 16, 153, 74, 2, 140, 246, 146, 0, 194, 38, 161, 244, 179, 162, 9, 6, 91, 242, 193, 96, 252, 92, 140, 88, 8, 34, 148, 168, 88, 137, 40, 152, 136, 2, 138, 247, 146, 80, 130, 8, 34, 172, 184, 226, 10, 44, 172, 240, 202, 12, 44, 148, 24, 2, 132, 15, 42, 78, 66, 224, 54, 196, 80, 162, 12, 76, 163, 160, 66, 137, 45, 142, 72, 66, 136, 6, 109, 40, 2, 136, 157, 22, 249, 65, 104, 28, 52, 18, 65, 132, 36, 149, 212, 33, 7, 49, 60, 97, 133, 254, 140, 34, 129, 197, 97, 35, 139, 148, 110, 146, 234, 51, 102, 44, 19, 163, 12, 114, 48, 194, 9, 220, 122, 0, 98, 8, 36, 192, 238, 129, 7, 19, 196, 30, 2, 41, 37, 220, 104, 227, 13, 81, 50, 57, 113, 206, 51, 222, 192, 99, 206, 69, 78, 188, 68, 111, 65, 48, 189, 132, 237, 69, 222, 192, 26, 13, 55, 250, 101, 131, 170, 37, 196, 40, 163, 13, 55, 224, 32, 3, 9, 38, 130, 0, 97, 138, 99, 75, 235, 235, 3, 32, 148, 200, 233, 18, 83, 72, 129, 84, 150, 89, 94, 153, 229, 22, 90, 88, 89, 164, 141, 50, 166, 16, 65, 2, 7, 226, 42, 192, 0, 185, 14, 72, 13, 131, 179, 23, 235, 53, 87, 17, 50, 209, 228, 140, 81, 150, 112, 3, 19, 35, 114, 213, 76, 130, 92, 47, 128, 41, 3, 94, 143, 61, 30, 7, 99, 133, 13, 118, 3, 99, 143, 205, 225, 130, 233, 37, 144, 192, 130, 7, 32, 80, 192, 90, 107, 9, 184, 150, 0, 224, 8, 160, 43, 1, 15, 184, 128, 163, 141, 54, 206, 64, 3, 143, 52, 210, 56, 227, 140, 246, 207, 61, 3, 102, 122, 163, 107, 175, 95, 55, 233, 53, 195, 140, 156, 218, 32, 67, 12, 51, 206, 112, 47, 126, 21, 138, 61, 80, 32, 202, 121, 192, 128, 4, 27, 173, 77, 8, 74, 80, 67, 24, 148, 0, 168, 138, 53, 33, 9, 81, 136, 130, 254, 203, 44, 24, 5, 37, 64, 193, 130, 20, 210, 24, 7, 161, 80, 148, 247, 124, 231, 10, 30, 140, 194, 20, 60, 230, 132, 19, 84, 224, 3, 137, 67, 25, 110, 148, 208, 166, 54, 232, 1, 12, 55, 241, 217, 19, 164, 128, 132, 28, 210, 0, 9, 110, 16, 197, 34, 126, 20, 172, 141, 136, 64, 7, 18, 41, 34, 149, 142, 80, 6, 77, 148, 98, 12, 137, 33, 9, 7, 104, 144, 1, 26, 68, 177, 6, 23, 16, 193, 17, 214, 96, 17, 42, 65, 73, 20, 163, 128, 131, 212, 140, 198, 18, 32, 56, 225, 37, 40, 9, 155, 18, 28, 100, 48, 39, 128, 7, 59, 109, 16, 68, 27, 6, 1, 55, 189, 233, 205, 109, 122, 195, 131, 30, 0, 135, 183, 57, 194, 225, 18, 83, 64, 3, 187, 228, 135, 7, 55, 160, 33, 110, 115, 18, 3, 214, 220, 224, 134, 230, 32, 69, 8, 42, 104, 131, 19, 68, 64, 1, 13, 76, 32, 3, 14, 216, 76, 6, 48, 240, 128, 12, 44, 134, 7, 61, 104, 194, 20, 20, 135, 135, 76, 144, 34, 82, 147, 194, 69, 45, 98, 1, 55, 51, 41, 1, 84, 153, 217, 139, 171, 28, 19, 26, 70, 92, 2, 12, 158, 104, 3, 35, 52, 193, 132, 11, 216, 14, 147, 186, 146, 192, 5, 132, 149, 60, 229, 21, 196, 7, 194, 18, 1, 99, 46, 137, 3, 41, 22, 41, 88, 52, 176, 1, 13, 254, 182, 23, 77, 239, 125, 143, 46, 54, 88, 195, 33, 197, 208, 62, 81, 194, 1, 15, 104, 64, 31, 117, 192, 137, 29, 67, 245, 15, 78, 113, 120, 67, 136, 226, 208, 63, 52, 196, 193, 127, 100, 216, 223, 189, 244, 197, 158, 56, 104, 231, 93, 28, 139, 130, 21, 160, 144, 4, 40, 184, 211, 12, 97, 176, 96, 197, 44, 88, 193, 36, 12, 33, 160, 24, 203, 216, 218, 46, 246, 207, 247, 88, 40, 12, 33, 171, 144, 21, 240, 57, 132, 13, 80, 224, 3, 29, 155, 66, 24, 192, 0, 5, 220, 224, 68, 12, 113, 232, 39, 26, 109, 112, 130, 160, 212, 64, 8, 100, 90, 196, 82, 152, 128, 132, 37, 40, 205, 71, 70, 184, 200, 17, 142, 48, 6, 79, 140, 162, 12, 5, 105, 230, 6, 46, 208, 25, 163, 73, 109, 3, 75, 248, 1, 7, 142, 41, 6, 31, 142, 130, 13, 34, 80, 230, 5, 126, 176, 4, 64, 113, 201, 9, 6, 3, 194, 49, 53, 32, 130, 38, 160, 33, 50, 112, 128, 131, 32, 228, 36, 10, 77, 232, 237, 13, 151, 144, 211, 37, 24, 177, 136, 69, 108, 226, 13, 122, 152, 35, 166, 18, 233, 137, 75, 92, 10, 20, 94, 61, 195, 34, 240, 0, 184, 54, 196, 245, 18, 139, 200, 196, 40, 226, 160, 209, 178, 172, 101, 9, 93, 0, 194, 15, 68, 144, 159, 206, 72, 64, 3, 15, 208, 128, 4, 50, 254, 32, 1, 28, 216, 4, 8, 62, 64, 214, 6, 112, 116, 157, 55, 220, 53, 22, 146, 202, 5, 46, 104, 65, 139, 85, 148, 66, 19, 139, 64, 142, 17, 136, 198, 136, 77, 48, 161, 61, 112, 192, 4, 19, 32, 192, 128, 6, 148, 102, 120, 213, 147, 192, 6, 140, 42, 130, 41, 210, 128, 7, 70, 45, 166, 16, 147, 116, 188, 228, 93, 128, 36, 140, 217, 101, 20, 165, 185, 189, 238, 253, 134, 1, 101, 80, 100, 115, 196, 26, 87, 243, 161, 97, 19, 153, 128, 235, 184, 216, 192, 6, 236, 220, 43, 113, 100, 128, 131, 25, 60, 138, 6, 237, 246, 147, 187, 214, 109, 67, 136, 194, 112, 133, 126, 69, 225, 9, 250, 132, 147, 203, 134, 0, 133, 50, 104, 33, 9, 255, 10, 3, 7, 117, 134, 65, 33, 68, 65, 8, 58, 35, 130, 203, 36, 88, 20, 11, 174, 109, 99, 186, 17, 175, 200, 0, 44, 50, 11, 2, 225, 3, 39, 184, 88, 197, 216, 228, 30, 178, 237, 108, 8, 62, 177, 170, 25, 146, 224, 3, 14, 252, 192, 13, 158, 72, 4, 118, 204, 112, 72, 44, 44, 65, 79, 48, 245, 240, 17, 200, 0, 10, 38, 194, 246, 121, 193, 170, 65, 176, 52, 2, 132, 28, 32, 65, 79, 194, 50, 238, 40, 136, 74, 3, 31, 20, 19, 9, 83, 233, 81, 142, 110, 194, 131, 182, 220, 103, 38, 67, 0, 131, 249, 228, 228, 254, 198, 80, 108, 117, 142, 58, 9, 87, 34, 148, 59, 199, 77, 96, 130, 155, 101, 48, 197, 37, 50, 241, 134, 69, 132, 66, 20, 137, 188, 4, 27, 220, 128, 229, 184, 118, 181, 76, 80, 72, 3, 29, 22, 209, 133, 167, 68, 112, 9, 101, 110, 194, 18, 88, 217, 131, 13, 4, 33, 47, 20, 184, 201, 18, 218, 132, 3, 205, 108, 160, 1, 216, 51, 85, 174, 78, 242, 184, 49, 168, 225, 18, 165, 88, 69, 44, 104, 33, 169, 90, 152, 226, 13, 164, 213, 194, 157, 164, 130, 4, 39, 20, 19, 3, 213, 107, 64, 169, 126, 153, 43, 206, 200, 54, 152, 68, 43, 18, 78, 161, 120, 60, 93, 97, 114, 151, 140, 9, 46, 247, 190, 7, 28, 27, 12, 98, 144, 135, 100, 220, 114, 209, 39, 39, 171, 166, 97, 186, 98, 112, 91, 136, 192, 115, 63, 48, 112, 225, 60, 104, 96, 53, 25, 60, 74, 157, 92, 103, 180, 77, 41, 107, 2, 20, 96, 166, 224, 46, 188, 119, 8, 79, 72, 131, 63, 227, 75, 132, 11, 6, 84, 8, 97, 232, 69, 39, 174, 208, 132, 128, 86, 240, 131, 32, 228, 32, 173, 245, 117, 5, 125, 193, 233, 189, 51, 88, 25, 70, 251, 155, 4, 34, 52, 1, 55, 84, 176, 194, 199, 122, 128, 131, 26, 32, 97, 159, 134, 220, 137, 30, 148, 96, 33, 0, 190, 47, 195, 24, 101, 194, 18, 142, 176, 4, 254, 50, 204, 116, 12, 97, 251, 235, 70, 228, 12, 172, 12, 132, 209, 8, 128, 197, 1, 15, 202, 0, 7, 81, 128, 130, 13, 62, 40, 130, 50, 125, 192, 4, 45, 20, 5, 205, 57, 178, 9, 50, 23, 131, 132, 67, 90, 181, 109, 111, 219, 234, 156, 244, 80, 39, 179, 206, 81, 145, 155, 160, 43, 25, 222, 80, 97, 211, 185, 33, 185, 115, 205, 68, 38, 54, 113, 9, 82, 172, 66, 19, 119, 245, 4, 28, 172, 144, 136, 52, 224, 1, 9, 157, 50, 129, 6, 76, 64, 129, 19, 248, 64, 4, 39, 136, 237, 143, 150, 0, 4, 221, 156, 129, 13, 96, 16, 193, 130, 130, 32, 0, 9, 28, 0, 3, 13, 120, 149, 105, 248, 194, 153, 205, 228, 74, 63, 72, 8, 131, 89, 201, 173, 99, 48, 116, 65, 20, 183, 208, 197, 49, 140, 145, 11, 91, 172, 194, 19, 140, 48, 83, 85, 126, 128, 3, 13, 116, 102, 238, 156, 217, 237, 5, 92, 235, 152, 72, 115, 64, 138, 163, 145, 102, 247, 188, 7, 156, 4, 20, 193, 39, 232, 194, 194, 183, 236, 230, 134, 186, 1, 121, 144, 139, 63, 95, 120, 18, 55, 246, 177, 203, 107, 12, 100, 64, 195, 117, 195, 16, 34, 50, 132, 161, 159, 92, 24, 88, 123, 152, 0, 133, 243, 112, 190, 132, 94, 161, 111, 24, 224, 208, 80, 14, 94, 80, 160, 22, 20, 194, 21, 232, 96, 134, 43, 254, 144, 23, 160, 28, 156, 61, 20, 176, 160, 177, 40, 128, 161, 159, 1, 14, 153, 200, 136, 160, 130, 19, 252, 83, 99, 69, 209, 89, 80, 44, 132, 134, 40, 252, 64, 7, 53, 168, 65, 2, 28, 240, 1, 8, 214, 9, 14, 104, 184, 130, 21, 206, 101, 134, 52, 232, 15, 128, 102, 24, 195, 192, 76, 193, 147, 177, 129, 54, 7, 93, 232, 130, 23, 92, 202, 145, 96, 25, 97, 10, 56, 192, 10, 148, 70, 33, 10, 53, 0, 139, 7, 52, 32, 188, 79, 2, 117, 35, 28, 9, 225, 36, 48, 9, 130, 192, 188, 233, 13, 216, 0, 15, 70, 65, 19, 4, 193, 172, 4, 225, 12, 174, 202, 13, 230, 64, 174, 222, 64, 86, 244, 134, 143, 200, 64, 144, 6, 176, 230, 210, 34, 19, 64, 33, 20, 244, 102, 20, 56, 203, 19, 68, 193, 150, 200, 96, 14, 178, 192, 13, 80, 200, 9, 84, 106, 9, 140, 32, 9, 146, 174, 7, 70, 96, 3, 8, 107, 2, 34, 9, 43, 216, 32, 172, 202, 160, 71, 154, 224, 36, 128, 74, 146, 34, 0, 47, 24, 0, 3, 28, 32, 8, 124, 64, 8, 100, 171, 85, 54, 0, 2, 124, 160, 13, 48, 65, 9, 54, 224, 1, 68, 64, 11, 114, 96, 118, 188, 67, 13, 4, 65, 33, 68, 103, 23, 156, 161, 26, 156, 225, 24, 110, 65, 22, 88, 33, 20, 26, 193, 76, 188, 224, 8, 226, 254, 142, 49, 50, 0, 239, 36, 128, 2, 58, 35, 13, 161, 8, 154, 184, 7, 212, 174, 37, 0, 8, 224, 1, 202, 32, 10, 38, 43, 119, 154, 75, 111, 224, 234, 156, 102, 200, 170, 224, 96, 14, 220, 74, 243, 192, 192, 43, 54, 111, 219, 248, 201, 157, 216, 163, 113, 54, 239, 251, 204, 160, 13, 204, 0, 162, 2, 145, 12, 242, 201, 130, 244, 5, 10, 132, 0, 12, 226, 224, 189, 52, 198, 12, 184, 192, 40, 184, 64, 11, 56, 168, 188, 158, 192, 160, 54, 6, 162, 86, 175, 132, 58, 136, 243, 178, 77, 219, 244, 69, 95, 132, 0, 4, 158, 32, 163, 56, 200, 99, 54, 72, 66, 98, 72, 245, 192, 32, 7, 106, 192, 2, 18, 96, 0, 34, 224, 4, 144, 32, 115, 80, 47, 17, 224, 10, 13, 176, 175, 10, 170, 96, 251, 174, 32, 11, 206, 3, 20, 68, 1, 14, 70, 100, 10, 186, 0, 9, 142, 96, 10, 226, 64, 11, 148, 198, 9, 140, 96, 81, 106, 106, 121, 20, 71, 20, 68, 97, 13, 130, 9, 178, 20, 72, 69, 110, 164, 7, 140, 224, 152, 56, 64, 3, 22, 163, 7, 188, 43, 203, 6, 33, 20, 50, 1, 171, 186, 234, 171, 236, 134, 143, 140, 204, 110, 228, 145, 143, 154, 227, 18, 152, 81, 20, 194, 138, 20, 72, 1, 174, 64, 33, 22, 10, 144, 20, 60, 33, 68, 54, 225, 9, 224, 0, 12, 254, 206, 241, 169, 204, 230, 108, 132, 70, 108, 6, 5, 7, 128, 192, 83, 120, 96, 10, 20, 73, 209, 110, 162, 47, 34, 64, 206, 240, 227, 62, 214, 76, 3, 22, 4, 9, 76, 160, 147, 48, 64, 4, 14, 192, 9, 6, 39, 80, 138, 4, 12, 216, 160, 146, 112, 96, 9, 126, 73, 87, 138, 228, 7, 212, 70, 113, 46, 1, 19, 70, 33, 208, 142, 161, 25, 124, 82, 11, 95, 129, 20, 62, 193, 57, 188, 64, 11, 142, 160, 8, 50, 194, 51, 44, 128, 13, 131, 235, 55, 8, 224, 3, 72, 102, 2, 221, 39, 125, 220, 135, 100, 184, 3, 10, 228, 36, 50, 210, 192, 124, 116, 34, 128, 224, 100, 243, 150, 226, 60, 206, 196, 13, 212, 224, 157, 190, 242, 251, 124, 98, 43, 101, 79, 16, 253, 37, 219, 202, 128, 131, 70, 143, 66, 46, 6, 41, 160, 192, 19, 205, 175, 59, 66, 239, 161, 240, 233, 250, 40, 132, 66, 196, 44, 95, 188, 98, 21, 245, 197, 12, 158, 0, 4, 132, 160, 159, 48, 10, 159, 92, 134, 8, 212, 38, 80, 130, 194, 9, 24, 35, 2, 40, 64, 232, 130, 0, 247, 172, 224, 9, 84, 224, 3, 132, 192, 10, 102, 72, 15, 246, 128, 14, 64, 51, 156, 76, 1, 20, 174, 75, 251, 210, 64, 58, 246, 4, 10, 240, 45, 27, 155, 192, 252, 142, 9, 225, 102, 68, 20, 154, 232, 177, 10, 2, 254, 8, 124, 134, 7, 236, 78, 63, 252, 227, 37, 120, 0, 9, 174, 163, 43, 241, 0, 20, 62, 33, 17, 178, 82, 39, 240, 64, 213, 230, 196, 13, 150, 35, 230, 24, 167, 20, 74, 33, 20, 64, 66, 20, 66, 129, 20, 106, 14, 3, 151, 67, 33, 68, 225, 19, 12, 242, 124, 46, 225, 9, 208, 224, 77, 88, 12, 43, 120, 192, 9, 112, 192, 9, 122, 32, 47, 78, 114, 4, 6, 130, 42, 22, 103, 12, 140, 96, 83, 130, 0, 2, 48, 224, 0, 40, 224, 0, 118, 208, 146, 34, 64, 3, 56, 224, 107, 2, 5, 71, 204, 209, 7, 186, 128, 113, 84, 144, 9, 3, 20, 84, 150, 64, 16, 126, 32, 3, 226, 46, 88, 50, 64, 206, 142, 231, 65, 215, 12, 72, 150, 0, 74, 22, 1, 20, 94, 193, 22, 108, 33, 23, 142, 33, 23, 212, 206, 22, 88, 161, 17, 6, 97, 13, 188, 224, 211, 126, 163, 46, 140, 32, 58, 228, 7, 13, 216, 192, 124, 218, 198, 170, 218, 32, 13, 188, 137, 12, 210, 128, 172, 170, 202, 124, 240, 69, 95, 202, 0, 60, 248, 164, 127, 198, 160, 242, 16, 209, 127, 196, 195, 222, 172, 160, 12, 194, 96, 226, 140, 162, 66, 54, 198, 80, 222, 235, 215, 210, 100, 214, 188, 96, 42, 144, 130, 46, 69, 47, 163, 240, 105, 44, 188, 195, 10, 232, 178, 71, 179, 45, 48, 81, 49, 10, 102, 254, 64, 8, 184, 0, 49, 49, 241, 72, 223, 195, 99, 128, 192, 6, 8, 68, 8, 62, 32, 2, 102, 128, 14, 134, 64, 188, 176, 224, 4, 78, 64, 66, 26, 132, 8, 194, 96, 14, 244, 128, 19, 56, 97, 14, 156, 145, 25, 173, 79, 127, 194, 171, 132, 224, 36, 16, 153, 64, 8, 140, 64, 9, 166, 192, 7, 96, 130, 81, 226, 175, 166, 126, 192, 7, 120, 224, 88, 252, 79, 75, 28, 198, 7, 126, 110, 49, 54, 224, 62, 134, 64, 39, 220, 0, 229, 10, 80, 16, 78, 237, 170, 234, 138, 15, 191, 42, 17, 248, 70, 78, 74, 225, 21, 86, 129, 20, 70, 1, 32, 73, 129, 31, 227, 15, 20, 150, 200, 19, 60, 1, 19, 60, 65, 19, 198, 133, 14, 102, 0, 14, 216, 96, 12, 166, 160, 71, 215, 162, 12, 186, 0, 117, 178, 100, 4, 112, 128, 146, 36, 224, 38, 216, 0, 19, 216, 128, 195, 166, 192, 8, 244, 195, 4, 212, 140, 7, 52, 96, 51, 24, 32, 3, 26, 160, 62, 204, 102, 3, 212, 172, 224, 166, 192, 116, 134, 192, 13, 50, 0, 8, 160, 164, 8, 20, 148, 17, 206, 17, 84, 104, 0, 176, 142, 160, 224, 124, 10, 43, 126, 0, 34, 80, 140, 153, 138, 196, 7, 140, 160, 9, 192, 64, 13, 220, 128, 17, 64, 129, 20, 100, 193, 22, 110, 129, 68, 67, 141, 1, 148, 243, 172, 234, 202, 142, 254, 170, 42, 145, 30, 111, 78, 34, 195, 109, 222, 224, 187, 212, 96, 41, 114, 52, 113, 232, 101, 12, 136, 212, 80, 232, 166, 127, 194, 35, 12, 226, 64, 41, 218, 100, 41, 152, 162, 98, 180, 64, 59, 206, 35, 242, 148, 130, 61, 42, 175, 12, 184, 99, 131, 250, 146, 66, 96, 177, 101, 161, 0, 42, 68, 79, 95, 162, 64, 246, 184, 139, 102, 93, 68, 18, 223, 203, 101, 244, 105, 103, 137, 192, 69, 104, 226, 3, 102, 224, 4, 58, 64, 5, 178, 96, 8, 40, 70, 77, 39, 68, 220, 38, 102, 6, 158, 224, 9, 180, 207, 15, 201, 96, 173, 206, 64, 22, 67, 6, 11, 250, 105, 67, 178, 224, 100, 134, 224, 94, 197, 136, 81, 152, 145, 12, 0, 132, 182, 238, 195, 38, 90, 130, 49, 62, 32, 8, 126, 177, 9, 188, 196, 45, 214, 177, 41, 60, 98, 20, 212, 10, 200, 184, 179, 113, 30, 48, 143, 24, 71, 92, 246, 173, 20, 64, 2, 3, 71, 65, 3, 51, 193, 19, 150, 3, 15, 66, 129, 179, 48, 80, 19, 164, 43, 17, 178, 0, 14, 178, 44, 94, 250, 138, 197, 166, 96, 13, 216, 32, 74, 27, 130, 71, 186, 96, 100, 219, 166, 71, 142, 137, 62, 31, 160, 87, 102, 66, 63, 212, 214, 147, 84, 228, 7, 78, 2, 86, 30, 0, 8, 188, 10, 9, 240, 160, 7, 162, 66, 16, 140, 224, 2, 128, 128, 254, 17, 22, 173, 33, 56, 140, 253, 140, 32, 7, 142, 160, 182, 110, 183, 8, 154, 160, 8, 96, 10, 7, 140, 224, 225, 130, 5, 168, 160, 40, 76, 140, 196, 7, 144, 160, 41, 177, 197, 4, 24, 86, 241, 236, 166, 110, 34, 163, 171, 64, 245, 121, 85, 45, 157, 234, 168, 83, 49, 170, 60, 98, 205, 70, 239, 229, 157, 212, 192, 127, 42, 79, 187, 202, 35, 12, 114, 20, 75, 141, 98, 18, 229, 45, 188, 68, 175, 12, 42, 47, 60, 80, 42, 244, 242, 146, 214, 174, 128, 74, 41, 164, 74, 145, 226, 59, 4, 147, 219, 194, 96, 19, 85, 96, 190, 110, 207, 130, 202, 107, 159, 242, 73, 98, 132, 224, 75, 103, 64, 54, 158, 224, 99, 148, 224, 4, 130, 96, 8, 176, 32, 129, 149, 192, 12, 248, 128, 15, 116, 181, 10, 158, 160, 10, 126, 98, 12, 84, 205, 25, 255, 100, 8, 54, 8, 11, 178, 64, 67, 144, 128, 8, 112, 175, 102, 141, 139, 202, 200, 160, 9, 110, 34, 199, 244, 195, 8, 34, 70, 108, 84, 164, 7, 236, 99, 205, 82, 2, 115, 250, 135, 76, 60, 65, 0, 21, 208, 124, 188, 10, 229, 46, 129, 113, 234, 74, 24, 23, 129, 13, 20, 226, 21, 140, 152, 20, 22, 46, 19, 108, 149, 202, 64, 98, 20, 150, 227, 86, 211, 9, 15, 22, 55, 59, 128, 149, 13, 214, 96, 45, 204, 15, 27, 227, 254, 21, 71, 176, 49, 9, 62, 98, 17, 214, 130, 109, 41, 128, 206, 40, 64, 48, 28, 128, 115, 1, 68, 108, 42, 230, 113, 84, 68, 199, 30, 54, 92, 123, 160, 11, 192, 106, 10, 206, 117, 9, 98, 210, 8, 242, 13, 9, 158, 84, 11, 188, 160, 143, 195, 112, 26, 127, 192, 119, 131, 197, 7, 128, 201, 4, 20, 75, 206, 102, 44, 106, 116, 37, 154, 170, 37, 212, 6, 160, 9, 162, 23, 172, 194, 229, 172, 14, 16, 174, 234, 145, 15, 207, 7, 14, 210, 224, 124, 16, 179, 159, 218, 55, 13, 248, 20, 95, 68, 164, 94, 194, 224, 77, 152, 66, 189, 198, 35, 130, 98, 200, 12, 102, 118, 16, 161, 128, 11, 112, 45, 150, 205, 224, 45, 59, 8, 10, 68, 102, 127, 77, 145, 66, 198, 2, 75, 29, 177, 77, 210, 132, 124, 223, 107, 128, 231, 171, 77, 144, 2, 9, 116, 99, 96, 202, 32, 80, 30, 164, 69, 108, 160, 69, 228, 52, 128, 23, 248, 4, 122, 224, 192, 68, 143, 14, 248, 32, 11, 112, 72, 6, 234, 128, 68, 212, 67, 8, 124, 243, 242, 248, 84, 61, 146, 96, 132, 141, 162, 102, 181, 111, 150, 219, 96, 225, 218, 64, 95, 40, 151, 226, 170, 96, 6, 102, 0, 6, 162, 96, 55, 154, 170, 7, 94, 162, 90, 57, 0, 9, 110, 88, 86, 31, 54, 70, 231, 42, 112, 186, 234, 56, 221, 0, 107, 254, 22, 1, 14, 206, 128, 25, 89, 21, 32, 141, 184, 112, 75, 65, 20, 88, 117, 20, 64, 65, 137, 107, 149, 127, 232, 64, 15, 198, 0, 9, 80, 66, 4, 156, 224, 7, 168, 2, 26, 245, 100, 80, 164, 85, 4, 32, 130, 229, 216, 64, 69, 184, 85, 4, 178, 228, 97, 34, 213, 4, 34, 0, 55, 121, 128, 3, 34, 85, 36, 33, 11, 8, 186, 160, 250, 132, 224, 13, 128, 96, 9, 46, 65, 16, 198, 160, 60, 25, 193, 11, 68, 90, 4, 48, 224, 117, 129, 183, 8, 180, 0, 5, 203, 236, 252, 188, 96, 12, 190, 96, 26, 125, 234, 33, 140, 42, 7, 54, 64, 104, 104, 32, 7, 22, 20, 212, 74, 116, 91, 30, 25, 171, 204, 199, 10, 170, 64, 57, 155, 107, 19, 244, 64, 78, 244, 32, 122, 229, 132, 113, 30, 79, 68, 216, 72, 70, 185, 215, 125, 61, 86, 41, 176, 20, 149, 67, 40, 132, 124, 57, 47, 3, 49, 188, 0, 85, 21, 227, 128, 157, 226, 96, 157, 246, 215, 130, 174, 128, 11, 68, 70, 176, 5, 44, 10, 102, 15, 159, 66, 200, 10, 2, 17, 73, 223, 43, 163, 32, 72, 8, 128, 64, 11, 204, 175, 40, 184, 100, 96, 30, 27, 178, 131, 64, 164, 92, 36, 109, 165, 64, 244, 208, 40, 98, 36, 132, 98, 162, 32, 132, 175, 32, 20, 175, 175, 42, 137, 192, 108, 78, 194, 199, 218, 32, 254, 17, 78, 132, 12, 250, 179, 98, 254, 39, 12, 210, 249, 230, 184, 175, 247, 16, 251, 9, 96, 160, 14, 238, 224, 130, 154, 0, 64, 22, 227, 36, 194, 198, 9, 202, 35, 142, 60, 97, 136, 87, 180, 142, 26, 167, 81, 204, 39, 112, 220, 198, 124, 68, 161, 20, 72, 161, 20, 32, 154, 186, 187, 72, 110, 71, 97, 21, 228, 22, 19, 108, 21, 19, 200, 128, 13, 202, 106, 1, 19, 9, 117, 88, 108, 42, 218, 181, 169, 200, 134, 42, 202, 0, 145, 174, 120, 9, 50, 195, 0, 76, 67, 50, 49, 96, 64, 178, 66, 69, 82, 42, 9, 218, 226, 7, 38, 0, 8, 166, 186, 160, 135, 0, 14, 134, 96, 10, 24, 129, 17, 198, 160, 72, 126, 154, 253, 216, 162, 11, 226, 117, 9, 112, 23, 9, 112, 224, 8, 254, 74, 12, 141, 186, 107, 180, 192, 8, 180, 192, 40, 249, 248, 7, 142, 128, 13, 154, 250, 6, 156, 15, 171, 75, 52, 0, 44, 64, 11, 216, 195, 155, 210, 0, 12, 230, 160, 230, 98, 174, 172, 241, 176, 172, 93, 52, 173, 203, 3, 94, 98, 200, 157, 228, 164, 61, 136, 148, 148, 45, 4, 44, 185, 109, 126, 5, 211, 131, 48, 81, 219, 100, 15, 219, 194, 64, 13, 216, 137, 61, 204, 192, 176, 185, 64, 244, 244, 231, 10, 100, 47, 131, 238, 169, 218, 180, 77, 219, 238, 26, 10, 124, 226, 178, 251, 254, 82, 131, 18, 88, 96, 48, 145, 105, 11, 88, 8, 52, 251, 255, 120, 79, 163, 92, 132, 49, 131, 226, 105, 71, 166, 180, 251, 139, 8, 50, 44, 10, 128, 14, 8, 126, 118, 103, 76, 192, 199, 182, 50, 17, 6, 9, 61, 190, 175, 13, 56, 235, 186, 232, 32, 202, 69, 102, 68, 74, 187, 77, 179, 192, 40, 250, 195, 37, 212, 17, 147, 216, 81, 168, 100, 245, 194, 20, 251, 32, 232, 132, 143, 24, 183, 12, 22, 198, 184, 110, 9, 198, 64, 129, 3, 255, 150, 86, 97, 44, 112, 105, 21, 19, 4, 65, 112, 125, 148, 14, 24, 215, 13, 10, 37, 186, 246, 44, 186, 216, 32, 26, 129, 36, 94, 223, 19, 26, 141, 75, 41, 196, 70, 4, 122, 64, 87, 58, 128, 48, 232, 147, 1, 34, 181, 37, 134, 128, 109, 151, 192, 9, 206, 111, 12, 4, 97, 17, 146, 160, 13, 148, 64, 167, 23, 65, 13, 130, 5, 15, 186, 192, 7, 156, 64, 12, 139, 178, 11, 206, 224, 11, 174, 184, 11, 190, 160, 42, 208, 143, 119, 173, 250, 8, 128, 37, 238, 114, 0, 223, 190, 64, 18, 132, 65, 24, 130, 97, 18, 8, 1, 196, 235, 98, 56, 30, 160, 78, 244, 102, 19, 76, 65, 19, 216, 93, 171, 76, 65, 15, 240, 32, 45, 4, 105, 113, 232, 253, 124, 218, 128, 200, 225, 196, 39, 216, 232, 186, 68, 196, 43, 168, 131, 72, 254, 177, 107, 48, 87, 17, 200, 87, 15, 10, 184, 79, 188, 196, 64, 202, 207, 3, 61, 226, 224, 123, 223, 242, 174, 221, 137, 243, 154, 188, 131, 12, 187, 224, 13, 27, 176, 77, 145, 217, 230, 203, 132, 18, 106, 21, 203, 235, 248, 90, 68, 8, 66, 42, 8, 136, 160, 163, 192, 32, 66, 36, 196, 69, 146, 64, 10, 66, 56, 11, 42, 4, 11, 144, 143, 8, 100, 195, 4, 78, 128, 8, 158, 64, 8, 82, 192, 69, 64, 0, 65, 130, 160, 9, 66, 176, 171, 200, 82, 19, 60, 1, 182, 197, 235, 52, 55, 4, 21, 3, 85, 176, 163, 32, 181, 79, 194, 4, 156, 158, 7, 134, 224, 123, 63, 194, 19, 4, 129, 13, 92, 45, 203, 18, 193, 222, 27, 86, 61, 198, 130, 87, 9, 208, 27, 57, 112, 186, 45, 29, 198, 192, 254, 137, 51, 161, 12, 176, 128, 125, 218, 96, 17, 204, 100, 13, 36, 251, 113, 150, 192, 10, 208, 172, 204, 168, 130, 33, 45, 23, 203, 150, 66, 71, 52, 32, 63, 24, 203, 158, 235, 27, 8, 143, 231, 231, 128, 64, 2, 130, 160, 8, 122, 199, 111, 38, 183, 9, 22, 161, 234, 219, 149, 17, 212, 192, 119, 143, 192, 7, 28, 194, 194, 143, 96, 11, 186, 224, 8, 250, 24, 218, 191, 192, 11, 68, 180, 143, 37, 162, 9, 164, 230, 8, 190, 224, 15, 16, 193, 18, 138, 97, 25, 80, 31, 254, 56, 222, 48, 0, 184, 37, 1, 104, 0, 19, 54, 161, 185, 216, 125, 246, 217, 253, 229, 210, 96, 228, 152, 67, 241, 24, 167, 83, 223, 128, 79, 225, 224, 123, 193, 55, 71, 1, 136, 186, 128, 89, 95, 142, 109, 16, 223, 43, 219, 62, 209, 130, 244, 167, 92, 218, 228, 99, 27, 62, 39, 164, 43, 188, 26, 42, 176, 109, 118, 246, 0, 172, 102, 1, 91, 246, 84, 49, 219, 156, 252, 230, 203, 75, 131, 146, 0, 20, 157, 156, 190, 34, 198, 6, 224, 57, 98, 146, 64, 188, 206, 13, 105, 131, 226, 190, 46, 88, 10, 228, 31, 106, 211, 64, 220, 12, 187, 7, 68, 106, 160, 92, 68, 134, 191, 52, 129, 123, 64, 5, 0, 162, 71, 146, 33, 76, 200, 40, 97, 34, 106, 19, 28, 49, 98, 172, 76, 97, 104, 38, 141, 153, 44, 105, 174, 132, 49, 115, 229, 138, 152, 43, 80, 136, 244, 8, 98, 162, 7, 152, 50, 110, 64, 121, 186, 4, 134, 9, 67, 54, 111, 224, 184, 196, 227, 166, 141, 146, 38, 76, 192, 180, 137, 115, 201, 211, 39, 79, 158, 66, 137, 218, 201, 51, 19, 38, 158, 61, 19, 241, 20, 51, 37, 141, 30, 56, 130, 154, 46, 114, 163, 70, 13, 155, 46, 101, 166, 240, 48, 97, 226, 199, 143, 37, 75, 186, 176, 193, 195, 72, 40, 28, 32, 26, 32, 56, 56, 224, 128, 130, 3, 13, 24, 128, 254, 4, 105, 114, 48, 73, 18, 36, 61, 140, 108, 248, 129, 3, 71, 155, 69, 83, 206, 76, 49, 242, 116, 144, 214, 65, 106, 188, 140, 25, 179, 196, 203, 146, 35, 94, 140, 52, 105, 226, 227, 136, 145, 28, 90, 140, 48, 62, 162, 197, 139, 150, 204, 93, 150, 124, 41, 132, 8, 145, 165, 98, 193, 150, 45, 211, 96, 129, 0, 129, 0, 9, 90, 47, 72, 80, 132, 209, 165, 75, 155, 50, 109, 170, 173, 73, 83, 38, 219, 180, 49, 205, 185, 212, 210, 101, 27, 50, 100, 210, 92, 114, 3, 39, 14, 113, 226, 102, 200, 156, 49, 51, 134, 76, 28, 51, 97, 136, 95, 12, 131, 93, 76, 24, 139, 212, 183, 71, 185, 18, 101, 251, 149, 52, 100, 168, 131, 9, 51, 198, 140, 26, 65, 55, 177, 127, 191, 146, 133, 203, 21, 58, 25, 175, 200, 175, 159, 81, 254, 123, 40, 81, 250, 63, 233, 223, 223, 12, 66, 68, 193, 159, 16, 79, 60, 33, 197, 127, 224, 69, 241, 4, 17, 6, 10, 33, 133, 128, 66, 36, 209, 223, 118, 68, 60, 33, 225, 129, 82, 100, 33, 69, 20, 88, 60, 97, 96, 71, 81, 112, 33, 196, 7, 31, 152, 48, 195, 9, 66, 244, 208, 131, 16, 39, 156, 248, 129, 10, 6, 62, 65, 16, 18, 20, 12, 1, 134, 24, 110, 204, 6, 71, 27, 102, 96, 97, 69, 142, 102, 12, 217, 29, 126, 87, 96, 254, 129, 133, 70, 97, 184, 193, 147, 32, 97, 116, 193, 4, 20, 96, 168, 33, 134, 77, 45, 181, 17, 70, 74, 101, 180, 113, 70, 38, 163, 124, 41, 10, 79, 64, 97, 66, 38, 153, 140, 8, 50, 200, 80, 103, 40, 145, 198, 27, 111, 44, 50, 136, 27, 114, 150, 97, 196, 20, 94, 185, 81, 198, 24, 157, 33, 209, 5, 18, 153, 141, 241, 133, 18, 60, 184, 69, 40, 15, 60, 124, 240, 128, 6, 7, 96, 224, 192, 6, 20, 240, 16, 68, 15, 72, 0, 161, 132, 19, 101, 104, 198, 6, 28, 74, 156, 1, 6, 96, 110, 8, 114, 132, 15, 80, 21, 113, 68, 19, 70, 108, 230, 5, 27, 107, 172, 170, 197, 24, 90, 96, 118, 4, 101, 70, 252, 16, 107, 14, 71, 252, 160, 195, 103, 127, 236, 90, 73, 48, 193, 84, 66, 132, 13, 1, 176, 150, 192, 107, 9, 48, 80, 70, 34, 179, 93, 98, 155, 109, 152, 236, 150, 9, 179, 111, 196, 212, 6, 28, 200, 193, 49, 109, 143, 195, 197, 1, 70, 20, 86, 44, 53, 156, 116, 68, 150, 215, 28, 117, 99, 96, 135, 29, 24, 252, 137, 65, 7, 70, 219, 89, 193, 17, 23, 212, 129, 167, 81, 28, 112, 12, 210, 35, 117, 253, 217, 103, 6, 29, 247, 113, 180, 96, 70, 0, 14, 76, 240, 129, 14, 78, 216, 95, 18, 255, 37, 129, 48, 131, 66, 60, 60, 35, 136, 16, 254, 134, 135, 198, 21, 13, 130, 120, 96, 196, 89, 124, 199, 96, 20, 20, 38, 145, 226, 12, 32, 140, 124, 2, 8, 31, 156, 240, 34, 8, 21, 152, 120, 2, 144, 76, 40, 113, 225, 9, 45, 10, 1, 5, 25, 112, 100, 162, 137, 30, 115, 84, 156, 81, 118, 68, 90, 84, 31, 25, 99, 48, 233, 137, 32, 98, 64, 193, 68, 120, 113, 84, 11, 7, 30, 137, 184, 161, 132, 9, 60, 56, 161, 6, 28, 137, 136, 130, 245, 40, 158, 136, 98, 210, 214, 161, 140, 34, 202, 151, 158, 44, 146, 137, 39, 100, 16, 129, 197, 82, 130, 92, 178, 136, 32, 115, 126, 49, 134, 26, 107, 116, 209, 197, 97, 118, 122, 37, 213, 23, 116, 247, 96, 192, 3, 15, 96, 160, 193, 6, 110, 57, 209, 131, 18, 64, 12, 145, 213, 7, 25, 152, 128, 1, 15, 15, 108, 80, 196, 18, 213, 38, 65, 6, 24, 61, 4, 214, 68, 17, 108, 184, 129, 3, 169, 27, 148, 90, 132, 22, 161, 131, 145, 217, 26, 94, 172, 234, 197, 23, 91, 96, 6, 68, 231, 57, 224, 176, 196, 36, 161, 33, 66, 73, 37, 166, 101, 113, 2, 1, 173, 237, 158, 0, 6, 110, 188, 129, 199, 34, 214, 46, 114, 73, 240, 209, 70, 91, 188, 30, 192, 7, 39, 92, 28, 113, 160, 113, 17, 25, 98, 144, 65, 199, 28, 225, 146, 75, 198, 69, 99, 148, 81, 134, 186, 254, 93, 128, 1, 229, 203, 7, 133, 161, 71, 69, 245, 133, 119, 29, 129, 213, 77, 55, 29, 118, 244, 102, 212, 174, 25, 92, 188, 87, 31, 20, 97, 64, 145, 228, 192, 79, 64, 145, 132, 18, 114, 33, 248, 132, 36, 36, 136, 97, 10, 83, 223, 21, 24, 6, 49, 16, 56, 40, 99, 82, 184, 200, 1, 133, 112, 48, 33, 12, 97, 129, 255, 217, 87, 146, 194, 16, 5, 136, 9, 193, 6, 54, 80, 129, 10, 130, 96, 162, 15, 80, 160, 3, 47, 130, 130, 41, 208, 128, 52, 44, 80, 193, 96, 13, 18, 194, 12, 82, 96, 133, 48, 192, 1, 56, 58, 67, 131, 21, 148, 48, 65, 37, 192, 171, 33, 98, 96, 195, 24, 216, 192, 147, 65, 180, 1, 13, 105, 136, 131, 68, 200, 208, 134, 29, 201, 9, 12, 64, 112, 203, 244, 220, 16, 22, 160, 124, 233, 75, 161, 208, 9, 81, 48, 241, 6, 221, 136, 129, 8, 102, 192, 3, 83, 6, 1, 198, 69, 180, 33, 71, 155, 99, 67, 25, 150, 128, 4, 174, 64, 201, 48, 108, 72, 34, 27, 148, 224, 3, 17, 96, 224, 1, 103, 121, 192, 1, 54, 208, 150, 32, 32, 129, 38, 51, 57, 2, 16, 144, 32, 184, 35, 28, 161, 13, 109, 72, 194, 185, 126, 48, 45, 70, 136, 110, 115, 95, 88, 131, 26, 180, 240, 133, 87, 109, 1, 8, 152, 137, 204, 17, 66, 119, 132, 196, 254, 108, 102, 13, 95, 56, 221, 20, 24, 147, 140, 112, 64, 99, 26, 211, 248, 85, 48, 178, 32, 1, 221, 241, 46, 1, 70, 80, 94, 241, 130, 208, 6, 218, 220, 70, 15, 204, 154, 13, 243, 174, 4, 7, 155, 185, 196, 37, 203, 33, 142, 118, 166, 39, 180, 60, 141, 97, 36, 96, 40, 166, 49, 161, 4, 5, 40, 208, 13, 10, 67, 218, 207, 120, 160, 183, 29, 40, 112, 33, 110, 217, 115, 95, 188, 162, 80, 164, 239, 64, 65, 96, 218, 76, 38, 120, 196, 55, 23, 36, 32, 33, 46, 8, 76, 2, 17, 134, 112, 160, 10, 98, 80, 46, 67, 120, 24, 1, 133, 128, 4, 10, 49, 4, 12, 236, 148, 32, 18, 38, 68, 4, 37, 64, 193, 10, 30, 2, 143, 25, 206, 16, 5, 7, 205, 64, 66, 46, 114, 145, 137, 84, 102, 34, 34, 192, 107, 8, 72, 112, 2, 22, 196, 128, 133, 19, 20, 176, 5, 43, 168, 2, 196, 144, 192, 132, 54, 100, 162, 20, 166, 208, 195, 24, 219, 57, 161, 43, 144, 97, 75, 101, 75, 68, 26, 138, 120, 82, 123, 161, 161, 13, 228, 57, 3, 167, 108, 34, 167, 178, 133, 41, 40, 65, 17, 10, 38, 24, 113, 38, 33, 134, 229, 108, 87, 112, 9, 114, 218, 200, 6, 31, 142, 193, 145, 106, 216, 222, 221, 208, 216, 5, 47, 212, 132, 12, 75, 32, 195, 16, 130, 0, 4, 22, 69, 254, 106, 3, 65, 120, 64, 16, 36, 192, 150, 15, 28, 42, 8, 60, 120, 204, 26, 124, 216, 70, 62, 149, 65, 84, 110, 24, 68, 25, 52, 55, 8, 204, 104, 230, 116, 169, 226, 228, 26, 182, 160, 133, 45, 144, 42, 86, 151, 164, 65, 17, 126, 16, 25, 36, 48, 198, 22, 199, 80, 197, 49, 156, 193, 140, 104, 68, 3, 11, 19, 8, 192, 0, 120, 103, 129, 53, 184, 233, 18, 102, 16, 137, 80, 106, 51, 67, 60, 120, 209, 90, 132, 28, 34, 113, 10, 50, 156, 238, 189, 12, 163, 198, 28, 131, 24, 206, 85, 84, 48, 88, 71, 59, 213, 28, 102, 49, 183, 3, 6, 43, 36, 147, 64, 201, 140, 200, 188, 194, 211, 157, 236, 1, 236, 59, 242, 3, 218, 62, 173, 128, 219, 220, 34, 77, 181, 226, 67, 2, 67, 7, 50, 206, 129, 76, 80, 46, 10, 11, 96, 18, 236, 7, 6, 37, 40, 87, 9, 16, 27, 66, 59, 251, 151, 35, 43, 48, 140, 8, 255, 195, 231, 127, 46, 4, 160, 102, 74, 140, 160, 82, 112, 225, 65, 81, 246, 129, 32, 4, 193, 160, 65, 152, 32, 196, 136, 144, 2, 21, 204, 160, 10, 253, 249, 208, 193, 134, 96, 5, 53, 92, 13, 20, 160, 88, 68, 26, 194, 80, 37, 54, 224, 108, 17, 68, 44, 34, 29, 232, 112, 210, 52, 192, 65, 192, 112, 64, 131, 25, 208, 128, 6, 56, 104, 98, 254, 138, 163, 160, 111, 21, 131, 66, 38, 161, 92, 162, 13, 130, 192, 4, 25, 84, 130, 6, 166, 34, 161, 12, 66, 59, 204, 25, 202, 208, 137, 90, 140, 130, 17, 108, 16, 154, 157, 220, 250, 5, 36, 84, 64, 2, 13, 56, 0, 29, 217, 2, 146, 33, 252, 49, 8, 70, 0, 130, 17, 122, 144, 129, 13, 64, 0, 7, 62, 216, 76, 19, 198, 208, 134, 33, 76, 129, 12, 60, 144, 147, 32, 214, 0, 132, 53, 164, 53, 50, 118, 13, 85, 92, 51, 115, 58, 211, 161, 206, 11, 114, 173, 235, 93, 113, 240, 3, 86, 68, 35, 25, 190, 74, 132, 175, 204, 208, 128, 1, 28, 118, 119, 28, 216, 145, 155, 166, 117, 134, 226, 1, 143, 109, 153, 114, 83, 76, 224, 208, 70, 66, 146, 161, 7, 61, 170, 18, 248, 138, 105, 157, 48, 44, 205, 192, 102, 16, 195, 129, 161, 115, 158, 237, 160, 11, 59, 184, 77, 166, 161, 249, 227, 79, 137, 12, 9, 61, 23, 161, 14, 23, 184, 144, 5, 34, 81, 39, 13, 41, 217, 39, 19, 166, 144, 146, 148, 48, 129, 9, 77, 232, 159, 92, 124, 59, 193, 225, 70, 65, 185, 158, 102, 66, 255, 160, 80, 134, 27, 158, 147, 161, 206, 117, 103, 72, 177, 99, 206, 243, 98, 44, 65, 21, 196, 38, 117, 36, 6, 49, 21, 117, 48, 129, 40, 59, 239, 64, 78, 16, 4, 130, 238, 122, 160, 254, 21, 172, 66, 22, 56, 66, 35, 22, 9, 161, 9, 103, 72, 196, 38, 230, 0, 10, 226, 240, 228, 13, 201, 181, 130, 115, 92, 242, 223, 108, 255, 119, 14, 112, 224, 182, 30, 110, 67, 188, 77, 48, 75, 19, 160, 248, 68, 38, 204, 77, 166, 167, 84, 216, 32, 88, 24, 130, 24, 128, 160, 0, 12, 224, 192, 8, 74, 160, 10, 24, 46, 49, 11, 108, 120, 195, 27, 213, 208, 197, 43, 126, 144, 1, 39, 204, 202, 8, 70, 64, 2, 87, 77, 144, 1, 69, 81, 224, 0, 144, 114, 130, 9, 254, 184, 199, 61, 246, 160, 9, 157, 137, 43, 24, 208, 64, 132, 130, 136, 64, 13, 159, 90, 67, 17, 214, 112, 228, 211, 169, 181, 8, 76, 40, 66, 17, 228, 138, 73, 184, 150, 238, 116, 145, 244, 130, 23, 116, 112, 4, 85, 144, 35, 26, 218, 152, 185, 54, 152, 49, 5, 5, 24, 150, 119, 77, 104, 201, 242, 136, 135, 7, 224, 45, 66, 220, 140, 208, 195, 34, 22, 17, 116, 65, 208, 242, 18, 110, 51, 3, 182, 124, 116, 134, 242, 160, 225, 121, 102, 112, 158, 243, 170, 30, 7, 252, 102, 239, 48, 216, 233, 94, 24, 184, 208, 61, 1, 99, 199, 126, 28, 177, 31, 128, 236, 55, 232, 71, 231, 39, 35, 145, 94, 180, 110, 145, 166, 207, 164, 201, 133, 212, 241, 164, 174, 4, 157, 27, 64, 37, 140, 122, 238, 202, 254, 149, 251, 16, 18, 230, 66, 137, 33, 200, 61, 184, 134, 88, 58, 1, 152, 93, 12, 70, 240, 97, 50, 114, 225, 6, 213, 187, 193, 25, 201, 197, 241, 42, 122, 24, 202, 100, 68, 93, 189, 31, 8, 64, 79, 128, 153, 131, 198, 27, 4, 149, 104, 161, 12, 164, 120, 69, 34, 206, 144, 36, 67, 79, 239, 192, 39, 133, 67, 182, 93, 95, 61, 215, 115, 219, 77, 152, 96, 91, 153, 48, 193, 30, 55, 100, 194, 169, 79, 48, 129, 157, 124, 128, 3, 17, 112, 0, 248, 103, 184, 197, 44, 72, 113, 27, 81, 212, 98, 23, 227, 184, 4, 15, 156, 177, 139, 76, 224, 97, 50, 34, 220, 192, 6, 122, 208, 68, 17, 48, 65, 82, 27, 16, 1, 91, 28, 5, 66, 63, 125, 129, 12, 66, 196, 2, 17, 154, 64, 6, 28, 112, 156, 48, 31, 23, 4, 170, 26, 185, 42, 54, 68, 242, 173, 71, 64, 121, 17, 116, 112, 114, 82, 109, 38, 51, 95, 248, 66, 40, 200, 193, 12, 190, 18, 12, 201, 160, 13, 68, 144, 0, 134, 197, 26, 3, 160, 0, 67, 131, 28, 200, 33, 116, 203, 146, 9, 139, 240, 45, 226, 118, 27, 151, 48, 7, 110, 146, 8, 23, 24, 28, 6, 118, 17, 87, 55, 36, 211, 81, 117, 67, 130, 37, 202, 225, 89, 231, 97, 76, 167, 101, 17, 226, 177, 90, 101, 215, 31, 82, 210, 117, 232, 114, 5, 254, 181, 101, 36, 222, 116, 67, 252, 177, 92, 254, 35, 23, 14, 210, 78, 50, 246, 48, 237, 212, 34, 67, 176, 92, 12, 149, 79, 113, 225, 4, 237, 116, 33, 18, 227, 32, 35, 130, 65, 221, 21, 120, 16, 242, 48, 25, 179, 121, 204, 100, 6, 221, 53, 3, 61, 48, 3, 227, 117, 3, 46, 100, 3, 90, 248, 1, 51, 128, 132, 80, 208, 32, 68, 64, 4, 39, 210, 3, 32, 224, 66, 42, 144, 2, 1, 228, 49, 114, 1, 4, 19, 82, 92, 79, 144, 17, 19, 129, 91, 74, 176, 1, 101, 16, 7, 111, 32, 10, 164, 80, 10, 155, 240, 6, 217, 99, 76, 121, 82, 28, 39, 85, 61, 123, 80, 61, 115, 96, 136, 180, 100, 136, 110, 48, 7, 200, 33, 8, 79, 179, 110, 19, 180, 1, 232, 23, 56, 60, 240, 3, 147, 177, 4, 112, 32, 10, 188, 208, 12, 215, 176, 11, 205, 112, 11, 160, 32, 6, 72, 128, 7, 156, 128, 11, 221, 80, 13, 72, 208, 6, 177, 240, 6, 86, 48, 4, 43, 211, 22, 64, 208, 4, 105, 36, 99, 64, 64, 85, 15, 144, 1, 62, 80, 137, 69, 192, 97, 74, 128, 138, 34, 240, 67, 110, 64, 8, 161, 131, 9, 71, 64, 3, 162, 19, 58, 161, 179, 25, 28, 198, 86, 169, 83, 127, 91, 96, 3, 164, 82, 3, 69, 48, 43, 177, 65, 115, 204, 144, 12, 191, 48, 128, 23, 48, 254, 44, 99, 54, 0, 22, 80, 53, 216, 242, 6, 187, 145, 27, 95, 242, 10, 164, 144, 11, 112, 16, 6, 200, 51, 27, 124, 248, 6, 107, 243, 6, 134, 104, 47, 105, 144, 96, 6, 22, 117, 12, 241, 89, 135, 209, 61, 220, 50, 76, 97, 224, 117, 197, 148, 106, 65, 18, 37, 178, 69, 118, 224, 97, 104, 197, 196, 5, 39, 24, 131, 226, 145, 17, 170, 181, 90, 201, 164, 79, 164, 150, 131, 230, 52, 121, 206, 69, 145, 67, 208, 3, 173, 86, 145, 64, 152, 52, 147, 210, 68, 63, 216, 31, 20, 196, 121, 17, 131, 33, 16, 226, 133, 233, 116, 5, 113, 64, 7, 81, 32, 32, 51, 96, 3, 3, 117, 33, 3, 245, 48, 43, 121, 48, 68, 48, 106, 202, 69, 4, 65, 240, 34, 20, 160, 1, 31, 208, 3, 47, 50, 94, 212, 101, 92, 16, 51, 94, 16, 244, 4, 31, 50, 5, 76, 96, 5, 11, 209, 3, 78, 160, 4, 78, 199, 9, 28, 165, 9, 10, 209, 16, 82, 2, 6, 64, 134, 7, 122, 64, 136, 132, 72, 7, 89, 185, 7, 134, 104, 136, 214, 194, 18, 151, 224, 84, 67, 144, 1, 168, 72, 139, 24, 192, 1, 56, 16, 94, 131, 2, 4, 76, 224, 60, 137, 224, 11, 190, 64, 10, 197, 227, 9, 154, 128, 7, 152, 224, 35, 203, 231, 13, 221, 208, 13, 184, 48, 151, 83, 64, 139, 38, 0, 108, 77, 254, 208, 21, 92, 161, 5, 104, 212, 99, 100, 0, 5, 67, 192, 6, 117, 40, 39, 110, 128, 25, 71, 166, 5, 107, 32, 72, 90, 96, 3, 114, 21, 25, 38, 135, 25, 153, 81, 6, 141, 4, 101, 171, 115, 4, 58, 160, 3, 110, 240, 12, 218, 96, 154, 210, 16, 88, 2, 32, 0, 9, 32, 102, 173, 193, 1, 111, 242, 44, 153, 48, 11, 171, 64, 10, 97, 243, 37, 180, 208, 13, 183, 224, 4, 180, 161, 60, 62, 215, 18, 137, 80, 96, 46, 113, 129, 232, 24, 6, 9, 198, 6, 98, 208, 61, 39, 56, 18, 121, 146, 37, 166, 101, 130, 132, 196, 97, 248, 85, 76, 93, 0, 5, 90, 64, 157, 75, 112, 16, 76, 240, 61, 84, 9, 6, 245, 145, 36, 245, 1, 47, 72, 147, 76, 155, 166, 92, 80, 224, 63, 47, 67, 92, 67, 72, 4, 247, 116, 119, 66, 224, 4, 66, 0, 4, 69, 56, 33, 51, 129, 64, 173, 246, 48, 180, 54, 32, 145, 214, 93, 76, 232, 133, 15, 18, 49, 253, 17, 17, 25, 164, 65, 79, 168, 65, 192, 102, 120, 167, 134, 95, 76, 208, 78, 40, 179, 147, 47, 82, 1, 29, 192, 147, 206, 37, 145, 3, 177, 34, 41, 64, 4, 47, 84, 2, 67, 208, 5, 103, 144, 97, 58, 196, 4, 85, 160, 2, 39, 160, 4, 83, 178, 9, 165, 160, 135, 153, 176, 16, 97, 96, 5, 12, 81, 45, 254, 87, 185, 7, 89, 64, 7, 124, 176, 7, 93, 233, 149, 122, 208, 70, 98, 169, 34, 20, 0, 4, 106, 208, 5, 81, 245, 3, 132, 130, 101, 148, 8, 85, 77, 164, 4, 28, 134, 7, 202, 183, 11, 183, 32, 10, 23, 119, 9, 223, 22, 11, 181, 176, 111, 239, 208, 13, 206, 128, 11, 165, 0, 7, 76, 96, 3, 80, 165, 57, 65, 197, 6, 106, 0, 5, 83, 224, 4, 233, 119, 39, 108, 64, 42, 131, 128, 42, 171, 34, 101, 95, 208, 4, 171, 67, 42, 247, 103, 4, 62, 112, 114, 106, 85, 58, 166, 51, 8, 207, 64, 14, 218, 176, 13, 92, 22, 12, 195, 162, 0, 28, 96, 1, 10, 48, 0, 27, 0, 142, 146, 181, 44, 67, 23, 149, 184, 49, 67, 209, 178, 9, 72, 167, 51, 110, 50, 156, 132, 212, 62, 102, 192, 76, 103, 96, 103, 254, 152, 156, 231, 33, 52, 89, 114, 30, 92, 128, 5, 139, 120, 52, 90, 176, 105, 228, 249, 50, 112, 145, 157, 53, 225, 143, 184, 5, 52, 107, 247, 30, 42, 106, 131, 163, 6, 32, 196, 53, 93, 18, 212, 63, 231, 244, 158, 24, 233, 32, 8, 20, 65, 91, 184, 146, 91, 232, 66, 35, 146, 32, 23, 10, 49, 3, 69, 108, 135, 23, 131, 102, 224, 48, 66, 48, 94, 51, 64, 4, 149, 247, 48, 38, 163, 34, 13, 66, 33, 80, 224, 103, 76, 208, 131, 60, 40, 254, 51, 227, 37, 41, 254, 227, 91, 194, 245, 48, 98, 136, 33, 50, 51, 5, 80, 64, 5, 228, 1, 65, 85, 80, 148, 55, 196, 139, 73, 192, 4, 97, 240, 6, 151, 112, 162, 75, 129, 6, 200, 161, 7, 154, 208, 164, 122, 128, 7, 105, 240, 95, 132, 184, 51, 116, 128, 163, 66, 16, 1, 63, 112, 6, 97, 128, 71, 214, 247, 3, 123, 132, 70, 72, 80, 99, 63, 26, 41, 63, 250, 3, 78, 48, 100, 109, 240, 6, 177, 208, 12, 221, 208, 12, 187, 128, 10, 157, 112, 9, 157, 48, 10, 189, 96, 13, 223, 112, 15, 224, 128, 11, 179, 192, 8, 100, 96, 3, 27, 96, 25, 221, 9, 166, 68, 54, 5, 65, 149, 86, 71, 224, 126, 153, 121, 140, 112, 181, 5, 132, 224, 86, 113, 229, 5, 154, 105, 3, 58, 48, 25, 115, 245, 113, 127, 117, 12, 55, 167, 13, 202, 48, 0, 15, 240, 3, 167, 163, 3, 9, 112, 4, 45, 129, 6, 111, 50, 27, 182, 161, 27, 153, 128, 53, 88, 179, 9, 154, 128, 9, 226, 246, 20, 25, 248, 6, 113, 192, 109, 61, 194, 62, 212, 145, 76, 220, 163, 169, 227, 50, 104, 216, 65, 29, 243, 34, 6, 10, 161, 46, 81, 18, 170, 124, 20, 37, 212, 25, 67, 234, 146, 17, 223, 41, 5, 254, 114, 108, 89, 80, 7, 169, 199, 31, 73, 179, 92, 230, 180, 134, 98, 56, 65, 98, 220, 56, 16, 14, 34, 184, 23, 242, 171, 9, 50, 3, 17, 178, 146, 51, 112, 3, 3, 149, 32, 25, 17, 33, 129, 39, 32, 221, 149, 49, 37, 25, 131, 105, 64, 34, 46, 36, 33, 102, 232, 120, 37, 226, 120, 24, 163, 79, 250, 50, 4, 78, 112, 56, 43, 2, 132, 247, 52, 4, 77, 224, 92, 162, 27, 85, 171, 43, 99, 61, 96, 2, 59, 25, 85, 78, 167, 4, 26, 96, 50, 42, 64, 4, 183, 5, 36, 56, 20, 159, 250, 212, 6, 154, 64, 10, 168, 80, 10, 244, 10, 19, 105, 192, 6, 104, 224, 103, 216, 242, 149, 112, 176, 8, 115, 214, 3, 14, 128, 3, 103, 0, 7, 128, 196, 1, 28, 176, 1, 60, 246, 71, 74, 0, 170, 76, 128, 70, 170, 235, 3, 61, 240, 163, 241, 137, 4, 96, 160, 96, 180, 176, 11, 222, 112, 13, 205, 240, 10, 100, 146, 8, 111, 208, 6, 165, 192, 11, 186, 176, 11, 101, 208, 25, 56, 128, 4, 251, 228, 4, 99, 32, 41, 155, 227, 6, 175, 50, 8, 108, 176, 5, 154, 81, 127, 56, 123, 73, 106, 149, 58, 110, 85, 101, 62, 0, 115, 58, 112, 153, 201, 176, 13, 207, 112, 12, 201, 112, 141, 1, 1 ); -- 69178 bytes Descriptor : constant UI.Images.Image_Descriptor := (Width => 363, Height => 272, Palette => Palette'Access, Bitmap => Data'Access); end Gallery.Picture6;
zhmu/ananas
Ada
12,144
ads
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.FUNCTIONAL_SETS -- -- -- -- S p e c -- -- -- -- Copyright (C) 2016-2022, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- ------------------------------------------------------------------------------ pragma Ada_2012; private with Ada.Containers.Functional_Base; generic type Element_Type (<>) is private; with function Equivalent_Elements (Left : Element_Type; Right : Element_Type) return Boolean is "="; Enable_Handling_Of_Equivalence : Boolean := True; -- This constant should only be set to False when no particular handling -- of equivalence over elements is needed, that is, Equivalent_Elements -- defines an element uniquely. package Ada.Containers.Functional_Sets with SPARK_Mode is type Set is private with Default_Initial_Condition => Is_Empty (Set), Iterable => (First => Iter_First, Next => Iter_Next, Has_Element => Iter_Has_Element, Element => Iter_Element); -- Sets are empty when default initialized. -- "For in" quantification over sets should not be used. -- "For of" quantification over sets iterates over elements. -- Note that, for proof, "for of" quantification is understood modulo -- equivalence (the range of quantification comprises all the elements that -- are equivalent to any element of the set). ----------------------- -- Basic operations -- ----------------------- -- Sets are axiomatized using Contains, which encodes whether an element is -- contained in a set. The length of a set is also added to protect Add -- against overflows but it is not actually modeled. function Contains (Container : Set; Item : Element_Type) return Boolean with -- Return True if Item is contained in Container Global => null, Post => (if Enable_Handling_Of_Equivalence then -- Contains returns the same result on all equivalent elements (if (for some E of Container => Equivalent_Elements (E, Item)) then Contains'Result)); function Length (Container : Set) return Count_Type with Global => null; -- Return the number of elements in Container ------------------------ -- Property Functions -- ------------------------ function "<=" (Left : Set; Right : Set) return Boolean with -- Set inclusion Global => null, Post => "<="'Result = (for all Item of Left => Contains (Right, Item)); function "=" (Left : Set; Right : Set) return Boolean with -- Extensional equality over sets Global => null, Post => "="'Result = (Left <= Right and Right <= Left); pragma Warnings (Off, "unused variable ""Item"""); function Is_Empty (Container : Set) return Boolean with -- A set is empty if it contains no element Global => null, Post => Is_Empty'Result = (for all Item of Container => False) and Is_Empty'Result = (Length (Container) = 0); pragma Warnings (On, "unused variable ""Item"""); function Included_Except (Left : Set; Right : Set; Item : Element_Type) return Boolean -- Return True if Left contains only elements of Right except possibly -- Item. with Global => null, Post => Included_Except'Result = (for all E of Left => Contains (Right, E) or Equivalent_Elements (E, Item)); function Includes_Intersection (Container : Set; Left : Set; Right : Set) return Boolean with -- Return True if every element of the intersection of Left and Right is -- in Container. Global => null, Post => Includes_Intersection'Result = (for all Item of Left => (if Contains (Right, Item) then Contains (Container, Item))); function Included_In_Union (Container : Set; Left : Set; Right : Set) return Boolean with -- Return True if every element of Container is the union of Left and Right Global => null, Post => Included_In_Union'Result = (for all Item of Container => Contains (Left, Item) or Contains (Right, Item)); function Is_Singleton (Container : Set; New_Item : Element_Type) return Boolean with -- Return True Container only contains New_Item Global => null, Post => Is_Singleton'Result = (for all Item of Container => Equivalent_Elements (Item, New_Item)); function Not_In_Both (Container : Set; Left : Set; Right : Set) return Boolean -- Return True if there are no elements in Container that are in Left and -- Right. with Global => null, Post => Not_In_Both'Result = (for all Item of Container => not Contains (Left, Item) or not Contains (Right, Item)); function No_Overlap (Left : Set; Right : Set) return Boolean with -- Return True if there are no equivalent elements in Left and Right Global => null, Post => No_Overlap'Result = (for all Item of Left => not Contains (Right, Item)); function Num_Overlaps (Left : Set; Right : Set) return Count_Type with -- Number of elements that are both in Left and Right Global => null, Post => Num_Overlaps'Result = Length (Intersection (Left, Right)) and (if Left <= Right then Num_Overlaps'Result = Length (Left) else Num_Overlaps'Result < Length (Left)) and (if Right <= Left then Num_Overlaps'Result = Length (Right) else Num_Overlaps'Result < Length (Right)) and (Num_Overlaps'Result = 0) = No_Overlap (Left, Right); ---------------------------- -- Construction Functions -- ---------------------------- -- For better efficiency of both proofs and execution, avoid using -- construction functions in annotations and rather use property functions. function Add (Container : Set; Item : Element_Type) return Set with -- Return a new set containing all the elements of Container plus E Global => null, Pre => not Contains (Container, Item) and Length (Container) < Count_Type'Last, Post => Length (Add'Result) = Length (Container) + 1 and Contains (Add'Result, Item) and Container <= Add'Result and Included_Except (Add'Result, Container, Item); function Remove (Container : Set; Item : Element_Type) return Set with -- Return a new set containing all the elements of Container except E Global => null, Pre => Contains (Container, Item), Post => Length (Remove'Result) = Length (Container) - 1 and not Contains (Remove'Result, Item) and Remove'Result <= Container and Included_Except (Container, Remove'Result, Item); function Intersection (Left : Set; Right : Set) return Set with -- Returns the intersection of Left and Right Global => null, Post => Intersection'Result <= Left and Intersection'Result <= Right and Includes_Intersection (Intersection'Result, Left, Right); function Union (Left : Set; Right : Set) return Set with -- Returns the union of Left and Right Global => null, Pre => Length (Left) - Num_Overlaps (Left, Right) <= Count_Type'Last - Length (Right), Post => Length (Union'Result) = Length (Left) - Num_Overlaps (Left, Right) + Length (Right) and Left <= Union'Result and Right <= Union'Result and Included_In_Union (Union'Result, Left, Right); function Copy_Element (Item : Element_Type) return Element_Type is (Item); -- Elements of containers are copied by numerous primitives in this -- package. This function causes GNATprove to verify that such a copy is -- valid (in particular, it does not break the ownership policy of SPARK, -- i.e. it does not contain pointers that could be used to alias mutable -- data). --------------------------- -- Iteration Primitives -- --------------------------- type Private_Key is private; function Iter_First (Container : Set) return Private_Key with Global => null; function Iter_Has_Element (Container : Set; Key : Private_Key) return Boolean with Global => null; function Iter_Next (Container : Set; Key : Private_Key) return Private_Key with Global => null, Pre => Iter_Has_Element (Container, Key); function Iter_Element (Container : Set; Key : Private_Key) return Element_Type with Global => null, Pre => Iter_Has_Element (Container, Key); pragma Annotate (GNATprove, Iterable_For_Proof, "Contains", Contains); private pragma SPARK_Mode (Off); subtype Positive_Count_Type is Count_Type range 1 .. Count_Type'Last; function "=" (Left : Element_Type; Right : Element_Type) return Boolean renames Equivalent_Elements; package Containers is new Ada.Containers.Functional_Base (Element_Type => Element_Type, Index_Type => Positive_Count_Type); type Set is record Content : Containers.Container; end record; type Private_Key is new Count_Type; function Iter_First (Container : Set) return Private_Key is (1); function Iter_Has_Element (Container : Set; Key : Private_Key) return Boolean is (Count_Type (Key) in 1 .. Containers.Length (Container.Content)); function Iter_Next (Container : Set; Key : Private_Key) return Private_Key is (if Key = Private_Key'Last then 0 else Key + 1); function Iter_Element (Container : Set; Key : Private_Key) return Element_Type is (Containers.Get (Container.Content, Count_Type (Key))); end Ada.Containers.Functional_Sets;
leo-brewin/ada-lapack
Ada
5,690
adb
with Ada.Text_IO; with Ada.Text_IO.Complex_IO; with Ada.Numerics.Generic_Real_Arrays; with Ada.Numerics.Generic_Complex_Types; with Ada.Numerics.Generic_Complex_Arrays; with Ada.Numerics.Generic_Elementary_Functions; with Ada.Numerics.Generic_Complex_Elementary_Functions; with Ada_Lapack; use Ada.Text_IO; procedure tzgesv is type Real is digits 18; package Real_Arrays is new Ada.Numerics.Generic_Real_Arrays (Real); package Complex_Types is new Ada.Numerics.Generic_Complex_Types (Real); package Complex_Arrays is new Ada.Numerics.Generic_Complex_Arrays (Real_Arrays, Complex_Types); package Real_Maths is new Ada.Numerics.Generic_Elementary_Functions (Real); package Complex_Maths is new Ada.Numerics.Generic_Complex_Elementary_Functions (Complex_Types); package Real_IO is new Ada.Text_IO.Float_IO (Real); package Integer_IO is new Ada.Text_IO.Integer_IO (Integer); package Complex_IO is new Ada.Text_IO.Complex_IO (Complex_Types); package Lapack is new Ada_Lapack(Real, Complex_Types, Real_Arrays, Complex_Arrays); use Lapack; use Real_Arrays; use Complex_Types; use Complex_Arrays; use Real_IO; use Integer_IO; use Complex_IO; use Real_Maths; use Complex_Maths; one : constant Complex := (1.0e0,0.0e0); zero : constant Complex := (0.0e0,0.0e0); matrix : Complex_Matrix (1..4,1..4); matrix_copy : Complex_Matrix (1..4,1..4); matrix_rows : Integer := Matrix'Length (1); matrix_cols : Integer := Matrix'Length (2); rhs : Complex_matrix (1..4,1..2); rhs_rows : Integer := Rhs'Length(1); rhs_cols : Integer := Rhs'Length(2); solution : Complex_Matrix := rhs; solution_rows : Integer := rhs_rows; solution_cols : Integer := rhs_cols; pivots : Integer_Vector (1..matrix_rows); return_code : Integer; Lower : Complex_Matrix(1..matrix_rows,1..matrix_cols); Upper : Complex_Matrix(1..matrix_rows,1..matrix_cols); Product : Complex_Matrix(1..matrix_rows,1..matrix_cols); swap : integer; sum : Complex; error : Real; order : Integer_Vector(1..matrix_rows); begin matrix :=( (( 1.23, -5.50), ( 7.91, -5.38), ( -9.80, -4.86), ( -7.32, 7.57)), (( -2.14, -1.12), ( -9.92, -0.79), ( -9.18, -1.12), ( 1.37, 0.43)), (( -4.30, -7.10), ( -6.47, 2.52), ( -6.51, -2.67), ( -5.86, 7.38)), (( 1.27, 7.29), ( 8.90, 6.92), ( -8.82, 1.25), ( 5.41, 5.37)) ); rhs := ( (( 8.33, -7.32), ( -6.11, -3.81)), (( -6.18, -4.80), ( 0.14, -7.71)), (( -5.71, -2.80), ( 1.41, 3.40)), (( -1.60, 3.08), ( 8.54, -4.05)) ); matrix_copy := matrix; GESV ( A => matrix, LDA => matrix_rows, N => matrix_rows, IPIV => pivots, B => solution, LDB => solution_rows, NRHS => solution_cols, INFO => return_code ); if (return_code /= 0) then Put_line ("The matrix is probably singular."); else Put_line ("Solution"); for i in rhs'range(1) loop for j in rhs'range(2) loop put(" "); put(rhs(i,j),3,3,0); end loop; new_line; end loop; new_line; Put_line ("The LU factorization"); for i in matrix'range(1) loop for j in matrix'range(2) loop put(" "); put(matrix(i,j),3,3,0); end loop; new_line; end loop; new_line; Put_line ("The pivot indices"); put("("); for i in pivots'range loop put(pivots(i),3); end loop; put_line(" )"); new_line; put_line("The original matrix"); for i in 1..matrix_rows loop for j in 1..matrix_rows loop put(matrix_copy(i,j),3,3,0); put(" "); end loop; new_line; end loop; new_line; put_line("The reconstructed matrix"); -- build L and U for i in 1..matrix_rows loop Lower(i,i) := One; for j in 1..i-1 loop Lower(i,j) := matrix(i,j); Lower(j,i) := Zero; end loop; end loop; for i in 1..matrix_rows loop Upper(i,i) := matrix(i,i); for j in i+1..matrix_rows loop Upper(i,j) := matrix(i,j); Upper(j,i) := Zero; end loop; end loop; -- construct an order vector from pivots for i in 1..matrix_rows loop order(i) := i; end loop; for i in 1..matrix_rows loop swap := order(i); order(i) := order(pivots(i)); order(pivots(i)) := swap; end loop; -- compute P*L*U for i in 1..matrix_rows loop for j in 1..matrix_rows loop sum := Zero; for k in 1..matrix_rows loop sum := sum + Lower(i,k)*Upper(k,j); end loop; Product(order(i),j) := sum; end loop; end loop; -- the reconstructed matrix error := 0.0e0; for i in 1..matrix_rows loop for j in 1..matrix_rows loop put(Product(i,j),3,3,0); put(" "); error := error + modulus(Product(i,j) - matrix_copy(i,j)); end loop; new_line; end loop; new_line; put("The residual error : "); put(error,2,4); new_line; end if; end tzgesv;
reznikmm/matreshka
Ada
3,888
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with League.Holders; with AMF.Internals; package AMF.String_Collections.Internals is pragma Preelaborate; function To_Holder (Item : Collection_Of_String'Class) return League.Holders.Holder; -- Converts specified collection into holder of reflective collection type. function Wrap (Collection : AMF.Internals.AMF_Collection_Of_String) return Sequence_Of_String; function Wrap (Collection : AMF.Internals.AMF_Collection_Of_String) return Ordered_Set_Of_String; end AMF.String_Collections.Internals;
Fabien-Chouteau/Ada_Drivers_Library
Ada
2,568
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 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 System; package nRF51 is type Event_Type is private; type Task_Type is private; private type Event_Type is new System.Address; type Task_Type is new System.Address; end nRF51;
alexcamposruiz/dds-requestreply
Ada
23,470
adb
-- (c) Copyright, Real-Time Innovations, $Date:: 2012-12-04 #$ -- All rights reserved. -- -- No duplications, whole or partial, manual or electronic, may be made -- without express written permission. Any such copies, or -- revisions thereof, must display this notice unaltered. -- This code contains trade secrets of Real-Time Innovations, Inc. pragma Ada_05; with System; use System; with DDS.DomainParticipant_Impl; with RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h; with RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_impl_h; with GNAT.Threads; with Ada.Unchecked_Conversion; with DDS.Topic_Impl; with DDS.ContentFilteredTopic_Impl; with DDS.Publisher_Impl; with DDS.Subscriber_Impl; with DDS.DataReader_Impl; with DDS.DataWriter_Impl; with DDS.ReadCondition_Impl; with system.Multiprocessors; pragma Unreferenced (system.Multiprocessors); package body DDS.DomainParticipantFactory is use DDS.DomainParticipant_Impl; use RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h; use RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_impl_h; use DDS.DomainParticipant; type DDS_StringSeq_Access is access all RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_StringSeq; function convert is new Ada.Unchecked_Conversion (DDS.String_Seq.Sequence, RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_StringSeq); function convert is new Ada.Unchecked_Conversion (DDS_StringSeq_Access, DDS.String_Seq.Sequence_Access); TheParticipantFactory : Ref_Access; TheParticipantFactoryImpl : aliased Ref; Tasking_IF : aliased DDS_DomainParticipantFactoryThreadListenerI; Finalize_Listener : aliased DDS_DomainParticipantFactoryFinalizeListenerI; procedure On_Thread_Started_Callback (OnStartedParam : System.Address; Worker : access RTIDDS.Low_Level.ndds_reda_reda_worker_impl_h.REDAWorker) is pragma Unreferenced (OnStartedParam, Worker); Dummy : System.Address; pragma Unreferenced (Dummy); begin Dummy := GNAT.Threads.Register_Thread; end On_Thread_Started_Callback; procedure On_Thread_Stopped_Callback (OnStartedParam : System.Address; Worker : access RTIDDS.Low_Level.ndds_reda_reda_worker_impl_h.REDAWorker) is pragma Unreferenced (OnStartedParam, Worker); begin GNAT.Threads.Unregister_Thread; end On_Thread_Stopped_Callback; protected body Initializeer is procedure Initialize is begin if TheParticipantFactory = null then -- since this procedure just after loading libraries, check here the -- version of the Ada Binding and the DDS library used. -- DDS.Validate_Library; -- Set thread listener callbacks Tasking_IF.OnStarted := On_Thread_Started_Callback'Access; Tasking_IF.OnStopped := On_Thread_Stopped_Callback'Access; -- Get C Factory TheParticipantFactoryImpl.SetInterface (RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantFactory_Get_Instance); TheParticipantFactory := TheParticipantFactoryImpl'Access; Initialize (PARTICIPANT_QOS_DEFAULT); -- Set Default Participant QoS Ret_Code_To_Exception (DDS_DomainParticipantFactory_Get_Default_Participant_Qos (TheParticipantFactoryImpl.GetInterface, GetInterface (PARTICIPANT_QOS_DEFAULT))); -- Set thread listener DDS_DomainParticipantFactory_Set_Thread_ListenerI (RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantFactory_Get_Instance, Tasking_IF'Access); -- Set Finalize listener callbacks Finalize_Listener.OnBeforeTopicFinalizeFnc := DDS.Topic_Impl.Finalize_Callback'Access; Finalize_Listener.OnBeforeContentFilteredTopicFinalizeFnc := DDS.ContentFilteredTopic_Impl.Finalize_Callback'Access; Finalize_Listener.OnBeforeFlowControllerFinalizeFnc := null; Finalize_Listener.OnBeforePublisherFinalizeFnc := DDS.Publisher_Impl.Finalize_Callback'Access; Finalize_Listener.OnBeforeSubscriberFinalizeFnc := DDS.Subscriber_Impl.Finalize_Callback'Access; Finalize_Listener.OnBeforeDataReaderFinalizeFnc := DDS.DataReader_Impl.Finalize_Callback'Access; Finalize_Listener.OnBeforeDataWriterFinalizeFnc := DDS.DataWriter_Impl.Finalize_Callback'Access; Finalize_Listener.OnBeforeReadConditionFinalizeFnc := DDS.ReadCondition_Impl.Finalize_Callback'Access; DDS_DomainParticipantFactory_Set_Finalize_ListenerI (TheParticipantFactoryImpl.GetInterface, Finalize_Listener'Access); end if; end Initialize; end Initializeer; function Get_Instance return Ref_Access is begin if TheParticipantFactory = null then Initializeer.Initialize; return TheParticipantFactory; else return TheParticipantFactory; end if; end Get_Instance; ------------------------ -- Create_Participant -- ------------------------ function Create_Participant (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; Qos : in DDS.DomainParticipantQos := PARTICIPANT_QOS_DEFAULT; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := DDS.STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access is begin return (DDS.DomainParticipant_Impl.CreateI (Self, Domain_Id, Qos, A_Listener, Mask)); end Create_Participant; function Create_Participant_With_Profile (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; library_name : in DDS.String; profile_name : in DDS.String; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := DDS.STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access is begin return (DDS.DomainParticipant_Impl.CreateI (Self, Domain_Id, library_name, profile_name, A_Listener, Mask)); end Create_Participant_With_Profile; function Create_Participant_With_Profile (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; library_name : in Standard.String; profile_name : in Standard.String; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := DDS.STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access is l : DDS.String := To_DDS_String (library_name); p : DDS.String := To_DDS_String (profile_Name); ret : DDS.DomainParticipant.Ref_Access; begin ret := DDS.DomainParticipant_Impl.CreateI (Self, Domain_Id, l, p, A_Listener, Mask); Finalize (l); Finalize (p); return ret; end Create_Participant_With_Profile; function Get_Or_Create_Participant (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; Qos : in DDS.DomainParticipantQos := DDS.DomainParticipantFactory.PARTICIPANT_QOS_DEFAULT; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := STATUS_MASK_NONE)return DDS.DomainParticipant.Ref_Access is Ret : DDS.DomainParticipant.Ref_Access; begin Ret := Self.Lookup_Participant (Domain_Id); if Ret = null then Ret := Self.Create_Participant (Domain_Id => Domain_Id , Qos => Qos , A_Listener => A_Listener , Mask => Mask); end if; return Ret; end; function Get_Or_Create_Participant_With_Profile (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; Library_Name : in DDS.String; Profile_Name : in DDS.String; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access is Ret : DDS.DomainParticipant.Ref_Access; begin Ret := Self.Lookup_Participant (Domain_Id); if Ret = null then ret := Self.Create_Participant_With_Profile (Domain_Id => Domain_Id , Library_Name => Library_Name, Profile_Name => Profile_Name , A_Listener => A_Listener, Mask => Mask); end if; return Ret; end; ------------------------ -- Delete_Participant -- ------------------------ procedure Delete_Participant (Self : not null access Ref; A_Participant : in out DDS.DomainParticipant.Ref_Access) is P : DDS.DomainParticipant_Impl.Ref_Access := DDS.DomainParticipant_Impl.Ref_Access (A_Participant); C_P : System.Address; begin if P /= null then C_P := P.GetInterface; if C_P /= System.Null_Address then Ret_Code_To_Exception (DDS_DomainParticipant_disableI (C_P)); P.Delete_Implicit_EntitiesI; Ret_Code_To_Exception (DDS_DomainParticipantFactory_delete_participant (Self.GetInterface, C_P), "Unable to delete participant"); DomainParticipant_Impl.Free (P); P := null; end if; end if; end Delete_Participant; ------------------------ -- Lookup_Participant -- ------------------------ function Lookup_Participant (Self : not null access Ref; Domain_Id : in DDS.DomainId_T) return DDS.DomainParticipant.Ref_Access is C_Participant : constant System.Address := DDS_DomainParticipantFactory_lookup_participant (Self.GetInterface, DDS_DomainId_t (Domain_Id)); begin if C_Participant /= System.Null_Address then return DDS.DomainParticipant.Ref_Access (DDS.DomainParticipant_Impl.Get_FacadeI (C_Participant)); end if; return null; end Lookup_Participant; --------------------------------- -- Set_Default_Participant_Qos -- --------------------------------- procedure Set_Default_Participant_Qos (Self : not null access Ref; Qos : in DDS.DomainParticipantQos) is qos_Access : access DDS_DomainParticipantQos; begin if Qos'Address = PARTICIPANT_QOS_DEFAULT'Address then qos_Access := DDS_PARTICIPANT_QOS_DEFAULT'Unrestricted_Access; else qos_Access := GetInterface (Qos); end if; Ret_Code_To_Exception (DDS_DomainParticipantFactory_set_default_participant_qos (GetInterface (Self), qos_Access)); end Set_Default_Participant_Qos; ---------------------------------------------- -- Set_Default_Participant_Qos_with_profile -- ---------------------------------------------- procedure Set_Default_Participant_Qos_with_Profile (Self : not null access Ref; libraryName : in DDS.String; profile_name : in DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_set_default_participant_qos_with_profile (GetInterface (Self), GetInterface (libraryName).all, GetInterface (profile_name).all)); end Set_Default_Participant_Qos_with_Profile; --------------------------------- -- Get_Default_Participant_Qos -- --------------------------------- procedure Get_Default_Participant_Qos (Self : not null access Ref; Qos : in out DDS.DomainParticipantQos) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_default_participant_qos (GetInterface (Self), GetInterface (Qos))); end Get_Default_Participant_Qos; ------------- -- Set_Qos -- ------------- procedure Set_Qos (Self : not null access Ref; Qos : in DDS.DomainParticipantFactoryQos) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_set_qos (Self.GetInterface, GetInterface (Qos))); end Set_Qos; ------------------- -- Load_Profiles -- ------------------- procedure Load_Profiles (Self : not null access Ref) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_load_profiles (self.GetInterface)); end Load_Profiles; --------------------- -- Reload_Profiles -- --------------------- procedure Reload_Profiles (Self : not null access Ref) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_reload_profiles (self.GetInterface)); end Reload_Profiles; --------------------- -- Unload_Profiles -- --------------------- procedure Unload_Profiles (Self : not null access Ref) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_unload_profiles (self.GetInterface)); end Unload_Profiles; ------------------------- -- Set_Default_Profile -- ------------------------- procedure Set_Default_Profile (Self : not null access Ref; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_set_default_profile (self.GetInterface, GetInterface (library_name), GetInterface (profile_name))); end Set_Default_Profile; ------------------------- -- set_default_library -- ------------------------- procedure set_default_library (Self : not null access Ref; library_name : DDS.String) is begin Ret_Code_To_Exception ( DDS_DomainParticipantFactory_set_default_library ( Self.GetInterface, GetInterface (library_name))); end set_default_library; ------------------------- -- get_default_library -- ------------------------- function get_default_library (Self : not null access Ref) return DDS.String is begin return ret : dds.String do copy (ret, DDS_DomainParticipantFactory_get_default_library (self.GetInterface)); end return; end get_default_library; ------------------------- -- get_default_Profile -- ------------------------- function get_default_Profile (Self : not null access Ref) return DDS.String is begin return ret : dds.String do Copy (ret, DDS_DomainParticipantFactory_get_default_profile (self.GetInterface)); end return; end get_default_Profile; --------------------------------- -- get_default_profile_library -- --------------------------------- function get_default_profile_library (Self : not null access Ref) return DDS.String is begin return ret : dds.String do Copy (ret, DDS_DomainParticipantFactory_get_default_profile_library (self.GetInterface)); end return; end get_default_profile_library; ------------------------------- -- get_qos_profile_libraries -- ------------------------------- procedure get_qos_profile_libraries (Self : not null access Ref; libSeq : not null access DDS.String_Seq.Sequence) is C_LibSeq : aliased RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_StringSeq; begin C_LibSeq := convert (libSeq.all); Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_qos_profile_libraries (Self.GetInterface, C_LibSeq'Access)); DDS.String_Seq.Copy (libSeq, convert (C_LibSeq'Unrestricted_Access)); end get_qos_profile_libraries; function Get_Qos_Profile_Libraries (Self : not null access Ref) return DDS.String_Seq.Sequence is begin return LibSeq : DDS.String_Seq.Sequence do Self.Get_Qos_Profile_Libraries (LibSeq'Unrestricted_Access); end return; end Get_Qos_Profile_Libraries; ---------------------- -- get_qos_profiles -- ---------------------- procedure get_qos_profiles (Self : not null access Ref; profSeq : not null access DDS.String_Seq.Sequence; libName : in DDS.String) is C_ProfSeq : aliased RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_StringSeq; begin C_ProfSeq := convert (profSeq.all); Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_qos_profiles (Self.GetInterface, C_ProfSeq'Access, GetInterface (libName))); DDS.String_Seq.Copy (profSeq, convert (C_ProfSeq'Unrestricted_Access)); end get_qos_profiles; function Get_Qos_Profiles (Self : not null access Ref; LibName : in DDS.String) return DDS.String_Seq.Sequence is begin return LibSeq : DDS.String_Seq.Sequence do Self.Get_Qos_Profiles (LibSeq'Unrestricted_Access, libName); end return; end Get_Qos_Profiles; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_participant_qos_from_profile (Self : not null access Ref; QoS : in out DDS.DomainParticipantQos; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_participant_qos_from_profile (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name))); end get_participant_qos_from_profile; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_publisher_qos_from_profile (Self : not null access Ref; QoS : in out DDS.PublisherQos; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_publisher_qos_from_profile (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name))); end get_publisher_qos_from_profile; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_subscriber_qos_from_profile (Self : not null access Ref; QoS : in out DDS.SubscriberQos; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_subscriber_qos_from_profile (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name))); end get_subscriber_qos_from_profile; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_datareader_qos_from_profile (Self : not null access Ref; QoS : in out DDS.DataReaderQos; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_datareader_qos_from_profile (self.GetInterface, getInterface (QoS), GetInterface (library_name), GetInterface (profile_name))); end get_datareader_qos_from_profile; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_datareader_qos_from_profile_w_topic_name (Self : not null access Ref; QoS : in out DDS.DataReaderQos; library_name : DDS.String; profile_name : DDS.String; topic_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_datareader_qos_from_profile_w_topic_name (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name), GetInterface (topic_name))); end get_datareader_qos_from_profile_w_topic_name; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_datawriter_qos_from_profile (Self : not null access Ref; QoS : in out DDS.DataWriterQos; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_datawriter_qos_from_profile (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name))); end get_datawriter_qos_from_profile; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_datawriter_qos_from_profile_w_topic_name (Self : not null access Ref; QoS : in out DDS.DataWriterQos; library_name : DDS.String; profile_name : DDS.String; topic_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_datawriter_qos_from_profile_w_topic_name (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name), GetInterface (topic_name))); end get_datawriter_qos_from_profile_w_topic_name; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_topic_qos_from_profile (Self : not null access Ref; QoS : in out DDS.TopicQos; library_name : DDS.String; profile_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_topic_qos_from_profile (self.GetInterface, GetInterface (QoS), GetInterface (library_name), GetInterface (profile_name))); end get_topic_qos_from_profile; -------------------------- -- get_qos_from_profile -- -------------------------- procedure get_topic_qos_from_profile_w_topic_name (Self : not null access Ref; QoS : in out DDS.TopicQos; library_name : DDS.String; profile_name : DDS.String; topic_name : DDS.String) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_topic_qos_from_profile_w_topic_name (self.GetInterface, getInterface (QoS), GetInterface (library_name), GetInterface (profile_name), GetInterface (topic_name))); end get_topic_qos_from_profile_w_topic_name; ------------- -- Get_Qos -- ------------- procedure Get_Qos (Self : not null access Ref; Qos : in out DDS.DomainParticipantFactoryQos) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_get_qos (Self.GetInterface, GetInterface (qos))); end Get_Qos; procedure Finalize_Instance (Self : not null access Ref) is begin Ret_Code_To_Exception (DDS_DomainParticipantFactory_finalize_instance); Self.SetInterface (System.Null_Address); TheParticipantFactory := null; end Finalize_Instance; procedure Unregister_Thread (Self : not null access Ref) is begin DDS.Ret_Code_To_Exception (RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantFactory_unregister_thread (Self.GetInterface)); end Unregister_Thread; end DDS.DomainParticipantFactory;
reznikmm/matreshka
Ada
4,720
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Style.Text_Combine_Start_Char_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Text_Combine_Start_Char_Attribute_Node is begin return Self : Style_Text_Combine_Start_Char_Attribute_Node do Matreshka.ODF_Style.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Style_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_Text_Combine_Start_Char_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Text_Combine_Start_Char_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Style_URI, Matreshka.ODF_String_Constants.Text_Combine_Start_Char_Attribute, Style_Text_Combine_Start_Char_Attribute_Node'Tag); end Matreshka.ODF_Style.Text_Combine_Start_Char_Attributes;
reznikmm/webidl
Ada
612
ads
-- SPDX-FileCopyrightText: 2021 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with WebIDL.Definitions; with WebIDL.Interface_Members; package WebIDL.Interfaces is pragma Preelaborate; type An_Interface is limited interface and WebIDL.Definitions.Definition; type Interface_Access is access all An_Interface'Class with Storage_Size => 0; not overriding function Members (Self : An_Interface) return WebIDL.Interface_Members.Interface_Member_Iterator_Access is abstract; end WebIDL.Interfaces;
zhmu/ananas
Ada
4,029
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S O C K E T S . P O L L . W A I T -- -- -- -- B o d y -- -- -- -- Copyright (C) 2020-2022, 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/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Wait implementation on top of posix select call with GNAT.Sockets.Poll.G_Wait; separate (GNAT.Sockets.Poll) procedure Wait (Fds : in out Set; Timeout : Interfaces.C.int; Result : out Integer) is use Interfaces; function Get_Max_FD return FD_Type; -- Check is Max_FD is actual and correct it if necessary type FD_Set_Type is array (0 .. Get_Max_FD / C.long'Size) of C.long with Convention => C; procedure Reset_Socket_Set (Set : in out FD_Set_Type); -- Use own FD_ZERO routine because FD_Set_Type size depend on Fds.Max_FD procedure Insert_Socket_In_Set (Set : in out FD_Set_Type; FD : FD_Type) with Import, Convention => C, External_Name => "__gnat_insert_socket_in_set"; function Is_Socket_In_Set (Set : FD_Set_Type; FD : FD_Type) return C.int with Import, Convention => C, External_Name => "__gnat_is_socket_in_set"; procedure Reset_Socket_Set (Set : in out FD_Set_Type) is begin Set := (others => 0); end Reset_Socket_Set; procedure Poll is new G_Wait (FD_Set_Type, Reset_Socket_Set, Insert_Socket_In_Set, Is_Socket_In_Set); ---------------- -- Get_Max_FD -- ---------------- function Get_Max_FD return FD_Type is begin if not Fds.Max_OK then Fds.Max_FD := Fds.Fds (Fds.Fds'First).Socket; for J in Fds.Fds'First + 1 .. Fds.Length loop if Fds.Max_FD < Fds.Fds (J).Socket then Fds.Max_FD := Fds.Fds (J).Socket; end if; end loop; Fds.Max_OK := True; end if; return Fds.Max_FD; end Get_Max_FD; begin Poll (Fds, Timeout, Result); end Wait;
RREE/build-avr-ada-toolchain
Ada
5,301
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T A G S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2010, 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 is the HI-E version of this file. Some functionality has been -- removed in order to simplify this run-time unit. with Ada.Unchecked_Conversion; with System.Storage_Elements; use System.Storage_Elements; package body Ada.Tags is ----------------------- -- Local Subprograms -- ----------------------- function Length (Str : Cstring_Ptr) return Natural; -- Length of string represented by the given pointer (treating the string -- as a C-style string, which is Nul terminated). -- Unchecked Conversions function To_Addr_Ptr is new Ada.Unchecked_Conversion (System.Address, Addr_Ptr); function To_Address is new Ada.Unchecked_Conversion (Tag, System.Address); function To_Type_Specific_Data_Ptr is new Ada.Unchecked_Conversion (System.Address, Type_Specific_Data_Ptr); ------------------- -- Expanded_Name -- ------------------- function Expanded_Name (T : Tag) return String is Result : Cstring_Ptr; TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); Result := TSD.Expanded_Name; return Result (1 .. Length (Result)); end Expanded_Name; ------------------ -- External_Tag -- ------------------ function External_Tag (T : Tag) return String is Result : Cstring_Ptr; TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); Result := TSD.External_Tag; return Result (1 .. Length (Result)); end External_Tag; ------------ -- Length -- ------------ function Length (Str : Cstring_Ptr) return Natural is Len : Integer; begin Len := 1; while Str (Len) /= ASCII.NUL loop Len := Len + 1; end loop; return Len - 1; end Length; ---------------- -- Parent_Tag -- ---------------- function Parent_Tag (T : Tag) return Tag is TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); -- The Parent_Tag of a root-level tagged type is defined to be No_Tag. -- The first entry in the Ancestors_Tags array will be null for such -- a type, but it's better to be explicit about returning No_Tag in -- this case. if TSD.Idepth = 0 then return No_Tag; else return TSD.Tags_Table (1); end if; end Parent_Tag; end Ada.Tags;
optikos/ada-lsp
Ada
845
ads
-- Copyright (c) 2017 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Streams; generic type Element_Type is private; package LSP.Generic_Optional is pragma Preelaborate; type Optional_Type (Is_Set : Boolean := False) is record case Is_Set is when True => Value : Element_Type; when False => null; end case; end record; not overriding procedure Read (S : access Ada.Streams.Root_Stream_Type'Class; V : out Optional_Type); for Optional_Type'Read use Read; not overriding procedure Write (S : access Ada.Streams.Root_Stream_Type'Class; V : Optional_Type); for Optional_Type'Write use Write; end LSP.Generic_Optional;
reznikmm/matreshka
Ada
4,741
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Style_Page_Layout_Elements; package Matreshka.ODF_Style.Page_Layout_Elements is type Style_Page_Layout_Element_Node is new Matreshka.ODF_Style.Abstract_Style_Element_Node and ODF.DOM.Style_Page_Layout_Elements.ODF_Style_Page_Layout with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Style_Page_Layout_Element_Node; overriding function Get_Local_Name (Self : not null access constant Style_Page_Layout_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Style_Page_Layout_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Style_Page_Layout_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Style_Page_Layout_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Style.Page_Layout_Elements;
zhmu/ananas
Ada
296
adb
-- { dg-do compile } -- { dg-options "-O2" } package body Inline19 is S : String := "Hello"; protected body P is function F return String is begin return Result : constant String := S do null; end return; end F; end P; end Inline19;