repo_name
stringlengths 9
74
| language
stringclasses 1
value | length_bytes
int64 11
9.34M
| extension
stringclasses 2
values | content
stringlengths 11
9.34M
|
---|---|---|---|---|
reznikmm/spawn | Ada | 15,260 | adb | --
-- Copyright (C) 2018-2023, AdaCore
--
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--
with Spawn.Internal;
with Spawn.Posix;
with GNAT.OS_Lib;
package body Spawn.Channels is
use all type Spawn.Common.Pipe_Kinds;
To_Event_Set : constant array (Spawn.Common.Pipe_Kinds) of
Spawn.Polls.Watch_Event_Set :=
(Spawn.Common.Stdin => Spawn.Polls.Output,
others => Spawn.Polls.Input);
function Errno return Interfaces.C.int is
(Interfaces.C.int (GNAT.OS_Lib.Errno));
-- return errno, number of last error
-----------------------------
-- Close_Child_Descriptors --
-----------------------------
procedure Close_Child_Descriptors
(Self : in out Channels;
Success : out Boolean)
is
use type Interfaces.C.int;
procedure Close (Pipe : in out Interfaces.C.int);
-----------
-- Close --
-----------
procedure Close (Pipe : in out Interfaces.C.int) is
Error : Interfaces.C.int;
begin
if Pipe /= Invalid then
Error := Spawn.Posix.close (Pipe);
Pipe := Invalid;
if Error /= 0 then
Success := False;
end if;
end if;
end Close;
begin
Success := True;
for Pipe of Self.Child loop
Close (Pipe);
end loop;
-- This breaks the test: Close (Self.PTY_Slave);
end Close_Child_Descriptors;
procedure Close_Parent_Descriptor
(Self : in out Channels;
Kind : Spawn.Common.Pipe_Kinds;
Poll : Spawn.Polls.Poll_Access)
is
use type Interfaces.C.int;
Ignore : Interfaces.C.int;
Pipe : Interfaces.C.int renames Self.Parent (Kind);
begin
if Pipe /= Invalid then
Poll.Watch (Value => Pipe, Events => Spawn.Polls.Empty_Set);
Ignore := Spawn.Posix.close (Pipe);
Pipe := Invalid;
end if;
end Close_Parent_Descriptor;
------------------------------
-- Close_Parent_Descriptors --
------------------------------
procedure Close_Parent_Descriptors
(Self : in out Channels;
Success : out Boolean)
is
use type Interfaces.C.int;
procedure Close (Pipe : in out Interfaces.C.int);
-----------
-- Close --
-----------
procedure Close (Pipe : in out Interfaces.C.int) is
Error : Interfaces.C.int;
begin
if Pipe /= Invalid then
Error := Spawn.Posix.close (Pipe);
Pipe := Invalid;
if Error /= 0 then
Success := False;
end if;
end if;
end Close;
begin
Success := True;
for Pipe of Self.Parent loop
if Pipe /= Self.PTY_Master then
Close (Pipe);
else
Pipe := Invalid;
end if;
end loop;
Close (Self.PTY_Master);
end Close_Parent_Descriptors;
---------------
-- Is_Active --
---------------
function Is_Active (Self : Channels) return Boolean is
begin
-- If a pipe is PTY, then we won't get close event on it
return not
(Self.Parent (Stdout) in Invalid | Self.PTY_Master
and Self.Parent (Stderr) in Invalid | Self.PTY_Master);
end Is_Active;
--------------
-- On_Event --
--------------
overriding procedure On_Event
(Self : in out Channels;
Poll : Spawn.Polls.Poll_Access;
Value : Spawn.Polls.Descriptor;
Events : Spawn.Polls.Event_Set)
is
use all type Spawn.Polls.Event;
use type Spawn.Polls.Descriptor;
procedure Close (Pipe : in out Interfaces.C.int);
procedure On_Close_Channels;
Process : not null access Spawn.Internal.Process'Class renames
Self.Process;
-----------
-- Close --
-----------
procedure Close (Pipe : in out Interfaces.C.int) is
Error : constant Interfaces.C.int := Posix.close (Pipe);
begin
if Error /= 0 then
Process.Emit_Error_Occurred (Integer (Error));
end if;
Pipe := Invalid;
end Close;
-----------------------
-- On_Close_Channels --
-----------------------
procedure On_Close_Channels is
begin
if Process.Pending_Finish then
Process.Pending_Finish := False;
Process.Status := Not_Running;
if Process.Pending_Error = 0 then
Process.Emit_Finished
(Process.Exit_Status, Process.Exit_Code);
else
Process.Emit_Error_Occurred (Process.Pending_Error);
end if;
end if;
end On_Close_Channels;
begin
if Value = Self.Parent (Launch) then
if Events (Input) then
declare
use type Ada.Streams.Stream_Element_Offset;
use type Interfaces.C.size_t;
Count : Interfaces.C.size_t;
errno : Integer := 0;
Error_Data : Ada.Streams.Stream_Element_Array
(1 .. errno'Size / 8)
with Import, Convention => Ada, Address => errno'Address;
begin
Count := Posix.read (Value, Error_Data, Error_Data'Length);
if Count = Error_Data'Length then
Process.Pending_Error := errno;
end if;
end;
end if;
if Events (Close) or Events (Error) then
if Process.Pending_Error = 0 and Process.Status = Starting then
Process.Status := Running;
Process.Emit_Started;
Process.Emit_Stdin_Available;
end if;
end if;
Close (Self.Parent (Launch));
else
-- Stdin, Stdout and Stderr could share the same FD for TTY, so
-- check them all in conbinations
if (Events (Input) or Events (Output)) and
Process.Status = Starting
then
Process.Status := Running;
Process.Emit_Started;
Process.Emit_Stdin_Available;
elsif Value = Self.Parent (Stdin) and Events (Output) then
Process.Emit_Stdin_Available;
end if;
if Events (Input) then
if Value = Self.Parent (Stdout) then
Process.Emit_Stdout_Available;
elsif Value = Self.Parent (Stderr) then
Process.Emit_Stderr_Available;
end if;
end if;
if Events (Close) then
if Value = Self.Parent (Stdout) then
Close (Self.Parent (Stdout));
elsif Value = Self.Parent (Stderr) then
Close (Self.Parent (Stderr));
end if;
end if;
end if;
if Events (Close)
and then (for all X in Launch .. Stderr => Self.Parent (X) = Invalid)
then
-- If we have closed the last input channel then check pending death
On_Close_Channels;
end if;
end On_Event;
----------
-- Read --
----------
procedure Read
(Self : in out Channels;
Kind : Spawn.Common.Pipe_Kinds;
Data : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset;
Success : in out Boolean)
is
use type Ada.Streams.Stream_Element_Offset;
use type Interfaces.C.size_t;
Count : constant Interfaces.C.size_t :=
Posix.read (Self.Parent (Kind), Data, Data'Length);
Error : constant Interfaces.C.int := Errno;
begin
Last := Data'First - 1;
if Count /= Interfaces.C.size_t'Last then
Last := Data'First + Ada.Streams.Stream_Element_Offset (Count) - 1;
elsif Error not in Posix.EAGAIN | Posix.EINTR then
Success := False;
end if;
end Read;
--------------------
-- Setup_Channels --
--------------------
procedure Setup_Channels
(Self : in out Channels;
Use_PTY : Common.Pipe_Flags;
Child : out Pipe_Array;
Success : out Boolean)
is
use type Interfaces.C.int;
procedure Setup_Pipe
(Kind : Posix.Pipe_Ends;
Read : out Interfaces.C.int;
Write : out Interfaces.C.int;
Success : in out Boolean);
procedure Setup_PTY (Success : in out Boolean);
----------------
-- Setup_Pipe --
----------------
procedure Setup_Pipe
(Kind : Posix.Pipe_Ends;
Read : out Interfaces.C.int;
Write : out Interfaces.C.int;
Success : in out Boolean)
is
procedure Cleanup;
-- Close file descriptors and unreference channel.
-------------
-- Cleanup --
-------------
procedure Cleanup is
Ignore : Interfaces.C.int;
begin
Ignore := Spawn.Posix.close (Read);
Ignore := Spawn.Posix.close (Write);
Read := Invalid;
Write := Invalid;
end Cleanup;
Fds : Spawn.Posix.Fd_Pair;
begin
Read := Invalid;
Write := Invalid;
if not Success then
return;
end if;
-- Create pipe
if Spawn.Posix.pipe2 (Fds, Posix.O_CLOEXEC) /= 0 then
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Success := False;
return;
end if;
Read := Fds (Spawn.Posix.Read_End);
Write := Fds (Spawn.Posix.Write_End);
-- Setup non-blocking mode for parent's end
if Posix.fcntl
(Fds (Kind), Posix.F_SETFL, Posix.O_NONBLOCK) /= 0
then
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Cleanup;
Success := False;
return;
end if;
end Setup_Pipe;
---------------
-- Setup_PTY --
---------------
procedure Setup_PTY (Success : in out Boolean) is
procedure Cleanup;
PTY_Master : Interfaces.C.int renames Self.PTY_Master;
Status : Interfaces.C.int;
Slave_Name : Interfaces.C.char_array (1 .. 64);
-------------
-- Cleanup --
-------------
procedure Cleanup is
Ignore : Interfaces.C.int;
begin
if PTY_Master /= Invalid then
Ignore := Spawn.Posix.close (PTY_Master);
PTY_Master := Invalid;
end if;
if Self.PTY_Slave /= Invalid then
Ignore := Spawn.Posix.close (Self.PTY_Slave);
Self.PTY_Slave := Invalid;
end if;
end Cleanup;
begin
PTY_Master := Invalid;
Self.PTY_Slave := Invalid;
if not Success then
return;
end if;
-- Open pseudoterminal's master descriptor
PTY_Master := Spawn.Posix.posix_openpt
(Spawn.Posix.O_RDWR + Spawn.Posix.O_NOCTTY);
if PTY_Master = Invalid then
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Success := False;
return;
end if;
-- Mark file descriptor as be closed on exec
if Spawn.Posix.fcntl
(PTY_Master, Spawn.Posix.F_SETFD, Spawn.Posix.FD_CLOEXEC) = Invalid
then
Cleanup;
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Success := False;
return;
end if;
-- Change mode and owner of the slave pseudoterminal device
if Spawn.Posix.grantpt (PTY_Master) /= 0 then
Cleanup;
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Success := False;
return;
end if;
-- Unlock slave pseudoterminal device
if Spawn.Posix.unlockpt (PTY_Master) /= 0 then
Cleanup;
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Success := False;
return;
end if;
-- Get name of the slave pseudoterminal device
Status := Spawn.Posix.ptsname_r
(PTY_Master, Slave_Name, Slave_Name'Length);
if Status /= 0 then
Cleanup;
Self.Process.Emit_Error_Occurred (Integer (Status));
Success := False;
return;
end if;
-- Open slave device
Self.PTY_Slave := Spawn.Posix.open
(Slave_Name, Spawn.Posix.O_RDWR + Spawn.Posix.O_CLOEXEC, 0);
if Self.PTY_Slave = Invalid then
Cleanup;
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Success := False;
return;
end if;
-- Setup non-blocking mode for the channel
if Posix.fcntl
(PTY_Master, Posix.F_SETFL, Posix.O_NONBLOCK) /= 0
then
Self.Process.Emit_Error_Occurred (GNAT.OS_Lib.Errno);
Cleanup;
Success := False;
return;
end if;
end Setup_PTY;
use type Spawn.Common.Pipe_Flags;
begin
Success := True;
if Use_PTY /= (Use_PTY'Range => False) then
Setup_PTY (Success);
Child := (Child'Range => Self.PTY_Slave);
end if;
if Use_PTY (Stdin) then
Self.Parent (Stdin) := Self.PTY_Master;
else
Setup_Pipe
(Kind => Spawn.Posix.Write_End,
Read => Self.Child (Stdin),
Write => Self.Parent (Stdin),
Success => Success);
Child (Stdin) := Self.Child (Stdin);
end if;
for X in Launch .. Stderr loop
if X /= Launch and then Use_PTY (X) then
Self.Parent (X) := Self.PTY_Master;
else
Setup_Pipe
(Kind => Spawn.Posix.Read_End,
Read => Self.Parent (X),
Write => Self.Child (X),
Success => Success);
Child (X) := Self.Child (X);
end if;
end loop;
end Setup_Channels;
-----------------
-- Start_Watch --
-----------------
procedure Start_Watch
(Self : in out Channels;
Kind : Spawn.Common.Pipe_Kinds;
Poll : Spawn.Polls.Poll_Access)
is
Pipe : Interfaces.C.int renames Self.Parent (Kind);
begin
Poll.Watch
(Value => Pipe,
Events => To_Event_Set (Kind),
Listener => Self'Unchecked_Access);
end Start_Watch;
-----------------
-- Write_Stdin --
-----------------
procedure Write_Stdin
(Self : in out Channels;
Data : Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset;
Success : in out Boolean)
is
use type Ada.Streams.Stream_Element_Offset;
use type Interfaces.C.size_t;
Count : constant Interfaces.C.size_t :=
Posix.write (Self.Parent (Stdin), Data, Data'Length);
Error : constant Interfaces.C.int := Errno;
begin
Last := Data'First - 1;
if Count /= Interfaces.C.size_t'Last then
Last := Data'First + Ada.Streams.Stream_Element_Offset (Count) - 1;
elsif Error not in Posix.EAGAIN | Posix.EINTR then
Success := False;
end if;
end Write_Stdin;
end Spawn.Channels;
|
kontena/ruby-packer | Ada | 10,694 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- ncurses --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 2000-2006,2008 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Eugene V. Melaragno <[email protected]> 2000
-- Version Control
-- $Revision: 1.6 $
-- $Date: 2008/07/26 18:47:34 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with ncurses2.util; use ncurses2.util;
with ncurses2.genericPuts;
with Terminal_Interface.Curses; use Terminal_Interface.Curses;
with Ada.Strings.Unbounded;
with Ada.Strings.Fixed;
procedure ncurses2.acs_display is
use Int_IO;
procedure show_upper_chars (first : Integer);
function show_1_acs (N : Integer;
name : String;
code : Attributed_Character)
return Integer;
procedure show_acs_chars;
procedure show_upper_chars (first : Integer) is
C1 : constant Boolean := (first = 128);
last : constant Integer := first + 31;
package p is new ncurses2.genericPuts (200);
use p;
use p.BS;
use Ada.Strings.Unbounded;
tmpa : Unbounded_String;
tmpb : BS.Bounded_String;
begin
Erase;
Switch_Character_Attribute
(Attr => (Bold_Character => True, others => False));
Move_Cursor (Line => 0, Column => 20);
tmpa := To_Unbounded_String ("Display of ");
if C1 then
tmpa := tmpa & "C1";
else
tmpa := tmpa & "GR";
end if;
tmpa := tmpa & " Character Codes ";
myPut (tmpb, first);
Append (tmpa, To_String (tmpb));
Append (tmpa, " to ");
myPut (tmpb, last);
Append (tmpa, To_String (tmpb));
Add (Str => To_String (tmpa));
Switch_Character_Attribute
(On => False,
Attr => (Bold_Character => True, others => False));
Refresh;
for code in first .. last loop
declare
row : constant Line_Position
:= Line_Position (4 + ((code - first) mod 16));
col : constant Column_Position
:= Column_Position (((code - first) / 16) *
Integer (Columns) / 2);
tmp3 : String (1 .. 3);
tmpx : String (1 .. Integer (Columns / 4));
reply : Key_Code;
begin
Put (tmp3, code);
myPut (tmpb, code, 16);
tmpa := To_Unbounded_String (tmp3 & " (" & To_String (tmpb) & ')');
Ada.Strings.Fixed.Move (To_String (tmpa), tmpx,
Justify => Ada.Strings.Right);
Add (Line => row, Column => col,
Str => tmpx & ' ' & ':' & ' ');
if C1 then
Set_NoDelay_Mode (Mode => True);
end if;
Add_With_Immediate_Echo (Ch => Code_To_Char (Key_Code (code)));
-- TODO check this
if C1 then
reply := Getchar;
while reply /= Key_None loop
Add (Ch => Code_To_Char (reply));
Nap_Milli_Seconds (10);
reply := Getchar;
end loop;
Set_NoDelay_Mode (Mode => False);
end if;
end;
end loop;
end show_upper_chars;
function show_1_acs (N : Integer;
name : String;
code : Attributed_Character)
return Integer is
height : constant Integer := 16;
row : constant Line_Position := Line_Position (4 + (N mod height));
col : constant Column_Position := Column_Position ((N / height) *
Integer (Columns) / 2);
tmpx : String (1 .. Integer (Columns) / 3);
begin
Ada.Strings.Fixed.Move (name, tmpx,
Justify => Ada.Strings.Right,
Drop => Ada.Strings.Left);
Add (Line => row, Column => col, Str => tmpx & ' ' & ':' & ' ');
-- we need more room than C because our identifiers are longer
-- 22 chars actually
Add (Ch => code);
return N + 1;
end show_1_acs;
procedure show_acs_chars is
n : Integer;
begin
Erase;
Switch_Character_Attribute
(Attr => (Bold_Character => True, others => False));
Add (Line => 0, Column => 20,
Str => "Display of the ACS Character Set");
Switch_Character_Attribute (On => False,
Attr => (Bold_Character => True,
others => False));
Refresh;
-- the following is useful to generate the below
-- grep '^[ ]*ACS_' ../src/terminal_interface-curses.ads |
-- awk '{print "n := show_1_acs(n, \""$1"\", ACS_Map("$1"));"}'
n := show_1_acs (0, "ACS_Upper_Left_Corner",
ACS_Map (ACS_Upper_Left_Corner));
n := show_1_acs (n, "ACS_Lower_Left_Corner",
ACS_Map (ACS_Lower_Left_Corner));
n := show_1_acs (n, "ACS_Upper_Right_Corner",
ACS_Map (ACS_Upper_Right_Corner));
n := show_1_acs (n, "ACS_Lower_Right_Corner",
ACS_Map (ACS_Lower_Right_Corner));
n := show_1_acs (n, "ACS_Left_Tee", ACS_Map (ACS_Left_Tee));
n := show_1_acs (n, "ACS_Right_Tee", ACS_Map (ACS_Right_Tee));
n := show_1_acs (n, "ACS_Bottom_Tee", ACS_Map (ACS_Bottom_Tee));
n := show_1_acs (n, "ACS_Top_Tee", ACS_Map (ACS_Top_Tee));
n := show_1_acs (n, "ACS_Horizontal_Line",
ACS_Map (ACS_Horizontal_Line));
n := show_1_acs (n, "ACS_Vertical_Line", ACS_Map (ACS_Vertical_Line));
n := show_1_acs (n, "ACS_Plus_Symbol", ACS_Map (ACS_Plus_Symbol));
n := show_1_acs (n, "ACS_Scan_Line_1", ACS_Map (ACS_Scan_Line_1));
n := show_1_acs (n, "ACS_Scan_Line_9", ACS_Map (ACS_Scan_Line_9));
n := show_1_acs (n, "ACS_Diamond", ACS_Map (ACS_Diamond));
n := show_1_acs (n, "ACS_Checker_Board", ACS_Map (ACS_Checker_Board));
n := show_1_acs (n, "ACS_Degree", ACS_Map (ACS_Degree));
n := show_1_acs (n, "ACS_Plus_Minus", ACS_Map (ACS_Plus_Minus));
n := show_1_acs (n, "ACS_Bullet", ACS_Map (ACS_Bullet));
n := show_1_acs (n, "ACS_Left_Arrow", ACS_Map (ACS_Left_Arrow));
n := show_1_acs (n, "ACS_Right_Arrow", ACS_Map (ACS_Right_Arrow));
n := show_1_acs (n, "ACS_Down_Arrow", ACS_Map (ACS_Down_Arrow));
n := show_1_acs (n, "ACS_Up_Arrow", ACS_Map (ACS_Up_Arrow));
n := show_1_acs (n, "ACS_Board_Of_Squares",
ACS_Map (ACS_Board_Of_Squares));
n := show_1_acs (n, "ACS_Lantern", ACS_Map (ACS_Lantern));
n := show_1_acs (n, "ACS_Solid_Block", ACS_Map (ACS_Solid_Block));
n := show_1_acs (n, "ACS_Scan_Line_3", ACS_Map (ACS_Scan_Line_3));
n := show_1_acs (n, "ACS_Scan_Line_7", ACS_Map (ACS_Scan_Line_7));
n := show_1_acs (n, "ACS_Less_Or_Equal", ACS_Map (ACS_Less_Or_Equal));
n := show_1_acs (n, "ACS_Greater_Or_Equal",
ACS_Map (ACS_Greater_Or_Equal));
n := show_1_acs (n, "ACS_PI", ACS_Map (ACS_PI));
n := show_1_acs (n, "ACS_Not_Equal", ACS_Map (ACS_Not_Equal));
n := show_1_acs (n, "ACS_Sterling", ACS_Map (ACS_Sterling));
if n = 0 then
raise Constraint_Error;
end if;
end show_acs_chars;
c1 : Key_Code;
c : Character := 'a';
begin
loop
case c is
when 'a' =>
show_acs_chars;
when '0' | '1' | '2' | '3' =>
show_upper_chars (ctoi (c) * 32 + 128);
when others =>
null;
end case;
Add (Line => Lines - 3, Column => 0,
Str => "Note: ANSI terminals may not display C1 characters.");
Add (Line => Lines - 2, Column => 0,
Str => "Select: a=ACS, 0=C1, 1,2,3=GR characters, q=quit");
Refresh;
c1 := Getchar;
c := Code_To_Char (c1);
exit when c = 'q' or c = 'x';
end loop;
Pause;
Erase;
End_Windows;
end ncurses2.acs_display;
|
reznikmm/matreshka | Ada | 3,805 | adb | ------------------------------------------------------------------------------
-- --
-- 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 ODF.Constants;
package body Matreshka.ODF_Attributes.Style.Text_Underline_Style is
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Style_Text_Underline_Style_Node)
return League.Strings.Universal_String is
begin
return ODF.Constants.Text_Underline_Style_Name;
end Get_Local_Name;
end Matreshka.ODF_Attributes.Style.Text_Underline_Style;
|
reznikmm/matreshka | Ada | 3,730 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2016-2017, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
package body Core.Connectables.Slots_0.Slots_1 is
---------------------
-- Create_Slot_End --
---------------------
not overriding function Create_Slot_End
(Self : Slot) return not null Slot_End_Access is
begin
raise Program_Error with "Slot.Create_Slot_End must be overrided";
return null;
end Create_Slot_End;
end Core.Connectables.Slots_0.Slots_1;
|
reznikmm/matreshka | Ada | 3,897 | adb | ------------------------------------------------------------------------------
-- --
-- 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.Declarations;
package body Properties.Declarations.Defining_Expanded_Name is
----------
-- Code --
----------
function Code
(Engine : access Engines.Contexts.Context;
Element : Asis.Declaration;
Name : Engines.Text_Property)
return League.Strings.Universal_String
is
Selector : constant Asis.Defining_Name :=
Asis.Declarations.Defining_Selector (Element);
begin
return Engine.Text.Get_Property (Selector, Name);
end Code;
end Properties.Declarations.Defining_Expanded_Name;
|
optikos/oasis | Ada | 3,909 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Defining_Names;
with Program.Elements.Enumeration_Literal_Specifications;
with Program.Element_Visitors;
package Program.Nodes.Enumeration_Literal_Specifications is
pragma Preelaborate;
type Enumeration_Literal_Specification is
new Program.Nodes.Node
and Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification
and Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification_Text
with private;
function Create
(Name : not null Program.Elements.Defining_Names.Defining_Name_Access)
return Enumeration_Literal_Specification;
type Implicit_Enumeration_Literal_Specification is
new Program.Nodes.Node
and Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification
with private;
function Create
(Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Enumeration_Literal_Specification
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Enumeration_Literal_Specification is
abstract new Program.Nodes.Node
and Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification
with record
Name : not null Program.Elements.Defining_Names.Defining_Name_Access;
end record;
procedure Initialize
(Self : aliased in out Base_Enumeration_Literal_Specification'Class);
overriding procedure Visit
(Self : not null access Base_Enumeration_Literal_Specification;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Name
(Self : Base_Enumeration_Literal_Specification)
return not null Program.Elements.Defining_Names.Defining_Name_Access;
overriding function Is_Enumeration_Literal_Specification_Element
(Self : Base_Enumeration_Literal_Specification)
return Boolean;
overriding function Is_Declaration_Element
(Self : Base_Enumeration_Literal_Specification)
return Boolean;
type Enumeration_Literal_Specification is
new Base_Enumeration_Literal_Specification
and Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification_Text
with null record;
overriding function To_Enumeration_Literal_Specification_Text
(Self : aliased in out Enumeration_Literal_Specification)
return Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification_Text_Access;
type Implicit_Enumeration_Literal_Specification is
new Base_Enumeration_Literal_Specification
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
end record;
overriding function To_Enumeration_Literal_Specification_Text
(Self : aliased in out Implicit_Enumeration_Literal_Specification)
return Program.Elements.Enumeration_Literal_Specifications
.Enumeration_Literal_Specification_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Enumeration_Literal_Specification)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Enumeration_Literal_Specification)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Enumeration_Literal_Specification)
return Boolean;
end Program.Nodes.Enumeration_Literal_Specifications;
|
dan76/Amass | Ada | 1,966 | ads | -- Copyright © by Jeff Foley 2017-2023. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-- SPDX-License-Identifier: Apache-2.0
local json = require("json")
name = "CertCentral"
type = "cert"
function start()
set_rate_limit(1)
end
function check()
local c
local cfg = datasrc_config()
if (cfg ~= nil) then
c = cfg.credentials
end
if (c ~= nil and c.username ~= nil and
c.username ~= "" and c.key ~= nil and c.key ~= "") then
return true
end
return false
end
function vertical(ctx, domain)
local c
local cfg = datasrc_config()
if (cfg ~= nil) then
c = cfg.credentials
end
if (c == nil or c.username == nil or
c.username == "" or c.key == nil or c.key == "") then
return
end
local body, err = json.encode({
['accountId']=c.username,
['domains']={domain},
})
if (err ~= nil and err ~= "") then
return
end
local resp, err = request(ctx, {
['url']="https://daas.digicert.com/apicontroller/v1/scan/getSubdomains",
['method']="POST",
['header']={
['Content-Type']="application/json",
['X-DC-DEVKEY']=c.key,
},
['body']=body,
})
if (err ~= nil and err ~= "") then
log(ctx, "vertical request to service failed: " .. err)
return
elseif (resp.status_code < 200 or resp.status_code >= 400) then
log(ctx, "vertical request to service returned with status code: " .. resp.status)
return
end
local j = json.decode(resp.body)
if (j == nil) then
log(ctx, "failed to decode the JSON response")
return
elseif (j.error ~= nil) then
log (ctx, "error returned by the vertical request: " .. j.error)
return
end
for _, sub in pairs(j.data[1].subdomains) do
new_name(ctx, sub)
end
end
|
reznikmm/matreshka | Ada | 5,790 | 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.
------------------------------------------------------------------------------
-- Protocol state machines can be redefined into more specific protocol state
-- machines, or into behavioral state machines. Protocol conformance declares
-- that the specific protocol state machine specifies a protocol that
-- conforms to the general state machine one, or that the specific behavioral
-- state machine abide by the protocol of the general protocol state machine.
------------------------------------------------------------------------------
with AMF.UML.Directed_Relationships;
limited with AMF.UML.Protocol_State_Machines;
package AMF.UML.Protocol_Conformances is
pragma Preelaborate;
type UML_Protocol_Conformance is limited interface
and AMF.UML.Directed_Relationships.UML_Directed_Relationship;
type UML_Protocol_Conformance_Access is
access all UML_Protocol_Conformance'Class;
for UML_Protocol_Conformance_Access'Storage_Size use 0;
not overriding function Get_General_Machine
(Self : not null access constant UML_Protocol_Conformance)
return AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access is abstract;
-- Getter of ProtocolConformance::generalMachine.
--
-- Specifies the protocol state machine to which the specific state
-- machine conforms.
not overriding procedure Set_General_Machine
(Self : not null access UML_Protocol_Conformance;
To : AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access) is abstract;
-- Setter of ProtocolConformance::generalMachine.
--
-- Specifies the protocol state machine to which the specific state
-- machine conforms.
not overriding function Get_Specific_Machine
(Self : not null access constant UML_Protocol_Conformance)
return AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access is abstract;
-- Getter of ProtocolConformance::specificMachine.
--
-- Specifies the state machine which conforms to the general state machine.
not overriding procedure Set_Specific_Machine
(Self : not null access UML_Protocol_Conformance;
To : AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access) is abstract;
-- Setter of ProtocolConformance::specificMachine.
--
-- Specifies the state machine which conforms to the general state machine.
end AMF.UML.Protocol_Conformances;
|
reznikmm/matreshka | Ada | 34,439 | adb | ------------------------------------------------------------------------------
-- --
-- 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.Elements;
with AMF.Holders.Elements;
package body AMF.Internals.Holders.UML_Holders is
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Abstractions.UML_Abstraction_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Accept_Event_Actions.UML_Accept_Event_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Actions.UML_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Activities.UML_Activity_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Activity_Groups.UML_Activity_Group_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Activity_Nodes.UML_Activity_Node_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Activity_Partitions.UML_Activity_Partition_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Artifacts.UML_Artifact_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Associations.UML_Association_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Association_Classes.UML_Association_Class_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Behavioral_Features.UML_Behavioral_Feature_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Behaviors.UML_Behavior_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Classifiers.UML_Classifier_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Classes.UML_Class_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Collaborations.UML_Collaboration_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Combined_Fragments.UML_Combined_Fragment_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Components.UML_Component_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Connectable_Element_Template_Parameters.UML_Connectable_Element_Template_Parameter_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Connectable_Elements.UML_Connectable_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Connectors.UML_Connector_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Constraints.UML_Constraint_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Data_Types.UML_Data_Type_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Dependencies.UML_Dependency_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Deployment_Targets.UML_Deployment_Target_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Deployments.UML_Deployment_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Duration_Intervals.UML_Duration_Interval_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Durations.UML_Duration_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Elements.UML_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Enumeration_Literals.UML_Enumeration_Literal_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Enumerations.UML_Enumeration_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Events.UML_Event_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Executable_Nodes.UML_Executable_Node_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Execution_Specifications.UML_Execution_Specification_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Expansion_Regions.UML_Expansion_Region_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Extension_Ends.UML_Extension_End_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Input_Pins.UML_Input_Pin_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Instance_Specifications.UML_Instance_Specification_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Interaction_Constraints.UML_Interaction_Constraint_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Interactions.UML_Interaction_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Interfaces.UML_Interface_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Interruptible_Activity_Regions.UML_Interruptible_Activity_Region_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Intervals.UML_Interval_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Invocation_Actions.UML_Invocation_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Lifelines.UML_Lifeline_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Literal_Specifications.UML_Literal_Specification_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Message_Ends.UML_Message_End_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Messages.UML_Message_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Models.UML_Model_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Multiplicity_Elements.UML_Multiplicity_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Named_Elements.UML_Named_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Namespaces.UML_Namespace_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Object_Flows.UML_Object_Flow_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Object_Nodes.UML_Object_Node_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Occurrence_Specifications.UML_Occurrence_Specification_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Opaque_Actions.UML_Opaque_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Opaque_Expressions.UML_Opaque_Expression_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Operation_Template_Parameters.UML_Operation_Template_Parameter_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Operations.UML_Operation_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Output_Pins.UML_Output_Pin_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Packageable_Elements.UML_Packageable_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Packages.UML_Package_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Part_Decompositions.UML_Part_Decomposition_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Parameters.UML_Parameter_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Ports.UML_Port_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Profiles.UML_Profile_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Properties.UML_Property_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Regions.UML_Region_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Send_Object_Actions.UML_Send_Object_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Send_Signal_Actions.UML_Send_Signal_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Signals.UML_Signal_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.State_Machines.UML_State_Machine_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.States.UML_State_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Stereotypes.UML_Stereotype_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.String_Expressions.UML_String_Expression_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Structural_Features.UML_Structural_Feature_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Template_Bindings.UML_Template_Binding_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Template_Parameters.UML_Template_Parameter_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Template_Signatures.UML_Template_Signature_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Templateable_Elements.UML_Templateable_Element_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Time_Intervals.UML_Time_Interval_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Time_Events.UML_Time_Event_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Time_Expressions.UML_Time_Expression_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Transitions.UML_Transition_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Triggers.UML_Trigger_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Types.UML_Type_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Usages.UML_Usage_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Use_Cases.UML_Use_Case_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Value_Specifications.UML_Value_Specification_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Variables.UML_Variable_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Vertexs.UML_Vertex_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
---------------
-- To_Holder --
---------------
function To_Holder
(Item : AMF.UML.Write_Structural_Feature_Actions.UML_Write_Structural_Feature_Action_Access)
return League.Holders.Holder is
begin
return
AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item));
end To_Holder;
end AMF.Internals.Holders.UML_Holders;
|
clairvoyant/qt5ada | Ada | 386 | ads | --
-- This library is free software; you can redistribute it and/or modify
-- it under the terms of the GNU Library General Public License as
-- published by the Free Software Foundation; either version 3 of the
-- License; or (at your option) any later version.
-- Copyright (C) 2002 Leonid Dulman
with gener_builtin;
package builtin is new gener_builtin (varing_max => 255);
|
reznikmm/matreshka | Ada | 4,639 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Text.Display_Levels_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Text_Display_Levels_Attribute_Node is
begin
return Self : Text_Display_Levels_Attribute_Node do
Matreshka.ODF_Text.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Text_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Text_Display_Levels_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Display_Levels_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Text_URI,
Matreshka.ODF_String_Constants.Display_Levels_Attribute,
Text_Display_Levels_Attribute_Node'Tag);
end Matreshka.ODF_Text.Display_Levels_Attributes;
|
jwarwick/aoc_2020 | Ada | 653 | ads | -- AOC 2020, Day 3
with Ada.Containers.Ordered_Sets;
package Day is
type Forest is private;
function load_map(filename : in String) return Forest;
function trees_hit(f : in Forest; slope : in Natural) return Natural;
function many_trees_hit(f : in Forest) return Natural;
private
type Position is Record
X : Natural := 0;
Y : Natural := 0;
end record;
function "<"(left, right : in Position) return Boolean;
package Tree_Sets is new Ada.Containers.Ordered_Sets
(Element_Type => Position);
type Forest is Record
Trees : Tree_Sets.Set;
height : Natural := 0;
width : Natural := 0;
end record;
end Day;
|
oysteinlondal/Inverted-Pendulum | Ada | 312 | ads | with Ada.Real_Time; use Ada.Real_Time;
package Task_Scheduling is
protected Epoch with Priority => 25 is
procedure Get_Start_Time(Start_Time : out Ada.Real_Time.Time);
private
Start : Ada.Real_Time.Time;
First : Boolean := True;
end Epoch;
end Task_Scheduling; |
optikos/oasis | Ada | 1,683 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Element_Vectors;
with Program.Elements.Expressions;
with Program.Lexical_Elements;
package Program.Elements.Identifiers is
pragma Pure (Program.Elements.Identifiers);
type Identifier is
limited interface and Program.Elements.Expressions.Expression;
type Identifier_Access is access all Identifier'Class
with Storage_Size => 0;
not overriding function Image (Self : Identifier) return Text is abstract;
type Identifier_Text is limited interface;
type Identifier_Text_Access is access all Identifier_Text'Class
with Storage_Size => 0;
not overriding function To_Identifier_Text
(Self : aliased in out Identifier)
return Identifier_Text_Access is abstract;
not overriding function Identifier_Token
(Self : Identifier_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
type Identifier_Vector is
limited interface and Program.Element_Vectors.Element_Vector;
type Identifier_Vector_Access is access all Identifier_Vector'Class
with Storage_Size => 0;
overriding function Element
(Self : Identifier_Vector;
Index : Positive)
return not null Program.Elements.Element_Access is abstract
with Post'Class => Element'Result.Is_Identifier;
function To_Identifier
(Self : Identifier_Vector'Class;
Index : Positive)
return not null Identifier_Access
is (Self.Element (Index).To_Identifier);
end Program.Elements.Identifiers;
|
charlie5/lace | Ada | 1,231 | ads | private
with
openGL.Geometry.colored;
package openGL.Model.line.colored
--
-- Models a colored line.
--
is
type Item is new Model.line.item with private;
type View is access all Item'Class;
---------
--- Forge
--
function new_line_Model (Color : in openGL.Color;
End_1,
End_2 : in Vector_3 := Origin_3D) return View;
--------------
--- Attributes
--
overriding
function to_GL_Geometries (Self : access Item; Textures : access Texture.name_Map_of_texture'Class;
Fonts : in Font.font_id_Map_of_font) return Geometry.views;
subtype end_Id is Index_t range 1 .. 2;
procedure Site_is (Self : in out Item; Now : in Vector_3;
for_End : in end_Id);
function Site (Self : in Item; for_End : in end_Id) return Vector_3;
private
type Item is new Model.line.item with
record
Color : openGL.rgb_Color;
Vertices : Geometry.colored.Vertex_array (end_Id);
Geometry : access Geometry.colored.item'Class;
end record;
end openGL.Model.line.colored;
|
reznikmm/matreshka | Ada | 5,097 | 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.Generic_Collections;
package AMF.UML.Instance_Values.Collections is
pragma Preelaborate;
package UML_Instance_Value_Collections is
new AMF.Generic_Collections
(UML_Instance_Value,
UML_Instance_Value_Access);
type Set_Of_UML_Instance_Value is
new UML_Instance_Value_Collections.Set with null record;
Empty_Set_Of_UML_Instance_Value : constant Set_Of_UML_Instance_Value;
type Ordered_Set_Of_UML_Instance_Value is
new UML_Instance_Value_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Instance_Value : constant Ordered_Set_Of_UML_Instance_Value;
type Bag_Of_UML_Instance_Value is
new UML_Instance_Value_Collections.Bag with null record;
Empty_Bag_Of_UML_Instance_Value : constant Bag_Of_UML_Instance_Value;
type Sequence_Of_UML_Instance_Value is
new UML_Instance_Value_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Instance_Value : constant Sequence_Of_UML_Instance_Value;
private
Empty_Set_Of_UML_Instance_Value : constant Set_Of_UML_Instance_Value
:= (UML_Instance_Value_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Instance_Value : constant Ordered_Set_Of_UML_Instance_Value
:= (UML_Instance_Value_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Instance_Value : constant Bag_Of_UML_Instance_Value
:= (UML_Instance_Value_Collections.Bag with null record);
Empty_Sequence_Of_UML_Instance_Value : constant Sequence_Of_UML_Instance_Value
:= (UML_Instance_Value_Collections.Sequence with null record);
end AMF.UML.Instance_Values.Collections;
|
Gabriel-Degret/adalib | Ada | 703 | ads | -- Standard Ada library specification
-- Copyright (c) 2003-2018 Maxim Reznik <[email protected]>
-- 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.Streams;
package Ada.Wide_Text_IO.Text_Streams is
type Stream_Access is access all Streams.Root_Stream_Type'Class;
function Stream (File : in File_Type) return Stream_Access;
end Ada.Wide_Text_IO.Text_Streams;
|
reznikmm/matreshka | Ada | 18,145 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2015, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
pragma Restrictions (No_Elaboration_Code);
-- GNAT: enforce generation of preinitialized data section instead of
-- generation of elaboration code.
package Matreshka.Internals.Unicode.Ucd.Core_00AA is
pragma Preelaborate;
Group_00AA : aliased constant Core_Second_Stage
:= (16#00# .. 16#28# => -- AA00 .. AA28
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#29# .. 16#2E# => -- AA29 .. AA2E
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#2F# .. 16#30# => -- AA2F .. AA30
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#31# .. 16#32# => -- AA31 .. AA32
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#33# .. 16#34# => -- AA33 .. AA34
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#35# .. 16#36# => -- AA35 .. AA36
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#37# .. 16#3F# => -- AA37 .. AA3F
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#40# .. 16#42# => -- AA40 .. AA42
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#43# => -- AA43
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#44# .. 16#4B# => -- AA44 .. AA4B
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#4C# => -- AA4C
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#4D# => -- AA4D
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#4E# .. 16#4F# => -- AA4E .. AA4F
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#50# .. 16#59# => -- AA50 .. AA59
(Decimal_Number, Neutral,
Other, Numeric, Numeric, Numeric,
(Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#5A# .. 16#5B# => -- AA5A .. AA5B
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#5C# => -- AA5C
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#5D# .. 16#5F# => -- AA5D .. AA5F
(Other_Punctuation, Neutral,
Other, Other, S_Term, Break_After,
(STerm
| Terminal_Punctuation
| Grapheme_Base => True,
others => False)),
16#70# => -- AA70
(Modifier_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Extender
| Alphabetic
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#77# .. 16#79# => -- AA77 .. AA79
(Other_Symbol, Neutral,
Other, Other, Other, Complex_Context,
(Grapheme_Base => True,
others => False)),
16#7B# => -- AA7B
(Spacing_Mark, Neutral,
Other, Extend, Extend, Complex_Context,
(Diacritic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#7C# => -- AA7C
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#7D# => -- AA7D
(Spacing_Mark, Neutral,
Other, Extend, Extend, Complex_Context,
(Diacritic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#B0# => -- AAB0
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#B2# .. 16#B4# => -- AAB2 .. AAB4
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#B5# .. 16#B6# => -- AAB5 .. AAB6
(Other_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Logical_Order_Exception
| Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#B7# .. 16#B8# => -- AAB7 .. AAB8
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#B9# => -- AAB9
(Other_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Logical_Order_Exception
| Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#BB# .. 16#BC# => -- AABB .. AABC
(Other_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Logical_Order_Exception
| Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#BE# => -- AABE
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#BF# => -- AABF
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C0# => -- AAC0
(Other_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Diacritic
| Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#C1# => -- AAC1
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Complex_Context,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C2# => -- AAC2
(Other_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Diacritic
| Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#C3# .. 16#DA# => -- AAC3 .. AADA
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#DD# => -- AADD
(Modifier_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Extender
| Alphabetic
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#DE# => -- AADE
(Other_Punctuation, Neutral,
Other, Other, Other, Complex_Context,
(Grapheme_Base => True,
others => False)),
16#DF# => -- AADF
(Other_Punctuation, Neutral,
Other, Other, Other, Complex_Context,
(Terminal_Punctuation
| Grapheme_Base => True,
others => False)),
16#E0# .. 16#EA# => -- AAE0 .. AAEA
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#EB# => -- AAEB
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#EC# .. 16#ED# => -- AAEC .. AAED
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#EE# .. 16#EF# => -- AAEE .. AAEF
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#F0# .. 16#F1# => -- AAF0 .. AAF1
(Other_Punctuation, Neutral,
Other, Other, S_Term, Break_After,
(STerm
| Terminal_Punctuation
| Grapheme_Base => True,
others => False)),
16#F2# => -- AAF2
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#F3# .. 16#F4# => -- AAF3 .. AAF4
(Modifier_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Extender
| Alphabetic
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#F5# => -- AAF5
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#F6# => -- AAF6
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| Grapheme_Link
| ID_Continue
| XID_Continue => True,
others => False)),
16#F7# .. 16#FF# => -- AAF7 .. AAFF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
others =>
(Other_Letter, Neutral,
Other, Other, O_Letter, Complex_Context,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_00AA;
|
micahwelf/FLTK-Ada | Ada | 4,601 | adb |
with
Interfaces.C,
System;
use type
Interfaces.C.int,
System.Address;
package body FLTK.Widgets.Menus.Choices is
procedure choice_set_draw_hook
(W, D : in System.Address);
pragma Import (C, choice_set_draw_hook, "choice_set_draw_hook");
pragma Inline (choice_set_draw_hook);
procedure choice_set_handle_hook
(W, H : in System.Address);
pragma Import (C, choice_set_handle_hook, "choice_set_handle_hook");
pragma Inline (choice_set_handle_hook);
function new_fl_choice
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return System.Address;
pragma Import (C, new_fl_choice, "new_fl_choice");
pragma Inline (new_fl_choice);
procedure free_fl_choice
(B : in System.Address);
pragma Import (C, free_fl_choice, "free_fl_choice");
pragma Inline (free_fl_choice);
function fl_choice_value
(M : in System.Address)
return Interfaces.C.int;
pragma Import (C, fl_choice_value, "fl_choice_value");
pragma Inline (fl_choice_value);
function fl_choice_set_value
(M : in System.Address;
I : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_choice_set_value, "fl_choice_set_value");
pragma Inline (fl_choice_set_value);
function fl_choice_set_value2
(M, I : in System.Address)
return Interfaces.C.int;
pragma Import (C, fl_choice_set_value2, "fl_choice_set_value2");
pragma Inline (fl_choice_set_value2);
procedure fl_choice_draw
(W : in System.Address);
pragma Import (C, fl_choice_draw, "fl_choice_draw");
pragma Inline (fl_choice_draw);
function fl_choice_handle
(W : in System.Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_choice_handle, "fl_choice_handle");
pragma Inline (fl_choice_handle);
procedure Finalize
(This : in out Choice) is
begin
if This.Void_Ptr /= System.Null_Address and then
This in Choice'Class
then
if This.Needs_Dealloc then
free_fl_choice (This.Void_Ptr);
end if;
This.Void_Ptr := System.Null_Address;
end if;
Finalize (Widget (This));
end Finalize;
package body Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String)
return Choice is
begin
return This : Choice do
This.Void_Ptr := new_fl_choice
(Interfaces.C.int (X),
Interfaces.C.int (Y),
Interfaces.C.int (W),
Interfaces.C.int (H),
Interfaces.C.To_C (Text));
fl_widget_set_user_data
(This.Void_Ptr,
Widget_Convert.To_Address (This'Unchecked_Access));
choice_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
choice_set_handle_hook (This.Void_Ptr, Handle_Hook'Address);
end return;
end Create;
end Forge;
function Chosen
(This : in Choice)
return FLTK.Menu_Items.Menu_Item_Reference is
begin
return (Data => This.My_Items.Element (This.Chosen_Index));
end Chosen;
function Chosen_Index
(This : in Choice)
return Extended_Index is
begin
return Extended_Index (fl_choice_value (This.Void_Ptr) + 1);
end Chosen_Index;
procedure Set_Chosen
(This : in out Choice;
Place : in Index)
is
Ignore_Ret : Interfaces.C.int;
begin
Ignore_Ret := fl_choice_set_value (This.Void_Ptr, Interfaces.C.int (Place) - 1);
end Set_Chosen;
procedure Set_Chosen
(This : in out Choice;
Item : in FLTK.Menu_Items.Menu_Item)
is
Ignore_Ret : Interfaces.C.int;
begin
Ignore_Ret := fl_choice_set_value2 (This.Void_Ptr, Wrapper (Item).Void_Ptr);
end Set_Chosen;
procedure Draw
(This : in out Choice) is
begin
fl_choice_draw (This.Void_Ptr);
end Draw;
function Handle
(This : in out Choice;
Event : in Event_Kind)
return Event_Outcome is
begin
return Event_Outcome'Val
(fl_choice_handle (This.Void_Ptr, Event_Kind'Pos (Event)));
end Handle;
end FLTK.Widgets.Menus.Choices;
|
docandrew/troodon | Ada | 5,598 | ads | pragma Ada_2012;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with System;
with Interfaces.C.Strings;
with bits_types_h;
with stddef_h;
package bits_types_struct_FILE_h is
-- Copyright (C) 1991-2021 Free Software Foundation, Inc.
-- This file is part of the GNU C Library.
-- The GNU C Library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2.1 of the License, or (at your option) any later version.
-- The GNU C Library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
-- You should have received a copy of the GNU Lesser General Public
-- License along with the GNU C Library; if not, see
-- <https://www.gnu.org/licenses/>.
-- Caution: The contents of this file are not part of the official
-- stdio.h API. However, much of it is part of the official *binary*
-- interface, and therefore cannot be changed.
type u_IO_marker is null record; -- incomplete struct
type u_IO_codecvt is null record; -- incomplete struct
type u_IO_wide_data is null record; -- incomplete struct
-- During the build of glibc itself, _IO_lock_t will already have been
-- defined by internal headers.
subtype u_IO_lock_t is System.Address; -- /usr/include/bits/types/struct_FILE.h:43
-- The tag name of this struct is _IO_FILE to preserve historic
-- C++ mangled names for functions taking FILE* arguments.
-- That name should not be used in new code.
-- High-order word is _IO_MAGIC; rest is flags.
type u_IO_FILE;
subtype u_IO_FILE_array1135 is Interfaces.C.char_array (0 .. 0);
subtype u_IO_FILE_array1140 is Interfaces.C.char_array (0 .. 19);
type u_IO_FILE is record
u_flags : aliased int; -- /usr/include/bits/types/struct_FILE.h:51
u_IO_read_ptr : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:54
u_IO_read_end : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:55
u_IO_read_base : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:56
u_IO_write_base : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:57
u_IO_write_ptr : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:58
u_IO_write_end : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:59
u_IO_buf_base : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:60
u_IO_buf_end : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:61
u_IO_save_base : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:64
u_IO_backup_base : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:65
u_IO_save_end : Interfaces.C.Strings.chars_ptr; -- /usr/include/bits/types/struct_FILE.h:66
u_markers : access u_IO_marker; -- /usr/include/bits/types/struct_FILE.h:68
u_chain : access u_IO_FILE; -- /usr/include/bits/types/struct_FILE.h:70
u_fileno : aliased int; -- /usr/include/bits/types/struct_FILE.h:72
u_flags2 : aliased int; -- /usr/include/bits/types/struct_FILE.h:73
u_old_offset : aliased bits_types_h.uu_off_t; -- /usr/include/bits/types/struct_FILE.h:74
u_cur_column : aliased unsigned_short; -- /usr/include/bits/types/struct_FILE.h:77
u_vtable_offset : aliased signed_char; -- /usr/include/bits/types/struct_FILE.h:78
u_shortbuf : aliased u_IO_FILE_array1135; -- /usr/include/bits/types/struct_FILE.h:79
u_lock : System.Address; -- /usr/include/bits/types/struct_FILE.h:81
u_offset : aliased bits_types_h.uu_off64_t; -- /usr/include/bits/types/struct_FILE.h:89
u_codecvt : access u_IO_codecvt; -- /usr/include/bits/types/struct_FILE.h:91
u_wide_data : access u_IO_wide_data; -- /usr/include/bits/types/struct_FILE.h:92
u_freeres_list : access u_IO_FILE; -- /usr/include/bits/types/struct_FILE.h:93
u_freeres_buf : System.Address; -- /usr/include/bits/types/struct_FILE.h:94
uu_pad5 : aliased stddef_h.size_t; -- /usr/include/bits/types/struct_FILE.h:95
u_mode : aliased int; -- /usr/include/bits/types/struct_FILE.h:96
u_unused2 : aliased u_IO_FILE_array1140; -- /usr/include/bits/types/struct_FILE.h:98
end record
with Convention => C_Pass_By_Copy; -- /usr/include/bits/types/struct_FILE.h:49
-- The following pointers correspond to the C++ streambuf protocol.
-- Current read pointer
-- End of get area.
-- Start of putback+get area.
-- Start of put area.
-- Current put pointer.
-- End of put area.
-- Start of reserve area.
-- End of reserve area.
-- The following fields are used to support backing up and undo.
-- Pointer to start of non-current get area.
-- Pointer to first valid character of backup area
-- Pointer to end of non-current get area.
-- This used to be _offset but it's too small.
-- 1+column number of pbase(); 0 is unknown.
-- Wide character stream stuff.
-- Make sure we don't get into trouble again.
-- These macros are used by bits/stdio.h and internal headers.
-- Many more flag bits are defined internally.
end bits_types_struct_FILE_h;
|
Tim-Tom/project-euler | Ada | 6,361 | adb | with Ada.Text_IO;
with PrimeInstances;
package body Problem_49 is
package IO renames Ada.Text_IO;
type Four_Digit is new Integer range 1_000 .. 9_999;
package Positive_Primes renames PrimeInstances.Positive_Primes;
procedure Solve is
Is_Prime : Array (Four_Digit) of Boolean := (others => False);
prime : Positive;
type Permute_Array is Array(Positive range <>) of Four_Digit;
function Permute(num : Four_Digit) return Permute_Array is
type Digit_Count is Array(0 .. 9) of Natural;
d : Digit_Count := (others => 0);
count : Positive := 4*3*2;
begin
declare
quotient : Natural := Natural(num);
remainder : Natural := 0;
function fact(num : Natural) return Positive is
result : Positive := 1;
begin
for n in 1 .. num loop
result := result * n;
end loop;
return result;
end;
begin
while(quotient > 0) loop
remainder := quotient mod 10;
quotient := quotient / 10;
d(remainder) := d(remainder) + 1;
end loop;
for digit in d'Range loop
count := count / fact(d(digit));
end loop;
if d(0) = 1 then
count := count - count / 4;
elsif d(0) = 2 then
count := count / 2;
elsif d(0) = 3 then
count := count / 4;
end if;
end;
declare
result : Permute_Array(1 .. count);
num_array : Array(1 .. 4) of Natural;
index : Positive := 1;
possible : Natural;
function Combine return Natural is
result : Natural := 0;
begin
for index in num_array'Range loop
result := 10*result + num_array(index);
end loop;
return result;
end Combine;
begin
for digit in d'Range loop
while d(digit) > 0 loop
num_array(index) := digit;
index := index + 1;
d(digit) := d(digit) - 1;
end loop;
end loop;
possible := Combine;
if possible > 1000 then
result(1) := Four_Digit(possible);
index := 2;
else
index := 1;
end if;
main_loop:
loop
declare
k : Positive := num_array'Last - 1;
l : Positive := num_array'Last;
begin
-- Find the largest index k such that a[k] < a[k + 1]. If no such index exists, the permutation is the last permutation.
loop
exit when num_array(k) < num_array(k + 1);
exit main_loop when k = 1;
k := k - 1;
end loop;
-- Find the largest index l such that a[k] < a[l]. Since k + 1 is such an index, l is well defined and satisfies k < l.
loop
exit when num_array(k) < num_array(l);
l := l - 1;
end loop;
-- Swap a[k] with a[l].
declare
temp : Natural := num_array(k);
begin
num_array(k) := num_array(l);
num_array(l) := temp;
-- Reverse the sequence from a[k + 1] up to and including the final element a[n].;
for index in 1 .. (num_array'Last - k) / 2 loop
temp := num_array(k + index);
num_array(k + index) := num_array(num_array'Last + 1 - index);
num_array(num_array'Last + 1 - index) := temp;
end loop;
end;
possible := Combine;
if possible > 1000 then
result(index) := Four_Digit(possible);
exit when index = count;
index := index + 1;
end if;
end;
end loop main_loop;
return result;
end;
end Permute;
pragma Pure_Function(Permute);
begin
declare
gen : Positive_Primes.Prime_Generator := Positive_Primes.Make_Generator(9_999);
begin
loop
Positive_Primes.Next_Prime(gen, prime);
exit when prime >= 1_000;
end loop;
while prime /= 1 loop
Is_Prime(Four_Digit(prime)) := True;
Positive_Primes.Next_Prime(gen, prime);
end loop;
end;
Prime_Loop:
for num in Four_Digit(1_000) .. 9_999 loop
if not Is_Prime(num) or num = 1487 then
goto Next_Prime;
end if;
declare
rotations : Array (1 .. 24) of Four_Digit;
permutations : constant Permute_Array := Permute(num);
count : Natural := 0;
begin
for permute_index in permutations'Range loop
declare
permutation : constant Four_Digit := permutations(permute_index);
begin
if Is_Prime(permutation) then
if permutation < num then
goto Next_Prime;
end if;
count := count + 1;
rotations(count) := permutation;
end if;
end;
end loop;
if count >= 3 then
for base in 1 .. count - 2 loop
for mid in base + 1.. count - 1 loop
for top in mid + 1 .. count loop
if rotations(base) + rotations(top) = 2*rotations(mid) then
IO.Put_Line(Four_Digit'Image(rotations(base)) & Four_Digit'Image(rotations(mid)) & Four_Digit'Image(rotations(top)));
exit Prime_Loop;
end if;
end loop;
end loop;
end loop;
end if;
end;
<<Next_Prime>>
null;
end loop Prime_Loop;
end Solve;
end Problem_49;
|
reznikmm/matreshka | Ada | 5,583 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Examples Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2016-2019, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Ada.Streams;
with League.Strings;
with Servlet.Generic_Servlets;
with Servlet.HTTP_Requests;
with Servlet.HTTP_Responses;
with Servlet.HTTP_Servlets;
with Servlet.HTTP_Upgrade_Handlers;
with Web_Socket.Handlers.AWS_Handlers;
with Web_Socket.Listeners;
package Servlets.Hello is
type Hello_Servlet is new Servlet.HTTP_Servlets.HTTP_Servlet
with private;
private
type WS_Handler is limited new Web_Socket.Listeners.Web_Socket_Listener with record
WS : aliased Web_Socket.Handlers.AWS_Handlers.AWS_Web_Socket_Handler;
Count : Natural := 0;
end record;
overriding procedure On_Binary
(Self : in out WS_Handler;
Data : Ada.Streams.Stream_Element_Array);
-- A WebSocket binary frame has been received.
overriding procedure On_Close
(Self : in out WS_Handler;
Status : Web_Socket.Listeners.Status_Code;
Reason : League.Strings.Universal_String);
-- A Close Event was received.
--
-- The underlying Connection will be considered closed at this point.
overriding procedure On_Connect (Self : in out WS_Handler);
-- A WebSocket Session has connected successfully and is ready to be used.
overriding procedure On_Error (Self : in out WS_Handler);
-- A WebSocket exception has occurred.
--
-- This is a way for the internal implementation to notify of exceptions
-- occured during the processing of websocket.
--
-- Usually this occurs from bad / malformed incoming packets. (example: bad
-- UTF8 data, frames that are too big, violations of the spec)
--
-- This will result in the Session being closed by the implementing side.
overriding procedure On_Text
(Self : in out WS_Handler;
Text : League.Strings.Universal_String);
-- A WebSocket Text frame was received.
type Hello_Servlet is
new Servlet.HTTP_Servlets.HTTP_Servlet with null record;
overriding function Get_Servlet_Info
(Self : Hello_Servlet) return League.Strings.Universal_String;
overriding procedure Do_Get
(Self : in out Hello_Servlet;
Request : Servlet.HTTP_Requests.HTTP_Servlet_Request'Class;
Response : in out Servlet.HTTP_Responses.HTTP_Servlet_Response'Class);
overriding function Instantiate
(Parameters : not null access
Servlet.Generic_Servlets.Instantiation_Parameters'Class)
return Hello_Servlet;
end Servlets.Hello;
|
zhmu/ananas | Ada | 395 | ads | package Ghost3 is
type Small_Int is new Natural range 0 .. 5;
type Large_Int is new Natural range 0 .. 5000;
type Rec_Typ is record
Comp_1 : Small_Int;
Comp_2 : Large_Int;
end record;
generic
type Any_Typ;
package Gen is
end Gen;
package Freezer with Ghost is
package Inst is new Gen (Rec_Typ);
end Freezer;
procedure Dummy;
end Ghost3;
|
zhmu/ananas | Ada | 3,895 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 4 6 --
-- --
-- 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. --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 46
package System.Pack_46 is
pragma Preelaborate;
Bits : constant := 46;
type Bits_46 is mod 2 ** Bits;
for Bits_46'Size use Bits;
-- In all subprograms below, Rev_SSO is set True if the array has the
-- non-default scalar storage order.
function Get_46
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_46 with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_46
(Arr : System.Address;
N : Natural;
E : Bits_46;
Rev_SSO : Boolean) with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value.
function GetU_46
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_46 with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned. This version
-- is used when Arr may represent an unaligned address.
procedure SetU_46
(Arr : System.Address;
N : Natural;
E : Bits_46;
Rev_SSO : Boolean) with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value. This version
-- is used when Arr may represent an unaligned address
end System.Pack_46;
|
AdaCore/ada-traits-containers | Ada | 5,551 | ads | --
-- Copyright (C) 2016-2016, AdaCore
--
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--
-- This package describes the concept of property maps.
-- These are an abstract description that explain how to extract information
-- from a container, and possibly set information.
--
-- It is used almost everywhere in this library. Here are some examples:
--
-- * Retrieving stored elements from a container given a cursor.
-- A container of course provides such a capability directly (generally
-- via a function named Element or Get). But the generic algorithms also
-- need to know how to do this operation.
-- Some libraries chose to associate this capability directly with cursors
-- so that a cursor traits package also provides the Get command. But this
-- is slightly inflexible, since containers now need to provide different
-- traits package when they need to return different information (for
-- instance a map could chose to return either the element's key, its
-- value, or a pair of the two. And yet this is the same cursor in all
-- cases.
--
-- * Storing temporary information in the container
-- Graph algorithms typically need to mark vertices when they are visited
-- so that they are not processed again later on.
-- There are two approaches here:
--
-- - Either the container itself is able to store the information
-- directly (in the vertex, the edge, or in some other internal
-- field).
--
-- - Or an external data structure (provided just for the duration of
-- the algorithm) is used. For instance, a vector indexed by a unique
-- integer id associated with the vertices or edges. Or a map.
--
-- In both cases, the algorithm needs to perform the same Set and Get
-- operation. But in the first case, the map is the container itself (and
-- most likely the Clear operation will do nothing). These are called
-- "internal maps".
--
-- Such internal maps are exactly what is used to retrieve an element stored
-- in the container, as described in the first bullet above. But instead of
-- just relying on a primitive operation of the container (which would limit
-- the reusability of the algorithm to other data structures), or a Get
-- formal parameter that assumes the map is the container, the algorithms
-- generally let users decide where the map is stored.
-- This provides one level of indirection (with no performance cost in the
-- general case), which is sometimes useful to reuse algorithms.
--
-- In general, multiple versions of the algorithms will be provided, one for
-- each type of map (interior or exterior), and one that takes the map
-- explicitly in parameter so that the algorithm does not need to create the
-- map on its own, and the container can act as its own map.
pragma Ada_2012;
package Conts.Properties is
-----------------------------
-- Read-only property maps --
-----------------------------
generic
type Map_Type (<>) is limited private;
type Key_Type (<>) is limited private;
type Element_Type (<>) is private;
with function Get (M : Map_Type; K : Key_Type) return Element_Type is <>;
package Read_Only_Maps is
subtype Map is Map_Type;
subtype Key is Key_Type;
subtype Element is Element_Type;
function Value
(M : Map_Type; K : Key_Type) return Element_Type renames Get;
-- ??? Make visible to users of the package
end Read_Only_Maps;
-------------------
-- Property maps --
-------------------
generic
type Map_Type (<>) is limited private;
type Key_Type (<>) is limited private;
type Element_Type is private;
with procedure Set
(M : in out Map_Type; K : Key_Type; V : Element_Type) is <>;
with function Get (M : Map_Type; K : Key_Type) return Element_Type is <>;
with procedure Clear (M : in out Map_Type) is null;
package Maps is
subtype Map is Map_Type;
subtype Key is Key_Type;
subtype Element is Element_Type;
function Value
(M : Map_Type; K : Key_Type) return Element_Type renames Get;
-- ??? Make visible to users of the package
package As_Read_Only is new Read_Only_Maps (Map, Key, Element);
end Maps;
------------------------------
-- Property position models --
------------------------------
generic
type Map_Type (<>) is limited private;
type Key_Type (<>) is limited private;
type Model_Type is private;
type Index_Type is (<>);
with function Model (M : Map_Type) return Model_Type;
with function Get (M : Model_Type; K : Key_Type) return Index_Type;
package Position_Models is
subtype Map is Map_Type;
subtype Key is Key_Type;
function Value
(M : Model_Type; K : Key_Type) return Index_Type renames Get;
-- ??? Make visible to users of the package
end Position_Models;
-----------------------------
-- Property content models --
-----------------------------
generic
type Map_Type (<>) is limited private;
type Element_Type (<>) is private;
type Model_Type is private;
type Index_Type is (<>);
with function Model (M : Map_Type) return Model_Type;
with function Get (M : Model_Type; I : Index_Type) return Element_Type;
package Content_Models is
subtype Map is Map_Type;
subtype Element is Element_Type;
end Content_Models;
end Conts.Properties;
|
charlie5/cBound | Ada | 1,385 | ads | -- This file is generated by SWIG. Please do not modify by hand.
--
with xcb.xcb_circulate_notify_event_t;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_circulate_request_event_t is
-- Item
--
subtype Item is xcb.xcb_circulate_notify_event_t.Item;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_circulate_request_event_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_circulate_request_event_t.Item,
Element_Array => xcb.xcb_circulate_request_event_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_circulate_request_event_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_circulate_request_event_t.Pointer,
Element_Array => xcb.xcb_circulate_request_event_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_circulate_request_event_t;
|
AdaCore/libadalang | Ada | 43 | adb | procedure Test is
begin
null;
end Test;
|
charlie5/aIDE | Ada | 877 | ads | with
AdaM.Declaration.of_exception,
gtk.Widget;
private
with
gtk.gEntry,
gtk.Box,
gtk.Label,
gtk.Button;
package aIDE.Editor.of_exception
is
type Item is new Editor.item with private;
type View is access all Item'Class;
package Forge
is
function new_Editor (the_Target : in AdaM.Declaration.of_exception.view) return View;
end Forge;
overriding
function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget;
private
use gtk.Button,
gtk.gEntry,
gtk.Label,
gtk.Box;
type Item is new Editor.item with
record
Target : AdaM.Declaration.of_exception.view;
top_Box : gtk_Box;
name_Entry : Gtk_Entry;
rid_Button : gtk_Button;
end record;
overriding
procedure freshen (Self : in out Item);
end aIDE.Editor.of_exception;
|
reznikmm/matreshka | Ada | 6,454 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2016-2017, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
package body Core.Connectables is
procedure Disconnect
(Signal : Signal_End_Access;
Slot : Slot_End_Access);
------------
-- Attach --
------------
procedure Attach (Self : in out Signal_End_Base'Class) is
begin
if Self.Emitter.Head = null then
Self.Emitter.Head := Self'Unchecked_Access;
Self.Emitter.Tail := Self'Unchecked_Access;
else
Self.Previous := Self.Emitter.Tail;
Self.Emitter.Tail.Next := Self'Unchecked_Access;
Self.Emitter.Tail := Self'Unchecked_Access;
end if;
end Attach;
------------
-- Attach --
------------
procedure Attach (Self : in out Slot_End_Base'Class) is
Owner : constant not null Object_Access := Self.Owner;
begin
if Owner.Head = null then
Owner.Head := Self'Unchecked_Access;
Owner.Tail := Self'Unchecked_Access;
else
Self.Previous := Owner.Tail;
Owner.Tail.Next := Self'Unchecked_Access;
Owner.Tail := Self'Unchecked_Access;
end if;
end Attach;
------------
-- Detach --
------------
procedure Detach (Self : in out Signal_End_Base'Class) is
begin
if Self.Emitter.Head = Self'Unchecked_Access then
Self.Emitter.Head := Self.Next;
end if;
if Self.Emitter.Tail = Self'Unchecked_Access then
Self.Emitter.Tail := Self.Previous;
end if;
if Self.Next /= null then
Self.Next.Previous := Self.Previous;
end if;
if Self.Previous /= null then
Self.Previous.Next := Self.Next;
end if;
end Detach;
------------
-- Detach --
------------
procedure Detach (Self : in out Slot_End_Base'Class) is
Owner : constant not null Object_Access := Self.Owner;
begin
if Owner.Head = Self'Unchecked_Access then
Owner.Head := Self.Next;
end if;
if Owner.Tail = Self'Unchecked_Access then
Owner.Tail := Self.Previous;
end if;
if Self.Next /= null then
Self.Next.Previous := Self.Previous;
end if;
if Self.Previous /= null then
Self.Previous.Next := Self.Next;
end if;
end Detach;
----------------
-- Disconnect --
----------------
procedure Disconnect
(Signal : Signal_End_Access;
Slot : Slot_End_Access)
is
procedure Free is
new Ada.Unchecked_Deallocation
(Signal_End_Base'Class, Signal_End_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Slot_End_Base'Class, Slot_End_Access);
Aux_Signal : Signal_End_Access := Signal;
Aux_Slot : Slot_End_Access := Slot;
begin
Aux_Signal.Detach;
Aux_Slot.Detach;
Free (Aux_Signal);
Free (Aux_Slot);
end Disconnect;
--------------
-- Finalize --
--------------
not overriding procedure Finalize (Self : in out Connectable_Object) is
begin
while Self.Head /= null loop
Disconnect (Self.Head.Signal_End, Self.Head);
end loop;
end Finalize;
end Core.Connectables;
|
optikos/oasis | Ada | 6,603 | adb | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Anagram.Grammars.LR_Parsers;
with Program.Parsers.Nodes;
with Program.Parsers.Data;
with Program.Parsers.On_Reduce;
package body Program.Parsers is
procedure Next_Token
(Self : access Parse_Context;
Token : out Anagram.Grammars.Terminal_Count;
Value : out Program.Parsers.Nodes.Node);
procedure Do_Parse is new Anagram.Grammars.LR_Parsers.Parse
(Node => Program.Parsers.Nodes.Node,
Node_Array => Program.Parsers.Nodes.Node_Array,
Lexer => Parse_Context,
Parser => Parse_Context,
Next_Token => Next_Token,
Next_Action => Program.Parsers.Data.Next_Action,
Go_To => Program.Parsers.Data.Go_To,
On_Reduce => Program.Parsers.On_Reduce);
use all type Program.Lexical_Elements.Lexical_Element_Kind;
Map : constant array (Program.Lexical_Elements.Lexical_Element_Kind)
of Anagram.Grammars.Terminal_Count :=
(Error => 0,
End_Of_Input => 0,
Abort_Keyword => 1,
Abs_Keyword => 2,
Abstract_Keyword => 3,
Accept_Keyword => 4,
Access_Keyword => 5,
Aliased_Keyword => 6,
All_Keyword => 7,
Ampersand => 8,
And_Keyword => 9,
Apostrophe => 10,
Array_Keyword => 11,
Arrow => 12,
Assignment => 13,
At_Keyword => 14,
Begin_Keyword => 15,
Body_Keyword => 16,
Box => 17,
Case_Keyword => 18,
Character_Literal => 19,
Colon => 20,
Comma => 21,
Comment => 22,
Constant_Keyword => 23,
Declare_Keyword => 24,
Delay_Keyword => 25,
Delta_Keyword => 26,
Digits_Keyword => 27,
Do_Keyword => 28,
Dot => 29,
Double_Dot => 30,
Double_Star => 31,
Else_Keyword => 32,
Elsif_Keyword => 33,
End_Keyword => 34,
Entry_Keyword => 35,
Equal => 36,
Exception_Keyword => 37,
Exit_Keyword => 38,
For_Keyword => 39,
Function_Keyword => 40,
Generic_Keyword => 41,
Goto_Keyword => 42,
Greater_Or_Equal => 43,
Greater => 44,
Hyphen => 45,
Identifier => 46,
If_Keyword => 47,
In_Keyword => 48,
Inequality => 49,
Interface_Keyword => 50,
Is_Keyword => 51,
Left_Label => 52,
Left_Parenthesis => 53,
Less_Or_Equal => 54,
Less => 55,
Limited_Keyword => 56,
Loop_Keyword => 57,
Mod_Keyword => 58,
New_Keyword => 59,
Not_Keyword => 60,
Null_Keyword => 61,
Numeric_Literal => 62,
Of_Keyword => 63,
Or_Keyword => 64,
Others_Keyword => 65,
Out_Keyword => 66,
Overriding_Keyword => 67,
Package_Keyword => 68,
Plus => 69,
Pragma_Keyword => 70,
Private_Keyword => 71,
Procedure_Keyword => 72,
Protected_Keyword => 73,
Raise_Keyword => 74,
Range_Keyword => 75,
Record_Keyword => 76,
Rem_Keyword => 77,
Renames_Keyword => 78,
Requeue_Keyword => 79,
Return_Keyword => 80,
Reverse_Keyword => 81,
Right_Label => 82,
Right_Parenthesis => 83,
Select_Keyword => 84,
Semicolon => 85,
Separate_Keyword => 86,
Slash => 87,
Some_Keyword => 88,
Star => 89,
String_Literal => 90,
Subtype_Keyword => 91,
Synchronized_Keyword => 92,
Tagged_Keyword => 93,
Task_Keyword => 94,
Terminate_Keyword => 95,
Then_Keyword => 96,
Type_Keyword => 97,
Until_Keyword => 98,
Use_Keyword => 99,
Vertical_Line => 100,
When_Keyword => 101,
While_Keyword => 102,
With_Keyword => 103,
Xor_Keyword => 104);
----------------
-- Next_Token --
----------------
procedure Next_Token
(Self : access Parse_Context;
Token : out Anagram.Grammars.Terminal_Count;
Value : out Program.Parsers.Nodes.Node)
is
Next : Program.Lexical_Elements.Lexical_Element_Access;
Kind : Program.Lexical_Elements.Lexical_Element_Kind;
begin
if Self.Index <= Self.Tokens.Last_Index then
Next := Self.Tokens.Element (Self.Index);
Kind := Next.Kind;
Token := Map (Kind);
Value := Self.Factory.Token (Next);
Self.Index := Self.Index + 1;
else
Token := 0;
Value := Program.Parsers.Nodes.No_Token;
end if;
end Next_Token;
-----------
-- Parse --
-----------
procedure Parse
(Compilation : not null Program.Compilations.Compilation_Access;
Tokens : not null Lexical_Elements.Lexical_Element_Vector_Access;
Subpool : not null System.Storage_Pools.Subpools.Subpool_Handle;
Units : out Unit_Vectors.Vector;
Pragmas : out Element_Vectors.Vector)
is
Factory : aliased Program.Parsers.Nodes.Node_Factory
(Compilation, Subpool);
Context : aliased Parse_Context :=
(Factory => Factory'Unchecked_Access,
Tokens => Tokens,
Index => 1);
Root : Program.Parsers.Nodes.Node;
Ok : Boolean;
begin
Do_Parse (Context'Access, Context'Access, Root, Ok);
if Ok then
Program.Parsers.Nodes.Get_Compilation_Units
(Root, Units, Pragmas);
else
raise Constraint_Error with "Parsing error";
end if;
end Parse;
end Program.Parsers;
|
stcarrez/ada-ado | Ada | 8,985 | ads | -----------------------------------------------------------------------
-- ADO SQL -- Basic SQL Generation
-- Copyright (C) 2010, 2011, 2012, 2015, 2019, 2022 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Ada.Calendar;
with ADO.Parameters;
with ADO.Dialects;
-- Utilities for creating SQL queries and statements.
package ADO.SQL is
use Ada.Strings.Unbounded;
-- --------------------
-- Buffer
-- --------------------
-- The <b>Buffer</b> type allows to build easily an SQL statement.
--
type Buffer is private;
type Buffer_Access is access all Buffer;
-- Clear the SQL buffer.
procedure Clear (Target : in out Buffer);
-- Append an SQL extract into the buffer.
procedure Append (Target : in out Buffer;
SQL : in String);
-- Append a name in the buffer and escape that
-- name if this is a reserved keyword.
procedure Append_Name (Target : in out Buffer;
Name : in String);
-- Append a string value in the buffer and
-- escape any special character if necessary.
procedure Append_Value (Target : in out Buffer;
Value : in String);
-- Append a string value in the buffer and
-- escape any special character if necessary.
procedure Append_Value (Target : in out Buffer;
Value : in Unbounded_String);
-- Append the integer value in the buffer.
procedure Append_Value (Target : in out Buffer;
Value : in Long_Integer);
-- Append the integer value in the buffer.
procedure Append_Value (Target : in out Buffer;
Value : in Integer);
-- Append the identifier value in the buffer.
procedure Append_Value (Target : in out Buffer;
Value : in Identifier);
-- Get the SQL string that was accumulated in the buffer.
function To_String (From : in Buffer) return String;
-- --------------------
-- Query
-- --------------------
-- The <b>Query</b> type contains the elements for building and
-- executing the request. This includes:
-- <ul>
-- <li>The SQL request (full request or a fragment)</li>
-- <li>The SQL request parameters </li>
-- <li>An SQL filter condition</li>
-- </ul>
--
type Query is new ADO.Parameters.List with record
SQL : Buffer;
Filter : Buffer;
Join : Buffer;
end record;
type Query_Access is access all Query'Class;
-- Clear the query object.
overriding
procedure Clear (Target : in out Query);
-- Set the SQL dialect description object.
overriding
procedure Set_Dialect (Target : in out Query;
D : in ADO.Dialects.Dialect_Access);
procedure Set_Filter (Target : in out Query;
Filter : in String);
function Has_Filter (Source : in Query) return Boolean;
function Get_Filter (Source : in Query) return String;
-- Set the join condition.
procedure Set_Join (Target : in out Query;
Join : in String);
-- Returns true if there is a join condition
function Has_Join (Source : in Query) return Boolean;
-- Get the join condition
function Get_Join (Source : in Query) return String;
-- Set the parameters from another parameter list.
-- If the parameter list is a query object, also copy the filter part.
overriding
procedure Set_Parameters (Params : in out Query;
From : in ADO.Parameters.Abstract_List'Class);
-- Expand the parameters into the query and return the expanded SQL query.
function Expand (Source : in Query) return String;
-- --------------------
-- Update Query
-- --------------------
-- The <b>Update_Query</b> provides additional helper functions to construct
-- and <i>insert</i> or an <i>update</i> statement.
type Update_Query is new Query with private;
type Update_Query_Access is access all Update_Query'Class;
-- Set the SQL dialect description object.
overriding
procedure Set_Dialect (Target : in out Update_Query;
D : in ADO.Dialects.Dialect_Access);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Boolean);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Integer);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Long_Long_Integer);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Long_Float);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Identifier);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Entity_Type);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Ada.Calendar.Time);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in String);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in Unbounded_String);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Query;
Name : in String;
Value : in ADO.Blob_Ref);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to NULL.
procedure Save_Null_Field (Update : in out Update_Query;
Name : in String);
-- Check if the update/insert query has some fields to update.
function Has_Save_Fields (Update : in Update_Query) return Boolean;
procedure Set_Insert_Mode (Update : in out Update_Query);
procedure Append_Fields (Update : in out Update_Query;
Mode : in Boolean := False);
-- Read the file for SQL statements separated by ';' and execute the
-- `Process` procedure with each SQL statement that is read.
procedure Read_File (Path : in String;
Process : not null access procedure (SQL : in String));
private
type Buffer is new ADO.Parameters.List with record
Buf : Unbounded_String;
end record;
type Update_Query is new Query with record
Pos : Natural := 0;
Set_Fields : Buffer;
Fields : Buffer;
Is_Update_Stmt : Boolean := True;
end record;
procedure Add_Field (Update : in out Update_Query'Class;
Name : in String);
end ADO.SQL;
|
reznikmm/matreshka | Ada | 3,648 | 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.Reclassify_Object_Actions.Hash is
new AMF.Elements.Generic_Hash (UML_Reclassify_Object_Action, UML_Reclassify_Object_Action_Access);
|
reznikmm/matreshka | Ada | 8,028 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2013, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This package provides data types for SIMD NEON instructions set of ARM.
-- Type declarations use GNAT specific features.
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
with Interfaces;
package Matreshka.SIMD.ARM is
pragma Pure;
-- 64-bit types
type int8x8_t is array (1 .. 8) of Interfaces.Integer_8;
pragma Machine_Attribute (int8x8_t, "vector_type");
pragma Machine_Attribute (int8x8_t, "may_alias");
type int16x4_t is array (1 .. 4) of Interfaces.Integer_16;
pragma Machine_Attribute (int16x4_t, "vector_type");
pragma Machine_Attribute (int16x4_t, "may_alias");
type int32x2_t is array (1 .. 2) of Interfaces.Integer_32;
pragma Machine_Attribute (int32x2_t, "vector_type");
pragma Machine_Attribute (int32x2_t, "may_alias");
type int64x1_t is array (1 .. 1) of Interfaces.Integer_64;
pragma Machine_Attribute (int64x1_t, "vector_type");
pragma Machine_Attribute (int64x1_t, "may_alias");
type float32x2_t is array (1 .. 2) of Interfaces.IEEE_Float_32;
pragma Machine_Attribute (float32x2_t, "vector_type");
pragma Machine_Attribute (float32x2_t, "may_alias");
-- XXX poly8x8_t
-- XXX poly16x4_t
type uint8x8_t is array (1 .. 8) of Interfaces.Unsigned_8;
pragma Machine_Attribute (uint8x8_t, "vector_type");
pragma Machine_Attribute (uint8x8_t, "may_alias");
type uint16x4_t is array (1 .. 4) of Interfaces.Unsigned_16;
pragma Machine_Attribute (uint16x4_t, "vector_type");
pragma Machine_Attribute (uint16x4_t, "may_alias");
type uint32x2_t is array (1 .. 2) of Interfaces.Unsigned_32;
pragma Machine_Attribute (uint32x2_t, "vector_type");
pragma Machine_Attribute (uint32x2_t, "may_alias");
type uint64x1_t is array (1 .. 1) of Interfaces.Unsigned_64;
pragma Machine_Attribute (uint64x1_t, "vector_type");
pragma Machine_Attribute (uint64x1_t, "may_alias");
-- 128-bit types
type int8x16_t is array (1 .. 16) of Interfaces.Integer_8;
pragma Machine_Attribute (int8x16_t, "vector_type");
pragma Machine_Attribute (int8x16_t, "may_alias");
type int16x8_t is array (1 .. 8) of Interfaces.Integer_16;
pragma Machine_Attribute (int16x8_t, "vector_type");
pragma Machine_Attribute (int16x8_t, "may_alias");
type int32x4_t is array (1 .. 4) of Interfaces.Integer_32;
pragma Machine_Attribute (int32x4_t, "vector_type");
pragma Machine_Attribute (int32x4_t, "may_alias");
type int64x2_t is array (1 .. 2) of Interfaces.Integer_64;
pragma Machine_Attribute (int64x2_t, "vector_type");
pragma Machine_Attribute (int64x2_t, "may_alias");
type float32x4_t is array (1 .. 4) of Interfaces.IEEE_Float_32;
pragma Machine_Attribute (float32x4_t, "vector_type");
pragma Machine_Attribute (float32x4_t, "may_alias");
-- XXX poly8x16_t
-- XXX poly16x8_t
type uint8x16_t is array (1 .. 16) of Interfaces.Unsigned_8;
pragma Machine_Attribute (uint8x16_t, "vector_type");
pragma Machine_Attribute (uint8x16_t, "may_alias");
type uint16x8_t is array (1 .. 8) of Interfaces.Unsigned_16;
pragma Machine_Attribute (uint16x8_t, "vector_type");
pragma Machine_Attribute (uint16x8_t, "may_alias");
type uint32x4_t is array (1 .. 4) of Interfaces.Unsigned_32;
pragma Machine_Attribute (uint32x4_t, "vector_type");
pragma Machine_Attribute (uint32x4_t, "may_alias");
type uint64x2_t is array (1 .. 2) of Interfaces.Unsigned_64;
pragma Machine_Attribute (uint64x2_t, "vector_type");
pragma Machine_Attribute (uint64x2_t, "may_alias");
-- Type conversion subprograms.
function To_int8x8_t is new Ada.Unchecked_Conversion (uint8x8_t, int8x8_t);
function To_int8x16_t is
new Ada.Unchecked_Conversion (uint8x16_t, int8x16_t);
function To_int16x4_t is
new Ada.Unchecked_Conversion (uint16x4_t, int16x4_t);
function To_int16x8_t is
new Ada.Unchecked_Conversion (uint16x8_t, int16x8_t);
function To_int32x2_t is
new Ada.Unchecked_Conversion (uint32x2_t, int32x2_t);
function To_int64x1_t is
new Ada.Unchecked_Conversion (uint64x1_t, int64x1_t);
function To_uint8x8_t is new Ada.Unchecked_Conversion (int8x8_t, uint8x8_t);
function To_uint8x16_t is
new Ada.Unchecked_Conversion (int8x16_t, uint8x16_t);
function To_uint16x4_t is
new Ada.Unchecked_Conversion (int16x4_t, uint16x4_t);
function To_uint16x8_t is
new Ada.Unchecked_Conversion (int16x8_t, uint16x8_t);
function To_uint32x2_t is
new Ada.Unchecked_Conversion (int32x2_t, uint32x2_t);
function To_uint64x1_t is
new Ada.Unchecked_Conversion (int64x1_t, uint64x1_t);
end Matreshka.SIMD.ARM;
|
AdaCore/langkit | Ada | 323 | adb | with Ada.Text_IO; use Ada.Text_IO;
with Langkit_Support.Adalog.Main_Support;
use Langkit_Support.Adalog.Main_Support;
-- Test domain primitive
procedure Main is
use T_Solver;
R : constant Relation := R_Any (No_Relation_Array);
begin
if not Solve_First (R) then
Put_Line ("FAILED!");
end if;
end Main;
|
zhmu/ananas | Ada | 5,056 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- F N A M E --
-- --
-- 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, together with its child package Fname.UF define the
-- association between source file names and unit names as defined
-- (see package Uname for definition of format of unit names).
with Namet; use Namet;
package Fname is
-- Note: this package spec does not depend on the Uname spec in the Ada
-- sense, but the comments and description of the semantics do depend on
-- the conventions established by Uname.
---------------------------
-- File Name Conventions --
---------------------------
-- GNAT requires that there be a one to one correspondence between source
-- file names (as used in the Osint package interface) and unit names as
-- defined by the Uname package. This correspondence is defined by the
-- two subprograms defined here in the Fname package.
-- For full rules of file naming, see GNAT User's Guide. Note that the
-- naming rules are affected by the presence of Source_File_Name pragmas
-- that have been previously processed.
-- Note that the file name does *not* include the directory name. The
-- management of directories is provided by Osint, and full file names
-- are used only for error message purposes within GNAT itself.
-----------------
-- Subprograms --
-----------------
function Is_Predefined_File_Name
(Fname : String;
Renamings_Included : Boolean := True) return Boolean;
function Is_Predefined_File_Name
(Fname : File_Name_Type;
Renamings_Included : Boolean := True) return Boolean;
-- These functions determine if the given file name (which must be a simple
-- file name with no directory information) is the source or ALI file name
-- for one of the predefined library units (i.e. part of the Ada, System,
-- or Interface hierarchies). Note that units in the GNAT hierarchy are not
-- considered predefined (see Is_Internal_File_Name below).
--
-- The Renamings_Included parameter indicates whether annex J renamings
-- such as Text_IO are to be considered as predefined. If
-- Renamings_Included is True, then Text_IO will return True, otherwise
-- only children of Ada, Interfaces and System return True.
function Is_Predefined_Renaming_File_Name
(Fname : String) return Boolean;
function Is_Predefined_Renaming_File_Name
(Fname : File_Name_Type) return Boolean;
-- True if Fname is the file name for a predefined renaming (the same file
-- names that are included if Renamings_Included => True is passed to
-- Is_Predefined_File_Name).
function Is_Internal_File_Name
(Fname : String;
Renamings_Included : Boolean := True) return Boolean;
function Is_Internal_File_Name
(Fname : File_Name_Type;
Renamings_Included : Boolean := True) return Boolean;
-- Same as Is_Predefined_File_Name, except units in the GNAT hierarchy are
-- included.
function Is_GNAT_File_Name (Fname : String) return Boolean;
function Is_GNAT_File_Name (Fname : File_Name_Type) return Boolean;
-- True for units in the GNAT hierarchy
end Fname;
|
AdaCore/libadalang | Ada | 51,429 | adb | ------------------------------------------------------------------------------
-- G P S --
-- --
-- Copyright (C) 2001-2017, AdaCore --
-- --
-- This 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. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public --
-- License for more details. You should have received a copy of the GNU --
-- General Public License distributed with this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license. --
------------------------------------------------------------------------------
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Ada.Strings.Maps; use Ada; use Ada.Strings.Maps;
with Ada.Unchecked_Conversion;
with Ada.Unchecked_Deallocation;
with System;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
with GNAT.Expect; use GNAT.Expect;
with GNAT.Regpat; use GNAT.Regpat;
with GNATCOLL.Arg_Lists; use GNATCOLL.Arg_Lists;
with GNATCOLL.Scripts; use GNATCOLL.Scripts;
with GNATCOLL.Templates; use GNATCOLL.Templates;
with GNATCOLL.Traces; use GNATCOLL.Traces;
with GNATCOLL.VFS; use GNATCOLL.VFS;
with XML_Utils; use XML_Utils;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Handlers; use Gtk.Handlers;
with Gtk.Tree_Model; use Gtk.Tree_Model;
with Gtk.Widget; use Gtk.Widget;
with GPS.Intl; use GPS.Intl;
with GPS.Kernel.Interactive; use GPS.Kernel.Interactive;
with GPS.Kernel.Macros; use GPS.Kernel.Macros;
with GPS.Kernel.Scripts; use GPS.Kernel.Scripts;
with GPS.Kernel.Timeout; use GPS.Kernel.Timeout;
with GPS.Kernel.Task_Manager; use GPS.Kernel.Task_Manager;
with GPS.Kernel.Preferences;
with Interactive_Consoles; use Interactive_Consoles;
with Password_Manager; use Password_Manager;
with Remote; use Remote;
with String_Utils; use String_Utils;
package body Commands.Custom is
Me : constant Trace_Handle := Create ("Commands.Custom", Off);
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Boolean_Array, Boolean_Array_Access);
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(GNAT.Regpat.Pattern_Matcher, GNAT.Expect.Pattern_Matcher_Access);
-----------------------
-- Custom components --
-----------------------
type Component_Type is (Component_Shell, Component_External);
type Custom_Component_Record (The_Type : Component_Type) is
new Command_Component_Record with
record
Show_Command : Boolean := True; -- "show-command" attribute
Output : String_Access; -- use Default if this is null
Command : String_Access;
case The_Type is
when Component_Shell =>
Script : Scripting_Language;
when Component_External =>
Server : Server_Type; -- "server" attribute
Check_Password : Boolean := False; -- "check-password"
Show_In_Task_Manager : Boolean; -- "show-task-manager"
Progress_Regexp : String_Access; -- "progress-regexp"
Progress_Current : Natural := 1; -- "progress-current"
Progress_Final : Natural := 2; -- "progress-final"
Progress_Hide : Boolean := True; -- "progress-hide"
-- Changes to this list must be reflected in the record
-- Custom_Component_Editor_Record as well
end case;
end record;
type Custom_Component is access all Custom_Component_Record'Class;
procedure Free (Component : in out Custom_Component);
-- Free the memory occupied by Component
----------------------------
-- Custom commands editor --
----------------------------
type Component_Type_And_Lang is record
The_Type : Component_Type;
Script : Scripting_Language;
end record;
package Component_Type_And_Lang_Callback is new Gtk.Handlers.User_Callback
(Gtk_Widget_Record, Component_Type_And_Lang);
use Component_Type_And_Lang_Callback;
----------------------
-- Misc subprograms --
----------------------
procedure Check_Save_Output
(Command : access Custom_Command'Class;
Save_Output : out Boolean_Array);
-- Compute whether we should save the output of each commands. This depends
-- on whether later commands reference this output through %1, %2,...
procedure Clear_Consoles
(Kernel : access Kernel_Handle_Record'Class;
Command : access Custom_Command'Class);
-- Clear all existing consoles that Command will use. Consoles that do not
-- exist yet are not created.
-- This is used so that the new output isn't mix with the output of
-- previous run.
-- The default GPS console is never cleared.
pragma Warnings (Off);
-- These 2 UCs are safe aliasing-wise, so kill warning
function Convert is new Ada.Unchecked_Conversion
(System.Address, Custom_Command_Access);
function Convert is new Ada.Unchecked_Conversion
(Custom_Command_Access, System.Address);
pragma Warnings (On);
procedure Free (Execution : in out Custom_Command_Execution);
-- Free Execution and its contents
function External_From_XML
(Command : XML_Utils.Node_Ptr;
Default_Show_In_Task_Manager : Boolean;
Default_Show_Command : Boolean) return Command_Component;
function Shell_From_XML
(Kernel : access Kernel_Handle_Record'Class;
Command : XML_Utils.Node_Ptr;
Default_Show_Command : Boolean) return Command_Component;
-- Create a command component from an XML node
function From_XML
(Kernel : access Kernel_Handle_Record'Class;
Command : XML_Utils.Node_Ptr;
Name : String;
Default_Show_In_Task_Manager : Boolean;
Default_Show_Command : Boolean) return Components_Array_Access;
-- Create a list of components from an XML node
function Output_Substitution
(Command : access Custom_Command'Class;
Component : Integer;
Ref : Integer) return Integer;
-- Return the index of the component to which a ${REF} in Component
-- refers. For instance, if the 3rd component contains a $1, the result
-- will be 2.
-- This properly takes into account the on-failure components.
-- Return -1 if no Ref is invalid.
type Custom_Callback_Data is new External_Process_Data with record
Command : Custom_Command_Access;
end record;
type Custom_Callback_Data_Access is access all Custom_Callback_Data'Class;
overriding procedure On_Output
(Self : not null access Custom_Callback_Data;
External : not null access Root_Command'Class;
Output : String);
overriding procedure On_Exit
(Self : not null access Custom_Callback_Data;
External : not null access Root_Command'Class);
-------------------
-- Create_Filter --
-------------------
function Create_Filter
(Kernel : not null access Kernel_Handle_Record'Class;
Command : XML_Utils.Node_Ptr) return Action_Filter
is
Filter : Macro_Filter;
N : Node_Ptr := Command;
begin
while N /= null loop
if N.Value /= null then
Filter := Create_Filter (Kernel, N.Value.all, Filter);
end if;
N := N.Next;
end loop;
return Action_Filter (Filter);
end Create_Filter;
-------------
-- On_Exit --
-------------
overriding procedure On_Exit
(Self : not null access Custom_Callback_Data;
External : not null access Root_Command'Class)
is
pragma Unreferenced (External);
begin
-- Unless the command has already terminated
if Self.Command.Execution /= null then
Self.Command.Execution.External_Process_In_Progress := False;
Self.Command.Execution.Process_Exit_Status := Self.Exit_Status;
end if;
end On_Exit;
---------------
-- On_Output --
---------------
overriding procedure On_Output
(Self : not null access Custom_Callback_Data;
External : not null access Root_Command'Class;
Output : String)
is
pragma Unreferenced (External);
Command : constant Custom_Command_Access := Self.Command;
Save_Output : Boolean;
procedure Append (S : in out String_Access; Value : String);
-- Append Value to S
procedure Insert (Message : String);
-- Insert Message in the current console
------------
-- Insert --
------------
procedure Insert (Message : String) is
Console : constant Interactive_Console :=
Command.Execution.External_Process_Console;
begin
if Console /= null then
Insert (Console, Message, Add_LF => False);
end if;
end Insert;
------------
-- Append --
------------
procedure Append (S : in out String_Access; Value : String) is
Previous : GNAT.Strings.String_Access;
begin
if Value /= "" then
if S = null then
S := new String'(Value);
else
if S'Length >
GPS.Kernel.Preferences.Max_Output_Length.Get_Pref
then
-- If we are collecting more output than we should, emit a
-- warning and stop collecting.
Save_Output := False;
Insert (Kernel => Command.Kernel,
Text => (-"Output from command """)
& Command.Name.all
& (-""" exceeds the maximum length, truncating."),
Mode => Error);
Command.Execution.Save_Output
(Command.Execution.Cmd_Index) := False;
else
Previous := S;
S := new String (1 .. Previous'Length + Value'Length);
S (1 .. Previous'Length) := Previous.all;
S (Previous'Length + 1 .. S'Last) := Value;
Free (Previous);
end if;
end if;
end if;
end Append;
Current, Total : Integer := 0;
Index, EOL : Integer;
begin
-- Command might have been terminated already
if Command.Execution = null then
return;
end if;
Save_Output :=
Command.Execution.Save_Output (Command.Execution.Cmd_Index);
if Command.Execution.Check_Password then
declare
Matched : Match_Array (0 .. 2);
Force : Boolean;
Idx : Integer := Strings.Fixed.Index (Output, "" & ASCII.LF);
begin
-- Only the first received line is taken into account for custom
-- commands.
-- This allows custom tools to output text that matches the
-- password regexp without reacting here.
if Idx < Output'First then
Idx := Output'Last;
end if;
-- Retrieve password prompt if any
Match (Get_Default_Password_Regexp,
Output (Output'First .. Idx),
Matched);
if Matched (0) /= No_Match then
Force := Command.Execution.Nb_Password > 0;
Command.Execution.Nb_Password :=
Command.Execution.Nb_Password + 1;
declare
Password : constant String :=
Get_Tool_Password (Command.Name.all,
Force);
begin
if Password /= "" then
Send (Self.Descriptor.all, Password);
-- Do not output password prompt
return;
end if;
end;
end if;
-- Retrieve passphrase prompt if any
Match (Get_Default_Passphrase_Regexp,
Output (Output'First .. Idx),
Matched);
if Matched (0) /= No_Match then
Force := Command.Execution.Nb_Password > 0;
Command.Execution.Nb_Password :=
Command.Execution.Nb_Password + 1;
declare
Password : constant String :=
Get_Passphrase
(Output (Matched (1).First .. Matched (1).Last),
Force);
begin
if Password /= "" then
Send (Self.Descriptor.all, Password);
-- Do not output password prompt
return;
end if;
end;
end if;
end;
-- If we received a line without matching any password regexp, and
-- this line is not empty, then we won't look for password anymore.
if Output'Length > 0 and then Output /= "" & ASCII.LF then
Command.Execution.Check_Password := False;
end if;
end if;
if Command.Execution.Progress_Matcher /= null then
declare
Matched : Match_Array
(0 .. Integer'Max (Command.Execution.Current_In_Regexp,
Command.Execution.Total_In_Regexp));
begin
Index := Output'First;
while Index <= Output'Last loop
EOL := Index;
while EOL <= Output'Last
and then Output (EOL) /= ASCII.LF
loop
EOL := EOL + 1;
end loop;
if EOL > Output'Last then
EOL := EOL - 1;
end if;
Match (Command.Execution.Progress_Matcher.all,
Output (Index .. EOL), Matched);
if Matched (Command.Execution.Current_In_Regexp) = No_Match
or else Matched (Command.Execution.Total_In_Regexp) = No_Match
then
Insert (Output (Index .. EOL));
if Save_Output then
Append
(Command.Execution.Current_Output,
Output (Index .. EOL));
end if;
else
declare
Outp : constant String :=
Output (Index .. Matched (0).First - 1)
& Output (Matched (0).Last + 1 .. EOL);
begin
if Command.Execution.Hide_Progress then
Insert (Outp);
else
Insert (Output (Index .. EOL));
end if;
if Save_Output then
Append (Command.Execution.Current_Output, Outp);
end if;
end;
Current := Safe_Value
(Output
(Matched (Command.Execution.Current_In_Regexp).First ..
Matched (Command.Execution.Current_In_Regexp).Last));
Total := Safe_Value
(Output
(Matched (Command.Execution.Total_In_Regexp).First
.. Matched (Command.Execution.Total_In_Regexp).Last));
Set_Progress
(Command,
Progress_Record'
(Activity => Running,
Current => Current,
Total => Total));
end if;
Index := EOL + 1;
end loop;
end;
elsif Save_Output then
Insert (Output);
Append (Command.Execution.Current_Output, Output);
else
Insert (Output);
end if;
end On_Output;
--------------------
-- Clear_Consoles --
--------------------
procedure Clear_Consoles
(Kernel : access Kernel_Handle_Record'Class;
Command : access Custom_Command'Class)
is
procedure Clear_Console (Name : GNAT.Strings.String_Access);
-- Clear a specific console
-------------------
-- Clear_Console --
-------------------
procedure Clear_Console (Name : GNAT.Strings.String_Access) is
Console : Interactive_Console;
begin
if Name /= null
and then Name.all /= No_Output
and then Name.all /= Console_Output
then
Console := Create_Interactive_Console
(Kernel, Name.all, Create_If_Not_Exist => False);
if Console /= null then
Clear (Console);
end if;
end if;
end Clear_Console;
begin
Clear_Console (Command.Default_Output_Destination);
for C in Command.Components'Range loop
Clear_Console
(Custom_Component (Command.Components (C).Component).Output);
end loop;
end Clear_Consoles;
-------------------------
-- Output_Substitution --
-------------------------
function Output_Substitution
(Command : access Custom_Command'Class;
Component : Integer;
Ref : Integer) return Integer
is
Ref_Index : Integer := Component - 1;
Sub_Index : Integer := Ref;
Failure : Integer := Command.Components (Component).On_Failure_For;
begin
if Ref > 0 then
while Ref_Index >= Command.Components'First loop
-- Handling of recursive on-failure blocks
if Ref_Index = Failure then
Failure := Command.Components (Ref_Index).On_Failure_For;
end if;
if Command.Components (Ref_Index).On_Failure_For = Failure then
Sub_Index := Sub_Index - 1;
exit when Sub_Index = 0;
end if;
Ref_Index := Ref_Index - 1;
end loop;
end if;
if Ref_Index >= Command.Components'First then
return Ref_Index;
else
return -1;
end if;
end Output_Substitution;
-----------------------
-- Check_Save_Output --
-----------------------
procedure Check_Save_Output
(Command : access Custom_Command'Class;
Save_Output : out Boolean_Array)
is
Index : Natural;
function Substitution (Param : String; Quoted : Boolean) return String;
-- Check whether the command has a '%' + digit parameter
------------------
-- Substitution --
------------------
function Substitution (Param : String; Quoted : Boolean) return String is
pragma Unreferenced (Quoted);
Sub_Index, Ref_Index : Integer;
begin
Sub_Index := Safe_Value (Param, Default => 0);
if Sub_Index /= 0 then
Ref_Index := Output_Substitution
(Command, Index, Sub_Index);
if Ref_Index >= Command.Components'First then
Save_Output (Ref_Index) := True;
end if;
end if;
return "";
end Substitution;
begin
Save_Output := (others => False);
Index := Command.Components'First;
while Index <= Command.Components'Last loop
declare
S : constant String := Substitute
(Str => Custom_Component
(Command.Components (Index).Component).Command.all,
Delimiter => GPS.Kernel.Macros.Special_Character,
Callback => Substitution'Unrestricted_Access,
Recursive => False);
pragma Unreferenced (S);
begin
null;
end;
Index := Index + 1;
end loop;
end Check_Save_Output;
----------
-- Free --
----------
procedure Free (Execution : in out Custom_Command_Execution) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Custom_Command_Execution_Record, Custom_Command_Execution);
begin
if Execution /= null then
Free (Execution.Current_Output);
GNAT.Strings.Free (Execution.Outputs);
Unchecked_Free (Execution.Save_Output);
Unchecked_Free (Execution.Progress_Matcher);
Unchecked_Free (Execution);
end if;
end Free;
----------
-- Free --
----------
procedure Free (Component : in out Custom_Component) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Custom_Component_Record'Class, Custom_Component);
begin
Free (Component.Output);
Free (Component.Command);
case Component.The_Type is
when Component_Shell =>
null;
when Component_External =>
Free (Component.Progress_Regexp);
end case;
Unchecked_Free (Component);
end Free;
----------
-- Free --
----------
overriding procedure Primitive_Free (X : in out Custom_Command) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Components_Array, Components_Array_Access);
begin
Free (X.Default_Output_Destination);
Free (X.Name);
Free (X.Execution);
for C in X.Components'Range loop
Free (Custom_Component (X.Components (C).Component));
end loop;
Unchecked_Free (X.Components);
end Primitive_Free;
------------
-- Create --
------------
procedure Create
(Item : out Custom_Command_Access;
Name : String;
Kernel : Kernel_Handle;
Command : String;
Script : Scripting_Language) is
begin
Item := new Custom_Command;
Item.Kernel := Kernel;
Item.Name := new String'(Name);
Item.Components := new Components_Array'
(1 => (Component => new Custom_Component_Record'
(Command_Component_Record with
The_Type => Component_Shell,
Show_Command => False,
Output => new String'(No_Output),
Command => new String'(Command),
Script => Script),
On_Failure_For => -1));
end Create;
--------------------
-- Shell_From_XML --
--------------------
function Shell_From_XML
(Kernel : access Kernel_Handle_Record'Class;
Command : XML_Utils.Node_Ptr;
Default_Show_Command : Boolean) return Command_Component
is
Output : constant String :=
Get_Attribute (Command, "output", "@@");
Script : constant String :=
Get_Attribute (Command, "lang", GPS_Shell_Name);
Show_Command : constant String :=
Get_Attribute (Command, "show-command");
Show_C : Boolean := Show_Command = "true";
Outp : GNAT.Strings.String_Access := null;
begin
if Output /= "@@" then
Outp := new String'(Output);
end if;
if Show_Command = "" then
Show_C := Default_Show_Command;
end if;
return new Custom_Component_Record'
(Command_Component_Record with
The_Type => Component_Shell,
Show_Command => Show_C,
Output => Outp,
Command => new String'(Command.Value.all),
Script => Kernel.Scripts.Lookup_Scripting_Language (Script));
end Shell_From_XML;
-----------------------
-- External_From_XML --
-----------------------
function External_From_XML
(Command : XML_Utils.Node_Ptr;
Default_Show_In_Task_Manager : Boolean;
Default_Show_Command : Boolean) return Command_Component
is
Output : constant String :=
Get_Attribute (Command, "output", "@@");
Show_Command : constant String :=
Get_Attribute (Command, "show-command");
Show_C : Boolean := Show_Command = "true";
Show_Task_Manager : constant String :=
Get_Attribute (Command, "show-task-manager");
Show_TM : Boolean := Show_Task_Manager = "false";
Progress_Regexp : constant String :=
Get_Attribute (Command, "progress-regexp", "");
Progress_Current : constant Integer :=
Safe_Value
(Get_Attribute
(Command, "progress-current", "1"));
Progress_Final : constant Integer :=
Safe_Value
(Get_Attribute (Command, "progress-final", "2"));
Progress_Hide : constant Boolean :=
Get_Attribute
(Command, "progress-hide", "true") = "true";
Server : constant String :=
Get_Attribute (Command, "server", "gps_server");
Check_Password : constant Boolean :=
Get_Attribute
(Command, "check-password", "false") = "true";
Outp : GNAT.Strings.String_Access := null;
Server_T : Server_Type;
begin
if Show_Task_Manager = "" then
Show_TM := Default_Show_In_Task_Manager or else Progress_Regexp /= "";
end if;
if Show_Command = "" then
Show_C := Default_Show_Command;
end if;
if Output /= "@@" then
Outp := new String'(Output);
end if;
begin
Server_T := Server_Type'Value (Server);
exception
when Constraint_Error =>
Server_T := GPS_Server;
end;
return new Custom_Component_Record'
(Command_Component_Record with
The_Type => Component_External,
Server => Server_T,
Check_Password => Check_Password,
Show_Command => Show_C,
Output => Outp,
Command => new String'(Command.Value.all),
Show_In_Task_Manager => Show_TM,
Progress_Regexp => new String'(Progress_Regexp),
Progress_Current => Progress_Current,
Progress_Final => Progress_Final,
Progress_Hide => Progress_Hide);
end External_From_XML;
--------------
-- From_XML --
--------------
function From_XML
(Kernel : access Kernel_Handle_Record'Class;
Command : XML_Utils.Node_Ptr;
Name : String;
Default_Show_In_Task_Manager : Boolean;
Default_Show_Command : Boolean) return Components_Array_Access
is
N, M : Node_Ptr := Command;
Count : Natural := 0;
Result : Components_Array_Access;
On_Failure : Integer := -1;
begin
while N /= null loop
if N.Tag.all = "shell"
or else N.Tag.all = "external"
then
Count := Count + 1;
elsif N.Tag.all = "on-failure" then
if N.Value /= null
and then N.Value.all /= ""
then
Insert (Kernel,
"<on-failure> can only contain <shell> and <external>"
& " tags, not a string, in definition of action """
& Name & """",
Mode => Error);
return new Components_Array (1 .. 0);
end if;
M := N.Child;
while M /= null loop
if M.Tag.all = "shell"
or else M.Tag.all = "external"
then
Count := Count + 1;
elsif M.Tag.all = "on-failure" then
Insert (Kernel,
"Nested <on-failure> nodes not supported, in "
& "definition of action """ & Name & """",
Mode => Error);
return new Components_Array (1 .. 0);
else
Insert (Kernel,
"Unknown tag in action definition: " & M.Tag.all
& " in definition of action """ & Name & """",
Mode => Error);
return new Components_Array (1 .. 0);
end if;
M := M.Next;
end loop;
elsif N.Tag.all = "filter"
or else N.Tag.all = "filter_and"
or else N.Tag.all = "filter_or"
or else N.Tag.all = "description"
then
-- Taken care of in custom_module.adb
null;
else
Insert (Kernel,
"Unknown tag " & N.Tag.all & " in definition of action """
& Name & """",
Mode => Error);
return new Components_Array (1 .. 0);
end if;
N := N.Next;
end loop;
Result := new Components_Array (1 .. Count);
Count := Result'First;
N := Command;
while N /= null loop
if N.Tag.all = "shell" then
Result (Count) :=
(Shell_From_XML (Kernel, N, Default_Show_Command), -1);
Count := Count + 1;
elsif N.Tag.all = "external" then
Result (Count) := (External_From_XML
(N,
Default_Show_In_Task_Manager => Default_Show_In_Task_Manager,
Default_Show_Command => Default_Show_Command),
-1);
Count := Count + 1;
elsif N.Tag.all = "on-failure" then
if Count = Result'First
or else Custom_Component (Result (Count - 1).Component).The_Type
/= Component_External
then
Insert (Kernel,
"<on-failure> can only follow an <external> node, in"
& " definition of action """ & Name & """",
Mode => Error);
return new Components_Array (1 .. 0);
end if;
On_Failure := Count - 1;
M := N.Child;
while M /= null loop
if M.Tag.all = "shell" then
Result (Count) :=
(Shell_From_XML (Kernel, M, Default_Show_Command),
On_Failure);
Count := Count + 1;
elsif M.Tag.all = "external" then
Result (Count) := (External_From_XML
(M,
Default_Show_In_Task_Manager =>
Default_Show_In_Task_Manager,
Default_Show_Command => Default_Show_Command),
On_Failure);
Count := Count + 1;
end if;
M := M.Next;
end loop;
end if;
N := N.Next;
end loop;
return Result;
end From_XML;
------------
-- Create --
------------
procedure Create
(Item : out Custom_Command_Access;
Name : String;
Kernel : Kernel_Handle;
Command : XML_Utils.Node_Ptr;
Default_Output : String := Console_Output;
Show_Command : Boolean := True;
Show_In_Task_Manager : Boolean := False) is
begin
Item := new Custom_Command;
Item.Kernel := Kernel;
Item.Default_Output_Destination := new String'(Default_Output);
Item.Default_Show_Command := Show_Command;
Item.Name := new String'(Name);
Item.Components := From_XML
(Kernel, Command, Name,
Default_Show_In_Task_Manager => Show_In_Task_Manager,
Default_Show_Command => Show_Command);
end Create;
-------------
-- Execute --
-------------
overriding function Execute
(Command : access Custom_Command;
Context : Interactive_Command_Context) return Command_Return_Type
is
Success : Boolean := True;
Current_Server : Server_Type := GPS_Server;
Old_Server : Server_Type := GPS_Server;
function Dollar_Substitution
(Param : String;
Mode : Command_Line_Mode) return Arg_List;
-- Substitution function for the "$1" .. "$N", "$*", "$@" parameters
function Substitution
(Param : String;
Mode : Command_Line_Mode) return Arg_List;
-- Substitution function for '%1', '%2',...
function Execute_Simple_Command
(Component : Custom_Component) return Boolean;
-- Execute a single command, and return whether it succeeded
function Terminate_Command return Command_Return_Type;
-- Terminate the command and free associated memory
function Execute_Next_Command return Boolean;
-- Execute the following commands, until the next external one.
-- Return True if there are still commands to be executed after that
-- one.
-------------------------
-- Dollar_Substitution --
-------------------------
function Dollar_Substitution
(Param : String;
Mode : Command_Line_Mode) return Arg_List
is
Is_Num : Boolean;
Result : Natural;
Multiple : Boolean := False;
First_Arg : Natural := 1;
CL : Arg_List;
pragma Unreferenced (Mode);
begin
if Param = "repeat" then
return Create (Integer'Image (Context.Repeat_Count));
elsif Param = "remaining" then
return Create (Integer'Image (Context.Remaining_Repeat));
end if;
if Context.Args = null then
return Empty_Command_Line;
end if;
if Param = "*" then
Multiple := True;
elsif Param (Param'Last) = '-' then
Multiple := True;
First_Arg := Safe_Value
(Param (Param'First .. Param'Last - 1), Param'Length + 1);
end if;
if Multiple then
for J in
Context.Args'First - 1 + First_Arg .. Context.Args'Last
loop
if Context.Args (J) /= null then
Append_Argument (CL, Context.Args (J).all, Expandable);
end if;
end loop;
return CL;
else
Is_Num := True;
for J in Param'Range loop
if not Is_Decimal_Digit (Param (J)) then
Is_Num := False;
exit;
end if;
end loop;
if Is_Num then
Result := Natural'Value (Param);
if Result in Context.Args'Range
and then Context.Args (Result) /= null
then
return Create (Context.Args (Result).all);
end if;
end if;
end if;
return Empty_Command_Line;
end Dollar_Substitution;
------------------
-- Substitution --
------------------
function Substitution
(Param : String;
Mode : Command_Line_Mode) return Arg_List
is
Num : Integer;
Done : aliased Boolean := False;
Macro : constant String :=
Substitute
(Param, Command.Execution.Context,
False, Done'Access, Current_Server,
For_Shell => False);
begin
if Done then
if Macro = "" then
return Empty_Command_Line;
else
return Create (Macro);
end if;
end if;
Num := Safe_Value (Param, Default => 0);
declare
Output_Index : constant Integer := Output_Substitution
(Command, Command.Execution.Cmd_Index, Num);
Output : GNAT.Strings.String_Access;
begin
if Output_Index = -1 then
return Empty_Command_Line;
end if;
Output := Command.Execution.Outputs (Output_Index);
if Output = null then
-- Mark this as invalid, so that the default behavior applies:
-- depending on the parameters passed to Substitute, the
-- original substring will either be kept or replaced by an
-- empty string. This is also needed for proper handling of
-- "%%" in the substring (returning an empty string here would
-- not work).
raise Invalid_Substitution;
else
return Parse_String (Output.all, Mode);
end if;
end;
end Substitution;
----------------------------
-- Execute_Simple_Command --
----------------------------
function Execute_Simple_Command
(Component : Custom_Component) return Boolean
is
-- Perform arguments substitutions for the command
The_Command_Line : Arg_List;
-- Treatment of the command line is the following:
-- - first we convert the raw command line string to a command line
-- (done with the call to parse_string above)
-- - then we process the command line to process '$' substitution
-- - then we process the command line to process '%' substitution
-- - we re-convert the command line to a string at the last moment,
-- when we pass the command to the script.
Console : Interactive_Console;
Output_Location : GNAT.Strings.String_Access;
function Execute_Shell
(Component : Custom_Component_Record'Class) return Boolean;
function Execute_External
(Component : Custom_Component_Record'Class) return Boolean;
-- Execute a shell or an external component. Return the success
-- status.
-------------------
-- Execute_Shell --
-------------------
function Execute_Shell
(Component : Custom_Component_Record'Class) return Boolean
is
Errors : aliased Boolean;
Old_Dir : Virtual_File;
-- has to be determined here so that Current_Server is
-- correctly set:
Treatment : GNATCOLL.Arg_Lists.Command_Line_Mode;
begin
if Command_Line_Treatment (Component.Script) = Raw_String then
Treatment := Raw_String;
else
Treatment := Separate_Args;
end if;
The_Command_Line := Parse_String
(Component.Command.all, Treatment);
-- Implement $-substitution
Substitute
(The_Command_Line, '$', Dollar_Substitution'Unrestricted_Access);
-- Implement %-substitution
Substitute
(The_Command_Line,
GPS.Kernel.Macros.Special_Character,
Substitution'Unrestricted_Access);
if Context.Dir /= No_File then
Old_Dir := Get_Current_Dir;
Change_Dir (Context.Dir);
end if;
if Component.Script /= null then
-- Output the command whether or not we are saving its output
if Console /= null and then Component.Show_Command then
Insert
(Console,
To_Display_String (The_Command_Line),
Add_LF => True);
end if;
if Command.Execution.Save_Output
(Command.Execution.Cmd_Index)
then
Command.Execution.Outputs (Command.Execution.Cmd_Index) :=
new String'
(Execute_Command
(Component.Script,
The_Command_Line,
Hide_Output => Output_Location.all = No_Output,
Show_Command => Component.Show_Command,
Console =>
Get_Or_Create_Virtual_Console (Console),
Errors => Errors'Unchecked_Access));
else
Execute_Command
(Component.Script, The_Command_Line,
Hide_Output => Output_Location.all = No_Output,
Show_Command => Component.Show_Command,
Console => Get_Or_Create_Virtual_Console (Console),
Errors => Errors);
end if;
end if;
if Context.Dir /= No_File then
Change_Dir (Old_Dir);
end if;
return not Errors;
end Execute_Shell;
----------------------
-- Execute_External --
----------------------
function Execute_External
(Component : Custom_Component_Record'Class) return Boolean
is
Data : Custom_Callback_Data_Access;
begin
The_Command_Line := Parse_String
(Trim
(Component.Command.all,
Left => To_Set (' ' & ASCII.LF & ASCII.HT),
Right => Strings.Maps.Null_Set),
Separate_Args);
-- Implement $-substitution
Substitute
(The_Command_Line, '$', Dollar_Substitution'Unrestricted_Access);
-- Implement %-substitution
Substitute
(The_Command_Line,
GPS.Kernel.Macros.Special_Character,
Substitution'Unrestricted_Access);
Trace (Me, "Executing external command " & Component.Command.all);
Free (Command.Execution.Current_Output);
Command.Execution.Current_Output := new String'("");
Unchecked_Free (Command.Execution.Progress_Matcher);
Command.Execution.Current_In_Regexp :=
Integer'Max (0, Component.Progress_Current);
Command.Execution.Total_In_Regexp :=
Integer'Max (0, Component.Progress_Final);
Command.Execution.Hide_Progress := Component.Progress_Hide;
Command.Execution.Check_Password := Component.Check_Password;
Command.Execution.Nb_Password := 0;
if Component.Progress_Regexp.all /= "" then
Command.Execution.Progress_Matcher := new Pattern_Matcher'
(Compile (Component.Progress_Regexp.all,
Multiple_Lines or Single_Line));
end if;
if The_Command_Line = Empty_Command_Line then
Trace (Me, "Cannot launch empty command");
Success := False;
Command.Execution.External_Process_In_Progress := False;
Command.Execution.Process_Exit_Status := 1;
else
-- Set the console before launching the process, so that
-- synchronous calls correctly output.
Command.Execution.External_Process_Console := Console;
Data := new Custom_Callback_Data'
(External_Process_Data with
Command => Custom_Command_Access (Command));
Launch_Process
(Kernel => Command.Kernel,
CL => The_Command_Line,
Server => Component.Server,
Console => Console,
Success => Success,
Show_Command => Component.Show_Command,
-- Showing the output is already handled by the callback
-- Store_Command_Output.
Show_Output => False,
Data => Data,
Show_In_Task_Manager => Component.Show_In_Task_Manager,
Line_By_Line => False,
Synchronous => Context.Synchronous,
Directory => To_Remote
(Context.Dir, Get_Nickname (Component.Server)),
Scheduled => Command.Sub_Command);
Command.Execution.External_Process_In_Progress := Success;
end if;
return Success;
end Execute_External;
begin
if Component.Output = null then
Output_Location := Command.Default_Output_Destination;
else
Output_Location := Component.Output;
end if;
if Success and then Output_Location.all /= No_Output then
Console := Create_Interactive_Console
(Command.Kernel, Output_Location.all);
end if;
-- If substitution failed
-- ??? Should write message to console
if not Success then
return False;
end if;
case Component.The_Type is
when Component_Shell =>
Success := Execute_Shell (Component.all);
when Component_External =>
Old_Server := Current_Server;
Current_Server := Component.Server;
Success := Execute_External (Component.all);
Current_Server := Old_Server;
end case;
if not Success then
Trace
(Me, "Execute_Simple_Command => Command returned with error");
end if;
return Success;
exception
when E : others =>
Trace (Me, E);
Insert (Command.Kernel,
-("An unexpected error occurred while executing the custom"
& " command. See the log file for more information."),
Mode => Error);
return False;
end Execute_Simple_Command;
--------------------------
-- Execute_Next_Command --
--------------------------
function Execute_Next_Command return Boolean is
Current : Command_Component_Description;
begin
while Success
and then Command.Execution.Cmd_Index <= Command.Components'Last
loop
Current := Command.Components (Command.Execution.Cmd_Index);
if Current.On_Failure_For = Command.Execution.Current_Failure then
Success := Execute_Simple_Command
(Custom_Component (Current.Component));
if not Context.Synchronous
and then Custom_Component (Current.Component).The_Type =
Component_External
then
-- We'll have to run again to check for completion
return True;
end if;
end if;
-- In case the command has terminated early
exit when Command.Execution = null;
if Context.Synchronous
and then
Custom_Component (Current.Component).The_Type =
Component_External
then
Command.Execution.Outputs (Command.Execution.Cmd_Index) :=
Command.Execution.Current_Output;
Command.Execution.Current_Output := null;
end if;
Command.Execution.Cmd_Index := Command.Execution.Cmd_Index + 1;
end loop;
-- No more command to execute
return False;
end Execute_Next_Command;
-----------------------
-- Terminate_Command --
-----------------------
function Terminate_Command return Command_Return_Type is
begin
Free (Command.Execution);
Command_Finished_Status (Command, Success);
if Success then
return Commands.Success;
else
return Failure;
end if;
end Terminate_Command;
Old_Dir : Virtual_File;
begin -- Execute
-- If there was an external command executing:
if Command.Execution /= null then
if Command.Execution.External_Process_In_Progress then
return Execute_Again;
end if;
-- Save current output
Command.Execution.Outputs (Command.Execution.Cmd_Index) :=
Command.Execution.Current_Output;
Command.Execution.Current_Output := null;
if Command.Execution.Process_Exit_Status /= 0 then
Command.Execution.Current_Failure := Command.Execution.Cmd_Index;
Command.Execution.Process_Exit_Status := 0;
end if;
-- And pass to the next command
Command.Execution.Cmd_Index := Command.Execution.Cmd_Index + 1;
else
if Context.Dir /= No_File then
Old_Dir := Get_Current_Dir;
begin
Change_Dir (Context.Dir);
exception
when Directory_Error =>
return Terminate_Command;
end;
end if;
Command.Execution := new Custom_Command_Execution_Record;
Command.Execution.Outputs :=
new GNAT.Strings.String_List (Command.Components'Range);
Command.Execution.Save_Output :=
new Boolean_Array (Command.Components'Range);
if Context.Context = No_Context then
Command.Execution.Context := Get_Current_Context (Command.Kernel);
else
Command.Execution.Context := Context.Context;
end if;
Command.Execution.Cmd_Index := Command.Components'First;
Check_Save_Output (Command, Command.Execution.Save_Output.all);
Clear_Consoles (Command.Kernel, Command);
if Context.Dir /= No_File then
Change_Dir (Old_Dir);
end if;
if not Success then
return Terminate_Command;
end if;
end if;
if Execute_Next_Command then
return Execute_Again;
else
return Terminate_Command;
end if;
end Execute;
----------
-- Name --
----------
overriding function Name (Command : access Custom_Command) return String is
begin
return Command.Name.all;
end Name;
---------------
-- Interrupt --
---------------
overriding procedure Interrupt (Command : in out Custom_Command) is
begin
if Command.Execution /= null then
Command.Execution.Cmd_Index := Command.Components'First;
Interrupt_Queue (Command.Kernel, Command.Sub_Command);
end if;
end Interrupt;
end Commands.Custom;
|
gerr135/ada_composition | Ada | 4,650 | ads | --
-- A barebones indexed interface which can be iterated over.
-- Child packages will either pass through to core (fixed) array or a Vector;
--
-- The idea is to create an interface that will allow multiple implementations but can be
-- used directly in implementing common (class-wide) functionality.
--
-- Copyright (C) 2019 George Shapovalov <[email protected]>
--
-- 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.
--
with Ada.Iterator_Interfaces;
generic
type Index_Base is range <>; -- pass an "extended" index_base (e.g. starting from 0 and counting from 1)
type Element_Interface is interface;
package Iface_Lists is
subtype Index_Type is Index_Base range Index_Base'First + 1 .. Index_Base'Last;
-- mirrors the common subtype definition. Should be the same as defined likewise anywhere else..
type List_Interface is interface
with Constant_Indexing => Element_Constant_Reference,
Variable_Indexing => Element_Reference,
Default_Iterator => Iterate,
Iterator_Element => Element_Interface'Class;
type Cursor is private;
No_Element : constant Cursor;
function Has_Element (Position : Cursor) return Boolean;
package List_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element);
-- we need to redispatch to a proper derived type, so we need to unroll the record
-- to make this a primitive op
function Has_Element (LI : List_Interface; Position : Index_Base) return Boolean is abstract;
-- NOTE: This should really be in private part, but Ada doers not allow it (citing RM 3.9.3(10))
type Constant_Reference_Type (Data : not null access constant Element_Interface'Class) is private
with Implicit_Dereference => Data;
type Reference_Type (Data : not null access Element_Interface'Class) is private
with Implicit_Dereference => Data;
function Element_Constant_Reference (Container : aliased in List_Interface; Position : Cursor) return Constant_Reference_Type is abstract;
function Element_Constant_Reference (Container : aliased in List_Interface; Index : Index_Type) return Constant_Reference_Type is abstract;
function Element_Reference (Container : aliased in out List_Interface; Position : Cursor) return Reference_Type is abstract;
function Element_Reference (Container : aliased in out List_Interface; Index : Index_Type) return Reference_Type is abstract;
-- these names have to be different from what is used (in private part) by Ada.Containers.Vectors
-- if we are to directly glue ACV.Vector over this,
-- otherwise the compiler gets confused..
----------------------------------------------
-- Iteration
--
-- we need to define our iterator type in a central way.
-- Since implementation details may differe, we essentially get a parallel type hierarchy here..
type Iterator_Interface is interface and List_Iterator_Interfaces.Reversible_Iterator;
-- all 4 primitives (First, Last, Next, Prev) would be abstract here anyway,
-- so they are implicitly carried over
--
-- NOTE: in this (trivial) case 3 out of 4 primitives have exactly the same implementation,
-- so this could have been made a real type, with a specific method overridden
-- But we keep it as is as a demo of a more generic design pattern..
function Iterate (Container : List_Interface) return Iterator_Interface'Class is abstract;
-- this one can (and should) share the name/specs, as it is not part of any aspect..
------------------------------------------------
-- Extras (to the basic indexing/iteration)
function Length (Container : aliased in out List_Interface) return Index_Base is abstract;
function First_Index(Container : aliased in out List_Interface) return Index_Type is abstract;
function Last_Index (Container : aliased in out List_Interface) return Index_Type is abstract;
private
type List_Access is access all List_Interface'Class;
for List_Access'Storage_Size use 0;
type Cursor is record
Container : List_Access;
Index : Index_Base := Index_Type'First;
end record;
No_Element : constant Cursor := (Null, Index_Base'First);
type Constant_Reference_Type(Data : not null access constant Element_Interface'Class) is null record;
type Reference_Type (Data : not null access Element_Interface'Class) is null record;
end Iface_Lists;
|
AdaCore/training_material | Ada | 383 | adb | package body Colors is
procedure Add
(Set : in out Color_Set_T;
Color : Color_T) is
begin
null;
end Add;
procedure Remove
(Set : in out Color_Set_T;
Color : Color_T) is
begin
null;
end Remove;
function Image
(Set : Color_Set_T)
return String is
begin
return "";
end Image;
end Colors;
|
stcarrez/dynamo | Ada | 72,630 | adb | ------------------------------------------------------------------------------
-- --
-- ASIS-for-GNAT IMPLEMENTATION COMPONENTS --
-- --
-- A 4 G . A _ S E M --
-- --
-- B o d y --
-- --
-- Copyright (C) 1995-2012, Free Software Foundation, Inc. --
-- --
-- ASIS-for-GNAT is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. ASIS-for-GNAT is distributed in the hope that it will be use- --
-- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General --
-- Public License for more details. You should have received a copy of the --
-- GNU General Public License distributed with ASIS-for-GNAT; see file --
-- COPYING. If not, write to the Free Software Foundation, 51 Franklin --
-- Street, Fifth Floor, Boston, MA 02110-1301, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the --
-- Software Engineering Laboratory of the Swiss Federal Institute of --
-- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the --
-- Scientific Research Computer Center of Moscow State University (SRCC --
-- MSU), Russia, with funding partially provided by grants from the Swiss --
-- National Science Foundation and the Swiss Academy of Engineering --
-- Sciences. ASIS-for-GNAT is now maintained by AdaCore --
-- (http://www.adacore.com). --
-- --
------------------------------------------------------------------------------
with Asis.Declarations; use Asis.Declarations;
with Asis.Elements; use Asis.Elements;
with Asis.Expressions; use Asis.Expressions;
with Asis.Extensions; use Asis.Extensions;
with Asis.Iterator; use Asis.Iterator;
with Asis.Set_Get; use Asis.Set_Get;
with A4G.A_Types; use A4G.A_Types;
with A4G.Contt.TT; use A4G.Contt.TT; use A4G.Contt;
with A4G.Contt.UT; use A4G.Contt.UT;
with A4G.Mapping; use A4G.Mapping;
with Atree; use Atree;
with Namet; use Namet;
with Nlists; use Nlists;
with Sem_Aux; use Sem_Aux;
with Sinfo; use Sinfo;
with Sinput; use Sinput;
with Snames; use Snames;
package body A4G.A_Sem is
----------------------
-- Local subprogram --
----------------------
function Is_Importing_Pragma
(N : Node_Id;
For_Name : Name_Id)
return Boolean;
-- Checks if N is a node representing Import or Interface pragma that
-- is applied to the name For_Name
-----------------------------
-- Belongs_To_Limited_View --
-----------------------------
function Belongs_To_Limited_View (Decl : Asis.Element) return Boolean is
Result : Boolean := False;
begin
case Declaration_Kind (Decl) is
when An_Ordinary_Type_Declaration |
A_Task_Type_Declaration |
A_Protected_Type_Declaration |
An_Incomplete_Type_Declaration |
A_Tagged_Incomplete_Type_Declaration |
A_Private_Type_Declaration |
A_Private_Extension_Declaration |
A_Package_Declaration =>
Result := True;
when others =>
null;
end case;
return Result;
end Belongs_To_Limited_View;
------------------------------
-- Char_Defined_In_Standard --
------------------------------
function Char_Defined_In_Standard (N : Node_Id) return Boolean is
N_Etype : Node_Id;
begin
N_Etype := Etype (N);
if No (N_Etype) then
-- It may happen for array literal rewritten into a string literal,
-- so some additional digging is needed
N_Etype := Parent (N);
if Nkind (N_Etype) = N_String_Literal then
N_Etype := Etype (N_Etype);
if Ekind (N_Etype) = E_String_Literal_Subtype then
N_Etype := Component_Type (N_Etype);
end if;
else
N_Etype := Empty;
end if;
end if;
return Present (N_Etype) and then
Sloc (N_Etype) <= Standard_Location;
end Char_Defined_In_Standard;
------------------------
-- Corr_Decl_For_Stub --
------------------------
function Corr_Decl_For_Stub (Stub_Node : Node_Id) return Node_Id is
Result_Node : Node_Id := Empty;
Stub_Entity_Node : Node_Id;
Scope_Node : Node_Id;
Search_Node : Node_Id;
Search_Node_Kind : Node_Kind;
List_To_Search : List_Id;
Search_In_Package : Boolean;
Decl_Found : Boolean := False;
Priv_Decl_Passed : Boolean := False;
Body_Passed : Boolean := False;
procedure Search_In_List;
-- looks for a possible subprogram declaration node for which
-- the given stub is a completion, using global settings for
-- List_To_Search and Search_Node
function Is_Spec_For_Stub
(Search_Node : Node_Id;
Stub_Node : Node_Id;
Stub_Entity_Node : Node_Id)
return Boolean;
-- check if the current Search_Node is a corresponding definition
-- for a given stub. We cannot directly use the Corresponding_Body
-- field here, because in case when subunits are around, this field
-- will point to a proper body of a subunit, but not to a stub
-- This function is called only for those nodes for which
-- Corresponding_Body field makes sense
function Is_Spec_For_Stub
(Search_Node : Node_Id;
Stub_Node : Node_Id;
Stub_Entity_Node : Node_Id)
return Boolean
is
Corr_Body_Node : constant Node_Id := Corresponding_Body (Search_Node);
N : Node_Id;
begin
if Corr_Body_Node = Stub_Entity_Node then
return True;
else
-- we have to check if we are in the proper body of a subunit
N := Parent (Corr_Body_Node);
if Nkind (N) = N_Procedure_Specification or else
Nkind (N) = N_Function_Specification
then
N := Parent (N);
end if;
N := Parent (N);
-- now, in case of subunit's parent body, we should be in
-- N_Subunit node
if Nkind (N) = N_Subunit then
return Corresponding_Stub (N) = Stub_Node;
else
return False;
end if;
end if;
end Is_Spec_For_Stub;
procedure Search_In_List is
begin
while Present (Search_Node) loop
Search_Node_Kind := Nkind (Search_Node);
if (Search_Node_Kind = N_Subprogram_Declaration or else
Search_Node_Kind = N_Generic_Subprogram_Declaration or else
Search_Node_Kind = N_Package_Declaration or else
Search_Node_Kind = N_Generic_Package_Declaration or else
Search_Node_Kind = N_Single_Task_Declaration or else
Search_Node_Kind = N_Task_Type_Declaration or else
Search_Node_Kind = N_Single_Protected_Declaration or else
Search_Node_Kind = N_Protected_Type_Declaration)
and then
Is_Spec_For_Stub (Search_Node, Stub_Node, Stub_Entity_Node)
-- ???Corresponding_Body (Search_Node) = Stub_Entity_Node
then
-- the corresponding declaration for the stub is found
Result_Node := Search_Node;
Decl_Found := True;
return;
elsif Search_Node = Stub_Node then
-- no need to search any mode, no declaration exists,
-- the stub itself works as a declaration
Decl_Found := True;
return;
end if;
Search_Node := Next_Non_Pragma (Search_Node);
end loop;
end Search_In_List;
begin -- Corr_Decl_For_Stub
-- first, setting Stub_Entity_Node:
if Nkind (Stub_Node) = N_Subprogram_Body_Stub then
Stub_Entity_Node := Defining_Unit_Name (Specification (Stub_Node));
else
Stub_Entity_Node := Defining_Identifier (Stub_Node);
end if;
-- then, defining the scope node and list to search in:
Scope_Node := Scope (Stub_Entity_Node);
if No (Scope_Node) then
-- Unfortunately, this is the case for stubs of generic units
-- with no (non-generic) parameters
Scope_Node := Stub_Entity_Node;
while not (Nkind (Scope_Node) = N_Package_Body or else
Nkind (Scope_Node) = N_Subprogram_Body)
loop
Scope_Node := Parent (Scope_Node);
end loop;
if Nkind (Scope_Node) = N_Package_Body then
Scope_Node := Corresponding_Spec (Scope_Node);
else
Scope_Node := Defining_Unit_Name (Specification (Scope_Node));
end if;
end if;
if Ekind (Scope_Node) = E_Generic_Package or else
Ekind (Scope_Node) = E_Package
then
Search_In_Package := True;
Scope_Node := Parent (Scope_Node);
if Nkind (Scope_Node) = N_Defining_Program_Unit_Name then
-- we are in a child library package
Scope_Node := Parent (Scope_Node);
end if;
-- now we are in the package spec
List_To_Search := Visible_Declarations (Scope_Node);
if No (List_To_Search) then
List_To_Search := Private_Declarations (Scope_Node);
Priv_Decl_Passed := True;
if No (List_To_Search) then
List_To_Search := List_Containing (Stub_Node);
-- what else could it be?
Body_Passed := True;
end if;
end if;
else
Search_In_Package := False;
List_To_Search := List_Containing (Stub_Node);
-- The following code was here for many years, but it seems that the
-- only effect of this conditional processing is failures in case
-- if we have a stub following the corresponding declaration in the
-- body of library generic subprogram. We keep it commented out just
-- in case.
-- -- The situation of the stub for generic subprogram having
-- -- (non-generic) parameters makes a special case:
-- if Ekind (Scope_Node) in Generic_Unit_Kind
-- and then
-- Corresponding_Stub (Parent (Parent (Parent (Corresponding_Body
-- (Parent (Parent (Scope_Node))))))) =
-- Stub_Node
-- then
-- return Parent (Parent (Scope_Node));
-- else
-- Search_In_Package := False;
-- List_To_Search := List_Containing (Stub_Node);
-- end if;
end if;
Search_Node := First_Non_Pragma (List_To_Search);
Search_In_List;
-- now, if we are in a package, and if we have not found the result
-- (or passed the stub node), we have to continue:
if Search_In_Package and then not Decl_Found then
-- where should we continue the search?
if not Priv_Decl_Passed then
List_To_Search := Private_Declarations (Scope_Node);
Priv_Decl_Passed := True;
if No (List_To_Search) then
List_To_Search := List_Containing (Stub_Node);
Body_Passed := True;
end if;
elsif not Body_Passed then
List_To_Search := List_Containing (Stub_Node);
Body_Passed := True;
end if;
Search_Node := First_Non_Pragma (List_To_Search);
Search_In_List;
if not Decl_Found then
-- if we are here, we have to search the package body,
-- where the stub itself is
List_To_Search := List_Containing (Stub_Node);
Search_Node := First_Non_Pragma (List_To_Search);
Search_In_List;
end if;
end if;
return Result_Node;
end Corr_Decl_For_Stub;
-------------------------
-- Defined_In_Standard --
-------------------------
function Defined_In_Standard (N : Node_Id) return Boolean is
N_Entity : Node_Id := Empty;
N_Etype : Node_Id := Empty;
Result : Boolean := False;
begin
if Nkind (N) in N_Has_Entity then
N_Entity := Entity (N);
elsif Nkind (N) in Sinfo.N_Entity then
N_Entity := N;
end if;
if Present (N_Entity) then
N_Etype := Etype (N_Entity);
end if;
Result :=
Present (N_Entity) and then
Present (N_Etype) and then
Sloc (N_Entity) <= Standard_Location and then
Sloc (N_Etype) <= Standard_Location;
return Result;
end Defined_In_Standard;
--------------------
-- Entity_Present --
--------------------
function Entity_Present (N : Node_Id) return Boolean is
Result : Boolean := Present (Entity (N));
begin
if Result then
Result := Nkind (Entity (N)) in N_Entity;
end if;
return Result;
end Entity_Present;
--------------------------------
-- Explicit_Parent_Subprogram --
--------------------------------
function Explicit_Parent_Subprogram (E : Entity_Id) return Entity_Id is
Result : Entity_Id := Empty;
E_Ekind : constant Entity_Kind := Ekind (E);
Parent_Type : Entity_Id;
Tmp_Res : Entity_Id;
begin
-- The problem here is that we can not just traverse the Alias chain,
-- because in case if the parent subprogram is declared by the
-- subprogram renaming and the renamed entity is an intrinsic
-- subprogram, the Alias field of the derived subprogram will
-- point not to the parent renaming declaration, but to this
-- intrinsic subprogram (see F407-016).
if Is_Intrinsic_Subprogram (E)
and then
Present (Alias (E))
and then
Defined_In_Standard (Alias (E))
then
-- Here we may have a renaming declaration, and the renamed entity
-- is a predefined operation. So we have to traverse the derivation
-- chain and to try to locate the explicit renaming that is the cause
-- of the existing of this derived subprogram.
Parent_Type := Etype (E);
Parent_Type := Etype (Parent_Type);
Parent_Type := Parent (Parent_Type);
Parent_Type := Defining_Identifier (Parent_Type);
-- Here we should have Parent_Type pointing to the entity of the
-- parent type
Tmp_Res := Next_Entity (Parent_Type);
while Present (Tmp_Res) loop
if Ekind (Tmp_Res) = E_Ekind
and then
Is_Intrinsic_Subprogram (Tmp_Res)
and then
Chars (Tmp_Res) = Chars (E)
and then
Alias (Tmp_Res) = Alias (E)
then
Result := Tmp_Res;
exit;
end if;
Tmp_Res := Next_Entity (Tmp_Res);
end loop;
if Present (Result)
and then
not Comes_From_Source (Result)
then
Result := Explicit_Parent_Subprogram (Result);
end if;
else
Result := Alias (E);
while Present (Alias (Result))
and then
not Comes_From_Source (Result)
loop
Result := Alias (Result);
end loop;
end if;
return Result;
end Explicit_Parent_Subprogram;
--------------------------
-- Get_Actual_Type_Name --
--------------------------
function Get_Actual_Type_Name (Type_Mark_Node : Node_Id) return Node_Id is
Result : Node_Id := Type_Mark_Node;
Tmp_Node : Node_Id;
begin
if Is_From_Instance (Type_Mark_Node) then
Tmp_Node := Entity (Type_Mark_Node);
if Present (Tmp_Node)
and then
Ekind (Tmp_Node) in Einfo.Type_Kind
then
Tmp_Node := Parent (Tmp_Node);
end if;
if Nkind (Tmp_Node) = N_Subtype_Declaration
and then
not Is_Rewrite_Substitution (Tmp_Node)
and then
not Comes_From_Source (Tmp_Node)
then
Result := Sinfo.Subtype_Indication (Tmp_Node);
-- In case of nested instantiations, we have to traverse
-- the chain of subtype declarations created by the compiler
-- for actual types
while Is_From_Instance (Result)
and then
Nkind (Parent (Entity (Result))) = N_Subtype_Declaration
and then
not Comes_From_Source (Parent (Entity (Result)))
loop
Result := Parent (Entity (Result));
if Is_Rewrite_Substitution (Result) then
-- The case when the actual type is a derived type. Here
-- the chain of subtypes leads to the artificial internal
-- type created by the compiler, but not to the actual type
-- (8924-006)
Result := Sinfo.Defining_Identifier (Result);
while Present (Homonym (Result)) loop
Result := Homonym (Result);
end loop;
exit;
end if;
Result := Sinfo.Subtype_Indication (Result);
end loop;
end if;
end if;
return Result;
end Get_Actual_Type_Name;
----------------------------
-- Get_Corr_Called_Entity --
----------------------------
function Get_Corr_Called_Entity
(Call : Asis.Element)
return Asis.Declaration
is
Arg_Node : Node_Id;
Arg_Node_Kind : Node_Kind;
Result_Node : Node_Id;
Result_Unit : Compilation_Unit;
Special_Case : Special_Cases := Not_A_Special_Case;
Result_Kind : Internal_Element_Kinds := Not_An_Element;
Inherited : Boolean := False;
Res_Node_Field_1 : Node_Id := Empty;
Tmp_Node : Node_Id;
Result_El : Asis.Element;
begin
-- The general implementation approach is:
--
-- 1. First, we try to define Result_Node as pointing to the tree
-- node on which the resulting ASIS Element should be based.
-- During this step Arg_Node is also set (and probably adjusted)
--
-- 2. If the result looks like representing an Ada implicit construct
-- (for now the main and the only check is
-- Comes_From_Source (Result_Node)), at the second step we
-- form the representation of the implicit inherited user-defined
-- subprogram by setting Result_Node pointing to the explicit
-- declaration of the subprogram being inherited, and
-- Res_Node_Field_1 pointing to the defining identifier node
-- corresponding to the given implicit subprogram. Note, that
-- at the moment implicit predefined operations are not
-- implemented.
--
-- 3. On the last step we compute additional attributes of the
-- resulting Element.
------------------------------------------------------------------
-- 1. Defining Result_Node (and adjusting Arg_Node, if needed) --
------------------------------------------------------------------
Arg_Node := R_Node (Call);
Arg_Node_Kind := Nkind (Arg_Node);
Tmp_Node := Node (Call);
-- Rewritten node should know everything. But if in case of a function
-- call this node is the result of compile-time optimization,
-- we have to work with original node only:
if Arg_Node_Kind = N_String_Literal or else
Arg_Node_Kind = N_Integer_Literal or else
Arg_Node_Kind = N_Real_Literal or else
Arg_Node_Kind = N_Character_Literal or else
Arg_Node_Kind = N_Raise_Constraint_Error or else
Arg_Node_Kind = N_Raise_Program_Error or else
Arg_Node_Kind = N_Conditional_Expression or else
Arg_Node_Kind = N_Explicit_Dereference or else
Arg_Node_Kind = N_Type_Conversion or else
Arg_Node_Kind = N_Unchecked_Type_Conversion or else
Arg_Node_Kind = N_Identifier or else
(Arg_Node_Kind in N_Op
and then
(Nkind (Tmp_Node) = N_Function_Call
or else
(Nkind (Tmp_Node) in N_Op
and then
Entity_Present (Tmp_Node)
and then
(Pass_Generic_Actual (Parent (Parent ((Entity (Tmp_Node)))))))))
then
Arg_Node := Node (Call);
Arg_Node_Kind := Nkind (Arg_Node);
end if;
case Arg_Node_Kind is
when N_Attribute_Reference =>
return Nil_Element;
-- call to a procedure-attribute or to a function-attribute
-- but in case when a representation clause was applied
-- to define stream IOU attributes, we can return something
-- more interesting, then Nil_Element, see the corresponding
-- Aladdin's message
when N_Entry_Call_Statement |
N_Procedure_Call_Statement |
N_Function_Call =>
-- here we have to filter out the case when Nil_Element
-- should be returned for a call through access-to-function:
if Nkind (Sinfo.Name (Arg_Node)) = N_Explicit_Dereference then
return Nil_Element;
end if;
if Arg_Node_Kind = N_Entry_Call_Statement then
Arg_Node := Sinfo.Name (Arg_Node);
-- Arg_Node points to the name of the called entry
if Nkind (Arg_Node) = N_Indexed_Component then
-- this is the case for a call to an entry from an
-- entry family
Arg_Node := Prefix (Arg_Node);
end if;
Result_Node := Entity (Selector_Name (Arg_Node));
else
-- here we have Arg_Node_Kind equal to
-- N_Procedure_Call_Statement or to N_Function_Call, and this
-- is the right place to check if this is a dispatching call.
-- We do not want to use Asis.Extensions.Is_Dispatching_Call
-- query here to avoid introducing dependency on
-- Asis.Extensions
if Present (Controlling_Argument (Arg_Node)) then
return Nil_Element;
end if;
Arg_Node := Sinfo.Name (Arg_Node);
if Nkind (Arg_Node) = N_Selected_Component then
-- this is the case for calls to protected subprograms
Result_Node := Entity (Selector_Name (Arg_Node));
else
Result_Node := Entity (Arg_Node);
end if;
end if;
if No (Result_Node)
and then
Arg_Node_Kind = N_Function_Call
and then
Is_From_Unknown_Pragma (R_Node (Call))
then
return Nil_Element;
end if;
when N_Op =>
-- all the predefined operations (??)
Result_Node := Entity (Arg_Node);
when others =>
pragma Assert (False);
null;
end case;
if Present (Result_Node)
and then
not Comes_From_Source (Result_Node)
and then
Nkind (Parent (Result_Node)) = N_Defining_Program_Unit_Name
then
-- Case of a child subprogram for that an explicit separate spec is
-- not given. Result_Node points to the defining identifier from
-- the subprogram spec artificially created by the compiler. We
-- reset it to point to the proper defining identifier from the
-- explicitly given body
Result_Node := Parent (Parent (Parent (Result_Node)));
pragma Assert (Nkind (Result_Node) = N_Subprogram_Declaration);
Result_Node := Corresponding_Body (Result_Node);
end if;
pragma Assert (Present (Result_Node));
-- it is possible, that for a subprogram defined by a stub, the
-- subprogram body declaration from the corresponding subunit is
-- returned. In this case we have to go to the corresponding
-- stub (the subprogram body which is the proper body from a
-- subunit can never be returned as a corresponding called entity)
Set_Stub_For_Subunit_If_Any (Result_Node);
if Is_Generic_Instance (Result_Node) then
Result_Node := Get_Instance_Name (Result_Node);
end if;
Tmp_Node := Original_Node (Parent (Parent (Result_Node)));
while Nkind (Tmp_Node) = N_Subprogram_Renaming_Declaration
and then
not (Comes_From_Source (Tmp_Node))
and then
not Pass_Generic_Actual (Tmp_Node)
loop
-- Result_Node is a defining name from the artificial renaming
-- declarations created by the compiler in the for wrapper
-- package for expanded subprogram instantiation. We
-- have to go to expanded subprogram spec which is renamed.
--
-- We have to do this in a loop in case of nested instantiations
Result_Node := Sinfo.Name (Tmp_Node);
if Nkind (Result_Node) = N_Selected_Component then
Result_Node := Selector_Name (Result_Node);
end if;
Result_Node := Entity (Result_Node);
Tmp_Node := Parent (Parent (Result_Node));
end loop;
-- F703-020: operations of an actual type provided for the formal
-- derived type (we are in the expanded generic)
if not Comes_From_Source (Result_Node)
and then
Present (Alias (Result_Node))
and then
not (Is_Intrinsic_Subprogram (Result_Node))
and then
Pass_Generic_Actual (Parent (Result_Node))
then
-- This means that we have an operation of an actual that corresponds
-- to the generic formal derived type. In the tree, these operations
-- are "(re)defined" for the artificial subtype declaration used to
-- pass the actual type into expanded template. We go one step up
-- the aliases chain to get to the proper declaration of the type
-- operation
Result_Node := Alias (Result_Node);
end if;
-- the code below is very similar to what we have in
-- A4G.Expr_Sem.Identifier_Name_Definition (this name may be changed)!
-- In future we'll probably have to re-study this again (???)
-- first, defining the Enclosing Unit and doing the consistency check
-----------------------------------------------------------
-- 2. Defining Association_Etype as the type "producing" --
-- a given implicit construct (if needed) --
-----------------------------------------------------------
-- We have to turn off for a while the full processing of the
-- implicit elements (Hope to fix this soon).
if (not Comes_From_Source (Result_Node)
or else
Is_Artificial_Protected_Op_Item_Spec (Result_Node))
and then
not Pass_Generic_Actual (Parent (Parent (Result_Node)))
then
if Present (Alias (Result_Node))
and then
Nkind (Original_Node (Parent (Result_Node))) in
N_Formal_Type_Declaration .. N_Private_Extension_Declaration
then
-- ???Is this the right test for implicit inherited user-defined
-- subprogram???
Inherited := True;
Res_Node_Field_1 := Result_Node;
while Present (Alias (Result_Node))
and then
not Comes_From_Source (Result_Node)
loop
Result_Node := Alias (Result_Node);
end loop;
elsif Is_Generic_Instance (Result_Node) then
Special_Case := Expanded_Subprogram_Instantiation;
elsif Is_Artificial_Protected_Op_Item_Spec (Result_Node) then
Result_Node := Corresponding_Body (Parent (Parent (Result_Node)));
elsif Ekind (Result_Node) = E_Function
and then
not Comes_From_Source (Result_Node)
and then
Chars (Result_Node) = Name_Op_Ne
and then
Present (Corresponding_Equality (Result_Node))
then
Special_Case := Is_From_Imp_Neq_Declaration;
-- |A2012 start SCz
-- elsif Nkind (Original_Node ((Parent (Parent (Result_Node))))) =
-- N_Expression_Function
-- then
-- null;
-- |A2012 end
else
return Nil_Element;
-- ???!!! this turns off all the predefined operations!!!
end if;
end if;
-- Now, checking if we have a call to an entry/procedure/function of
-- derived task/protected type
Tmp_Node := Arg_Node;
if Nkind (Tmp_Node) = N_Selected_Component then
Tmp_Node := Prefix (Tmp_Node);
Tmp_Node := Etype (Tmp_Node);
if Ekind (Tmp_Node) in Concurrent_Kind then
while not Comes_From_Source (Original_Node (Parent (Tmp_Node)))
loop
Tmp_Node := Etype (Tmp_Node);
end loop;
Tmp_Node := Parent (Tmp_Node);
if Nkind (Tmp_Node) = N_Full_Type_Declaration
and then
Nkind (Sinfo.Type_Definition (Tmp_Node)) =
N_Derived_Type_Definition
then
Inherited := True;
Res_Node_Field_1 := Tmp_Node;
end if;
end if;
end if;
if Present (Res_Node_Field_1) then
Result_Unit :=
Enclosing_Unit (Encl_Cont_Id (Call), Res_Node_Field_1);
else
Result_Unit :=
Enclosing_Unit (Encl_Cont_Id (Call), Result_Node);
end if;
-- ??? should be changed when full processing of implicit elements
-- will be ready
-- And now - from a defining name to a declaration itself
-- (this also may need adjustment for the full implementation
-- of the implicit stuff)
if Inherited then
-- For inherited subprograms we have to set the result kind manually
-- to get subprogram declarations in case of inheriting from
-- subprogram ransoming (8728-023)
if Ekind (Result_Node) = E_Function or else
Ekind (Result_Node) = E_Operator
then
Result_Kind := A_Function_Declaration;
elsif Ekind (Result_Node) = E_Procedure then
if Null_Present (Parent (Result_Node)) then
Result_Kind := A_Null_Procedure_Declaration;
else
Result_Kind := A_Procedure_Declaration;
end if;
end if;
end if;
if Special_Case not in Predefined then
if Nkind (Result_Node) in N_Entity
and then
Ekind (Result_Node) = E_Enumeration_Literal
then
-- This happens if an enumeration literal is used as an actual for
-- a formal function, and if we process the corresponding function
-- call in the instantiation. See EBB11-004
Result_Kind := An_Enumeration_Literal_Specification;
else
Result_Node := Parent (Result_Node);
if Nkind (Result_Node) = N_Defining_Program_Unit_Name then
Result_Node := Parent (Result_Node);
end if;
if Nkind (Result_Node) = N_Procedure_Specification or else
Nkind (Result_Node) = N_Function_Specification
then
Result_Node := Parent (Result_Node);
end if;
end if;
elsif Special_Case in Predefined then
Result_Kind := A_Function_Declaration;
end if;
Result_El :=
Node_To_Element_New
(Node => Result_Node,
Node_Field_1 => Res_Node_Field_1,
Internal_Kind => Result_Kind,
Spec_Case => Special_Case,
Inherited => Inherited,
In_Unit => Result_Unit);
-- Fix for C125-002: Is_Part_Of_Instance of the result is defined on
-- the base of Result_Node which points to the explicit subprogram.
-- That is, if we define the type derived from some other type declared
-- inside the instance, we will get all its inherited subprograms
-- being Is_Part_Of_Instance even if the derived type is not declared
-- inside any instance. And the other way around.
if Present (Res_Node_Field_1) then
if Is_From_Instance (Res_Node_Field_1) then
Set_From_Instance (Result_El, True);
else
Set_From_Instance (Result_El, False);
end if;
end if;
return Result_El;
end Get_Corr_Called_Entity;
----------------------
-- Get_Derived_Type --
----------------------
function Get_Derived_Type
(Type_Entity : Entity_Id;
Inherited_Subpr : Entity_Id)
return Entity_Id
is
Result : Entity_Id := Type_Entity;
Derived_Type : Entity_Id;
Next_Derived_Type : Entity_Id;
begin
Derived_Type := Original_Node (Parent (Inherited_Subpr));
Next_Derived_Type := Derived_Type;
if Nkind (Next_Derived_Type) = N_Full_Type_Declaration then
Next_Derived_Type := Sinfo.Type_Definition (Next_Derived_Type);
elsif Nkind (Next_Derived_Type) = N_Formal_Type_Declaration then
Next_Derived_Type := Sinfo.Formal_Type_Definition (Next_Derived_Type);
end if;
if Nkind (Next_Derived_Type) = N_Formal_Derived_Type_Definition then
Next_Derived_Type := Sinfo.Subtype_Mark (Next_Derived_Type);
else
Next_Derived_Type := Sinfo.Subtype_Indication (Next_Derived_Type);
end if;
Derived_Type := Defining_Identifier (Derived_Type);
if Nkind (Next_Derived_Type) = N_Subtype_Indication then
Next_Derived_Type := Sinfo.Subtype_Mark (Next_Derived_Type);
end if;
Next_Derived_Type := Entity (Next_Derived_Type);
loop
if Next_Derived_Type = Type_Entity then
Result := Derived_Type;
exit;
elsif Is_Derived_Type (Next_Derived_Type) then
Next_Derived_Type := Original_Node (Parent (Next_Derived_Type));
if Nkind (Next_Derived_Type) = N_Full_Type_Declaration then
Next_Derived_Type := Sinfo.Type_Definition (Next_Derived_Type);
end if;
Next_Derived_Type := Sinfo.Subtype_Indication (Next_Derived_Type);
if Nkind (Next_Derived_Type) = N_Subtype_Indication then
Next_Derived_Type := Sinfo.Subtype_Mark (Next_Derived_Type);
end if;
Next_Derived_Type := Entity (Next_Derived_Type);
else
exit;
end if;
end loop;
return Result;
end Get_Derived_Type;
--------------------------
-- Get_Importing_Pragma --
--------------------------
function Get_Importing_Pragma (E : Entity_Id) return Node_Id is
Result : Node_Id := Empty;
Tmp_Node : Node_Id;
Pragma_Node : Node_Id;
Arg_Chars : constant Name_Id := Chars (E);
begin
-- First, check if we have the corresponding pragma in the list of
-- representation items applied to the argument node:
Pragma_Node := First_Rep_Item (E);
while Present (Pragma_Node) loop
if Is_Importing_Pragma (Pragma_Node, Arg_Chars) then
Result := Pragma_Node;
exit;
else
Pragma_Node := Next_Rep_Item (Pragma_Node);
end if;
end loop;
if No (Result) then
-- That means that Import or Interface pragma is applied to an
-- overloaded entities
Pragma_Node := Next (Parent (Parent (E)));
while Present (Pragma_Node) loop
if Is_Importing_Pragma (Pragma_Node, Arg_Chars) then
Result := Pragma_Node;
exit;
else
Next (Pragma_Node);
end if;
end loop;
end if;
if No (Result) then
Tmp_Node := Parent (Parent (Parent (E)));
if Nkind (Tmp_Node) = N_Package_Specification
and then
List_Containing (Parent (Parent (E))) =
Visible_Declarations (Tmp_Node)
then
-- this is a somewhat exotic case - a subprogram declaration in
-- the visible part of a package spec, and the corresponding
-- pragma is in the corresponding private part.
Pragma_Node := First (Private_Declarations (Tmp_Node));
while Present (Pragma_Node) loop
if Is_Importing_Pragma (Pragma_Node, Arg_Chars) then
Result := Pragma_Node;
exit;
else
Next (Pragma_Node);
end if;
end loop;
end if;
end if;
pragma Assert (Present (Result));
return Result;
end Get_Importing_Pragma;
-----------------------
-- Get_Instance_Name --
-----------------------
function Get_Instance_Name (Int_Name : Node_Id) return Node_Id is
Result_Node : Node_Id := Empty;
Decl_Node : Node_Id;
begin
Decl_Node := Parent (Int_Name);
if Nkind (Decl_Node) = N_Defining_Program_Unit_Name then
Decl_Node := Parent (Decl_Node);
end if;
Decl_Node := Parent (Decl_Node);
if Nkind (Decl_Node) = N_Subprogram_Declaration then
Decl_Node := Parent (Parent (Decl_Node));
end if;
if (not Is_List_Member (Decl_Node)
and then
not Is_Rewrite_Substitution (Decl_Node))
or else
(Is_List_Member (Decl_Node)
and then
Nkind (Original_Node (Decl_Node)) = N_Formal_Package_Declaration)
then
-- The first condition corresponds to the case when a library
-- package is instantiated at library level - no artificial package
-- is created in this case.
-- The second condition corresponds to the defining name from
-- a formal package declaration (it is also classified as
-- Is_Generic_Instance)
return Int_Name;
end if;
-- now Decl_Node points to the declaration of an artificial package
-- created by the compiler for the instantiation
if Is_Rewrite_Substitution (Decl_Node) then
Decl_Node := Original_Node (Decl_Node);
if Is_Rewrite_Substitution (Decl_Node) then
-- The node can be rewritten twice in case when a library-level
-- instantiation is a supporter of a main unit, and the expanded
-- body of this instantiation is required according to Lib (h),
-- see 9418-015, 9416-A01 and 9426-A13
Decl_Node := Original_Node (Decl_Node);
end if;
if Nkind (Original_Node (Decl_Node)) =
N_Formal_Package_Declaration
then
Result_Node := Defining_Identifier (Original_Node (Decl_Node));
else
Result_Node := Defining_Unit_Name (Original_Node (Decl_Node));
end if;
else
Decl_Node := Next_Non_Pragma (Decl_Node);
while Present (Decl_Node) loop
if Nkind (Decl_Node) in N_Generic_Instantiation then
Result_Node := Defining_Unit_Name (Decl_Node);
exit;
else
Decl_Node := Next_Non_Pragma (Decl_Node);
end if;
end loop;
end if;
pragma Assert (Present (Result_Node));
return Result_Node;
end Get_Instance_Name;
------------------
-- Is_Anonymous --
------------------
function Is_Anonymous (E : Entity_Kind) return Boolean is
Result : Boolean := False;
begin
case E is
when E_Anonymous_Access_Subprogram_Type |
E_Anonymous_Access_Protected_Subprogram_Type |
E_Anonymous_Access_Type =>
Result := True;
when others =>
null;
end case;
return Result;
end Is_Anonymous;
-------------------
-- Is_Applied_To --
-------------------
function Is_Applied_To
(Pragma_Node : Node_Id;
Entity_Node : Entity_Id)
return Boolean
is
Result : Boolean := False;
Pragma_Arg : Node_Id := Empty;
Entity_Decl : Node_Id;
begin
case Pragma_Name (Pragma_Node) is
-- Cases when the second pragma argument indicates the entity
-- the pragma is applied to:
when Name_Component_Alignment |
Name_Convention |
Name_Export |
Name_External |
Name_Import |
Name_Interface =>
Pragma_Arg := First (Pragma_Argument_Associations (Pragma_Node));
Pragma_Arg := Sinfo.Expression (Next (Pragma_Arg));
if Entity (Pragma_Arg) = Entity_Node
or else
Chars (Pragma_Arg) = Chars (Entity_Node)
then
Result := True;
end if;
-- Cases when a pragma may have several arguments, and any of then
-- may indicate the entity the pragma is applied to
when Name_Inline |
Name_Inline_Always |
Name_No_Return |
Name_Unmodified |
Name_Unreferenced |
Name_Unreferenced_Objects =>
Pragma_Arg := First (Pragma_Argument_Associations (Pragma_Node));
while Present (Pragma_Arg) loop
Pragma_Arg := Sinfo.Expression (Pragma_Arg);
if Entity (Pragma_Arg) = Entity_Node
or else
Chars (Pragma_Arg) = Chars (Entity_Node)
then
Result := True;
exit;
end if;
Pragma_Arg := Next (Parent (Pragma_Arg));
end loop;
-- Cases when only the first argument of a pragma may indicate the
-- entity the pragma is applied to
when -- GNAT-specific pragmas first
Name_Common_Object |
Name_Complex_Representation |
Name_CPP_Class |
Name_CPP_Constructor |
Name_Export_Exception |
Name_Export_Function |
Name_Export_Object |
Name_Export_Procedure |
Name_Export_Valued_Procedure |
Name_Favor_Top_Level |
Name_Finalize_Storage_Only |
Name_Import_Exception |
Name_Import_Function |
Name_Import_Object |
Name_Import_Procedure |
Name_Import_Valued_Procedure |
Name_Inline_Generic |
Name_Interface_Name |
Name_Keep_Names |
Name_Linker_Alias |
Name_Linker_Constructor |
Name_Linker_Destructor |
Name_Linker_Section |
Name_Machine_Attribute |
Name_No_Strict_Aliasing |
Name_Persistent_BSS |
Name_Psect_Object |
Name_Pure_Function |
Name_Shared |
Name_Stream_Convert |
Name_Suppress_Initialization |
Name_Task_Storage |
Name_Universal_Aliasing |
Name_Weak_External |
-- Standard Ada 2005 pragmas
Name_Asynchronous |
Name_Atomic |
Name_Atomic_Components |
Name_Attach_Handler |
Name_Controlled |
Name_Discard_Names |
Name_Interrupt_Handler |
Name_Pack |
Name_Preelaborable_Initialization |
Name_Unchecked_Union |
Name_Volatile |
Name_Volatile_Components =>
Pragma_Arg := First (Pragma_Argument_Associations (Pragma_Node));
Pragma_Arg := Sinfo.Expression (Pragma_Arg);
if Entity (Pragma_Arg) = Entity_Node
or else
Chars (Pragma_Arg) = Chars (Entity_Node)
then
Result := True;
end if;
-- Cases when a specific processing is needed
when Name_Float_Representation =>
Pragma_Arg := First (Pragma_Argument_Associations (Pragma_Node));
if Present (Next (Pragma_Arg)) then
Pragma_Arg := Next (Pragma_Arg);
end if;
Pragma_Arg := Sinfo.Expression (Pragma_Arg);
if Entity (Pragma_Arg) = Entity_Node
or else
Chars (Pragma_Arg) = Chars (Entity_Node)
then
Result := True;
end if;
when Name_Obsolescent =>
if Is_Obsolescent (Entity_Node) then
-- This pragma may or may not contain the reference to the
-- entity it is applied to. The pragma may or may not contain
-- arguments
if Present (Pragma_Argument_Associations (Pragma_Node))
and then
List_Length (Pragma_Argument_Associations (Pragma_Node)) >= 2
then
Pragma_Arg :=
First (Pragma_Argument_Associations (Pragma_Node));
Pragma_Arg := Sinfo.Expression (Pragma_Arg);
end if;
if No (Pragma_Arg)
or else
Chars (Pragma_Arg) = Chars (Entity_Node)
then
-- here we have to check if the pragma immediately follows
-- the declaration that defines Entity_Node, or the pragma
-- is the first declarative element in the package spec and
-- Entity_Node defines this package. Pragma_Arg is used as
-- temporary node below
Pragma_Arg := Prev (Pragma_Node);
if Present (Pragma_Arg) then
-- Go to the declaration that declares Entity_Node
Entity_Decl := Parent (Entity_Node);
while Present (Entity_Decl)
and then
not Is_List_Member (Entity_Decl)
loop
Entity_Decl := Parent (Entity_Decl);
end loop;
Result := Entity_Decl = Pragma_Arg;
else
-- With the current implementation of the ASIS
-- Corresponding_Pragmas query this code never works!
-- Check if the pragma Obsolescent is the program unit
-- pragma:
Pragma_Arg := Parent (Pragma_Node);
if Nkind (Pragma_Arg) = N_Package_Specification then
if Nkind (Parent (Pragma_Arg)) =
N_Package_Declaration
then
-- To filter out the case of generic packages
Pragma_Arg := Defining_Unit_Name (Pragma_Arg);
if Nkind (Pragma_Arg) =
N_Defining_Program_Unit_Name
then
Pragma_Arg := Defining_Identifier (Pragma_Arg);
end if;
Result := Pragma_Arg = Entity_Node;
end if;
end if;
end if;
else
-- With the current implementation of the ASIS
-- Corresponding_Pragmas query this code never works!
-- Case when a pragma may be applied to an enumeration
-- literal.
if Ekind (Entity_Node) = E_Enumeration_Literal then
Entity_Decl := Parent (Parent (Entity_Node));
Result := Next (Entity_Decl) = Pragma_Node;
end if;
end if;
end if;
-- All the other pragmas cannot be a part of the result
when others =>
null;
end case;
return Result;
end Is_Applied_To;
------------------------------------------
-- Is_Artificial_Protected_Op_Item_Spec --
------------------------------------------
function Is_Artificial_Protected_Op_Item_Spec
(E : Entity_Id)
return Boolean
is
Arg : Entity_Id := E;
Result : Boolean := False;
begin
if Nkind (Arg) = N_Defining_Identifier then
-- No need to consider defining expanded names
if Ekind (Arg) in Formal_Kind then
Arg := Parent (Parent (Arg));
if Nkind (Arg) in N_Subprogram_Specification then
Arg := Defining_Unit_Name (Arg);
end if;
end if;
if Nkind (Arg) in N_Entity
and then
(Ekind (Arg) in Formal_Kind or else Ekind (Arg) in Subprogram_Kind)
and then
not Comes_From_Source (Parent (Arg))
and then
Nkind (Parent (Parent (Parent (Arg)))) = N_Protected_Body
then
Result := True;
end if;
end if;
return Result;
end Is_Artificial_Protected_Op_Item_Spec;
-------------------------
-- Is_Derived_Rep_Item --
-------------------------
function Is_Derived_Rep_Item
(Type_Entity : Entity_Id;
Rep_Item : Node_Id)
return Boolean
is
Result : Boolean := True;
Type_Ard : Node_Id := Empty;
begin
case Nkind (Rep_Item) is
when N_Attribute_Definition_Clause =>
if Entity (Sinfo.Name (Rep_Item)) = Type_Entity then
Result := False;
end if;
when N_Pragma =>
Type_Ard := Sinfo.Expression
(First (Pragma_Argument_Associations (Rep_Item)));
if Entity (Type_Ard) = Type_Entity then
Result := False;
end if;
when N_Enumeration_Representation_Clause |
N_Record_Representation_Clause =>
if Entity (Sinfo.Identifier (Rep_Item)) = Type_Entity then
Result := False;
end if;
when others =>
null;
pragma Assert (False);
end case;
return Result;
end Is_Derived_Rep_Item;
----------------------
-- Is_From_Instance --
----------------------
function Is_From_Instance (Node : Node_Id) return Boolean is
begin
return
(Sloc (Node) > Standard_Location
and then
Instantiation (Get_Source_File_Index (Sloc (Node))) /= No_Location)
or else
(Present (Parent (Node))
and then
Nkind (Parent (Node)) = N_Package_Specification
and then
Is_From_Instance ((Parent (Node))));
end Is_From_Instance;
---------------------------------
-- Is_From_Rewritten_Aggregate --
---------------------------------
function Is_From_Rewritten_Aggregate (Node : Node_Id) return Boolean is
Result : Boolean := False;
Next_Aggr : Node_Id;
begin
if Nkind (Node) = N_Component_Association then
Next_Aggr := Parent (Node);
while Nkind (Next_Aggr) = N_Aggregate
or else
Nkind (Next_Aggr) = N_Extension_Aggregate
loop
if Is_Rewrite_Substitution (Next_Aggr) then
Result := True;
exit;
end if;
Next_Aggr := Parent (Next_Aggr);
end loop;
end if;
return Result;
end Is_From_Rewritten_Aggregate;
----------------------------
-- Is_From_Unknown_Pragma --
----------------------------
function Is_From_Unknown_Pragma (Node : Node_Id) return Boolean is
Result : Boolean := False;
Tmp : Node_Id := Parent (Node);
N : Name_Id;
begin
while Nkind (Tmp) /= N_Compilation_Unit loop
case Nkind (Tmp) is
when N_Pragma =>
N := Pragma_Name (Tmp);
-- See Snames.Get_Pragma_Id
if not (
N in First_Pragma_Name .. Last_Pragma_Name
or else
N = Name_AST_Entry
or else
N = Name_Interface
or else
N = Name_Priority
or else
N = Name_Storage_Size
or else
N = Name_Storage_Unit)
then
Result := True;
end if;
exit;
when N_Statement_Other_Than_Procedure_Call |
N_Procedure_Call_Statement |
N_Representation_Clause |
N_Component_Declaration ..
N_Generic_Procedure_Renaming_Declaration =>
exit;
when others =>
Tmp := Parent (Tmp);
end case;
end loop;
return Result;
end Is_From_Unknown_Pragma;
-----------------
-- Is_Impl_Neq --
-----------------
function Is_Impl_Neq (Def_Op : Entity_Id) return Boolean is
Result : Boolean := False;
begin
if Nkind (Def_Op) in N_Entity
and then Ekind (Def_Op) = E_Function
and then not Comes_From_Source (Def_Op)
and then Chars (Def_Op) = Name_Op_Ne
and then Present (Corresponding_Equality (Def_Op))
then
Result := True;
end if;
return Result;
end Is_Impl_Neq;
-------------------------
-- Is_Importing_Pragma --
-------------------------
function Is_Importing_Pragma
(N : Node_Id;
For_Name : Name_Id)
return Boolean
is
Result : Boolean := False;
Tmp : Node_Id;
begin
if Nkind (N) = N_Pragma
and then
(Pragma_Name (N) = Name_Import
or else
Pragma_Name (N) = Name_Interface)
then
Tmp := First (Pragma_Argument_Associations (N));
Tmp := Sinfo.Expression (Next (Tmp));
Result := Chars (Tmp) = For_Name;
end if;
return Result;
end Is_Importing_Pragma;
------------------------------------
-- Is_Name_Of_Expanded_Subprogram --
-------------------------------------
function Is_Name_Of_Expanded_Subprogram (Node : Node_Id) return Boolean is
Result : Boolean := False;
begin
if Nkind (Node) = N_Defining_Identifier
and then
Is_Generic_Instance (Node)
and then
Ekind (Node) in E_Function .. E_Procedure
then
Result := True;
end if;
return Result;
end Is_Name_Of_Expanded_Subprogram;
-------------------
-- Is_Predefined --
-------------------
function Is_Predefined (Def_Op : Node_Id) return Boolean is
Result : Boolean := False;
Tmp : Entity_Id;
begin
if Ekind (Def_Op) in E_Function .. E_Operator
and then
not Comes_From_Source (Def_Op)
and then
not Is_Impl_Neq (Def_Op)
then
if Sloc (Def_Op) <= Standard_Location
or else
No (Alias (Def_Op))
or else
No (Parent (Def_Op))
then
Result := True;
elsif Present (Alias (Def_Op)) then
Tmp := Alias (Def_Op);
while Present (Alias (Tmp)) loop
Tmp := Alias (Tmp);
end loop;
if not Comes_From_Source (Tmp)
and then
No (Parent (Tmp))
then
Result := True;
end if;
end if;
end if;
return Result;
end Is_Predefined;
------------------------------
-- Is_Range_Memberchip_Test --
------------------------------
function Is_Range_Memberchip_Test (E : Asis.Element) return Boolean is
Tmp : Asis.Element;
Result : Boolean := False;
begin
if No (Alternatives (Node (E))) then
Tmp := Membership_Test_Choices (E) (1);
Result := Constraint_Kind (Tmp) in
A_Range_Attribute_Reference .. A_Simple_Expression_Range;
end if;
return Result;
end Is_Range_Memberchip_Test;
-----------------------------
-- Is_Type_Memberchip_Test --
-----------------------------
function Is_Type_Memberchip_Test (E : Asis.Element) return Boolean is
Tmp_El : Asis.Element;
Result : Boolean := False;
begin
if No (Alternatives (Node (E))) then
Tmp_El := Membership_Test_Choices (E) (1);
case Expression_Kind (Tmp_El) is
when An_Identifier |
A_Selected_Component |
An_Attribute_Reference =>
Tmp_El := Normalize_Reference (Tmp_El);
Result := Is_Type (Entity (R_Node (Tmp_El)));
when others => null;
end case;
end if;
return Result;
end Is_Type_Memberchip_Test;
-----------------------
-- Limited_View_Kind --
-----------------------
function Limited_View_Kind
(Decl : Asis.Element)
return Internal_Element_Kinds
is
Result : Internal_Element_Kinds := Int_Kind (Decl);
Type_Def : Asis.Element;
begin
case Result is
when A_Private_Extension_Declaration =>
Result := A_Tagged_Incomplete_Type_Declaration;
when A_Task_Type_Declaration |
A_Protected_Type_Declaration =>
Result := An_Incomplete_Type_Declaration;
when An_Ordinary_Type_Declaration |
A_Private_Type_Declaration =>
Type_Def := Type_Declaration_View (Decl);
case Int_Kind (Type_Def) is
when A_Derived_Record_Extension_Definition |
A_Tagged_Record_Type_Definition |
Internal_Interface_Kinds |
A_Tagged_Private_Type_Definition =>
Result := A_Tagged_Incomplete_Type_Declaration;
when others =>
Result := An_Incomplete_Type_Declaration;
end case;
when others =>
null;
end case;
return Result;
end Limited_View_Kind;
-------------------------
-- Pass_Generic_Actual --
-------------------------
function Pass_Generic_Actual (N : Node_Id) return Boolean is
Arg_Node : constant Node_Id := Original_Node (N);
Result : Boolean := False;
begin
-- See the discussion in F424-031 and F427-008
case Nkind (Arg_Node) is
when N_Subtype_Declaration =>
Result :=
not Comes_From_Source (Arg_Node)
and then
not Is_Internal_Name (Chars (Defining_Identifier (Arg_Node)))
and then
Is_From_Instance (Defining_Identifier (Arg_Node));
when N_Subprogram_Renaming_Declaration =>
Result := Present (Corresponding_Formal_Spec (Arg_Node));
when N_Object_Renaming_Declaration |
N_Object_Declaration =>
Result :=
Present (Corresponding_Generic_Association (Arg_Node))
or else
(not Comes_From_Source (Arg_Node)
and then
Is_From_Instance (Defining_Identifier (Arg_Node)));
when N_Formal_Object_Declaration =>
-- Here we should correctly process the situation in the expanded
-- spec that corresponds to a formal package. In case if the
-- given generic formal parameter of the formal package is not
-- specified in the formal package declaration, the corresponding
-- parameter is presented in the expanded spec as a formal
-- parameter, but not as a renaming
Result :=
Is_From_Instance (Arg_Node)
and then
Comes_From_Source (Arg_Node)
and then
not Comes_From_Source (Defining_Identifier (Arg_Node));
when others =>
null;
end case;
return Result;
end Pass_Generic_Actual;
---------------------------------
-- Part_Of_Pass_Generic_Actual --
---------------------------------
function Part_Of_Pass_Generic_Actual (N : Node_Id) return Boolean is
Result : Boolean := Pass_Generic_Actual (N);
Tmp_N : Node_Id := Parent (N);
begin
if not Result then
while Present (Tmp_N) loop
if Pass_Generic_Actual (Tmp_N) then
Result := True;
exit;
else
case Nkind (Tmp_N) is
-- The idea is to stop tree traversing as soon as possible
when N_Statement_Other_Than_Procedure_Call |
N_Renaming_Declaration |
N_Later_Decl_Item |
N_Component_Declaration ..
N_Private_Type_Declaration |
N_Formal_Subprogram_Declaration =>
exit;
when others =>
null;
end case;
end if;
Tmp_N := Parent (Tmp_N);
end loop;
end if;
return Result;
end Part_Of_Pass_Generic_Actual;
--------------------------------------------
-- Represents_Class_Wide_Type_In_Instance --
--------------------------------------------
function Represents_Class_Wide_Type_In_Instance
(N : Node_Id)
return Boolean
is
Result : Boolean := False;
A_Node : Node_Id;
begin
if Nkind (N) = N_Identifier then
A_Node := Associated_Node (N);
if Present (A_Node)
and then
Nkind (A_Node) in N_Entity
and then
Ekind (A_Node) in E_Class_Wide_Type .. E_Class_Wide_Subtype
then
Result := True;
end if;
end if;
return Result;
end Represents_Class_Wide_Type_In_Instance;
--------------------------------------
-- Represents_Base_Type_In_Instance --
--------------------------------------
function Represents_Base_Type_In_Instance (N : Node_Id) return Boolean is
Result : Boolean := False;
begin
if Nkind (N) = N_Identifier
and then
not Comes_From_Source (N)
and then
Is_Internal_Name (Chars (N))
and then
Present (Associated_Node (N))
and then
Ekind (Associated_Node (N)) in
E_Enumeration_Type .. E_Floating_Point_Subtype
then
Result := True;
end if;
return Result;
end Represents_Base_Type_In_Instance;
--------------------
-- Reset_For_Body --
--------------------
procedure Reset_For_Body
(El : in out Asis.Element;
Body_Unit : Asis.Compilation_Unit)
is
Spec_CU : constant Unit_Id := Encl_Unit_Id (El);
Arg_Tree : constant Tree_Id := Encl_Tree (El);
Body_Tree : Tree_Id;
Result_El : Asis.Element := Nil_Element;
-- and the rest of the local declarations is needed for traversal
Spec_El : Asis.Element;
My_State : No_State := Not_Used;
Control : Asis.Traverse_Control := Continue;
procedure Pre_Op
(Element : Asis.Element;
Control : in out Traverse_Control;
State : in out No_State);
procedure Pre_Op
(Element : Asis.Element;
Control : in out Traverse_Control;
State : in out No_State)
is
pragma Unreferenced (State);
El_Kind : constant Internal_Element_Kinds := Int_Kind (Element);
begin
case El_Kind is
when A_Task_Type_Declaration |
A_Single_Task_Declaration |
An_Incomplete_Type_Declaration |
A_Procedure_Declaration |
A_Function_Declaration |
An_Entry_Declaration |
A_Generic_Procedure_Declaration |
A_Generic_Function_Declaration
=>
-- here we have declarations which may have completion in the
-- package body, but their subcomponents cannot have a
-- completion
if Is_Equal (Element, El) then
Result_El := Element;
Control := Terminate_Immediately;
else
Control := Abandon_Children;
end if;
when A_Protected_Type_Declaration |
A_Single_Protected_Declaration |
A_Package_Declaration |
A_Generic_Package_Declaration
=>
-- here we have declarations which may have completion in the
-- package body, their subcomponents also can have a completion
if Is_Equal (Element, El) then
Result_El := Element;
Control := Terminate_Immediately;
end if;
when A_Protected_Definition =>
Control := Continue;
-- To look for protected entries and subprograms
when others =>
Control := Abandon_Children;
end case;
end Pre_Op;
procedure Find_For_Reset is new Traverse_Element
(State_Information => No_State,
Pre_Operation => Pre_Op,
Post_Operation => No_Op);
begin
Reset_Tree_For_Unit (Body_Unit);
Body_Tree := Get_Current_Tree;
if Arg_Tree = Body_Tree then
return;
end if;
Spec_El := Node_To_Element_New
(Node => Unit (Top (Spec_CU)),
Starting_Element => El);
Find_For_Reset (Spec_El, Control, My_State);
pragma Assert (not Is_Nil (Result_El));
El := Result_El;
end Reset_For_Body;
---------------------------------
-- Set_Stub_For_Subunit_If_Any --
---------------------------------
procedure Set_Stub_For_Subunit_If_Any (Def_Name : in out Node_Id)
is
Stub_Node : Node_Id;
Decl_Node : Node_Id;
Node_Context : constant Node_Id := Parent (Parent (Parent (Def_Name)));
begin
if not (Nkind (Def_Name) = N_Defining_Identifier and then
Nkind (Node_Context) = N_Subunit and then
Nkind (Proper_Body (Node_Context)) = N_Subprogram_Body and then
Def_Name = Defining_Unit_Name (Specification
(Proper_Body (Node_Context))))
then
-- nothing to change
return;
else
Def_Name := Defining_Unit_Name
(Specification (Corresponding_Stub (Node_Context)));
Stub_Node := Parent (Parent (Def_Name));
Decl_Node := Corr_Decl_For_Stub (Stub_Node);
if Present (Decl_Node) then
Def_Name := Defining_Unit_Name (Specification (Decl_Node));
end if;
end if;
end Set_Stub_For_Subunit_If_Any;
---------------------
-- Unwind_Renaming --
---------------------
function Unwind_Renaming (Def_Name : Node_Id) return Node_Id is
Parent_Decl : Node_Id;
Result_Node : Node_Id;
begin
-- a recursive algorithm is probably not the most effective,
-- but it is easy-to-maintain. Moreover, we do not really
-- expect long renaming chains in not-crazy programs
-- When the implementation of this function is stable, we probably
-- should replace the recursive code by the iteration-based code
Result_Node := Def_Name;
Parent_Decl := Parent (Result_Node);
case Nkind (Parent_Decl) is
when N_Renaming_Declaration =>
-- unwinding once again
Result_Node := Sinfo.Name (Entity (Parent_Decl));
return Unwind_Renaming (Result_Node);
when N_Function_Specification | N_Procedure_Specification =>
-- two cases are possible: if this subprogram specification
-- is the component of another (subprogram) renaming
-- declaration, we should unwind again,
-- otherwise we have got the result:
if Nkind (Parent (Parent_Decl)) =
N_Subprogram_Renaming_Declaration
then
-- unwinding once again
-- Result_Node := Sinfo.Name (Entity (Parent (Parent_Decl)));
Result_Node := Entity (Sinfo.Name (Parent (Parent_Decl)));
return Unwind_Renaming (Result_Node);
else
if Is_Rewrite_Substitution (Parent (Parent_Decl)) and then
Nkind (Original_Node (Parent (Parent_Decl))) =
N_Subprogram_Renaming_Declaration
then
-- this means, that we have met the renaming of a
-- subprogram-attribute, so
return Empty;
else
-- all the ransoming (if any) have already been unwounded
return Result_Node;
end if;
end if;
when others =>
return Result_Node;
end case;
end Unwind_Renaming;
end A4G.A_Sem;
|
PThierry/ewok-kernel | Ada | 27 | adb | ../stm32f439/soc-devmap.adb |
msrLi/portingSources | Ada | 865 | adb | -- Copyright 2012-2014 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure Foo is
BT : aliased Bounded := New_Bounded (Low => 1, High => 3);
begin
Do_Nothing (BT'Address); -- STOP
end Foo;
|
leonhxx/pok | Ada | 599 | ads | -- POK header
--
-- The following file is a part of the POK project. Any modification should
-- be made according to the POK licence. You CANNOT use this file or a part
-- of a file for your own project.
--
-- For more information on the POK licence, please see our LICENCE FILE
--
-- Please follow the coding guidelines described in doc/CODING_GUIDELINES
--
-- Copyright (c) 2007-2021 POK team
pragma No_Run_Time;
with Interfaces.C;
package Compute is
procedure Compute;
pragma Export (C, Compute, "compute");
end Compute;
|
riccardo-bernardini/eugen | Ada | 1,772 | ads | generic
package Symbolic_Expressions.Solving is
-- ==================== --
-- == SYSTEM SOLVING == --
-- ==================== --
package Equation_Tables is
new Ada.Containers.Indefinite_Ordered_Maps
(Key_Type => Variable_Name,
Element_Type => Symbolic_Expression);
procedure Triangular_Solve (What : in Equation_Tables.Map;
Result : out Variable_Tables.Map;
Success : out Boolean);
-- Parameter What represents a system of equations of the form
--
-- <variable> = <expression>
--
-- This procedure tries to find a solution for that system of
-- equations. If a solution is found, Success is set to True and Result
-- contains the values found for the variables; if a solution is not
-- found Success is set to False and Result can be partially filled.
--
-- To be honest, this procedure is limited to solving
-- systems that can be solved by "back substitution," such as
--
-- x = y*3 + max(u, v)
-- y = min(u, z)
-- u = v*z
-- v = 10
-- z = -1
--
-- Note that the system above can be solved by evaluating
-- the expressions from last to first. Systems like
--
-- x + y = 0
-- x - y = 4
--
-- have a solution, but they cannot be solved by this procedure.
-- This procedure is useful to solve for constraints that come, for
-- example, from a DAG and it has the advantage that no special constraints
-- are posed on the equations that can include non-linear (and badly
-- behaving) functions like max, abs, and so on...
--
end Symbolic_Expressions.Solving;
|
reznikmm/matreshka | Ada | 6,081 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
-- GraphicalElement is the abstract superclass of all graphical elements that
-- can be nested in a canvas.
------------------------------------------------------------------------------
limited with AMF.DG.Clip_Paths;
limited with AMF.DG.Groups;
limited with AMF.DG.Styles.Collections;
package AMF.DG.Graphical_Elements is
pragma Preelaborate;
type DG_Graphical_Element is limited interface;
type DG_Graphical_Element_Access is
access all DG_Graphical_Element'Class;
for DG_Graphical_Element_Access'Storage_Size use 0;
not overriding function Get_Group
(Self : not null access constant DG_Graphical_Element)
return AMF.DG.Groups.DG_Group_Access is abstract;
-- Getter of GraphicalElement::group.
--
-- the group element that owns this graphical element.
not overriding procedure Set_Group
(Self : not null access DG_Graphical_Element;
To : AMF.DG.Groups.DG_Group_Access) is abstract;
-- Setter of GraphicalElement::group.
--
-- the group element that owns this graphical element.
not overriding function Get_Local_Style
(Self : not null access constant DG_Graphical_Element)
return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style is abstract;
-- Getter of GraphicalElement::localStyle.
--
-- a list of locally-owned styles for this graphical element.
not overriding function Get_Shared_Style
(Self : not null access constant DG_Graphical_Element)
return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style is abstract;
-- Getter of GraphicalElement::sharedStyle.
--
-- a list of shared styles for this graphical element.
not overriding function Get_Transform
(Self : not null access constant DG_Graphical_Element)
return AMF.DG.Sequence_Of_DG_Transform is abstract;
-- Getter of GraphicalElement::transform.
--
-- a list of zero or more transforms to apply to this graphical element.
not overriding function Get_Clip_Path
(Self : not null access constant DG_Graphical_Element)
return AMF.DG.Clip_Paths.DG_Clip_Path_Access is abstract;
-- Getter of GraphicalElement::clipPath.
--
-- an optional reference to a clip path element that masks the painting of
-- this graphical element.
not overriding procedure Set_Clip_Path
(Self : not null access DG_Graphical_Element;
To : AMF.DG.Clip_Paths.DG_Clip_Path_Access) is abstract;
-- Setter of GraphicalElement::clipPath.
--
-- an optional reference to a clip path element that masks the painting of
-- this graphical element.
end AMF.DG.Graphical_Elements;
|
optikos/oasis | Ada | 1,839 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Representation_Clauses;
with Program.Lexical_Elements;
with Program.Elements.Identifiers;
with Program.Elements.Expressions;
package Program.Elements.At_Clauses is
pragma Pure (Program.Elements.At_Clauses);
type At_Clause is
limited interface
and Program.Elements.Representation_Clauses.Representation_Clause;
type At_Clause_Access is access all At_Clause'Class with Storage_Size => 0;
not overriding function Name
(Self : At_Clause)
return not null Program.Elements.Identifiers.Identifier_Access
is abstract;
not overriding function Expression
(Self : At_Clause)
return not null Program.Elements.Expressions.Expression_Access
is abstract;
type At_Clause_Text is limited interface;
type At_Clause_Text_Access is access all At_Clause_Text'Class
with Storage_Size => 0;
not overriding function To_At_Clause_Text
(Self : aliased in out At_Clause)
return At_Clause_Text_Access is abstract;
not overriding function For_Token
(Self : At_Clause_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Use_Token
(Self : At_Clause_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function At_Token
(Self : At_Clause_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Semicolon_Token
(Self : At_Clause_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.At_Clauses;
|
reznikmm/matreshka | Ada | 4,059 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with ODF.DOM.Style_Font_Pitch_Asian_Attributes;
package Matreshka.ODF_Style.Font_Pitch_Asian_Attributes is
type Style_Font_Pitch_Asian_Attribute_Node is
new Matreshka.ODF_Style.Abstract_Style_Attribute_Node
and ODF.DOM.Style_Font_Pitch_Asian_Attributes.ODF_Style_Font_Pitch_Asian_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Style_Font_Pitch_Asian_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Style_Font_Pitch_Asian_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Style.Font_Pitch_Asian_Attributes;
|
reznikmm/matreshka | Ada | 4,648 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Table.Contains_Error_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Table_Contains_Error_Attribute_Node is
begin
return Self : Table_Contains_Error_Attribute_Node do
Matreshka.ODF_Table.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Table_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Table_Contains_Error_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Contains_Error_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Table_URI,
Matreshka.ODF_String_Constants.Contains_Error_Attribute,
Table_Contains_Error_Attribute_Node'Tag);
end Matreshka.ODF_Table.Contains_Error_Attributes;
|
fnarenji/BezierToSTL | Ada | 924 | ads | with Iterateur_Mots; use Iterateur_Mots;
with Vecteurs; use Vecteurs;
package Helper is
Erreur_Lecture : Exception;
-- Cherche dans un fichier une ligne
-- qui commence par la chaine donnée
-- Renvoie la chaine trouvée SANS MARQUEUR
-- avec un car. en moins à la fin (double quote)
function Fichier_Ligne_Commence_Par(Nom_Fichier, Marqueur : String)
return String;
-- Lit une coordonnée
function Lire_Coord(Iterateur : in out Iterateur_Mot) return Float;
-- Lit un jeu de coordonnées
procedure Lire_Point2D(
Iterateur : in out Iterateur_Mot;
Separateur_Coord : Character;
Point : out Point2D);
procedure Afficher_Debug (Afficher : Boolean);
-- Affiche la chaine si Debug activé
procedure Debug (Chaine : String);
-- Juste un new_line
procedure Debug;
private
Etat_Debug : Boolean := False;
end Helper;
|
reznikmm/matreshka | Ada | 4,615 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Text.Filter_Name_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Text_Filter_Name_Attribute_Node is
begin
return Self : Text_Filter_Name_Attribute_Node do
Matreshka.ODF_Text.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Text_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Text_Filter_Name_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Filter_Name_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Text_URI,
Matreshka.ODF_String_Constants.Filter_Name_Attribute,
Text_Filter_Name_Attribute_Node'Tag);
end Matreshka.ODF_Text.Filter_Name_Attributes;
|
SietsevanderMolen/fly-thing | Ada | 10,651 | ads | pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Strings;
package i2c_dev_h is
-- unsupported macro: I2C_M_TEN 0x10
-- unsupported macro: I2C_M_RD 0x01
-- unsupported macro: I2C_M_NOSTART 0x4000
-- unsupported macro: I2C_M_REV_DIR_ADDR 0x2000
-- unsupported macro: I2C_M_IGNORE_NAK 0x1000
-- unsupported macro: I2C_M_NO_RD_ACK 0x0800
-- unsupported macro: I2C_FUNC_I2C 0x00000001
-- unsupported macro: I2C_FUNC_10BIT_ADDR 0x00000002
-- unsupported macro: I2C_FUNC_PROTOCOL_MANGLING 0x00000004
-- unsupported macro: I2C_FUNC_SMBUS_PEC 0x00000008
-- unsupported macro: I2C_FUNC_SMBUS_BLOCK_PROC_CALL 0x00008000
-- unsupported macro: I2C_FUNC_SMBUS_QUICK 0x00010000
-- unsupported macro: I2C_FUNC_SMBUS_READ_BYTE 0x00020000
-- unsupported macro: I2C_FUNC_SMBUS_WRITE_BYTE 0x00040000
-- unsupported macro: I2C_FUNC_SMBUS_READ_BYTE_DATA 0x00080000
-- unsupported macro: I2C_FUNC_SMBUS_WRITE_BYTE_DATA 0x00100000
-- unsupported macro: I2C_FUNC_SMBUS_READ_WORD_DATA 0x00200000
-- unsupported macro: I2C_FUNC_SMBUS_WRITE_WORD_DATA 0x00400000
-- unsupported macro: I2C_FUNC_SMBUS_PROC_CALL 0x00800000
-- unsupported macro: I2C_FUNC_SMBUS_READ_BLOCK_DATA 0x01000000
-- unsupported macro: I2C_FUNC_SMBUS_WRITE_BLOCK_DATA 0x02000000
-- unsupported macro: I2C_FUNC_SMBUS_READ_I2C_BLOCK 0x04000000
-- unsupported macro: I2C_FUNC_SMBUS_WRITE_I2C_BLOCK 0x08000000
-- unsupported macro: I2C_FUNC_SMBUS_BYTE (I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE)
-- unsupported macro: I2C_FUNC_SMBUS_BYTE_DATA (I2C_FUNC_SMBUS_READ_BYTE_DATA | I2C_FUNC_SMBUS_WRITE_BYTE_DATA)
-- unsupported macro: I2C_FUNC_SMBUS_WORD_DATA (I2C_FUNC_SMBUS_READ_WORD_DATA | I2C_FUNC_SMBUS_WRITE_WORD_DATA)
-- unsupported macro: I2C_FUNC_SMBUS_BLOCK_DATA (I2C_FUNC_SMBUS_READ_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_BLOCK_DATA)
-- unsupported macro: I2C_FUNC_SMBUS_I2C_BLOCK (I2C_FUNC_SMBUS_READ_I2C_BLOCK | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)
-- unsupported macro: I2C_FUNC_SMBUS_HWPEC_CALC I2C_FUNC_SMBUS_PEC
-- unsupported macro: I2C_SMBUS_BLOCK_MAX 32
-- unsupported macro: I2C_SMBUS_I2C_BLOCK_MAX 32
-- unsupported macro: I2C_SMBUS_READ 1
-- unsupported macro: I2C_SMBUS_WRITE 0
-- unsupported macro: I2C_SMBUS_QUICK 0
-- unsupported macro: I2C_SMBUS_BYTE 1
-- unsupported macro: I2C_SMBUS_BYTE_DATA 2
-- unsupported macro: I2C_SMBUS_WORD_DATA 3
-- unsupported macro: I2C_SMBUS_PROC_CALL 4
-- unsupported macro: I2C_SMBUS_BLOCK_DATA 5
-- unsupported macro: I2C_SMBUS_I2C_BLOCK_BROKEN 6
-- unsupported macro: I2C_SMBUS_BLOCK_PROC_CALL 7
-- unsupported macro: I2C_SMBUS_I2C_BLOCK_DATA 8
-- unsupported macro: I2C_RETRIES 0x0701
-- unsupported macro: I2C_TIMEOUT 0x0702
-- unsupported macro: I2C_SLAVE 0x0703
-- unsupported macro: I2C_SLAVE_FORCE 0x0706
-- unsupported macro: I2C_TENBIT 0x0704
-- unsupported macro: I2C_FUNCS 0x0705
-- unsupported macro: I2C_RDWR 0x0707
-- unsupported macro: I2C_PEC 0x0708
-- unsupported macro: I2C_SMBUS 0x0720
-- i2c-dev.h - i2c-bus driver, char device interface
-- Copyright (C) 1995-97 Simon G. Vogl
-- Copyright (C) 1998-99 Frodo Looijaard <[email protected]>
-- 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 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., 51 Franklin Street, Fifth Floor, Boston,
-- MA 02110-1301 USA.
--
-- $Id$
-- -- i2c.h --
-- * I2C Message - used for pure i2c transaction, also from /dev interface
--
-- slave address
type i2c_msg is record
addr : aliased Interfaces.Unsigned_16; -- i2c-dev.h:40
flags : aliased unsigned_short; -- i2c-dev.h:41
len : aliased short; -- i2c-dev.h:48
buf : Interfaces.C.Strings.chars_ptr; -- i2c-dev.h:49
end record;
pragma Convention (C_Pass_By_Copy, i2c_msg); -- i2c-dev.h:39
-- msg length
-- pointer to msg data
-- To determine what functionality is present
-- Old name, for compatibility
--
-- * Data for SMBus Messages
--
type anon978_anon980_array is array (0 .. 33) of aliased Interfaces.Unsigned_8;
type i2c_smbus_data (discr : unsigned := 0) is record
case discr is
when 0 =>
byte : aliased Interfaces.Unsigned_8; -- i2c-dev.h:92
when 1 =>
word : aliased Interfaces.Unsigned_16; -- i2c-dev.h:93
when others =>
block : aliased anon978_anon980_array; -- i2c-dev.h:94
end case;
end record;
pragma Convention (C_Pass_By_Copy, i2c_smbus_data);
pragma Unchecked_Union (i2c_smbus_data); -- i2c-dev.h:91
-- block[0] is used for length
-- and one more for PEC
-- smbus_access read or write markers
-- SMBus transaction types (size parameter in the above functions)
-- Note: these no longer correspond to the (arbitrary) PIIX4 internal codes!
-- ----- commands for the ioctl like i2c_command call:
-- * note that additional calls are defined in the algorithm and hw
-- * dependent layers - these can be listed here, or see the
-- * corresponding header files.
--
-- -> bit-adapter specific ioctls
-- should be polled when not
-- acknowledging
-- this is for i2c-dev.c
-- Attn.: Slave address is 7 or 10 bits
-- Attn.: Slave address is 7 or 10 bits
-- This changes the address, even if it
-- is already taken!
-- -- i2c.h --
-- Note: 10-bit addresses are NOT supported!
-- This is the structure as used in the I2C_SMBUS ioctl call
type i2c_smbus_ioctl_data is record
read_write : aliased char; -- i2c-dev.h:149
command : aliased Interfaces.Unsigned_8; -- i2c-dev.h:150
size : aliased Integer; -- i2c-dev.h:151
data : access i2c_smbus_data; -- i2c-dev.h:152
end record;
pragma Convention (C_Pass_By_Copy, i2c_smbus_ioctl_data); -- i2c-dev.h:148
-- This is the structure as used in the I2C_RDWR ioctl call
-- pointers to i2c_msgs
type i2c_rdwr_ioctl_data is record
msgs : access i2c_msg; -- i2c-dev.h:157
nmsgs : aliased Integer; -- i2c-dev.h:158
end record;
pragma Convention (C_Pass_By_Copy, i2c_rdwr_ioctl_data); -- i2c-dev.h:156
-- number of i2c_msgs
function i2c_smbus_access
(file : Integer;
read_write : char;
command : Interfaces.Unsigned_8;
size : Integer;
data : access i2c_smbus_data) return Integer; -- i2c-dev.h:162
pragma Import (C, i2c_smbus_access, "i2c_smbus_access");
function i2c_smbus_write_quick (file : Integer; value : Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:175
pragma Import (C, i2c_smbus_write_quick, "i2c_smbus_write_quick");
function i2c_smbus_read_byte (file : Integer) return Integer; -- i2c-dev.h:180
pragma Import (C, i2c_smbus_read_byte, "i2c_smbus_read_byte");
function i2c_smbus_write_byte (file : Integer; value : Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:189
pragma Import (C, i2c_smbus_write_byte, "i2c_smbus_write_byte");
function i2c_smbus_read_byte_data (file : Integer; command : Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:195
pragma Import (C, i2c_smbus_read_byte_data, "i2c_smbus_read_byte_data");
function i2c_smbus_write_byte_data
(file : Integer;
command : Interfaces.Unsigned_8;
value : Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:205
pragma Import (C, i2c_smbus_write_byte_data, "i2c_smbus_write_byte_data");
function i2c_smbus_read_word_data (file : Integer; command : Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:214
pragma Import (C, i2c_smbus_read_word_data, "i2c_smbus_read_word_data");
function i2c_smbus_write_word_data
(file : Integer;
command : Interfaces.Unsigned_8;
value : Interfaces.Unsigned_16) return Integer; -- i2c-dev.h:224
pragma Import (C, i2c_smbus_write_word_data, "i2c_smbus_write_word_data");
function i2c_smbus_process_call
(file : Integer;
command : Interfaces.Unsigned_8;
value : Interfaces.Unsigned_16) return Integer; -- i2c-dev.h:233
pragma Import (C, i2c_smbus_process_call, "i2c_smbus_process_call");
-- Returns the number of read bytes
function i2c_smbus_read_block_data
(file : Integer;
command : Interfaces.Unsigned_8;
values : access Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:246
pragma Import (C, i2c_smbus_read_block_data, "i2c_smbus_read_block_data");
function i2c_smbus_write_block_data
(file : Integer;
command : Interfaces.Unsigned_8;
length : Interfaces.Unsigned_8;
values : access Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:261
pragma Import (C, i2c_smbus_write_block_data, "i2c_smbus_write_block_data");
-- Returns the number of read bytes
-- Until kernel 2.6.22, the length is hardcoded to 32 bytes. If you
-- ask for less than 32 bytes, your code will only work with kernels
-- 2.6.23 and later.
function i2c_smbus_read_i2c_block_data
(file : Integer;
command : Interfaces.Unsigned_8;
length : Interfaces.Unsigned_8;
values : access Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:279
pragma Import (C, i2c_smbus_read_i2c_block_data, "i2c_smbus_read_i2c_block_data");
function i2c_smbus_write_i2c_block_data
(file : Integer;
command : Interfaces.Unsigned_8;
length : Interfaces.Unsigned_8;
values : access Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:299
pragma Import (C, i2c_smbus_write_i2c_block_data, "i2c_smbus_write_i2c_block_data");
-- Returns the number of read bytes
function i2c_smbus_block_process_call
(file : Integer;
command : Interfaces.Unsigned_8;
length : Interfaces.Unsigned_8;
values : access Interfaces.Unsigned_8) return Integer; -- i2c-dev.h:314
pragma Import (C, i2c_smbus_block_process_call, "i2c_smbus_block_process_call");
end i2c_dev_h;
|
reznikmm/matreshka | Ada | 6,337 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013-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$
------------------------------------------------------------------------------
pragma Ada_2012;
private with Ada.Finalization;
with League.String_Vectors;
with League.Strings;
limited with League.JSON.Documents;
limited with League.JSON.Values;
private with Matreshka.JSON_Types;
package League.JSON.Objects is
pragma Preelaborate;
type JSON_Object is tagged private
with Iterator_Element => League.JSON.Values.JSON_Value,
Constant_Indexing => Value;
pragma Preelaborable_Initialization (JSON_Object);
Empty_JSON_Object : constant JSON_Object;
function Contains
(Self : JSON_Object'Class;
Key : League.Strings.Universal_String) return Boolean;
-- Returns True if the object contains key Key.
procedure Insert
(Self : in out JSON_Object'Class;
Key : League.Strings.Universal_String;
Value : League.JSON.Values.JSON_Value);
-- Inserts a new item with the key key and a value of value.
--
-- If there is already an item with the key key then that item's value is
-- replaced with value.
function Is_Empty (Self : JSON_Object'Class) return Boolean;
-- Returns True if the object is empty.
function Keys
(Self : JSON_Object'Class)
return League.String_Vectors.Universal_String_Vector;
-- Returns a list of all keys in this object.
function Length (Self : JSON_Object'Class) return Natural;
-- Returns the number of (key, value) pairs stored in the object.
procedure Remove
(Self : in out JSON_Object'Class;
Key : League.Strings.Universal_String);
-- Removes key from the object.
function Take
(Self : in out JSON_Object'Class;
Key : League.Strings.Universal_String)
return League.JSON.Values.JSON_Value;
-- Removes key from the object.
--
-- Returns a JSON_Value containing the value referenced by key. If key was
-- not contained in the object, the returned JSON_Value is Undefined.
function Value
(Self : JSON_Object'Class;
Key : League.Strings.Universal_String)
return League.JSON.Values.JSON_Value;
-- Returns a JSON_Value representing the value for the key Key.
--
-- The returned JSON_Value is Undefined, if the key does not exist.
function To_JSON_Value
(Self : JSON_Object'Class) return League.JSON.Values.JSON_Value;
-- Returns specified JSON_Object as JSON_Value.
function To_JSON_Document
(Self : JSON_Object'Class) return League.JSON.Documents.JSON_Document;
-- Creates JSON_Document from this JSON_Object.
private
type JSON_Object is new Ada.Finalization.Controlled with record
Data : Matreshka.JSON_Types.Shared_JSON_Object_Access
:= Matreshka.JSON_Types.Empty_Shared_JSON_Object'Access;
end record;
overriding procedure Adjust (Self : in out JSON_Object);
overriding procedure Finalize (Self : in out JSON_Object);
Empty_JSON_Object : constant JSON_Object
:= (Ada.Finalization.Controlled with
Data => Matreshka.JSON_Types.Empty_Shared_JSON_Object'Access);
end League.JSON.Objects;
|
aeszter/lox-spark | Ada | 1,023 | ads | -- with Ada; use Ada;
with Ada.Containers;
package L_Strings with SPARK_Mode is
Max : constant Integer := 255;
type L_String is private;
type Truncation is (Left, Right);
function Hash (S : L_String) return Ada.Containers.Hash_Type with
Global => null,
Pre => True;
function "=" (Left, Right : L_String) return Boolean with
Global => null;
function "=" (Left : L_String; Right : String) return Boolean with
Global => null;
procedure Init (S : out L_String) with Global => null, Pre => True;
function To_Bounded_String (Source : String;
Drop : Truncation := Right) return L_String with
Global => null,
Pre => True;
function To_String (Source : L_String) return String with
Global => null,
Pre => True,
Post => To_String'Result'Length <= Max;
private
type Length_T is new Integer range 0 .. Max;
type L_String is record
Data : String (1 .. Max);
Length : Length_T;
end record;
end L_Strings;
|
stcarrez/ada-servlet | Ada | 3,243 | adb | -----------------------------------------------------------------------
-- servlet-responses.tools -- Servlet Responses Tools
-- Copyright (C) 2011 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Util.Strings.Transforms;
package body Servlet.Responses.Tools is
-- ------------------------------
-- Builds a printable representation of the response for debugging purposes.
-- When <b>Html</b> is true, the returned content contains an HTML presentation.
-- ------------------------------
function To_String (Reply : in Response'Class;
Html : in Boolean := False;
Print_Headers : in Boolean := True) return String is
use Ada.Strings.Unbounded;
procedure Put (Title : in String; Value : in String);
procedure Append_Html (Content : in String);
pragma Inline (Append_Html);
Info : Unbounded_String;
procedure Append_Html (Content : in String) is
begin
if Html then
Append (Info, Content);
end if;
end Append_Html;
procedure Put (Title : in String;
Value : in String) is
begin
if Html then
Append (Info, "<tr><td>");
Util.Strings.Transforms.Escape_Xml (Content => Title,
Into => Info);
Append (Info, "</td><td>");
Util.Strings.Transforms.Escape_Xml (Content => Value,
Into => Info);
Append (Info, "</td></tr>");
else
Append (Info, Title);
Append (Info, ": ");
Append (Info, Value);
Append (Info, ASCII.LF);
end if;
end Put;
begin
Append_Html ("<div class='servlet-dbg-req'><div class='servlet-dbg-uri'>"
& "<table class='servlet-dbg-uri'><tr><th colspan='2'>Response</th></tr>");
Append (Info, ASCII.LF);
Put (" Status", Natural'Image (Reply.Get_Status));
Put ("Content-Type", Reply.Get_Content_Type);
Append_Html ("</table></div>");
if Print_Headers then
Append_Html ("<div class='servlet-dbg-attr'><table class='servlet-dbg-list'>"
& "<tr><th colspan='2'>Headers</th></tr>");
Reply.Iterate_Headers (Process => Put'Access);
Append_Html ("</table></div>");
end if;
Append_Html ("</div>");
return To_String (Info);
end To_String;
end Servlet.Responses.Tools;
|
onox/sdlada | Ada | 6,049 | adb | --------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2013-2018 Luke A. Guest
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
--
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
--
-- 3. This notice may not be removed or altered from any source
-- distribution.
--------------------------------------------------------------------------------------------------------------------
with Interfaces.C;
with Interfaces.C.Strings;
with SDL.Error;
package body SDL.Hints is
package C renames Interfaces.C;
use type C.int;
use type C.Strings.chars_ptr;
Frame_Buffer_Acceleration_Name : aliased constant String := "SDL_FRAMEBUFFER_ACCELERATION";
Render_Driver_Name : aliased constant String := "SDL_RENDER_DRIVER";
Render_OpenGL_Shaders_Name : aliased constant String := "SDL_RENDER_OPENGL_SHADERS";
Render_Scale_Quality_Name : aliased constant String := "SDL_RENDER_SCALE_QUALITY";
Render_VSync_Name : aliased constant String := "SDL_RENDER_VSYNC";
Video_X11_XVidMode_Name : aliased constant String := "SDL_VIDEO_X11_XVIDMODE";
Video_X11_Xinerama_Name : aliased constant String := "SDL_VIDEO_X11_XINERAMA";
Video_X11_XRandR_Name : aliased constant String := "SDL_VIDEO_X11_XRANDR";
Grab_Keyboard_Name : aliased constant String := "SDL_GRAB_KEYBOARD";
Video_Minimise_On_Focus_Loss_Name : aliased constant String := "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS";
Idle_Timer_Disabled_Name : aliased constant String := "SDL_IOS_IDLE_TIMER_DISABLED";
IOS_Orientations_Name : aliased constant String := "SDL_IOS_ORIENTATIONS";
XInput_Enabled_Name : aliased constant String := "SDL_XINPUT_ENABLED";
Game_Controller_Config_Name : aliased constant String := "SDL_GAMECONTROLLERCONFIG";
Joystick_Allow_Background_Events_Name : aliased constant String := "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS";
Allow_Topmost_Name : aliased constant String := "SDL_ALLOW_TOPMOST";
Timer_Resolution_Name : aliased constant String := "SDL_TIMER_RESOLUTION";
type Hint_Names is access constant String;
Hint_Name_Map : constant array (Hint'Range) of Hint_Names :=
(Frame_Buffer_Acceleration_Name'Access,
Render_Driver_Name'Access,
Render_OpenGL_Shaders_Name'Access,
Render_Scale_Quality_Name'Access,
Render_VSync_Name'Access,
Video_X11_XVidMode_Name'Access,
Video_X11_Xinerama_Name'Access,
Video_X11_XRandR_Name'Access,
Grab_Keyboard_Name'Access,
Video_Minimise_On_Focus_Loss_Name'Access,
Idle_Timer_Disabled_Name'Access,
IOS_Orientations_Name'Access,
XInput_Enabled_Name'Access,
Game_Controller_Config_Name'Access,
Joystick_Allow_Background_Events_Name'Access,
Allow_Topmost_Name'Access,
Timer_Resolution_Name'Access);
function Value (H : in Hint) return String with
Inline => True;
function Value (H : in Hint) return String is
begin
return Hint_Name_Map (H).all;
end Value;
function Get (Name : in Hint) return String is
function SDL_Get_Hint (C_Str : in C.Strings.chars_ptr) return C.Strings.chars_ptr with
Import => True,
Convention => C,
External_Name => "SDL_GetHint";
C_Hint_Str : C.Strings.chars_ptr := C.Strings.New_String (Value (H => Name));
C_Str : constant C.Strings.chars_ptr := SDL_Get_Hint (C_Hint_Str);
begin
if C_Str = C.Strings.Null_Ptr then
return "";
end if;
C.Strings.Free (C_Hint_Str);
return C.Strings.Value (C_Str);
end Get;
procedure Set (Name : in Hint; Value : in String) is
function SDL_Set_Hint (Name, Value : in C.Strings.chars_ptr) return SDL_Bool with
Import => True,
Convention => C,
External_Name => "SDL_SetHint";
C_Hint_Str : C.Strings.chars_ptr := C.Strings.New_String (Hints.Value (Name));
C_Value_Str : C.Strings.chars_ptr := C.Strings.New_String (Value);
Result : SDL_Bool := SDL_Set_Hint
(Name => C_Hint_Str,
Value => C_Value_Str);
begin
C.Strings.Free (C_Hint_Str);
C.Strings.Free (C_Value_Str);
if Result = SDL_False then
raise Hint_Error with SDL.Error.Get;
end if;
end Set;
procedure Set (Name : in Hint; Value : in String; Priority : in Priorities) is
function SDL_Set_Hint (Name, Value : in C.Strings.chars_ptr; P : in Priorities) return SDL_Bool with
Import => True,
Convention => C,
External_Name => "SDL_SetHintWithPriority";
C_Hint_Str : C.Strings.chars_ptr := C.Strings.New_String (Hints.Value (Name));
C_Value_Str : C.Strings.chars_ptr := C.Strings.New_String (Value);
Result : SDL_Bool := SDL_Set_Hint
(Name => C_Hint_Str,
Value => C_Value_Str,
P => Priority);
begin
C.Strings.Free (C_Hint_Str);
C.Strings.Free (C_Value_Str);
if Result = SDL_False then
raise Hint_Error with SDL.Error.Get;
end if;
end Set;
end SDL.Hints;
|
wooky/aoc | Ada | 1,167 | adb | with Ada.Containers; use Ada.Containers;
with Ada.Containers.Vectors;
with AOC; use AOC;
function Day01 (F : Aoc_File) return Solution is
package Elves_Calories_Vector is new
Ada.Containers.Vectors
(Index_Type => Natural,
Element_Type => Natural);
package Elves_Calories_Vector_Sorting is new Elves_Calories_Vector.Generic_Sorting;
Elves_Calories : Elves_Calories_Vector.Vector;
begin
declare
Elf_Calories : Natural := 0;
begin
while not End_Of_File (F) loop
declare
Line : String := Get_Line (F);
begin
if Line = "" then
Elves_Calories.Append (Elf_Calories);
Elf_Calories := 0;
else
Elf_Calories := Elf_Calories + Natural'Value (Line);
end if;
end;
end loop;
end;
Elves_Calories_Vector_Sorting.Sort (Elves_Calories);
declare
Top_3_Calories : Natural := (
Elves_Calories.Last_Element +
Elves_Calories (Elves_Calories.Last_Index - 1) +
Elves_Calories (Elves_Calories.Last_Index - 2)
);
begin
return New_Solution (
Elves_Calories.Last_Element'Image,
Top_3_Calories'Image
);
end;
end Day01;
|
yannickmoy/atomic | Ada | 6,483 | ads | generic
type T is range <>;
package Atomic.Generic_Signed64
with Preelaborate, Spark_Mode => On
is
-- Based on GCC atomic built-ins. See:
-- https://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html
--
-- The specification is exactly the same for all sizes of data (8, 16, 32,
-- 64).
type Instance is limited private;
-- This type is limited and private, it can only be manipulated using the
-- primitives below.
function Init (Val : T) return Instance
with Post => Value (Init'Result) = Val;
-- Can be used to initialize an atomic instance:
--
-- A : Atomic.Unsigned_8.Instance := Atomic.Unsigned_8.Init (0);
function Value (This : Instance) return T
with Ghost;
-- Ghost function to get the value of an instance without needing it
-- aliased. This function can be used in contracts for instance.
-- This doesn't use the atomic built-ins.
function Load (This : aliased Instance;
Order : Mem_Order := Seq_Cst)
return T
with Pre => Order in Relaxed | Consume | Acquire | Seq_Cst,
Post => Load'Result = Value (This);
procedure Store (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
with Pre => Order in Relaxed | Release | Seq_Cst,
Post => Value (This) = Val;
procedure Exchange (This : aliased in out Instance;
Val : T;
Old : out T;
Order : Mem_Order := Seq_Cst)
with Pre => Order in Relaxed | Acquire | Release | Acq_Rel | Seq_Cst,
Post => Old = Value (This)'Old and then Value (This) = Val;
procedure Compare_Exchange (This : aliased in out Instance;
Expected : T;
Desired : T;
Weak : Boolean;
Success : out Boolean;
Success_Order : Mem_Order := Seq_Cst;
Failure_Order : Mem_Order := Seq_Cst)
with Pre => Failure_Order in Relaxed | Consume | Acquire | Seq_Cst
and then
not Stronger (Failure_Order, Success_Order),
Post => Success = (Value (This)'Old = Expected)
and then
(if Success then Value (This) = Desired);
procedure Add (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
with Post => Value (This) = Value (This)'Old + Val;
procedure Sub (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
with Post => Value (This) = Value (This)'Old - Val;
procedure Add_Fetch (This : aliased in out Instance;
Val : T;
Result : out T;
Order : Mem_Order := Seq_Cst)
with Post => Result = (Value (This)'Old + Val)
and then Value (This) = Result;
procedure Sub_Fetch (This : aliased in out Instance;
Val : T;
Result : out T;
Order : Mem_Order := Seq_Cst)
with Post => Result = (Value (This)'Old - Val)
and then Value (This) = Result;
procedure Fetch_Add (This : aliased in out Instance;
Val : T;
Result : out T;
Order : Mem_Order := Seq_Cst)
with Post => Result = Value (This)'Old
and Value (This) = (Value (This)'Old + Val);
procedure Fetch_Sub (This : aliased in out Instance;
Val : T;
Result : out T;
Order : Mem_Order := Seq_Cst)
with Post => Result = Value (This)'Old
and Value (This) = (Value (This)'Old - Val);
-- NOT SPARK compatible --
function Exchange (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
return T
with SPARK_Mode => Off,
Post => Exchange'Result = Value (This)'Old
and then Value (This) = Val;
function Compare_Exchange (This : aliased in out Instance;
Expected : T;
Desired : T;
Weak : Boolean;
Success_Order : Mem_Order := Seq_Cst;
Failure_Order : Mem_Order := Seq_Cst)
return Boolean
with SPARK_Mode => Off,
Post =>
Compare_Exchange'Result = (Value (This)'Old = Expected)
and then
(if Compare_Exchange'Result then Value (This) = Desired);
function Add_Fetch (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
return T
with SPARK_Mode => Off,
Post => Add_Fetch'Result = (Value (This)'Old + Val)
and then Value (This) = Add_Fetch'Result;
function Sub_Fetch (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
return T
with SPARK_Mode => Off,
Post => Sub_Fetch'Result = (Value (This)'Old - Val)
and then Value (This) = Sub_Fetch'Result;
function Fetch_Add (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
return T
with SPARK_Mode => Off;
function Fetch_Sub (This : aliased in out Instance;
Val : T;
Order : Mem_Order := Seq_Cst)
return T
with SPARK_Mode => Off;
private
type Instance is new T;
----------
-- Init --
----------
function Init (Val : T) return Instance
is (Instance (Val));
-----------
-- Value --
-----------
function Value (This : Instance) return T
is (T (This));
pragma Inline (Init);
pragma Inline (Load);
pragma Inline (Store);
pragma Inline (Exchange);
pragma Inline (Compare_Exchange);
pragma Inline (Add);
pragma Inline (Sub);
pragma Inline (Add_Fetch);
pragma Inline (Sub_Fetch);
pragma Inline (Fetch_Add);
pragma Inline (Fetch_Sub);
end Atomic.Generic_Signed64;
|
burratoo/Acton | Ada | 9,265 | ads | ------------------------------------------------------------------------------------------
-- --
-- OAK VIEWER --
-- --
-- DWT_ITM_PACKETS --
-- --
-- Copyright (C) 2014-2021, Patrick Bernardi --
-- --
------------------------------------------------------------------------------------------
with Ada.Streams; use Ada.Streams;
with Interfaces; use Interfaces;
with System; use System;
with ISA.ARM.Cortex_M4.Exceptions; use ISA.ARM.Cortex_M4.Exceptions;
with Ada.Unchecked_Conversion;
package DWT_ITM_Packets with Pure is
-------------------
-- Packet Header --
-------------------
type Packet_Header_Contents is mod 2 ** 6;
Synchronization_Packet : constant := 0;
type Packet_Category is (Protocol, Source_1_Byte, Source_2_Bytes,
Source_4_Bytes);
type Protocol_Kind is (Synchronization,
Overflow,
Local_Timestamp,
Extension,
Global_Timestamp_1,
Global_Timestamp_2);
type Source_Kind is (Instrumentation, Hardware);
type Protocol_Static_Headers is (Overflow,
Global_Timestamp_1,
Global_Timestamp_2)
with Size => Packet_Header_Contents'Size;
type Raw_Header is mod 2 ** 6;
type Protocol_Header_Data is mod 2 ** 3;
type Protocol_Header_Type (Kind : Protocol_Kind := Overflow) is record
case Kind is
when Synchronization =>
Raw_Header_Data : Raw_Header;
when Overflow | Global_Timestamp_1 | Global_Timestamp_2 =>
Static_Header : Protocol_Static_Headers;
when Local_Timestamp | Extension =>
Is_Extension : Boolean;
Source : Boolean;
Data : Protocol_Header_Data;
Continues : Boolean;
end case;
end record with Unchecked_Union, Size => Packet_Header_Contents'Size;
type Source_Id is mod 2 ** 5;
subtype Hardware_Source_Id is Source_Id;
subtype Stimulus_Port_Id is Source_Id;
type Source_Header_Type (Source_Origin : Source_Kind := Instrumentation) is record
case Source_Origin is
when Instrumentation =>
Stimulus_Port : Stimulus_Port_Id;
when Hardware =>
Hardware_Source : Hardware_Source_Id;
end case;
end record with Size => Packet_Header_Contents'Size;
type DWT_ITM_Packet_Header (Kind : Packet_Category := Source_1_Byte) is record
case Kind is
when Protocol =>
Protocol_Header : Packet_Header_Contents;
when Source_1_Byte | Source_2_Bytes | Source_4_Bytes =>
Source_Header : Packet_Header_Contents;
end case;
end record with Size => 8;
for Protocol_Static_Headers use (Overflow => 2#011100#,
Global_Timestamp_1 => 2#100101#,
Global_Timestamp_2 => 2#101101#);
for Protocol_Header_Type use record
Raw_Header_Data at 0 range 0 .. 5;
Static_Header at 0 range 0 .. 5;
Source at 0 range 0 .. 0;
Is_Extension at 0 range 1 .. 1;
Data at 0 range 2 .. 4;
Continues at 0 range 5 .. 5;
end record;
for Source_Header_Type use record
Source_Origin at 0 range 0 .. 0;
Stimulus_Port at 0 range 1 .. 5;
Hardware_Source at 0 range 1 .. 5;
end record;
for DWT_ITM_Packet_Header use record
Kind at 0 range 0 .. 1;
Protocol_Header at 0 range 2 .. 7;
Source_Header at 0 range 2 .. 7;
end record;
function Input_DWT_ITM_Packet_Header
(Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return DWT_ITM_Packet_Header;
for DWT_ITM_Packet_Header'Input use Input_DWT_ITM_Packet_Header;
function To_Protocol_Header is new
Ada.Unchecked_Conversion (Source => Packet_Header_Contents,
Target => Protocol_Header_Type);
function To_Source_Header is new
Ada.Unchecked_Conversion (Source => Packet_Header_Contents,
Target => Source_Header_Type);
function To_Raw_Header is new
Ada.Unchecked_Conversion (Source => DWT_ITM_Packet_Header,
Target => Unsigned_8);
function To_DWT_ITM_Packet_Header is new
Ada.Unchecked_Conversion (Source => Unsigned_8,
Target => DWT_ITM_Packet_Header);
function Input_DWT_ITM_Packet_Header
(Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return DWT_ITM_Packet_Header is (To_DWT_ITM_Packet_Header (Unsigned_8'Input (Stream)));
----------------------------
-- Local Timestamp Packet --
----------------------------
Timestamp_Synchronous : constant Protocol_Header_Data := 2#100#;
Timestamp_Delayed : constant Protocol_Header_Data := 2#101#;
DWT_ITM_Delayed : constant Protocol_Header_Data := 2#110#;
Timestamp_DWT_ITM_Delayed : constant Protocol_Header_Data := 2#111#;
type Timestamp_Fragment is mod 2 ** 7;
type Local_Timestamp_Payload is record
Continues : Boolean;
Value : Timestamp_Fragment;
end record with Size => 8;
for Local_Timestamp_Payload use record
Continues at 0 range 7 .. 7;
Value at 0 range 0 .. 6;
end record;
function Input_Local_Timestamp_Payload
(Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return Local_Timestamp_Payload;
for Local_Timestamp_Payload'Input use Input_Local_Timestamp_Payload;
function To_Raw_Timestamp_Payload is new
Ada.Unchecked_Conversion (Source => Local_Timestamp_Payload,
Target => Unsigned_8);
function To_Timestamp_Payload is new
Ada.Unchecked_Conversion (Source => Unsigned_8,
Target => Local_Timestamp_Payload);
function Packet_Is_Local_Timestap (Packet_Header : in DWT_ITM_Packet_Header)
return Boolean;
Not_Local_Timestamp_Packet_1 : constant Raw_Header := 2#000000#;
Not_Local_Timestamp_Packet_2 : constant Raw_Header := 2#011100#;
Local_Timestamp_Mask : constant Raw_Header := 2#000011#;
function Packet_Is_Local_Timestap
(Packet_Header : in DWT_ITM_Packet_Header)
return Boolean is
(Packet_Header.Kind = Protocol and then
To_Protocol_Header (Packet_Header.Protocol_Header).Raw_Header_Data not in Not_Local_Timestamp_Packet_1 | Not_Local_Timestamp_Packet_2 and then
(To_Protocol_Header (Packet_Header.Protocol_Header).Raw_Header_Data and Local_Timestamp_Mask) = 0);
function Input_Local_Timestamp_Payload
(Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return Local_Timestamp_Payload is (To_Timestamp_Payload (Unsigned_8'Input (Stream)));
--------------------
-- Source Packets --
--------------------
type Source_Payload_8 is new Unsigned_8;
type Source_Payload_16 is new Unsigned_16;
type Source_Payload_32 is new Unsigned_32;
-----------------------------
-- Hardware Source Packets --
-----------------------------
Event_Counter_Wrapping : constant Hardware_Source_Id := 0;
Exception_Tracing : constant Hardware_Source_Id := 1;
PC_Sampling : constant Hardware_Source_Id := 2;
Data_Tracing_Low : constant Hardware_Source_Id := 8;
Data_Tracing_High : constant Hardware_Source_Id := 23;
----------------------------------------------
-- Hardware Soruce Packets: Exception Trace --
----------------------------------------------
type Exception_Action is (Entered, Exited, Returned);
for Exception_Action use (Entered => 1, Exited => 2, Returned => 3);
type Exception_Trace_Packet is record
Exception_Number : Exception_Id;
Action : Exception_Action;
end record with Size => 16;
for Exception_Trace_Packet use record
Exception_Number at 0 range 0 .. 8;
Action at 0 range 12 .. 13;
end record;
function Input_Exception_Trace_Packet
(Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return Exception_Trace_Packet;
for Exception_Trace_Packet'Input use Input_Exception_Trace_Packet;
function To_Exception_Trace_Packet is new
Ada.Unchecked_Conversion (Source => Unsigned_16,
Target => Exception_Trace_Packet);
function Input_Exception_Trace_Packet
(Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return Exception_Trace_Packet is (To_Exception_Trace_Packet (Unsigned_16'Input (Stream)));
end DWT_ITM_Packets;
|
Letractively/ada-ado | Ada | 4,827 | adb | -----------------------------------------------------------------------
-- ado-datasets-tests -- Test executing queries and using datasets
-- Copyright (C) 2013, 2014 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Test_Caller;
with Util.Properties;
with Regtests.Simple.Model;
with ADO.Queries.Loaders;
package body ADO.Datasets.Tests is
package Caller is new Util.Test_Caller (Test, "ADO.Datasets");
package User_List_Query_File is
new ADO.Queries.Loaders.File (Path => "regtests/files/user-list.xml",
Sha1 => "");
package User_List_Query is
new ADO.Queries.Loaders.Query (Name => "user-list",
File => User_List_Query_File.File'Access);
package User_List_Count_Query is
new ADO.Queries.Loaders.Query (Name => "user-list-count",
File => User_List_Query_File.File'Access);
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
begin
Caller.Add_Test (Suite, "Test ADO.Datasets.List (from <sql>)",
Test_List'Access);
Caller.Add_Test (Suite, "Test ADO.Datasets.Get_Count (from <sql>)",
Test_Count'Access);
Caller.Add_Test (Suite, "Test ADO.Datasets.Get_Count (from <sql-count>)",
Test_Count_Query'Access);
end Add_Tests;
procedure Test_List (T : in out Test) is
DB : ADO.Sessions.Master_Session := Regtests.Get_Master_Database;
Query : ADO.Queries.Context;
Count : Natural;
Data : ADO.Datasets.Dataset;
Props : constant Util.Properties.Manager := Util.Tests.Get_Properties;
begin
-- Configure the XML query loader.
ADO.Queries.Loaders.Initialize (Props.Get ("ado.queries.paths", ".;db"),
Props.Get ("ado.queries.load", "false") = "true");
Query.Set_Count_Query (User_List_Query.Query'Access);
Query.Bind_Param ("filter", String '("test-list"));
Count := ADO.Datasets.Get_Count (DB, Query);
for I in 1 .. 100 loop
declare
User : Regtests.Simple.Model.User_Ref;
begin
User.Set_Name ("John " & Integer'Image (I));
User.Set_Select_Name ("test-list");
User.Set_Value (ADO.Identifier (I));
User.Save (DB);
end;
end loop;
DB.Commit;
Query.Set_Query (User_List_Query.Query'Access);
ADO.Datasets.List (Data, DB, Query);
Util.Tests.Assert_Equals (T, 100 + Count, Data.Get_Count, "Invalid dataset size");
end Test_List;
procedure Test_Count (T : in out Test) is
DB : constant ADO.Sessions.Master_Session := Regtests.Get_Master_Database;
Query : ADO.Queries.Context;
Count : Natural;
Props : constant Util.Properties.Manager := Util.Tests.Get_Properties;
begin
-- Configure the XML query loader.
ADO.Queries.Loaders.Initialize (Props.Get ("ado.queries.paths", ".;db"),
Props.Get ("ado.queries.load", "false") = "true");
Query.Set_Query (User_List_Count_Query.Query'Access);
Count := ADO.Datasets.Get_Count (DB, Query);
T.Assert (Count > 0,
"The ADO.Datasets.Get_Count query should return a positive count");
end Test_Count;
procedure Test_Count_Query (T : in out Test) is
DB : constant ADO.Sessions.Master_Session := Regtests.Get_Master_Database;
Query : ADO.Queries.Context;
Count : Natural;
Props : constant Util.Properties.Manager := Util.Tests.Get_Properties;
begin
-- Configure the XML query loader.
ADO.Queries.Loaders.Initialize (Props.Get ("ado.queries.paths", ".;db"),
Props.Get ("ado.queries.load", "false") = "true");
Query.Set_Count_Query (User_List_Query.Query'Access);
Query.Bind_Param ("filter", String '("test-list"));
Count := ADO.Datasets.Get_Count (DB, Query);
T.Assert (Count > 0,
"The ADO.Datasets.Get_Count query should return a positive count");
end Test_Count_Query;
end ADO.Datasets.Tests;
|
reznikmm/matreshka | Ada | 12,205 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.DC;
with AMF.DG.Clip_Paths;
with AMF.DG.Fills.Collections;
with AMF.DG.Graphical_Elements.Collections;
with AMF.DG.Groups;
with AMF.DG.Markers.Collections;
with AMF.DG.Styles.Collections;
with AMF.Elements;
with AMF.Internals.Element_Collections;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.DD_Attributes;
with AMF.Visitors.DG_Iterators;
with AMF.Visitors.DG_Visitors;
package body AMF.Internals.DG_Canvases is
-------------------------
-- Get_Background_Fill --
-------------------------
overriding function Get_Background_Fill
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Fills.DG_Fill_Access is
begin
return
AMF.DG.Fills.DG_Fill_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Background_Fill
(Self.Element)));
end Get_Background_Fill;
-------------------------
-- Set_Background_Fill --
-------------------------
overriding procedure Set_Background_Fill
(Self : not null access DG_Canvas_Proxy;
To : AMF.DG.Fills.DG_Fill_Access) is
begin
AMF.Internals.Tables.DD_Attributes.Internal_Set_Background_Fill
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Background_Fill;
--------------------------
-- Get_Background_Color --
--------------------------
overriding function Get_Background_Color
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DC.Optional_DC_Color is
begin
return
AMF.Internals.Tables.DD_Attributes.Internal_Get_Background_Color
(Self.Element);
end Get_Background_Color;
--------------------------
-- Set_Background_Color --
--------------------------
overriding procedure Set_Background_Color
(Self : not null access DG_Canvas_Proxy;
To : AMF.DC.Optional_DC_Color) is
begin
AMF.Internals.Tables.DD_Attributes.Internal_Set_Background_Color
(Self.Element, To);
end Set_Background_Color;
-----------------------
-- Get_Packaged_Fill --
-----------------------
overriding function Get_Packaged_Fill
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Fills.Collections.Set_Of_DG_Fill is
begin
return
AMF.DG.Fills.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Packaged_Fill
(Self.Element)));
end Get_Packaged_Fill;
-------------------------
-- Get_Packaged_Marker --
-------------------------
overriding function Get_Packaged_Marker
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Markers.Collections.Set_Of_DG_Marker is
begin
return
AMF.DG.Markers.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Packaged_Marker
(Self.Element)));
end Get_Packaged_Marker;
------------------------
-- Get_Packaged_Style --
------------------------
overriding function Get_Packaged_Style
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Styles.Collections.Set_Of_DG_Style is
begin
return
AMF.DG.Styles.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Packaged_Style
(Self.Element)));
end Get_Packaged_Style;
----------------
-- Get_Member --
----------------
overriding function Get_Member
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Graphical_Elements.Collections.Ordered_Set_Of_DG_Graphical_Element is
begin
return
AMF.DG.Graphical_Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Member
(Self.Element)));
end Get_Member;
---------------
-- Get_Group --
---------------
overriding function Get_Group
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Groups.DG_Group_Access is
begin
return
AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Group
(Self.Element)));
end Get_Group;
---------------
-- Set_Group --
---------------
overriding procedure Set_Group
(Self : not null access DG_Canvas_Proxy;
To : AMF.DG.Groups.DG_Group_Access) is
begin
AMF.Internals.Tables.DD_Attributes.Internal_Set_Group
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Group;
---------------------
-- Get_Local_Style --
---------------------
overriding function Get_Local_Style
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style is
begin
return
AMF.DG.Styles.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Local_Style
(Self.Element)));
end Get_Local_Style;
----------------------
-- Get_Shared_Style --
----------------------
overriding function Get_Shared_Style
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style is
begin
return
AMF.DG.Styles.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Shared_Style
(Self.Element)));
end Get_Shared_Style;
-------------------
-- Get_Transform --
-------------------
overriding function Get_Transform
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Sequence_Of_DG_Transform is
begin
return
AMF.Internals.Tables.DD_Attributes.Internal_Get_Transform
(Self.Element);
end Get_Transform;
-------------------
-- Get_Clip_Path --
-------------------
overriding function Get_Clip_Path
(Self : not null access constant DG_Canvas_Proxy)
return AMF.DG.Clip_Paths.DG_Clip_Path_Access is
begin
return
AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.DD_Attributes.Internal_Get_Clip_Path
(Self.Element)));
end Get_Clip_Path;
-------------------
-- Set_Clip_Path --
-------------------
overriding procedure Set_Clip_Path
(Self : not null access DG_Canvas_Proxy;
To : AMF.DG.Clip_Paths.DG_Clip_Path_Access) is
begin
AMF.Internals.Tables.DD_Attributes.Internal_Set_Clip_Path
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Clip_Path;
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant DG_Canvas_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.DG_Visitors.DG_Visitor'Class then
AMF.Visitors.DG_Visitors.DG_Visitor'Class
(Visitor).Enter_Canvas
(AMF.DG.Canvases.DG_Canvas_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant DG_Canvas_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.DG_Visitors.DG_Visitor'Class then
AMF.Visitors.DG_Visitors.DG_Visitor'Class
(Visitor).Leave_Canvas
(AMF.DG.Canvases.DG_Canvas_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant DG_Canvas_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Iterator in AMF.Visitors.DG_Iterators.DG_Iterator'Class then
AMF.Visitors.DG_Iterators.DG_Iterator'Class
(Iterator).Visit_Canvas
(Visitor,
AMF.DG.Canvases.DG_Canvas_Access (Self),
Control);
end if;
end Visit_Element;
end AMF.Internals.DG_Canvases;
|
jrcarter/Ada_GUI | Ada | 9,832 | ads | -- --
-- package Copyright (c) Dmitry A. Kazakov --
-- Strings_Edit.Float_Edit Luebeck --
-- Interface Spring, 2000 --
-- --
-- Last revision : 19:10 06 Jun 2014 --
-- --
-- This library 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 library --
-- is distributed in the hope that it will be useful, but WITHOUT --
-- ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. You should have --
-- received a copy of the GNU General Public License along with --
-- this library; if not, write to the Free Software Foundation, --
-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from --
-- this unit, or you link this unit with other files to produce an --
-- executable, this unit does not by itself cause the resulting --
-- executable to be covered by the GNU General Public License. This --
-- exception does not however invalidate any other reasons why the --
-- executable file might be covered by the GNU Public License. --
--____________________________________________________________________--
--
-- This generic package provides I/O for floating-point types (the
-- generic parameter Number). There is also a non-generic version
-- Strings_Edit.Floats.
--
generic
type Number is digits <>;
package Strings_Edit.Float_Edit is
subtype Number_Of is Number;
--
-- Get -- Get a floating-point number from the string
--
-- Source - The string to be processed
-- Pointer - The current position in the string
-- Value - The result
-- Base - The base of the expected number
-- First - The lowest allowed value
-- Last - The highest allowed value
-- ToFirst - Force value to First instead of exception
-- ToLast - Force value to Last instead of exception
--
-- This procedure gets a number from the string Source. The process
-- starts from Source (Pointer) position. The number in the string may
-- be in either floating-point or fixed-point format. The point may be
-- absent. The mantissa can have base 2..16 (defined by the parameter
-- Base). The exponent part (if appears) is introduced by 'e' or 'E'. It
-- is always decimal of Base radix. Space characters are allowed between
-- the mantissa and the exponent part as well as in the exponent part
-- around the exponent sign. If Base has the value 15 or 16 the exponent
-- part shall be separated by at least one space character from the
-- mantissa.
--
-- Exceptions:
--
-- Constraint_Error - The number is not in First..Last
-- Data_Error - Syntax error in the number
-- End_Error - There is no any number
-- Layout_Error - Pointer not in Source'First..Source'Last + 1
--
procedure Get
( Source : in String;
Pointer : in out Integer;
Value : out Number'Base;
Base : in NumberBase := 10;
First : in Number'Base := Number'Base'First;
Last : in Number'Base := Number'Base'Last;
ToFirst : in Boolean := False;
ToLast : in Boolean := False
);
--
-- Value -- String to floating-point conversion
--
-- Source - The string to be processed
-- Base - The base of the expected number
-- First - The lowest allowed value
-- Last - The highest allowed value
-- ToFirst - Force value to First instead of exception
-- ToLast - Force value to Last instead of exception
--
-- This function gets a floating-point number from the string Source.
-- The number can be surrounded by spaces and tabs. The whole string
-- Source should be matched. Otherwise the exception Data_Error is
-- propagated.
--
-- Returns :
--
-- The value
--
-- Exceptions:
--
-- Constraint_Error - The number is not in First..Last
-- Data_Error - Syntax error in the number
-- End_Error - There is no any number
--
function Value
( Source : in String;
Base : in NumberBase := 10;
First : in Number'Base := Number'First;
Last : in Number'Base := Number'Last;
ToFirst : in Boolean := False;
ToLast : in Boolean := False
) return Number'Base;
--
-- Put -- Put a floating-point number into a string
--
-- Destination - The string that accepts the output
-- Pointer - The current position in the string
-- Value - The value to be put
-- Base - The base used for the output
-- PutPlus - The plus should placed for positive numbers
-- RelSmall - Relative precision of the output
-- AbsSmall - Absolute one
-- Field - The output field
-- Justify - Alignment within the field
-- Fill - The fill character
--
-- This procedure places the number specified by the parameter Value
-- into the output string Destination. The string is written starting
-- from Destination (Pointer). The parameter Base indicates the number
-- base used for the output. Base itself does not appear in the output.
-- The exponent part (if used) is always decimal. PutPlus indicates
-- whether the plus sign should be placed if the number is positive.
-- There are two ways to specify the output precision.
--
-- (o) The parameter RelSmall determines the number of the right Base
-- places of the mantissa. For instance, with RelSmall = 3 and Base
-- = 10, the number 1.234567e+01 is represented as 12.3.
--
-- (o) The parameter AbsSmall determines the rightmost correct digit of
-- the mantissa. For example, with AbsSmall = 0, Base = 10, the
-- number 1.234567e+01 is represented as 12 (i.e. 12.34567 rounded
-- to 10**0).
--
-- From two parameters RelSmall and AbsSmall, the procedure chooses one,
-- that specifies the minimal number of mantissa digits, but no more
-- than the machine representation of the number allows. If the point
-- would appear in the rightmost position it is omited. The pure zero is
-- always represented as 0. If the desired number of digits may be
-- provided in the fixed-point format then the exponent part is not
-- used. For example, 1.234567e-04 gives 0.0001234567 because fixed- and
-- floating-point formats have the same length. But 1.234567e-05 will be
-- shown in the floating-point format. For bases 15 and 16 the exponent
-- part is separated from the mantissa by space (to avoid ambiguity:
-- F.Ee+2 is F.EE + 2 or F.E * 16**2?). The parameter Field defines the
-- output size. If it has the value zero, then the output field is equal
-- to the output length.
--
-- When the parameter Field is not zero then Justify specifies alignment
-- and Fill is the character used for filling. When Field is greater
-- than Destination'Last - Pointer + 1, the latter is used instead.
-- After successful completion Pointer is advanced to the first
-- character following the output or to Destination'Last + 1.
--
-- Exceptions:
--
-- Layout_Error -- Pointer is not in Destination'Range or there is
-- no room for the output.
--
procedure Put
( Destination : in out String;
Pointer : in out Integer;
Value : in Number'Base;
Base : in NumberBase := 10;
PutPlus : in Boolean := False;
RelSmall : in Positive := MaxSmall;
AbsSmall : in Integer := -MaxSmall;
Field : in Natural := 0;
Justify : in Alignment := Left;
Fill : in Character := ' '
);
--
-- Image -- Floating-point to string conversion
--
-- Value - The value to be converted
-- Base - The base used for the output
-- PutPlus - The plus should placed for positive numbers
-- RelSmall - Relative precision of the output
-- AbsSmall - Absolute one
--
-- This procedure converts the parameter Value to String. The parameter
-- Base indicates the number base used for the output. Base itself does
-- not appear in the output. The exponent part (if used) is always
-- decimal. PutPlus indicates whether the plus sign should be placed if
-- the number is positive. For precision parameters see Put.
--
-- Returns :
--
-- The result string
--
function Image
( Value : in Number'Base;
Base : in NumberBase := 10;
PutPlus : in Boolean := False;
RelSmall : in Positive := MaxSmall;
AbsSmall : in Integer := -MaxSmall
) return String;
end Strings_Edit.Float_Edit;
|
Rodeo-McCabe/orka | Ada | 2,438 | adb | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2017 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.Transforms.Doubles.Matrices;
with Orka.Transforms.Doubles.Matrix_Conversions;
package body Orka.Cameras.Look_From_Cameras is
procedure Set_Orientation
(Object : in out Look_From_Camera;
Roll, Pitch, Yaw : Angle) is
begin
Object.Roll := Roll;
Object.Pitch := Pitch;
Object.Yaw := Yaw;
end Set_Orientation;
overriding
procedure Update (Object : in out Look_From_Camera; Delta_Time : Duration) is
Using_Camera : constant Boolean := Object.Input.Button_Pressed (Inputs.Pointers.Right);
begin
Object.Input.Lock_Pointer (Using_Camera);
if Using_Camera then
Object.Yaw := Normalize_Angle (Object.Yaw + Object.Input.Delta_X * Object.Scale (X));
Object.Pitch := Normalize_Angle (Object.Pitch + Object.Input.Delta_Y * Object.Scale (Y));
end if;
end Update;
use Orka.Transforms.Doubles.Matrices;
use Orka.Transforms.Doubles.Matrix_Conversions;
overriding
function View_Matrix (Object : Look_From_Camera) return Transforms.Matrix4 is
(Convert (Ry (Object.Roll) * Rx (Object.Pitch) * Ry (Object.Yaw) * Object.Rotate_To_Up));
overriding
function View_Matrix_Inverse (Object : Look_From_Camera) return Transforms.Matrix4 is
(Convert (Transpose (Object.Rotate_To_Up) *
Ry (-Object.Yaw) * Rx (-Object.Pitch) * Ry (-Object.Roll)));
overriding
function Create_Camera
(Input : Inputs.Pointers.Pointer_Input_Ptr;
Lens : Lens_Ptr;
FB : aliased Rendering.Framebuffers.Framebuffer) return Look_From_Camera is
begin
return Look_From_Camera'(Camera with
Input => Input,
Lens => Lens,
FB => FB'Access,
others => <>);
end Create_Camera;
end Orka.Cameras.Look_From_Cameras;
|
AdaCore/training_material | Ada | 2,256 | adb | --::::::::::
--phil.adb
--::::::::::
with Society;
with Room;
with Random_Generic;
package body Phil is
-- Dining Philosophers - Ada 95 edition
-- Philosopher is an Ada 95 task type with discriminant.
-- Chopsticks are assigned by a higher authority, which
-- can vary the assignments to show different algorithms.
-- Philosopher always grabs First_Grab, then Second_Grab.
-- Philosopher is oblivious to outside world, but needs to
-- communicate is life-cycle events the Maitre_D.
-- Michael B. Feldman, The George Washington University,
-- July, 1995.
subtype Think_Times is Positive range 1..8;
package Think_Length is
new Random_Generic (Result_Subtype => Think_Times);
subtype Meal_Times is Positive range 1..10;
package Meal_Length is
new Random_Generic (Result_Subtype => Meal_Times);
task body Philosopher is -- My_ID is discriminant
subtype Life_Time is Positive range 1..5;
Who_Am_I : Society.Unique_DNA_Codes := My_ID; -- discrim
First_Grab : Positive;
Second_Grab : Positive;
Meal_Time : Meal_Times;
Think_Time : Think_Times;
begin
-- get assigned the first and second chopsticks here
accept Start_Eating (Chopstick1 : in Positive;
Chopstick2 : in Positive) do
First_Grab := Chopstick1;
Second_Grab := Chopstick2;
end Start_Eating;
Room.Maitre_D.Report_State (Who_Am_I, Breathing);
for Meal in Life_Time loop
Room.Sticks (First_Grab).Pick_Up;
Room.Maitre_D.Report_State (Who_Am_I, Got_One_Stick, First_Grab);
Room.Sticks (Second_Grab).Pick_Up;
Room.Maitre_D.Report_State (Who_Am_I, Got_Other_Stick, Second_Grab);
Meal_Time := Meal_Length.Random_Value;
Room.Maitre_D.Report_State (Who_Am_I, Eating, Meal_Time, Meal);
delay Duration (Meal_Time);
Room.Maitre_D.Report_State (Who_Am_I, Done_Eating);
Room.Sticks (First_Grab).Put_Down;
Room.Sticks (Second_Grab).Put_Down;
Think_Time := Think_Length.Random_Value;
Room.Maitre_D.Report_State (Who_Am_I, Thinking, Think_Time);
delay Duration (Think_Time);
end loop;
Room.Maitre_D.Report_State (Who_Am_I, Dying);
end Philosopher;
end Phil;
|
AdaDoom3/wayland_ada_binding | Ada | 2,031 | adb | ------------------------------------------------------------------------------
-- Copyright (C) 2016, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, or (at your option) any later --
-- version. This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
pragma Ada_2012;
package body Conts.Vectors.Indefinite_Unbounded_SPARK with SPARK_Mode => Off is
pragma Assertion_Policy
(Pre => Suppressible, Ghost => Suppressible, Post => Ignore);
----------
-- Copy --
----------
function Copy (Self : Vector'Class) return Vector'Class is
begin
return Result : Vector do
Result.Assign (Self);
end return;
end Copy;
end Conts.Vectors.Indefinite_Unbounded_SPARK;
|
reznikmm/matreshka | Ada | 4,067 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with ODF.DOM.Style_Font_Weight_Asian_Attributes;
package Matreshka.ODF_Style.Font_Weight_Asian_Attributes is
type Style_Font_Weight_Asian_Attribute_Node is
new Matreshka.ODF_Style.Abstract_Style_Attribute_Node
and ODF.DOM.Style_Font_Weight_Asian_Attributes.ODF_Style_Font_Weight_Asian_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Style_Font_Weight_Asian_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Style_Font_Weight_Asian_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Style.Font_Weight_Asian_Attributes;
|
AdaCore/langkit | Ada | 9,520 | ads | --
-- Copyright (C) 2014-2022, AdaCore
-- SPDX-License-Identifier: Apache-2.0
--
with Ada.Unchecked_Conversion;
with Langkit_Support.File_Readers; use Langkit_Support.File_Readers;
with Langkit_Support.Generic_API.Introspection;
use Langkit_Support.Generic_API.Introspection;
with Langkit_Support.Internal.Analysis; use Langkit_Support.Internal.Analysis;
with Langkit_Support.Internal.Introspection;
use Langkit_Support.Internal.Introspection;
with Langkit_Support.Slocs; use Langkit_Support.Slocs;
with Langkit_Support.Types; use Langkit_Support.Types;
-- This package provides common implementation details for Langkit-generated
-- libraries. Even though it is not private (to allow Langkit-generated
-- libraries to use it), it is not meant to be used beyond this. As such, this
-- API is considered unsafe and unstable.
package Langkit_Support.Internal.Descriptor is
type Language_Descriptor;
type Language_Descriptor_Access is access constant Language_Descriptor;
-- Unique identifier for Langkit-generated libraries and dispatch table for
-- all generic operations.
-- Access types for the implementation of generic operations. Most
-- operations are direct implementation for the API defined in
-- Langkit_Support.Generic_API.* packages. Ref-counting operations are
-- trivial to use, but all expect non-null arguments. All operations expect
-- safe arguments (no stale reference) and non-null ones.
type Create_Context_Type is access function
(Charset : String := "";
File_Reader : File_Reader_Reference := No_File_Reader_Reference;
With_Trivia : Boolean := True;
Tab_Stop : Natural := 0)
return Internal_Context;
type Context_Inc_Ref_Type is access procedure (Context : Internal_Context);
type Context_Dec_Ref_Type is access procedure
(Context : in out Internal_Context);
type Context_Version_Type is access function
(Context : Internal_Context) return Version_Number;
type Context_Has_Unit_Type is access function
(Context : Internal_Context; Unit_Filename : String) return Boolean;
type Context_Get_From_File_Type is access function
(Context : Internal_Context;
Filename, Charset : String;
Reparse : Boolean;
Rule : Grammar_Rule_Index) return Internal_Unit;
type Unit_Context_Type is access function
(Unit : Internal_Unit) return Internal_Context;
type Unit_Version_Type is access function
(Unit : Internal_Unit) return Version_Number;
type Unit_Filename_Type is access function
(Unit : Internal_Unit) return String;
type Unit_Root_Type is access function
(Unit : Internal_Unit) return Analysis.Internal_Node;
type Unit_Token_Getter_Type is access function
(Unit : Internal_Unit) return Analysis.Internal_Token;
type Unit_Get_Line_Type is access function
(Unit : Internal_Unit; Line_Number : Positive) return Text_Type;
type Node_Metadata_Inc_Ref_Type is access procedure
(Metadata : Internal_Node_Metadata);
type Node_Metadata_Dec_Ref_Type is access procedure
(Metadata : in out Internal_Node_Metadata);
type Node_Metadata_Compare_Type is access function
(L, R : Analysis.Internal_Node_Metadata) return Boolean;
type Node_Unit_Type is access function
(Node : Analysis.Internal_Node) return Internal_Unit;
type Node_Kind_Type is access function
(Node : Analysis.Internal_Node) return Type_Index;
type Node_Parent_Type is access function
(Node : Analysis.Internal_Entity) return Analysis.Internal_Entity;
type Node_Parents_Type is access function
(Node : Analysis.Internal_Entity;
With_Self : Boolean) return Analysis.Internal_Entity_Array;
type Node_Children_Count_Type is access function
(Node : Analysis.Internal_Node) return Natural;
type Node_Get_Child_Type is access procedure
(Node : Analysis.Internal_Node;
Index : Positive;
Index_In_Bounds : out Boolean;
Result : out Analysis.Internal_Node);
type Node_Fetch_Sibling_Type is access function
(Node : Analysis.Internal_Node;
Offset : Integer) return Analysis.Internal_Node;
type Node_Is_Ghost_Type is access function
(Node : Analysis.Internal_Node) return Boolean;
type Node_Token_Getter_Type is access function
(Node : Analysis.Internal_Node) return Analysis.Internal_Token;
type Node_Text_Type is access function
(Node : Analysis.Internal_Node) return Text_Type;
type Node_Sloc_Range_Type is access function
(Node : Analysis.Internal_Node) return Source_Location_Range;
type Node_Last_Attempted_Child_Type is access function
(Node : Analysis.Internal_Node) return Integer;
type Entity_Image_Type is access function
(Entity : Internal_Entity) return String;
type Token_Is_Equivalent_Type is access function
(Left, Right : Internal_Token;
Left_SN, Right_SN : Token_Safety_Net) return Boolean;
type Create_Enum_Type is access function
(Enum_Type : Type_Index;
Value_Index : Enum_Value_Index) return Internal_Value_Access;
type Create_Array_Type is access function
(Array_Type : Type_Index;
Values : Internal_Value_Array) return Internal_Value_Access;
type Create_Struct_Type is access function
(Struct_Type : Type_Index;
Values : Internal_Value_Array) return Internal_Value_Access;
type Eval_Node_Member_Type is access function
(Node : Internal_Acc_Node;
Member : Struct_Member_Index;
Arguments : Internal_Value_Array) return Internal_Value_Access;
type Language_Descriptor is limited record
Language_Name : Text_Access;
-- Name of the language that is analyzed (in camel-with-underscores
-- casing).
-- Descriptors for grammar rules. The table also defines the range of
-- supported rules for this language.
Default_Grammar_Rule : Grammar_Rule_Index;
Grammar_Rules : Grammar_Rule_Descriptor_Array_Access;
-- Descriptors for token kinds. The table for names also defines the
-- range of supported kinds for this language.
Token_Kind_Names : Token_Kind_Name_Array_Access;
-- Descriptors for introspection capabilities
Types : Type_Descriptor_Array_Access;
Enum_Types : Enum_Type_Descriptor_Array_Access;
Array_Types : Array_Type_Descriptor_Array_Access;
Iterator_Types : Iterator_Type_Descriptor_Array_Access;
Struct_Types : Struct_Type_Descriptor_Array_Access;
Builtin_Types : Builtin_Types_Access;
First_Node : Type_Index;
-- Index of the first node descriptor in ``Struct_Types``. In
-- ``Struct_Types``, descriptors from 1 to ``First_Node - 1`` are struct
-- types (not nodes), and descriptors from ``First_Node`` to
-- ``Struct_Types'Last`` are nodes.
Struct_Members : Struct_Member_Descriptor_Array_Access;
-- Descriptors for struct members: fields and properties. In
-- ``Struct_Members``, descriptors from 1 to ``First_Property - 1`` are
-- fields, and descriptors from ``First_Property`` to
-- ``Struct_Members'Last`` are properties.
First_Property : Struct_Member_Index;
-- Index of the first property descriptor in ``Struct_Members``
-- Implementation for generic operations
Create_Context : Create_Context_Type;
Context_Inc_Ref : Context_Inc_Ref_Type;
Context_Dec_Ref : Context_Dec_Ref_Type;
Context_Version : Context_Version_Type;
Context_Get_From_File : Context_Get_From_File_Type;
Context_Has_Unit : Context_Has_Unit_Type;
Unit_Context : Unit_Context_Type;
Unit_Version : Unit_Version_Type;
Unit_Filename : Unit_Filename_Type;
Unit_Root : Unit_Root_Type;
Unit_First_Token : Unit_Token_Getter_Type;
Unit_Last_Token : Unit_Token_Getter_Type;
Unit_Get_Line : Unit_Get_Line_Type;
Node_Metadata_Inc_Ref : Node_Metadata_Inc_Ref_Type;
Node_Metadata_Dec_Ref : Node_Metadata_Dec_Ref_Type;
Node_Metadata_Compare : Node_Metadata_Compare_Type;
Null_Metadata : Internal_Node_Metadata;
Node_Unit : Node_Unit_Type;
Node_Kind : Node_Kind_Type;
Node_Parent : Node_Parent_Type;
Node_Parents : Node_Parents_Type;
Node_Children_Count : Node_Children_Count_Type;
Node_Get_Child : Node_Get_Child_Type;
Node_Fetch_Sibling : Node_Fetch_Sibling_Type;
Node_Is_Ghost : Node_Is_Ghost_Type;
Node_Token_Start : Node_Token_Getter_Type;
Node_Token_End : Node_Token_Getter_Type;
Node_Text : Node_Text_Type;
Node_Sloc_Range : Node_Sloc_Range_Type;
Node_Last_Attempted_Child : Node_Last_Attempted_Child_Type;
Entity_Image : Entity_Image_Type;
Token_Is_Equivalent : Token_Is_Equivalent_Type;
-- Operations to build/inspect generic data types
Create_Enum : Create_Enum_Type;
Create_Array : Create_Array_Type;
Create_Struct : Create_Struct_Type;
Eval_Node_Member : Eval_Node_Member_Type;
end record;
function "+" is new Ada.Unchecked_Conversion
(Any_Language_Id, Language_Descriptor_Access);
end Langkit_Support.Internal.Descriptor;
|
tj800x/SPARKNaCl | Ada | 3,438 | adb | with SPARKNaCl.Utils;
with SPARKNaCl.Scalar;
with SPARKNaCl.Secretbox;
package body SPARKNaCl.Cryptobox
with SPARK_Mode => On
is
procedure Keypair (PK : out Public_Key;
SK : out Secret_Key)
is
Raw_SK : Bytes_32 := Utils.Random_Bytes_32;
begin
SK.F := Raw_SK;
PK.F := Scalar.Mult_Base (Raw_SK);
pragma Warnings (GNATProve, Off, "statement has no effect");
Sanitize (Raw_SK);
pragma Unreferenced (Raw_SK);
end Keypair;
function Construct (K : in Bytes_32) return Secret_Key
is
begin
return Secret_Key'(F => K);
end Construct;
function Construct (K : in Bytes_32) return Public_Key
is
begin
return Public_Key'(F => K);
end Construct;
function Serialize (K : in Secret_Key) return Bytes_32
is
begin
return K.F;
end Serialize;
function Serialize (K : in Public_Key) return Bytes_32
is
begin
return K.F;
end Serialize;
procedure Sanitize (K : out Secret_Key)
is
begin
Sanitize (K.F);
end Sanitize;
procedure Sanitize (K : out Public_Key)
is
begin
Sanitize (K.F);
end Sanitize;
procedure BeforeNM (K : out Core.Salsa20_Key;
PK : in Public_Key;
SK : in Secret_Key)
is
S : Bytes_32;
LK : Bytes_32;
begin
S := Scalar.Mult (SK.F, PK.F);
Core.HSalsa20 (Output => LK,
Input => Zero_Bytes_16,
K => Core.Construct (S),
C => Sigma);
Core.Construct (K, LK);
Sanitize (S);
Sanitize (LK);
pragma Unreferenced (S, LK);
end BeforeNM;
procedure AfterNM (C : out Byte_Seq;
Status : out Boolean;
M : in Byte_Seq;
N : in Stream.HSalsa20_Nonce;
K : in Core.Salsa20_Key)
is
begin
Secretbox.Create (C, Status, M, N, K);
end AfterNM;
procedure Open_AfterNM
(M : out Byte_Seq; -- Output plaintext
Status : out Boolean;
C : in Byte_Seq; -- Input ciphertext
N : in Stream.HSalsa20_Nonce;
K : in Core.Salsa20_Key)
is
begin
Secretbox.Open (M, Status, C, N, K);
end Open_AfterNM;
procedure Create (C : out Byte_Seq;
Status : out Boolean;
M : in Byte_Seq;
N : in Stream.HSalsa20_Nonce;
Recipient_PK : in Public_Key;
Sender_SK : in Secret_Key)
is
K : Core.Salsa20_Key;
begin
BeforeNM (K, Recipient_PK, Sender_SK);
AfterNM (C, Status, M, N, K);
Core.Sanitize (K);
pragma Unreferenced (K);
end Create;
procedure Open (M : out Byte_Seq;
Status : out Boolean;
C : in Byte_Seq;
N : in Stream.HSalsa20_Nonce;
Sender_PK : in Public_Key;
Recipient_SK : in Secret_Key)
is
K : Core.Salsa20_Key;
begin
BeforeNM (K, Sender_PK, Recipient_SK);
Open_AfterNM (M, Status, C, N, K);
Core.Sanitize (K);
pragma Unreferenced (K);
end Open;
end SPARKNaCl.Cryptobox;
|
reznikmm/matreshka | Ada | 4,379 | adb | ------------------------------------------------------------------------------
-- --
-- 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.DOM_Nodes;
with XML.DOM.Attributes.Internals;
package body ODF.DOM.Attributes.Table.Number_Columns_Spanned.Internals is
------------
-- Create --
------------
function Create
(Node : Matreshka.ODF_Attributes.Table.Number_Columns_Spanned.Table_Number_Columns_Spanned_Access)
return ODF.DOM.Attributes.Table.Number_Columns_Spanned.ODF_Table_Number_Columns_Spanned is
begin
return
(XML.DOM.Attributes.Internals.Create
(Matreshka.DOM_Nodes.Attribute_Access (Node)) with null record);
end Create;
----------
-- Wrap --
----------
function Wrap
(Node : Matreshka.ODF_Attributes.Table.Number_Columns_Spanned.Table_Number_Columns_Spanned_Access)
return ODF.DOM.Attributes.Table.Number_Columns_Spanned.ODF_Table_Number_Columns_Spanned is
begin
return
(XML.DOM.Attributes.Internals.Wrap
(Matreshka.DOM_Nodes.Attribute_Access (Node)) with null record);
end Wrap;
end ODF.DOM.Attributes.Table.Number_Columns_Spanned.Internals;
|
optikos/oasis | Ada | 1,438,073 | adb |
package body Program.Parsers.Data is
use Anagram.Grammars.LR_Parsers;
Go_To_Table : constant array
(Anagram.Grammars.LR_Parsers.State_Index range 1 .. 5788,
Anagram.Grammars.Non_Terminal_Index range 1 .. 249) of State_Index :=
(1 =>
(1 => 14, 33 => 15, 45 => 16, 46 => 17,
120 => 18, 122 => 19, 128 => 20, 129 => 21,
130 => 22, 131 => 23, 132 => 24, 147 => 25,
148 => 26, 149 => 27, 167 => 28, 169 => 29,
170 => 30, 173 => 31, 179 => 32, 180 => 33,
231 => 34, 243 => 35, 244 => 36, 245 => 37,
249 => 38, others => 0),
2 =>
(134 => 40, 181 => 41, 215 => 42, others => 0),
3 =>
(134 => 40, 181 => 45, 215 => 42, others => 0),
4 =>
(others => 0),
5 =>
(57 => 48, 134 => 40, 181 => 49, 215 => 50,
others => 0),
6 =>
(122 => 19, 128 => 20, 129 => 21, 130 => 22,
131 => 23, 132 => 24, 149 => 57, 169 => 29,
170 => 30, 180 => 33, others => 0),
7 =>
(134 => 58, others => 0),
8 =>
(57 => 60, 134 => 40, 181 => 49, 215 => 50,
others => 0),
9 =>
(others => 0),
10 =>
(others => 0),
11 =>
(others => 0),
12 =>
(55 => 72, 56 => 73, 97 => 74, 103 => 75,
104 => 76, 107 => 77, 112 => 78, 115 => 79,
125 => 80, 126 => 81, 127 => 82, 173 => 83,
243 => 84, 244 => 36, 245 => 37, others => 0),
13 =>
(52 => 86, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
14 =>
(others => 0),
15 =>
(33 => 88, 34 => 89, 45 => 16, 46 => 90,
120 => 18, 122 => 19, 128 => 20, 129 => 21,
130 => 22, 131 => 23, 132 => 24, 147 => 25,
148 => 26, 149 => 27, 167 => 28, 169 => 29,
170 => 30, 173 => 31, 179 => 32, 180 => 33,
231 => 34, 243 => 35, 244 => 36, 245 => 37,
249 => 38, others => 0),
16 =>
(others => 0),
17 =>
(45 => 93, 120 => 18, 122 => 19, 128 => 20,
129 => 21, 130 => 22, 131 => 23, 132 => 24,
148 => 94, 149 => 95, 167 => 28, 169 => 29,
170 => 30, 173 => 31, 179 => 32, 180 => 33,
243 => 35, 244 => 36, 245 => 37, 249 => 38,
others => 0),
18 =>
(others => 0),
19 =>
(others => 0),
20 =>
(others => 0),
21 =>
(others => 0),
22 =>
(others => 0),
23 =>
(others => 0),
24 =>
(others => 0),
25 =>
(others => 0),
26 =>
(others => 0),
27 =>
(others => 0),
28 =>
(others => 0),
29 =>
(others => 0),
30 =>
(others => 0),
31 =>
(others => 0),
32 =>
(others => 0),
33 =>
(others => 0),
34 =>
(others => 0),
35 =>
(others => 0),
36 =>
(others => 0),
37 =>
(others => 0),
38 =>
(others => 0),
39 =>
(others => 0),
40 =>
(others => 0),
41 =>
(182 => 99, others => 0),
42 =>
(others => 0),
43 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 112, others => 0),
44 =>
(others => 0),
45 =>
(182 => 115, others => 0),
46 =>
(134 => 40, 181 => 116, 215 => 42, others => 0),
47 =>
(others => 0),
48 =>
(12 => 122, others => 0),
49 =>
(others => 0),
50 =>
(others => 0),
51 =>
(134 => 40, 181 => 123, 215 => 42, others => 0),
52 =>
(57 => 124, 134 => 40, 181 => 49, 215 => 50,
others => 0),
53 =>
(57 => 60, 134 => 40, 181 => 49, 215 => 50,
others => 0),
54 =>
(others => 0),
55 =>
(others => 0),
56 =>
(52 => 128, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
57 =>
(others => 0),
58 =>
(others => 0),
59 =>
(57 => 131, 134 => 40, 181 => 49, 215 => 50,
others => 0),
60 =>
(12 => 134, others => 0),
61 =>
(57 => 135, 134 => 40, 181 => 49, 215 => 50,
others => 0),
62 =>
(52 => 136, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
63 =>
(others => 0),
64 =>
(134 => 40, 181 => 139, 215 => 42, others => 0),
65 =>
(others => 0),
66 =>
(others => 0),
67 =>
(55 => 144, others => 0),
68 =>
(57 => 145, 134 => 40, 181 => 49, 215 => 50,
others => 0),
69 =>
(57 => 146, 134 => 40, 181 => 49, 215 => 50,
others => 0),
70 =>
(others => 0),
71 =>
(52 => 147, 57 => 148, 134 => 40, 181 => 49,
215 => 50, others => 0),
72 =>
(54 => 150, others => 0),
73 =>
(others => 0),
74 =>
(others => 0),
75 =>
(others => 0),
76 =>
(others => 0),
77 =>
(others => 0),
78 =>
(others => 0),
79 =>
(others => 0),
80 =>
(others => 0),
81 =>
(55 => 72, 56 => 73, 97 => 74, 103 => 75,
104 => 76, 107 => 77, 112 => 78, 115 => 79,
125 => 155, 127 => 82, 173 => 83, 243 => 84,
244 => 36, 245 => 37, others => 0),
82 =>
(others => 0),
83 =>
(others => 0),
84 =>
(others => 0),
85 =>
(others => 0),
86 =>
(others => 0),
87 =>
(others => 0),
88 =>
(others => 0),
89 =>
(33 => 159, 45 => 16, 46 => 160, 120 => 18,
122 => 19, 128 => 20, 129 => 21, 130 => 22,
131 => 23, 132 => 24, 147 => 25, 148 => 26,
149 => 27, 167 => 28, 169 => 29, 170 => 30,
173 => 31, 179 => 32, 180 => 33, 231 => 34,
243 => 35, 244 => 36, 245 => 37, 249 => 38,
others => 0),
90 =>
(45 => 93, 120 => 18, 122 => 19, 128 => 20,
129 => 21, 130 => 22, 131 => 23, 132 => 24,
148 => 94, 149 => 95, 167 => 28, 169 => 29,
170 => 30, 173 => 31, 179 => 32, 180 => 33,
243 => 35, 244 => 36, 245 => 37, 249 => 38,
others => 0),
91 =>
(others => 0),
92 =>
(122 => 19, 128 => 20, 129 => 21, 130 => 22,
131 => 23, 132 => 24, 149 => 162, 169 => 29,
170 => 30, 180 => 33, others => 0),
93 =>
(others => 0),
94 =>
(others => 0),
95 =>
(others => 0),
96 =>
(others => 0),
97 =>
(134 => 164, 164 => 165, 217 => 166, others => 0),
98 =>
(134 => 40, 181 => 167, 215 => 42, others => 0),
99 =>
(others => 0),
100 =>
(others => 0),
101 =>
(others => 0),
102 =>
(others => 0),
103 =>
(others => 0),
104 =>
(others => 0),
105 =>
(others => 0),
106 =>
(others => 0),
107 =>
(others => 0),
108 =>
(others => 0),
109 =>
(14 => 173, others => 0),
110 =>
(others => 0),
111 =>
(others => 0),
112 =>
(230 => 176, others => 0),
113 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 177, others => 0),
114 =>
(others => 0),
115 =>
(others => 0),
116 =>
(others => 0),
117 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
118 =>
(others => 0),
119 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 181, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
120 =>
(55 => 72, 56 => 182, 113 => 183, 171 => 184,
others => 0),
121 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 205, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 218, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
122 =>
(others => 0),
123 =>
(182 => 246, others => 0),
124 =>
(12 => 249, others => 0),
125 =>
(57 => 250, 134 => 40, 181 => 49, 215 => 50,
others => 0),
126 =>
(52 => 251, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
127 =>
(others => 0),
128 =>
(others => 0),
129 =>
(others => 0),
130 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 267, 94 => 268,
121 => 105, 134 => 269, 156 => 270, 164 => 108,
174 => 271, 176 => 109, 194 => 110, 202 => 272,
208 => 273, 214 => 111, 221 => 274, others => 0),
131 =>
(12 => 276, others => 0),
132 =>
(134 => 40, 181 => 277, 215 => 42, others => 0),
133 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 284, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
134 =>
(others => 0),
135 =>
(12 => 290, others => 0),
136 =>
(others => 0),
137 =>
(57 => 294, 134 => 40, 181 => 49, 215 => 50,
others => 0),
138 =>
(52 => 295, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
139 =>
(182 => 297, others => 0),
140 =>
(134 => 40, 181 => 298, 215 => 42, others => 0),
141 =>
(57 => 299, 134 => 40, 181 => 49, 215 => 50,
others => 0),
142 =>
(55 => 300, others => 0),
143 =>
(52 => 301, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
144 =>
(70 => 305, 144 => 306, 241 => 307, others => 0),
145 =>
(12 => 311, others => 0),
146 =>
(12 => 314, others => 0),
147 =>
(others => 0),
148 =>
(others => 0),
149 =>
(55 => 318, others => 0),
150 =>
(others => 0),
151 =>
(5 => 324, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 325,
others => 0),
152 =>
(57 => 326, 134 => 40, 181 => 49, 215 => 50,
others => 0),
153 =>
(57 => 327, 134 => 40, 181 => 49, 215 => 50,
others => 0),
154 =>
(52 => 328, 57 => 329, 134 => 40, 181 => 49,
215 => 50, others => 0),
155 =>
(others => 0),
156 =>
(5 => 331, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 332,
others => 0),
157 =>
(55 => 72, 56 => 182, 113 => 333, 171 => 184,
others => 0),
158 =>
(others => 0),
159 =>
(others => 0),
160 =>
(45 => 93, 120 => 18, 122 => 19, 128 => 20,
129 => 21, 130 => 22, 131 => 23, 132 => 24,
148 => 94, 149 => 95, 167 => 28, 169 => 29,
170 => 30, 173 => 31, 179 => 32, 180 => 33,
243 => 35, 244 => 36, 245 => 37, 249 => 38,
others => 0),
161 =>
(134 => 40, 181 => 335, 215 => 42, others => 0),
162 =>
(others => 0),
163 =>
(others => 0),
164 =>
(others => 0),
165 =>
(others => 0),
166 =>
(others => 0),
167 =>
(others => 0),
168 =>
(others => 0),
169 =>
(134 => 40, 181 => 336, 215 => 42, others => 0),
170 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 340, 66 => 341,
90 => 104, 91 => 342, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
203 => 346, 204 => 347, 208 => 273, 214 => 111,
221 => 348, others => 0),
171 =>
(134 => 164, 164 => 165, 217 => 350, others => 0),
172 =>
(7 => 352, 14 => 266, 94 => 268, 134 => 353,
202 => 272, others => 0),
173 =>
(others => 0),
174 =>
(others => 0),
175 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 354, others => 0),
176 =>
(others => 0),
177 =>
(230 => 358, others => 0),
178 =>
(others => 0),
179 =>
(120 => 210, 167 => 222, 179 => 229, 183 => 366,
184 => 232, 232 => 239, others => 0),
180 =>
(11 => 369, others => 0),
181 =>
(12 => 371, others => 0),
182 =>
(others => 0),
183 =>
(others => 0),
184 =>
(172 => 375, others => 0),
185 =>
(55 => 376, others => 0),
186 =>
(55 => 379, others => 0),
187 =>
(55 => 380, others => 0),
188 =>
(12 => 382, others => 0),
189 =>
(55 => 385, others => 0),
190 =>
(57 => 60, 134 => 40, 181 => 49, 215 => 50,
others => 0),
191 =>
(others => 0),
192 =>
(134 => 40, 181 => 387, 215 => 42, others => 0),
193 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 388, others => 0),
194 =>
(134 => 40, 181 => 390, 215 => 42, others => 0),
195 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 432,
222 => 433, 225 => 434, 242 => 435, others => 0),
196 =>
(others => 0),
197 =>
(others => 0),
198 =>
(others => 0),
199 =>
(others => 0),
200 =>
(others => 0),
201 =>
(others => 0),
202 =>
(others => 0),
203 =>
(others => 0),
204 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 436,
49 => 437, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
205 =>
(others => 0),
206 =>
(others => 0),
207 =>
(others => 0),
208 =>
(others => 0),
209 =>
(others => 0),
210 =>
(others => 0),
211 =>
(others => 0),
212 =>
(others => 0),
213 =>
(others => 0),
214 =>
(others => 0),
215 =>
(others => 0),
216 =>
(others => 0),
217 =>
(others => 0),
218 =>
(12 => 442, others => 0),
219 =>
(others => 0),
220 =>
(others => 0),
221 =>
(others => 0),
222 =>
(others => 0),
223 =>
(others => 0),
224 =>
(others => 0),
225 =>
(others => 0),
226 =>
(others => 0),
227 =>
(others => 0),
228 =>
(others => 0),
229 =>
(others => 0),
230 =>
(others => 0),
231 =>
(others => 0),
232 =>
(others => 0),
233 =>
(others => 0),
234 =>
(others => 0),
235 =>
(others => 0),
236 =>
(others => 0),
237 =>
(others => 0),
238 =>
(others => 0),
239 =>
(others => 0),
240 =>
(others => 0),
241 =>
(others => 0),
242 =>
(others => 0),
243 =>
(others => 0),
244 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 445, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
245 =>
(others => 0),
246 =>
(others => 0),
247 =>
(55 => 72, 56 => 182, 113 => 447, 171 => 184,
others => 0),
248 =>
(158 => 218, others => 0),
249 =>
(others => 0),
250 =>
(12 => 450, others => 0),
251 =>
(others => 0),
252 =>
(57 => 453, 134 => 40, 181 => 49, 215 => 50,
others => 0),
253 =>
(52 => 454, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
254 =>
(5 => 456, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 457,
others => 0),
255 =>
(55 => 72, 56 => 182, 113 => 458, 171 => 184,
others => 0),
256 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 459,
others => 0),
257 =>
(others => 0),
258 =>
(others => 0),
259 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 460,
others => 0),
260 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 462, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
261 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
26 => 466, 43 => 467, 63 => 103, 64 => 339,
65 => 340, 66 => 341, 90 => 104, 91 => 342,
94 => 268, 121 => 105, 134 => 106, 135 => 468,
156 => 469, 164 => 108, 166 => 343, 176 => 344,
194 => 110, 195 => 470, 199 => 345, 202 => 272,
203 => 346, 204 => 347, 208 => 273, 214 => 111,
221 => 348, others => 0),
262 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 471,
others => 0),
263 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 472,
others => 0),
264 =>
(others => 0),
265 =>
(others => 0),
266 =>
(others => 0),
267 =>
(others => 0),
268 =>
(others => 0),
269 =>
(others => 0),
270 =>
(others => 0),
271 =>
(175 => 479, others => 0),
272 =>
(others => 0),
273 =>
(others => 0),
274 =>
(209 => 496, others => 0),
275 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 499, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
276 =>
(others => 0),
277 =>
(12 => 502, others => 0),
278 =>
(55 => 379, others => 0),
279 =>
(55 => 385, others => 0),
280 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 504, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
281 =>
(134 => 40, 181 => 505, 215 => 42, others => 0),
282 =>
(134 => 40, 181 => 507, 215 => 42, others => 0),
283 =>
(others => 0),
284 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
285 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 513, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
286 =>
(others => 0),
287 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 514, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
288 =>
(55 => 72, 56 => 182, 113 => 515, 171 => 184,
others => 0),
289 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 520, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 521, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
290 =>
(others => 0),
291 =>
(5 => 525, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 526,
others => 0),
292 =>
(55 => 72, 56 => 182, 113 => 527, 171 => 184,
others => 0),
293 =>
(others => 0),
294 =>
(12 => 533, others => 0),
295 =>
(others => 0),
296 =>
(others => 0),
297 =>
(others => 0),
298 =>
(182 => 539, others => 0),
299 =>
(12 => 543, others => 0),
300 =>
(others => 0),
301 =>
(others => 0),
302 =>
(others => 0),
303 =>
(55 => 72, 56 => 548, 72 => 549, others => 0),
304 =>
(96 => 567, 98 => 568, 99 => 569, 100 => 570,
101 => 571, 102 => 572, 105 => 573, 106 => 574,
108 => 575, 114 => 576, 116 => 577, 117 => 578,
118 => 579, 140 => 580, others => 0),
305 =>
(others => 0),
306 =>
(others => 0),
307 =>
(others => 0),
308 =>
(others => 0),
309 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 583, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
310 =>
(55 => 72, 56 => 182, 113 => 584, 171 => 184,
others => 0),
311 =>
(others => 0),
312 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 586, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
313 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 589, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
314 =>
(others => 0),
315 =>
(5 => 592, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 593,
others => 0),
316 =>
(55 => 72, 56 => 182, 113 => 594, 171 => 184,
others => 0),
317 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 595, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
318 =>
(others => 0),
319 =>
(55 => 596, others => 0),
320 =>
(5 => 598, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 599,
others => 0),
321 =>
(others => 0),
322 =>
(5 => 603, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 604,
others => 0),
323 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 609, others => 0),
324 =>
(12 => 612, others => 0),
325 =>
(12 => 615, others => 0),
326 =>
(12 => 619, others => 0),
327 =>
(12 => 622, others => 0),
328 =>
(others => 0),
329 =>
(others => 0),
330 =>
(others => 0),
331 =>
(12 => 630, others => 0),
332 =>
(12 => 634, others => 0),
333 =>
(others => 0),
334 =>
(134 => 40, 181 => 636, 215 => 42, others => 0),
335 =>
(others => 0),
336 =>
(others => 0),
337 =>
(others => 0),
338 =>
(others => 0),
339 =>
(31 => 640, others => 0),
340 =>
(others => 0),
341 =>
(others => 0),
342 =>
(others => 0),
343 =>
(others => 0),
344 =>
(14 => 173, others => 0),
345 =>
(others => 0),
346 =>
(35 => 644, others => 0),
347 =>
(others => 0),
348 =>
(200 => 648, 209 => 496, others => 0),
349 =>
(others => 0),
350 =>
(others => 0),
351 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 340, 66 => 341,
90 => 104, 91 => 342, 94 => 268, 121 => 105,
134 => 106, 156 => 469, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
203 => 346, 204 => 347, 208 => 273, 214 => 111,
221 => 348, others => 0),
352 =>
(others => 0),
353 =>
(others => 0),
354 =>
(others => 0),
355 =>
(others => 0),
356 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 649, others => 0),
357 =>
(others => 0),
358 =>
(others => 0),
359 =>
(others => 0),
360 =>
(others => 0),
361 =>
(57 => 653, 134 => 40, 181 => 49, 215 => 50,
others => 0),
362 =>
(others => 0),
363 =>
(others => 0),
364 =>
(others => 0),
365 =>
(52 => 657, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
366 =>
(others => 0),
367 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 658, others => 0),
368 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 659, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
369 =>
(others => 0),
370 =>
(others => 0),
371 =>
(others => 0),
372 =>
(5 => 666, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 667,
others => 0),
373 =>
(12 => 671, others => 0),
374 =>
(55 => 72, 56 => 182, 171 => 672, others => 0),
375 =>
(others => 0),
376 =>
(70 => 676, 144 => 306, 241 => 307, others => 0),
377 =>
(55 => 677, others => 0),
378 =>
(55 => 678, others => 0),
379 =>
(12 => 681, others => 0),
380 =>
(others => 0),
381 =>
(others => 0),
382 =>
(others => 0),
383 =>
(55 => 684, others => 0),
384 =>
(55 => 685, others => 0),
385 =>
(12 => 687, others => 0),
386 =>
(57 => 688, 134 => 40, 181 => 49, 215 => 50,
others => 0),
387 =>
(12 => 691, others => 0),
388 =>
(others => 0),
389 =>
(others => 0),
390 =>
(others => 0),
391 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 694, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
392 =>
(3 => 697, 4 => 698, 18 => 102, 58 => 699,
59 => 700, 63 => 103, 76 => 701, 77 => 702,
90 => 104, 121 => 105, 134 => 106, 156 => 703,
164 => 108, 176 => 109, 194 => 110, 212 => 704,
214 => 111, 238 => 705, others => 0),
393 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
55 => 707, 63 => 103, 90 => 104, 91 => 708,
92 => 709, 94 => 268, 121 => 105, 134 => 106,
156 => 270, 164 => 108, 176 => 109, 194 => 110,
202 => 272, 208 => 273, 214 => 111, 221 => 274,
others => 0),
394 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 710, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
395 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 712, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
396 =>
(others => 0),
397 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 714,
222 => 433, 225 => 434, 242 => 435, others => 0),
398 =>
(55 => 715, others => 0),
399 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 716, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
400 =>
(others => 0),
401 =>
(134 => 40, 181 => 717, 215 => 42, others => 0),
402 =>
(55 => 718, 143 => 719, 150 => 720, others => 0),
403 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 723, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
404 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 725, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
405 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 727, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
406 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 728, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
407 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 729,
222 => 433, 225 => 434, 242 => 435, others => 0),
408 =>
(134 => 730, others => 0),
409 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 731, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
410 =>
(others => 0),
411 =>
(others => 0),
412 =>
(others => 0),
413 =>
(others => 0),
414 =>
(others => 0),
415 =>
(others => 0),
416 =>
(others => 0),
417 =>
(others => 0),
418 =>
(others => 0),
419 =>
(others => 0),
420 =>
(others => 0),
421 =>
(others => 0),
422 =>
(others => 0),
423 =>
(others => 0),
424 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 733, 151 => 425,
156 => 426, 159 => 427, 164 => 108, 173 => 428,
176 => 109, 194 => 110, 197 => 429, 210 => 430,
214 => 111, 216 => 431, 222 => 433, 242 => 734,
others => 0),
425 =>
(others => 0),
426 =>
(others => 0),
427 =>
(others => 0),
428 =>
(others => 0),
429 =>
(others => 0),
430 =>
(others => 0),
431 =>
(others => 0),
432 =>
(others => 0),
433 =>
(others => 0),
434 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 739,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 222 => 433,
225 => 740, 226 => 741, 242 => 435, others => 0),
435 =>
(others => 0),
436 =>
(others => 0),
437 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 742,
55 => 72, 56 => 206, 85 => 207, 88 => 208,
119 => 209, 120 => 210, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
167 => 222, 168 => 223, 169 => 224, 170 => 225,
173 => 226, 177 => 227, 178 => 228, 179 => 229,
180 => 230, 183 => 231, 184 => 232, 185 => 233,
193 => 234, 206 => 235, 223 => 236, 224 => 237,
227 => 238, 232 => 239, 233 => 240, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
438 =>
(134 => 40, 181 => 744, 215 => 42, others => 0),
439 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 745,
222 => 433, 225 => 434, 242 => 435, others => 0),
440 =>
(5 => 751, 18 => 102, 44 => 752, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
162 => 753, 164 => 108, 176 => 109, 194 => 110,
214 => 111, 228 => 754, 229 => 755, 240 => 756,
others => 0),
441 =>
(others => 0),
442 =>
(others => 0),
443 =>
(134 => 40, 181 => 759, 215 => 42, others => 0),
444 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 760,
222 => 433, 225 => 434, 242 => 435, others => 0),
445 =>
(others => 0),
446 =>
(others => 0),
447 =>
(others => 0),
448 =>
(55 => 72, 56 => 182, 113 => 764, 171 => 184,
others => 0),
449 =>
(158 => 521, others => 0),
450 =>
(others => 0),
451 =>
(5 => 766, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 767,
others => 0),
452 =>
(55 => 72, 56 => 182, 113 => 768, 171 => 184,
others => 0),
453 =>
(12 => 771, others => 0),
454 =>
(others => 0),
455 =>
(others => 0),
456 =>
(12 => 776, others => 0),
457 =>
(12 => 778, others => 0),
458 =>
(others => 0),
459 =>
(others => 0),
460 =>
(others => 0),
461 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 780, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
462 =>
(others => 0),
463 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 781, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
464 =>
(196 => 784, others => 0),
465 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 785, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
466 =>
(others => 0),
467 =>
(others => 0),
468 =>
(others => 0),
469 =>
(others => 0),
470 =>
(others => 0),
471 =>
(others => 0),
472 =>
(others => 0),
473 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 208 => 789, 214 => 111,
221 => 274, others => 0),
474 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 208 => 791, 214 => 111,
221 => 274, others => 0),
475 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 208 => 793, 214 => 111,
221 => 274, others => 0),
476 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 794, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
477 =>
(others => 0),
478 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 267, 94 => 268,
121 => 105, 134 => 269, 156 => 270, 164 => 108,
174 => 796, 176 => 109, 194 => 110, 202 => 272,
208 => 273, 214 => 111, 221 => 274, others => 0),
479 =>
(others => 0),
480 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 799,
others => 0),
481 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 800,
others => 0),
482 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 801,
others => 0),
483 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 802,
others => 0),
484 =>
(others => 0),
485 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 804,
others => 0),
486 =>
(others => 0),
487 =>
(others => 0),
488 =>
(others => 0),
489 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 153 => 805, 154 => 806, 156 => 270,
164 => 108, 176 => 344, 194 => 110, 198 => 807,
199 => 808, 202 => 272, 214 => 111, 221 => 809,
others => 0),
490 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 810,
others => 0),
491 =>
(others => 0),
492 =>
(others => 0),
493 =>
(others => 0),
494 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 811,
others => 0),
495 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 812,
others => 0),
496 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 813,
others => 0),
497 =>
(134 => 40, 181 => 815, 215 => 42, others => 0),
498 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 816,
222 => 433, 225 => 434, 242 => 435, others => 0),
499 =>
(others => 0),
500 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 821, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
501 =>
(others => 0),
502 =>
(others => 0),
503 =>
(134 => 40, 181 => 824, 215 => 42, others => 0),
504 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
505 =>
(12 => 828, others => 0),
506 =>
(others => 0),
507 =>
(others => 0),
508 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 831, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
509 =>
(134 => 40, 181 => 833, 215 => 42, others => 0),
510 =>
(others => 0),
511 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 835, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
512 =>
(134 => 40, 181 => 837, 215 => 42, others => 0),
513 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
514 =>
(12 => 841, others => 0),
515 =>
(others => 0),
516 =>
(12 => 844, others => 0),
517 =>
(134 => 40, 181 => 845, 215 => 42, others => 0),
518 =>
(134 => 40, 181 => 847, 215 => 42, others => 0),
519 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 848,
222 => 433, 225 => 434, 242 => 435, others => 0),
520 =>
(others => 0),
521 =>
(12 => 852, others => 0),
522 =>
(others => 0),
523 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 855, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
524 =>
(others => 0),
525 =>
(12 => 860, others => 0),
526 =>
(12 => 864, others => 0),
527 =>
(others => 0),
528 =>
(134 => 40, 181 => 866, 215 => 42, others => 0),
529 =>
(others => 0),
530 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 867, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
531 =>
(55 => 72, 56 => 182, 113 => 868, 171 => 184,
others => 0),
532 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 873, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 874, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
533 =>
(others => 0),
534 =>
(5 => 878, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 879,
others => 0),
535 =>
(55 => 72, 56 => 182, 113 => 880, 171 => 184,
others => 0),
536 =>
(others => 0),
537 =>
(others => 0),
538 =>
(others => 0),
539 =>
(others => 0),
540 =>
(others => 0),
541 =>
(55 => 72, 56 => 182, 113 => 883, 171 => 184,
others => 0),
542 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 887, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
543 =>
(others => 0),
544 =>
(others => 0),
545 =>
(5 => 891, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 892,
others => 0),
546 =>
(55 => 72, 56 => 182, 113 => 893, 171 => 184,
others => 0),
547 =>
(others => 0),
548 =>
(others => 0),
549 =>
(71 => 898, others => 0),
550 =>
(others => 0),
551 =>
(others => 0),
552 =>
(others => 0),
553 =>
(others => 0),
554 =>
(others => 0),
555 =>
(others => 0),
556 =>
(others => 0),
557 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 905, others => 0),
558 =>
(others => 0),
559 =>
(others => 0),
560 =>
(others => 0),
561 =>
(9 => 911, others => 0),
562 =>
(others => 0),
563 =>
(others => 0),
564 =>
(others => 0),
565 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
123 => 921, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 228 => 922,
229 => 923, others => 0),
566 =>
(others => 0),
567 =>
(others => 0),
568 =>
(others => 0),
569 =>
(others => 0),
570 =>
(others => 0),
571 =>
(others => 0),
572 =>
(others => 0),
573 =>
(others => 0),
574 =>
(others => 0),
575 =>
(others => 0),
576 =>
(others => 0),
577 =>
(others => 0),
578 =>
(12 => 930, others => 0),
579 =>
(others => 0),
580 =>
(others => 0),
581 =>
(others => 0),
582 =>
(96 => 567, 98 => 568, 99 => 569, 100 => 933,
101 => 571, 102 => 572, 105 => 573, 106 => 574,
108 => 575, 114 => 576, 116 => 577, 117 => 934,
118 => 579, 140 => 580, others => 0),
583 =>
(12 => 936, others => 0),
584 =>
(others => 0),
585 =>
(others => 0),
586 =>
(12 => 939, others => 0),
587 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 941, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
588 =>
(134 => 40, 181 => 943, 215 => 42, others => 0),
589 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
590 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 948, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
591 =>
(others => 0),
592 =>
(12 => 951, others => 0),
593 =>
(12 => 953, others => 0),
594 =>
(others => 0),
595 =>
(12 => 956, others => 0),
596 =>
(others => 0),
597 =>
(others => 0),
598 =>
(12 => 960, others => 0),
599 =>
(12 => 963, others => 0),
600 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 965, others => 0),
601 =>
(5 => 967, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 968,
others => 0),
602 =>
(others => 0),
603 =>
(12 => 972, others => 0),
604 =>
(12 => 975, others => 0),
605 =>
(others => 0),
606 =>
(others => 0),
607 =>
(others => 0),
608 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 981, others => 0),
609 =>
(others => 0),
610 =>
(others => 0),
611 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 982, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
612 =>
(others => 0),
613 =>
(others => 0),
614 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 984, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
615 =>
(others => 0),
616 =>
(others => 0),
617 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 986, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
618 =>
(55 => 72, 56 => 182, 113 => 987, 171 => 184,
others => 0),
619 =>
(others => 0),
620 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 989, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
621 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 992, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
622 =>
(others => 0),
623 =>
(5 => 995, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 996,
others => 0),
624 =>
(55 => 72, 56 => 182, 113 => 997, 171 => 184,
others => 0),
625 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 998, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
626 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 999, others => 0),
627 =>
(others => 0),
628 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1000, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
629 =>
(10 => 197, 14 => 1005, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 1006, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
630 =>
(others => 0),
631 =>
(others => 0),
632 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1009, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
633 =>
(10 => 197, 14 => 1014, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 1015, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
634 =>
(others => 0),
635 =>
(others => 0),
636 =>
(12 => 1021, others => 0),
637 =>
(120 => 210, 167 => 222, 179 => 229, 183 => 1022,
184 => 232, 232 => 239, others => 0),
638 =>
(others => 0),
639 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 1023, 66 => 1024, 90 => 104,
91 => 1025, 94 => 268, 121 => 105, 134 => 106,
156 => 270, 164 => 108, 166 => 343, 176 => 344,
194 => 110, 199 => 345, 202 => 272, 208 => 273,
214 => 111, 221 => 348, others => 0),
640 =>
(others => 0),
641 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1028, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
642 =>
(7 => 352, 14 => 266, 94 => 268, 134 => 353,
202 => 272, others => 0),
643 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 340, 66 => 341,
90 => 104, 91 => 342, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
203 => 1030, 208 => 273, 214 => 111, 221 => 348,
others => 0),
644 =>
(others => 0),
645 =>
(others => 0),
646 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 344,
194 => 110, 198 => 1032, 199 => 808, 202 => 272,
214 => 111, 221 => 1033, others => 0),
647 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1034,
others => 0),
648 =>
(others => 0),
649 =>
(others => 0),
650 =>
(others => 0),
651 =>
(55 => 1035, others => 0),
652 =>
(55 => 1036, others => 0),
653 =>
(12 => 1039, others => 0),
654 =>
(57 => 1040, 134 => 40, 181 => 49, 215 => 50,
others => 0),
655 =>
(52 => 1041, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
656 =>
(others => 0),
657 =>
(others => 0),
658 =>
(others => 0),
659 =>
(11 => 1047, others => 0),
660 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1048, others => 0),
661 =>
(others => 0),
662 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1050, others => 0),
663 =>
(others => 0),
664 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1054, others => 0),
665 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1058, others => 0),
666 =>
(others => 0),
667 =>
(others => 0),
668 =>
(others => 0),
669 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1061, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
670 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1065, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 1066, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
671 =>
(others => 0),
672 =>
(others => 0),
673 =>
(55 => 72, 56 => 182, 171 => 1069, others => 0),
674 =>
(others => 0),
675 =>
(6 => 1086, 44 => 1087, 47 => 1088, 82 => 1089,
95 => 1090, 140 => 1091, 142 => 1092, 155 => 1093,
165 => 1094, 205 => 1095, 207 => 1096, 220 => 1097,
239 => 1098, 240 => 1099, others => 0),
676 =>
(others => 0),
677 =>
(12 => 1105, 144 => 1106, others => 0),
678 =>
(12 => 1108, others => 0),
679 =>
(others => 0),
680 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 1117, 235 => 1118,
236 => 1119, others => 0),
681 =>
(others => 0),
682 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 1122, 229 => 923,
others => 0),
683 =>
(others => 0),
684 =>
(12 => 1124, 144 => 1125, others => 0),
685 =>
(12 => 1127, others => 0),
686 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 1139,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
687 =>
(others => 0),
688 =>
(12 => 276, others => 0),
689 =>
(others => 0),
690 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 1147, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
691 =>
(others => 0),
692 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1157, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
693 =>
(others => 0),
694 =>
(others => 0),
695 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1159, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
696 =>
(others => 0),
697 =>
(others => 0),
698 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1161,
222 => 433, 225 => 434, 242 => 435, others => 0),
699 =>
(others => 0),
700 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1162,
222 => 433, 225 => 434, 242 => 435, others => 0),
701 =>
(others => 0),
702 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1163,
222 => 433, 225 => 434, 242 => 435, others => 0),
703 =>
(others => 0),
704 =>
(213 => 1168, others => 0),
705 =>
(others => 0),
706 =>
(others => 0),
707 =>
(others => 0),
708 =>
(others => 0),
709 =>
(others => 0),
710 =>
(others => 0),
711 =>
(others => 0),
712 =>
(others => 0),
713 =>
(others => 0),
714 =>
(others => 0),
715 =>
(others => 0),
716 =>
(others => 0),
717 =>
(others => 0),
718 =>
(others => 0),
719 =>
(others => 0),
720 =>
(others => 0),
721 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1186, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
722 =>
(others => 0),
723 =>
(others => 0),
724 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1189, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
725 =>
(others => 0),
726 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1191,
222 => 433, 225 => 434, 242 => 435, others => 0),
727 =>
(others => 0),
728 =>
(others => 0),
729 =>
(others => 0),
730 =>
(others => 0),
731 =>
(157 => 1201, others => 0),
732 =>
(others => 0),
733 =>
(others => 0),
734 =>
(others => 0),
735 =>
(others => 0),
736 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1207, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
737 =>
(86 => 1209, 218 => 1210, others => 0),
738 =>
(134 => 40, 181 => 1212, 215 => 42, others => 0),
739 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 733, 151 => 425,
156 => 426, 159 => 427, 164 => 108, 173 => 428,
176 => 109, 194 => 110, 197 => 429, 210 => 430,
214 => 111, 216 => 431, 222 => 433, 242 => 734,
others => 0),
740 =>
(others => 0),
741 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 1213,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 222 => 433,
225 => 1214, 242 => 435, others => 0),
742 =>
(others => 0),
743 =>
(others => 0),
744 =>
(others => 0),
745 =>
(others => 0),
746 =>
(others => 0),
747 =>
(12 => 1221, others => 0),
748 =>
(5 => 1224, 18 => 102, 44 => 752, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
162 => 1225, 164 => 108, 176 => 109, 194 => 110,
214 => 111, 228 => 754, 229 => 923, 240 => 756,
others => 0),
749 =>
(others => 0),
750 =>
(5 => 1224, 18 => 102, 44 => 752, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
162 => 1228, 164 => 108, 176 => 109, 194 => 110,
214 => 111, 228 => 754, 229 => 923, 240 => 756,
others => 0),
751 =>
(others => 0),
752 =>
(others => 0),
753 =>
(12 => 1232, others => 0),
754 =>
(others => 0),
755 =>
(60 => 1236, 62 => 1237, 200 => 1238, 211 => 1239,
others => 0),
756 =>
(others => 0),
757 =>
(others => 0),
758 =>
(others => 0),
759 =>
(others => 0),
760 =>
(others => 0),
761 =>
(134 => 40, 181 => 1244, 215 => 42, others => 0),
762 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1245,
222 => 433, 225 => 434, 242 => 435, others => 0),
763 =>
(12 => 1247, others => 0),
764 =>
(others => 0),
765 =>
(others => 0),
766 =>
(12 => 1251, others => 0),
767 =>
(12 => 1253, others => 0),
768 =>
(others => 0),
769 =>
(55 => 72, 56 => 182, 113 => 1255, 171 => 184,
others => 0),
770 =>
(158 => 874, others => 0),
771 =>
(others => 0),
772 =>
(5 => 1257, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1258,
others => 0),
773 =>
(55 => 72, 56 => 182, 113 => 1259, 171 => 184,
others => 0),
774 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1260, others => 0),
775 =>
(14 => 1005, others => 0),
776 =>
(others => 0),
777 =>
(14 => 1014, others => 0),
778 =>
(others => 0),
779 =>
(others => 0),
780 =>
(others => 0),
781 =>
(others => 0),
782 =>
(others => 0),
783 =>
(others => 0),
784 =>
(55 => 718, 143 => 1264, 150 => 1265, others => 0),
785 =>
(others => 0),
786 =>
(others => 0),
787 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 340, 66 => 341,
90 => 104, 91 => 342, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
203 => 346, 204 => 1267, 208 => 273, 214 => 111,
221 => 348, others => 0),
788 =>
(others => 0),
789 =>
(others => 0),
790 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 208 => 1268, 214 => 111,
221 => 274, others => 0),
791 =>
(others => 0),
792 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 208 => 1269, 214 => 111,
221 => 274, others => 0),
793 =>
(others => 0),
794 =>
(others => 0),
795 =>
(others => 0),
796 =>
(others => 0),
797 =>
(others => 0),
798 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 267, 94 => 268,
121 => 105, 134 => 269, 156 => 270, 164 => 108,
174 => 1271, 176 => 109, 194 => 110, 202 => 272,
208 => 273, 214 => 111, 221 => 274, others => 0),
799 =>
(others => 0),
800 =>
(others => 0),
801 =>
(others => 0),
802 =>
(others => 0),
803 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 153 => 805, 154 => 1272, 156 => 270,
164 => 108, 176 => 344, 194 => 110, 198 => 807,
199 => 808, 202 => 272, 214 => 111, 221 => 809,
others => 0),
804 =>
(others => 0),
805 =>
(152 => 1274, others => 0),
806 =>
(others => 0),
807 =>
(others => 0),
808 =>
(others => 0),
809 =>
(others => 0),
810 =>
(others => 0),
811 =>
(others => 0),
812 =>
(others => 0),
813 =>
(others => 0),
814 =>
(others => 0),
815 =>
(others => 0),
816 =>
(others => 0),
817 =>
(134 => 40, 181 => 1280, 215 => 42, others => 0),
818 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1281,
222 => 433, 225 => 434, 242 => 435, others => 0),
819 =>
(134 => 40, 181 => 1283, 215 => 42, others => 0),
820 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1284,
222 => 433, 225 => 434, 242 => 435, others => 0),
821 =>
(others => 0),
822 =>
(others => 0),
823 =>
(others => 0),
824 =>
(others => 0),
825 =>
(134 => 40, 181 => 1289, 215 => 42, others => 0),
826 =>
(others => 0),
827 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 1290, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
828 =>
(others => 0),
829 =>
(others => 0),
830 =>
(134 => 40, 181 => 1293, 215 => 42, others => 0),
831 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
832 =>
(others => 0),
833 =>
(others => 0),
834 =>
(134 => 40, 181 => 1297, 215 => 42, others => 0),
835 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
836 =>
(others => 0),
837 =>
(others => 0),
838 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 1301, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
839 =>
(134 => 40, 181 => 1303, 215 => 42, others => 0),
840 =>
(others => 0),
841 =>
(others => 0),
842 =>
(12 => 1308, others => 0),
843 =>
(others => 0),
844 =>
(others => 0),
845 =>
(12 => 1312, others => 0),
846 =>
(others => 0),
847 =>
(others => 0),
848 =>
(others => 0),
849 =>
(134 => 40, 181 => 1317, 215 => 42, others => 0),
850 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1318,
222 => 433, 225 => 434, 242 => 435, others => 0),
851 =>
(others => 0),
852 =>
(others => 0),
853 =>
(134 => 40, 181 => 1321, 215 => 42, others => 0),
854 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1322,
222 => 433, 225 => 434, 242 => 435, others => 0),
855 =>
(others => 0),
856 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1325, others => 0),
857 =>
(others => 0),
858 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1326, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
859 =>
(10 => 197, 14 => 1331, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 1332, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
860 =>
(others => 0),
861 =>
(others => 0),
862 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1335, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
863 =>
(10 => 197, 14 => 1340, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 1341, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
864 =>
(others => 0),
865 =>
(others => 0),
866 =>
(12 => 1347, others => 0),
867 =>
(12 => 1349, others => 0),
868 =>
(others => 0),
869 =>
(12 => 1352, others => 0),
870 =>
(134 => 40, 181 => 1353, 215 => 42, others => 0),
871 =>
(134 => 40, 181 => 1355, 215 => 42, others => 0),
872 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1356,
222 => 433, 225 => 434, 242 => 435, others => 0),
873 =>
(others => 0),
874 =>
(12 => 1360, others => 0),
875 =>
(others => 0),
876 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1363, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
877 =>
(others => 0),
878 =>
(12 => 1368, others => 0),
879 =>
(12 => 1372, others => 0),
880 =>
(others => 0),
881 =>
(134 => 40, 181 => 1374, 215 => 42, others => 0),
882 =>
(others => 0),
883 =>
(others => 0),
884 =>
(12 => 1377, others => 0),
885 =>
(12 => 1379, others => 0),
886 =>
(12 => 1383, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 1384, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
887 =>
(12 => 1386, others => 0),
888 =>
(others => 0),
889 =>
(134 => 40, 181 => 1387, 215 => 42, others => 0),
890 =>
(others => 0),
891 =>
(12 => 1391, others => 0),
892 =>
(12 => 1394, others => 0),
893 =>
(others => 0),
894 =>
(others => 0),
895 =>
(5 => 1397, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1398,
others => 0),
896 =>
(55 => 72, 56 => 548, 72 => 1399, others => 0),
897 =>
(others => 0),
898 =>
(others => 0),
899 =>
(others => 0),
900 =>
(others => 0),
901 =>
(others => 0),
902 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1403, others => 0),
903 =>
(others => 0),
904 =>
(others => 0),
905 =>
(12 => 1407, others => 0),
906 =>
(others => 0),
907 =>
(others => 0),
908 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1408, others => 0),
909 =>
(others => 0),
910 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1410, others => 0),
911 =>
(others => 0),
912 =>
(others => 0),
913 =>
(others => 0),
914 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 1414, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 138 => 1415,
156 => 1416, 164 => 108, 176 => 344, 194 => 110,
199 => 1417, 202 => 272, 214 => 111, 221 => 1418,
229 => 1419, others => 0),
915 =>
(others => 0),
916 =>
(others => 0),
917 =>
(others => 0),
918 =>
(others => 0),
919 =>
(others => 0),
920 =>
(others => 0),
921 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 1426, 229 => 923,
others => 0),
922 =>
(others => 0),
923 =>
(60 => 1236, 62 => 1237, 200 => 1238, 211 => 1239,
others => 0),
924 =>
(others => 0),
925 =>
(others => 0),
926 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1430, others => 0),
927 =>
(others => 0),
928 =>
(others => 0),
929 =>
(others => 0),
930 =>
(others => 0),
931 =>
(9 => 1433, others => 0),
932 =>
(others => 0),
933 =>
(others => 0),
934 =>
(12 => 1437, others => 0),
935 =>
(others => 0),
936 =>
(others => 0),
937 =>
(12 => 1440, others => 0),
938 =>
(others => 0),
939 =>
(others => 0),
940 =>
(134 => 40, 181 => 1443, 215 => 42, others => 0),
941 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
942 =>
(others => 0),
943 =>
(others => 0),
944 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 1447, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
945 =>
(134 => 40, 181 => 1449, 215 => 42, others => 0),
946 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 1451, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
947 =>
(134 => 40, 181 => 1453, 215 => 42, others => 0),
948 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
949 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1456, others => 0),
950 =>
(others => 0),
951 =>
(others => 0),
952 =>
(others => 0),
953 =>
(others => 0),
954 =>
(others => 0),
955 =>
(others => 0),
956 =>
(others => 0),
957 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1461, others => 0),
958 =>
(others => 0),
959 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1462, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
960 =>
(others => 0),
961 =>
(others => 0),
962 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1464, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
963 =>
(others => 0),
964 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1470, others => 0),
965 =>
(12 => 1473, others => 0),
966 =>
(others => 0),
967 =>
(12 => 1477, others => 0),
968 =>
(12 => 1480, others => 0),
969 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1481, others => 0),
970 =>
(others => 0),
971 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1482, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
972 =>
(others => 0),
973 =>
(others => 0),
974 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1484, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
975 =>
(others => 0),
976 =>
(others => 0),
977 =>
(others => 0),
978 =>
(55 => 72, 56 => 182, 113 => 1489, 171 => 184,
others => 0),
979 =>
(5 => 1491, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1492,
others => 0),
980 =>
(55 => 72, 56 => 182, 113 => 1493, 171 => 184,
others => 0),
981 =>
(others => 0),
982 =>
(12 => 1495, others => 0),
983 =>
(others => 0),
984 =>
(12 => 1497, others => 0),
985 =>
(others => 0),
986 =>
(12 => 1499, others => 0),
987 =>
(others => 0),
988 =>
(others => 0),
989 =>
(12 => 1502, others => 0),
990 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 1504, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
991 =>
(134 => 40, 181 => 1506, 215 => 42, others => 0),
992 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
993 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 1511, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
994 =>
(others => 0),
995 =>
(12 => 1514, others => 0),
996 =>
(12 => 1516, others => 0),
997 =>
(others => 0),
998 =>
(12 => 1519, others => 0),
999 =>
(12 => 1523, others => 0),
1000 =>
(12 => 1525, others => 0),
1001 =>
(12 => 1527, others => 0),
1002 =>
(61 => 1529, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1003 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1532,
222 => 433, 225 => 434, 242 => 435, others => 0),
1004 =>
(12 => 1534, others => 0),
1005 =>
(12 => 1536, others => 0),
1006 =>
(others => 0),
1007 =>
(others => 0),
1008 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1541, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1009 =>
(12 => 1543, others => 0),
1010 =>
(12 => 1545, others => 0),
1011 =>
(61 => 1547, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1012 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1548,
222 => 433, 225 => 434, 242 => 435, others => 0),
1013 =>
(12 => 1550, others => 0),
1014 =>
(12 => 1552, others => 0),
1015 =>
(others => 0),
1016 =>
(others => 0),
1017 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1557, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1018 =>
(5 => 1559, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1560,
others => 0),
1019 =>
(others => 0),
1020 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 1561, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
1021 =>
(others => 0),
1022 =>
(others => 0),
1023 =>
(others => 0),
1024 =>
(others => 0),
1025 =>
(others => 0),
1026 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 1563, 66 => 1024, 90 => 104,
91 => 1025, 94 => 268, 121 => 105, 134 => 106,
156 => 270, 164 => 108, 166 => 343, 176 => 344,
194 => 110, 199 => 345, 202 => 272, 208 => 273,
214 => 111, 221 => 348, others => 0),
1027 =>
(others => 0),
1028 =>
(others => 0),
1029 =>
(others => 0),
1030 =>
(others => 0),
1031 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 340, 66 => 341,
90 => 104, 91 => 342, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
203 => 1565, 208 => 273, 214 => 111, 221 => 348,
others => 0),
1032 =>
(others => 0),
1033 =>
(others => 0),
1034 =>
(others => 0),
1035 =>
(12 => 1108, others => 0),
1036 =>
(12 => 1127, others => 0),
1037 =>
(55 => 72, 56 => 182, 113 => 1568, 171 => 184,
others => 0),
1038 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 205, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1039 =>
(others => 0),
1040 =>
(12 => 1571, others => 0),
1041 =>
(others => 0),
1042 =>
(57 => 1574, 134 => 40, 181 => 49, 215 => 50,
others => 0),
1043 =>
(52 => 1575, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
1044 =>
(5 => 1577, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1578,
others => 0),
1045 =>
(55 => 72, 56 => 182, 113 => 1579, 171 => 184,
others => 0),
1046 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1580, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1047 =>
(others => 0),
1048 =>
(others => 0),
1049 =>
(others => 0),
1050 =>
(others => 0),
1051 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1584, others => 0),
1052 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1586, others => 0),
1053 =>
(others => 0),
1054 =>
(others => 0),
1055 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1590, others => 0),
1056 =>
(others => 0),
1057 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1594, others => 0),
1058 =>
(others => 0),
1059 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1596, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1060 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1597, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1061 =>
(12 => 1599, others => 0),
1062 =>
(12 => 1601, others => 0),
1063 =>
(134 => 40, 181 => 1603, 215 => 42, others => 0),
1064 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1604,
222 => 433, 225 => 434, 242 => 435, others => 0),
1065 =>
(others => 0),
1066 =>
(12 => 1608, others => 0),
1067 =>
(others => 0),
1068 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1611, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1069 =>
(others => 0),
1070 =>
(205 => 1615, others => 0),
1071 =>
(others => 0),
1072 =>
(10 => 1619, 16 => 198, 17 => 199, 38 => 1620,
40 => 1621, 42 => 1622, 55 => 72, 56 => 1623,
173 => 226, 206 => 235, 248 => 1624, others => 0),
1073 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1625,
others => 0),
1074 =>
(12 => 1627, others => 0),
1075 =>
(others => 0),
1076 =>
(others => 0),
1077 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 1630, 229 => 923,
others => 0),
1078 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1631, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1079 =>
(205 => 1634, others => 0),
1080 =>
(51 => 1637, 53 => 1638, 81 => 1639, others => 0),
1081 =>
(9 => 1640, others => 0),
1082 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1641,
others => 0),
1083 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1642,
others => 0),
1084 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
123 => 1646, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 228 => 1647,
229 => 923, others => 0),
1085 =>
(others => 0),
1086 =>
(others => 0),
1087 =>
(others => 0),
1088 =>
(others => 0),
1089 =>
(others => 0),
1090 =>
(others => 0),
1091 =>
(others => 0),
1092 =>
(others => 0),
1093 =>
(others => 0),
1094 =>
(others => 0),
1095 =>
(others => 0),
1096 =>
(others => 0),
1097 =>
(others => 0),
1098 =>
(12 => 1654, others => 0),
1099 =>
(others => 0),
1100 =>
(others => 0),
1101 =>
(6 => 1086, 44 => 1087, 47 => 1088, 82 => 1089,
95 => 1090, 140 => 1091, 142 => 1092, 155 => 1093,
165 => 1094, 205 => 1095, 207 => 1096, 220 => 1097,
239 => 1661, 240 => 1099, others => 0),
1102 =>
(others => 0),
1103 =>
(55 => 72, 56 => 548, 72 => 549, others => 0),
1104 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 1663, 235 => 1118,
236 => 1119, others => 0),
1105 =>
(others => 0),
1106 =>
(12 => 1668, others => 0),
1107 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1671, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1108 =>
(others => 0),
1109 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 235 => 1118, 236 => 1674,
others => 0),
1110 =>
(others => 0),
1111 =>
(others => 0),
1112 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 1677, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1113 =>
(55 => 1679, others => 0),
1114 =>
(others => 0),
1115 =>
(others => 0),
1116 =>
(others => 0),
1117 =>
(others => 0),
1118 =>
(others => 0),
1119 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 235 => 1684, others => 0),
1120 =>
(others => 0),
1121 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 1686, 235 => 1118,
236 => 1119, others => 0),
1122 =>
(12 => 1688, others => 0),
1123 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 1690,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
1124 =>
(others => 0),
1125 =>
(12 => 1693, others => 0),
1126 =>
(10 => 1701, 16 => 198, 17 => 199, 75 => 1702,
120 => 1703, 122 => 1704, 173 => 226, 179 => 1705,
180 => 1706, 191 => 1707, 192 => 1708, 206 => 235,
others => 0),
1127 =>
(others => 0),
1128 =>
(57 => 1710, 134 => 40, 181 => 49, 215 => 50,
others => 0),
1129 =>
(10 => 1135, 16 => 198, 17 => 199, 38 => 1712,
55 => 72, 56 => 1623, 78 => 1136, 122 => 1137,
173 => 226, 180 => 1138, 187 => 1713, 188 => 1714,
189 => 1715, 206 => 235, others => 0),
1130 =>
(others => 0),
1131 =>
(others => 0),
1132 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 1719, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1133 =>
(52 => 1720, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
1134 =>
(others => 0),
1135 =>
(others => 0),
1136 =>
(others => 0),
1137 =>
(others => 0),
1138 =>
(others => 0),
1139 =>
(others => 0),
1140 =>
(others => 0),
1141 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 189 => 1725,
206 => 235, others => 0),
1142 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 1727,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
1143 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 499, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1144 =>
(others => 0),
1145 =>
(others => 0),
1146 =>
(others => 0),
1147 =>
(others => 0),
1148 =>
(111 => 1731, others => 0),
1149 =>
(others => 0),
1150 =>
(others => 0),
1151 =>
(others => 0),
1152 =>
(others => 0),
1153 =>
(others => 0),
1154 =>
(others => 0),
1155 =>
(18 => 102, 36 => 1736, 37 => 1737, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 173 => 1738, 176 => 109, 194 => 110,
214 => 111, 229 => 1739, others => 0),
1156 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1740, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1157 =>
(others => 0),
1158 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1742,
222 => 433, 225 => 434, 242 => 435, others => 0),
1159 =>
(others => 0),
1160 =>
(others => 0),
1161 =>
(others => 0),
1162 =>
(others => 0),
1163 =>
(others => 0),
1164 =>
(others => 0),
1165 =>
(3 => 697, 4 => 698, 18 => 102, 58 => 699,
59 => 700, 63 => 103, 76 => 701, 77 => 702,
90 => 104, 121 => 105, 134 => 106, 156 => 703,
164 => 108, 176 => 109, 194 => 110, 212 => 1746,
214 => 111, 238 => 705, others => 0),
1166 =>
(others => 0),
1167 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1748,
222 => 433, 225 => 434, 242 => 435, others => 0),
1168 =>
(others => 0),
1169 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 1754, 229 => 923,
others => 0),
1170 =>
(others => 0),
1171 =>
(others => 0),
1172 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1755,
222 => 433, 225 => 434, 242 => 435, others => 0),
1173 =>
(others => 0),
1174 =>
(others => 0),
1175 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1757, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1176 =>
(others => 0),
1177 =>
(others => 0),
1178 =>
(others => 0),
1179 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1759,
222 => 433, 225 => 434, 242 => 435, others => 0),
1180 =>
(others => 0),
1181 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1761, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1182 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 1763, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 156 => 1416,
164 => 108, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
1183 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 1765, 229 => 923,
others => 0),
1184 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1766,
222 => 433, 225 => 434, 242 => 435, others => 0),
1185 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1767,
222 => 433, 225 => 434, 242 => 435, others => 0),
1186 =>
(others => 0),
1187 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1769, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1188 =>
(others => 0),
1189 =>
(others => 0),
1190 =>
(others => 0),
1191 =>
(others => 0),
1192 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1773,
222 => 433, 225 => 434, 242 => 435, others => 0),
1193 =>
(29 => 1775, others => 0),
1194 =>
(86 => 1209, 218 => 1776, others => 0),
1195 =>
(others => 0),
1196 =>
(others => 0),
1197 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
55 => 72, 56 => 182, 63 => 103, 90 => 104,
91 => 1779, 94 => 268, 113 => 1780, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 171 => 184,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1198 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1781,
222 => 433, 225 => 434, 242 => 435, others => 0),
1199 =>
(others => 0),
1200 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1782, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1201 =>
(others => 0),
1202 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1785, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1203 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1786,
222 => 433, 225 => 434, 242 => 435, others => 0),
1204 =>
(55 => 718, 143 => 1787, 150 => 1788, others => 0),
1205 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1790, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1206 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1791,
222 => 433, 225 => 434, 242 => 435, others => 0),
1207 =>
(others => 0),
1208 =>
(32 => 1793, 55 => 1794, 83 => 1795, 134 => 40,
166 => 1796, 181 => 1797, 215 => 42, others => 0),
1209 =>
(86 => 1798, 87 => 1799, others => 0),
1210 =>
(others => 0),
1211 =>
(others => 0),
1212 =>
(others => 0),
1213 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 733, 151 => 425,
156 => 426, 159 => 427, 164 => 108, 173 => 428,
176 => 109, 194 => 110, 197 => 429, 210 => 430,
214 => 111, 216 => 431, 222 => 433, 242 => 734,
others => 0),
1214 =>
(others => 0),
1215 =>
(others => 0),
1216 =>
(86 => 1209, 218 => 1802, others => 0),
1217 =>
(134 => 40, 181 => 1804, 215 => 42, others => 0),
1218 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1805, others => 0),
1219 =>
(others => 0),
1220 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1806, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1221 =>
(others => 0),
1222 =>
(others => 0),
1223 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1809, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1224 =>
(others => 0),
1225 =>
(12 => 1812, others => 0),
1226 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 1813, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 138 => 1814,
156 => 1416, 164 => 108, 176 => 344, 194 => 110,
199 => 1417, 202 => 272, 214 => 111, 221 => 1418,
229 => 1419, others => 0),
1227 =>
(5 => 1224, 18 => 102, 44 => 752, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
162 => 1815, 164 => 108, 176 => 109, 194 => 110,
214 => 111, 228 => 754, 229 => 923, 240 => 756,
others => 0),
1228 =>
(12 => 1818, others => 0),
1229 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1819, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1230 =>
(others => 0),
1231 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1820, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1232 =>
(others => 0),
1233 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1822, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1234 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1823,
others => 0),
1235 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1824,
others => 0),
1236 =>
(others => 0),
1237 =>
(others => 0),
1238 =>
(others => 0),
1239 =>
(others => 0),
1240 =>
(others => 0),
1241 =>
(86 => 1209, 218 => 1825, others => 0),
1242 =>
(134 => 40, 181 => 1827, 215 => 42, others => 0),
1243 =>
(others => 0),
1244 =>
(others => 0),
1245 =>
(others => 0),
1246 =>
(158 => 1066, others => 0),
1247 =>
(others => 0),
1248 =>
(12 => 1832, others => 0),
1249 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1833, others => 0),
1250 =>
(14 => 1331, others => 0),
1251 =>
(others => 0),
1252 =>
(14 => 1340, others => 0),
1253 =>
(others => 0),
1254 =>
(others => 0),
1255 =>
(others => 0),
1256 =>
(others => 0),
1257 =>
(12 => 1838, others => 0),
1258 =>
(12 => 1840, others => 0),
1259 =>
(others => 0),
1260 =>
(12 => 1843, others => 0),
1261 =>
(5 => 1845, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1846,
others => 0),
1262 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1847, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1263 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1848, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1264 =>
(others => 0),
1265 =>
(others => 0),
1266 =>
(27 => 1852, others => 0),
1267 =>
(others => 0),
1268 =>
(others => 0),
1269 =>
(others => 0),
1270 =>
(others => 0),
1271 =>
(others => 0),
1272 =>
(others => 0),
1273 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 153 => 1854, 156 => 270, 164 => 108,
176 => 344, 194 => 110, 198 => 807, 199 => 808,
202 => 272, 214 => 111, 221 => 809, others => 0),
1274 =>
(others => 0),
1275 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 1856,
others => 0),
1276 =>
(others => 0),
1277 =>
(86 => 1209, 218 => 1857, others => 0),
1278 =>
(134 => 40, 181 => 1859, 215 => 42, others => 0),
1279 =>
(others => 0),
1280 =>
(others => 0),
1281 =>
(others => 0),
1282 =>
(others => 0),
1283 =>
(others => 0),
1284 =>
(others => 0),
1285 =>
(134 => 40, 181 => 1867, 215 => 42, others => 0),
1286 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1868,
222 => 433, 225 => 434, 242 => 435, others => 0),
1287 =>
(others => 0),
1288 =>
(others => 0),
1289 =>
(others => 0),
1290 =>
(others => 0),
1291 =>
(others => 0),
1292 =>
(others => 0),
1293 =>
(others => 0),
1294 =>
(134 => 40, 181 => 1873, 215 => 42, others => 0),
1295 =>
(others => 0),
1296 =>
(others => 0),
1297 =>
(others => 0),
1298 =>
(134 => 40, 181 => 1876, 215 => 42, others => 0),
1299 =>
(others => 0),
1300 =>
(134 => 40, 181 => 1878, 215 => 42, others => 0),
1301 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
1302 =>
(others => 0),
1303 =>
(others => 0),
1304 =>
(others => 0),
1305 =>
(others => 0),
1306 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1881, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1307 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1885, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 1886, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
1308 =>
(others => 0),
1309 =>
(others => 0),
1310 =>
(others => 0),
1311 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 1889, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
1312 =>
(others => 0),
1313 =>
(others => 0),
1314 =>
(86 => 1209, 218 => 1891, others => 0),
1315 =>
(134 => 40, 181 => 1893, 215 => 42, others => 0),
1316 =>
(others => 0),
1317 =>
(others => 0),
1318 =>
(others => 0),
1319 =>
(others => 0),
1320 =>
(others => 0),
1321 =>
(others => 0),
1322 =>
(others => 0),
1323 =>
(134 => 40, 181 => 1901, 215 => 42, others => 0),
1324 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1902,
222 => 433, 225 => 434, 242 => 435, others => 0),
1325 =>
(12 => 1906, others => 0),
1326 =>
(12 => 1908, others => 0),
1327 =>
(12 => 1910, others => 0),
1328 =>
(61 => 1912, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1329 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1913,
222 => 433, 225 => 434, 242 => 435, others => 0),
1330 =>
(12 => 1915, others => 0),
1331 =>
(12 => 1917, others => 0),
1332 =>
(others => 0),
1333 =>
(others => 0),
1334 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1922, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1335 =>
(12 => 1924, others => 0),
1336 =>
(12 => 1926, others => 0),
1337 =>
(61 => 1928, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1338 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1929,
222 => 433, 225 => 434, 242 => 435, others => 0),
1339 =>
(12 => 1931, others => 0),
1340 =>
(12 => 1933, others => 0),
1341 =>
(others => 0),
1342 =>
(others => 0),
1343 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1938, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1344 =>
(5 => 1940, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1941,
others => 0),
1345 =>
(others => 0),
1346 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 1942, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
1347 =>
(others => 0),
1348 =>
(others => 0),
1349 =>
(others => 0),
1350 =>
(12 => 1948, others => 0),
1351 =>
(others => 0),
1352 =>
(others => 0),
1353 =>
(12 => 1952, others => 0),
1354 =>
(others => 0),
1355 =>
(others => 0),
1356 =>
(others => 0),
1357 =>
(134 => 40, 181 => 1957, 215 => 42, others => 0),
1358 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1958,
222 => 433, 225 => 434, 242 => 435, others => 0),
1359 =>
(others => 0),
1360 =>
(others => 0),
1361 =>
(134 => 40, 181 => 1961, 215 => 42, others => 0),
1362 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 1962,
222 => 433, 225 => 434, 242 => 435, others => 0),
1363 =>
(others => 0),
1364 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 1965, others => 0),
1365 =>
(others => 0),
1366 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1966, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1367 =>
(10 => 197, 14 => 1971, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 1972, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
1368 =>
(others => 0),
1369 =>
(others => 0),
1370 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 1975, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1371 =>
(10 => 197, 14 => 1980, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 1981, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
1372 =>
(others => 0),
1373 =>
(others => 0),
1374 =>
(12 => 1987, others => 0),
1375 =>
(12 => 1990, others => 0),
1376 =>
(others => 0),
1377 =>
(others => 0),
1378 =>
(others => 0),
1379 =>
(others => 0),
1380 =>
(others => 0),
1381 =>
(12 => 1994, others => 0),
1382 =>
(12 => 1996, others => 0),
1383 =>
(others => 0),
1384 =>
(12 => 1999, others => 0),
1385 =>
(others => 0),
1386 =>
(others => 0),
1387 =>
(12 => 2003, others => 0),
1388 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2004, others => 0),
1389 =>
(others => 0),
1390 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2007, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1391 =>
(others => 0),
1392 =>
(others => 0),
1393 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2011, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1394 =>
(others => 0),
1395 =>
(others => 0),
1396 =>
(others => 0),
1397 =>
(others => 0),
1398 =>
(others => 0),
1399 =>
(others => 0),
1400 =>
(55 => 72, 56 => 548, 72 => 2017, others => 0),
1401 =>
(others => 0),
1402 =>
(others => 0),
1403 =>
(12 => 2020, others => 0),
1404 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
123 => 2024, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 228 => 2025,
229 => 923, others => 0),
1405 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
1406 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2027, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1407 =>
(others => 0),
1408 =>
(12 => 2030, others => 0),
1409 =>
(others => 0),
1410 =>
(others => 0),
1411 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2031, others => 0),
1412 =>
(others => 0),
1413 =>
(others => 0),
1414 =>
(69 => 2035, others => 0),
1415 =>
(139 => 2038, others => 0),
1416 =>
(others => 0),
1417 =>
(others => 0),
1418 =>
(others => 0),
1419 =>
(60 => 1236, 62 => 1237, 200 => 1238, 211 => 2041,
others => 0),
1420 =>
(others => 0),
1421 =>
(others => 0),
1422 =>
(55 => 72, 56 => 182, 113 => 2045, 171 => 184,
others => 0),
1423 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2046, others => 0),
1424 =>
(5 => 2048, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2049,
others => 0),
1425 =>
(55 => 72, 56 => 182, 113 => 2050, 171 => 184,
others => 0),
1426 =>
(others => 0),
1427 =>
(others => 0),
1428 =>
(others => 0),
1429 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2052, others => 0),
1430 =>
(12 => 2055, others => 0),
1431 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2056, others => 0),
1432 =>
(others => 0),
1433 =>
(others => 0),
1434 =>
(others => 0),
1435 =>
(others => 0),
1436 =>
(others => 0),
1437 =>
(others => 0),
1438 =>
(others => 0),
1439 =>
(others => 0),
1440 =>
(others => 0),
1441 =>
(others => 0),
1442 =>
(others => 0),
1443 =>
(others => 0),
1444 =>
(134 => 40, 181 => 2061, 215 => 42, others => 0),
1445 =>
(others => 0),
1446 =>
(134 => 40, 181 => 2063, 215 => 42, others => 0),
1447 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
1448 =>
(others => 0),
1449 =>
(others => 0),
1450 =>
(134 => 40, 181 => 2067, 215 => 42, others => 0),
1451 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
1452 =>
(others => 0),
1453 =>
(others => 0),
1454 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 2071, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1455 =>
(134 => 40, 181 => 2073, 215 => 42, others => 0),
1456 =>
(12 => 2075, others => 0),
1457 =>
(others => 0),
1458 =>
(others => 0),
1459 =>
(5 => 2077, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2078,
others => 0),
1460 =>
(others => 0),
1461 =>
(12 => 2081, others => 0),
1462 =>
(12 => 2083, others => 0),
1463 =>
(others => 0),
1464 =>
(12 => 2085, others => 0),
1465 =>
(others => 0),
1466 =>
(others => 0),
1467 =>
(others => 0),
1468 =>
(others => 0),
1469 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2091, others => 0),
1470 =>
(others => 0),
1471 =>
(others => 0),
1472 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2092, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1473 =>
(others => 0),
1474 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2094, others => 0),
1475 =>
(others => 0),
1476 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2095, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1477 =>
(others => 0),
1478 =>
(others => 0),
1479 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2097, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1480 =>
(others => 0),
1481 =>
(12 => 2101, others => 0),
1482 =>
(12 => 2103, others => 0),
1483 =>
(others => 0),
1484 =>
(12 => 2105, others => 0),
1485 =>
(others => 0),
1486 =>
(55 => 72, 56 => 182, 113 => 2106, 171 => 184,
others => 0),
1487 =>
(5 => 2108, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2109,
others => 0),
1488 =>
(55 => 72, 56 => 182, 113 => 2110, 171 => 184,
others => 0),
1489 =>
(others => 0),
1490 =>
(others => 0),
1491 =>
(others => 0),
1492 =>
(others => 0),
1493 =>
(others => 0),
1494 =>
(others => 0),
1495 =>
(others => 0),
1496 =>
(others => 0),
1497 =>
(others => 0),
1498 =>
(others => 0),
1499 =>
(others => 0),
1500 =>
(12 => 2118, others => 0),
1501 =>
(others => 0),
1502 =>
(others => 0),
1503 =>
(134 => 40, 181 => 2121, 215 => 42, others => 0),
1504 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
1505 =>
(others => 0),
1506 =>
(others => 0),
1507 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 2125, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1508 =>
(134 => 40, 181 => 2127, 215 => 42, others => 0),
1509 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 2129, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1510 =>
(134 => 40, 181 => 2131, 215 => 42, others => 0),
1511 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
1512 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2134, others => 0),
1513 =>
(others => 0),
1514 =>
(others => 0),
1515 =>
(others => 0),
1516 =>
(others => 0),
1517 =>
(others => 0),
1518 =>
(others => 0),
1519 =>
(others => 0),
1520 =>
(others => 0),
1521 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2139, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1522 =>
(10 => 197, 14 => 2144, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 2145, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
1523 =>
(others => 0),
1524 =>
(others => 0),
1525 =>
(others => 0),
1526 =>
(others => 0),
1527 =>
(others => 0),
1528 =>
(others => 0),
1529 =>
(others => 0),
1530 =>
(others => 0),
1531 =>
(others => 0),
1532 =>
(others => 0),
1533 =>
(others => 0),
1534 =>
(others => 0),
1535 =>
(others => 0),
1536 =>
(others => 0),
1537 =>
(61 => 2156, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1538 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2157,
222 => 433, 225 => 434, 242 => 435, others => 0),
1539 =>
(61 => 2159, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1540 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2160,
222 => 433, 225 => 434, 242 => 435, others => 0),
1541 =>
(others => 0),
1542 =>
(others => 0),
1543 =>
(others => 0),
1544 =>
(others => 0),
1545 =>
(others => 0),
1546 =>
(others => 0),
1547 =>
(others => 0),
1548 =>
(others => 0),
1549 =>
(others => 0),
1550 =>
(others => 0),
1551 =>
(others => 0),
1552 =>
(others => 0),
1553 =>
(61 => 2171, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1554 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2172,
222 => 433, 225 => 434, 242 => 435, others => 0),
1555 =>
(61 => 2174, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1556 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2175,
222 => 433, 225 => 434, 242 => 435, others => 0),
1557 =>
(others => 0),
1558 =>
(others => 0),
1559 =>
(12 => 2182, others => 0),
1560 =>
(12 => 2186, others => 0),
1561 =>
(others => 0),
1562 =>
(others => 0),
1563 =>
(others => 0),
1564 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2188, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1565 =>
(others => 0),
1566 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1671, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1567 =>
(10 => 1701, 16 => 198, 17 => 199, 75 => 1702,
120 => 1703, 122 => 1704, 173 => 226, 179 => 1705,
180 => 1706, 191 => 1707, 192 => 1708, 206 => 235,
others => 0),
1568 =>
(others => 0),
1569 =>
(55 => 72, 56 => 182, 113 => 2190, 171 => 184,
others => 0),
1570 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 520, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1571 =>
(others => 0),
1572 =>
(5 => 2192, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2193,
others => 0),
1573 =>
(55 => 72, 56 => 182, 113 => 2194, 171 => 184,
others => 0),
1574 =>
(12 => 2197, others => 0),
1575 =>
(others => 0),
1576 =>
(others => 0),
1577 =>
(12 => 2202, others => 0),
1578 =>
(12 => 2204, others => 0),
1579 =>
(others => 0),
1580 =>
(others => 0),
1581 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2206, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1582 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2207, others => 0),
1583 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2208, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1584 =>
(others => 0),
1585 =>
(others => 0),
1586 =>
(others => 0),
1587 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2212, others => 0),
1588 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2213, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1589 =>
(others => 0),
1590 =>
(others => 0),
1591 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2216, others => 0),
1592 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2218, others => 0),
1593 =>
(others => 0),
1594 =>
(others => 0),
1595 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2221, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1596 =>
(others => 0),
1597 =>
(others => 0),
1598 =>
(others => 0),
1599 =>
(others => 0),
1600 =>
(others => 0),
1601 =>
(others => 0),
1602 =>
(others => 0),
1603 =>
(others => 0),
1604 =>
(others => 0),
1605 =>
(134 => 40, 181 => 2228, 215 => 42, others => 0),
1606 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2229,
222 => 433, 225 => 434, 242 => 435, others => 0),
1607 =>
(others => 0),
1608 =>
(others => 0),
1609 =>
(134 => 40, 181 => 2232, 215 => 42, others => 0),
1610 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2233,
222 => 433, 225 => 434, 242 => 435, others => 0),
1611 =>
(others => 0),
1612 =>
(others => 0),
1613 =>
(12 => 2237, others => 0),
1614 =>
(205 => 2239, others => 0),
1615 =>
(others => 0),
1616 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2240, 229 => 923,
others => 0),
1617 =>
(others => 0),
1618 =>
(63 => 2242, 134 => 106, 164 => 108, others => 0),
1619 =>
(others => 0),
1620 =>
(others => 0),
1621 =>
(10 => 1619, 16 => 198, 17 => 199, 38 => 1620,
40 => 2243, 41 => 2244, 55 => 72, 56 => 1623,
173 => 226, 206 => 235, 248 => 2245, others => 0),
1622 =>
(others => 0),
1623 =>
(others => 0),
1624 =>
(others => 0),
1625 =>
(others => 0),
1626 =>
(others => 0),
1627 =>
(others => 0),
1628 =>
(others => 0),
1629 =>
(others => 0),
1630 =>
(9 => 2253, 12 => 2254, others => 0),
1631 =>
(others => 0),
1632 =>
(12 => 2256, others => 0),
1633 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2257, 229 => 923,
others => 0),
1634 =>
(others => 0),
1635 =>
(others => 0),
1636 =>
(others => 0),
1637 =>
(others => 0),
1638 =>
(others => 0),
1639 =>
(80 => 2260, others => 0),
1640 =>
(others => 0),
1641 =>
(201 => 2262, others => 0),
1642 =>
(201 => 2264, others => 0),
1643 =>
(others => 0),
1644 =>
(others => 0),
1645 =>
(others => 0),
1646 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2270, 229 => 923,
others => 0),
1647 =>
(others => 0),
1648 =>
(205 => 2273, others => 0),
1649 =>
(others => 0),
1650 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2275, 229 => 923,
others => 0),
1651 =>
(others => 0),
1652 =>
(9 => 2277, others => 0),
1653 =>
(others => 0),
1654 =>
(others => 0),
1655 =>
(205 => 1615, others => 0),
1656 =>
(others => 0),
1657 =>
(12 => 2284, others => 0),
1658 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2285, 229 => 923,
others => 0),
1659 =>
(205 => 1634, others => 0),
1660 =>
(others => 0),
1661 =>
(12 => 2293, others => 0),
1662 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2294, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1663 =>
(others => 0),
1664 =>
(others => 0),
1665 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 2297, 235 => 1118,
236 => 1119, others => 0),
1666 =>
(others => 0),
1667 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 2299, 235 => 1118,
236 => 1119, others => 0),
1668 =>
(others => 0),
1669 =>
(12 => 2303, others => 0),
1670 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2304,
222 => 433, 225 => 434, 242 => 435, others => 0),
1671 =>
(others => 0),
1672 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2307, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1673 =>
(others => 0),
1674 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 235 => 1684, others => 0),
1675 =>
(55 => 2310, others => 0),
1676 =>
(others => 0),
1677 =>
(others => 0),
1678 =>
(9 => 2313, others => 0),
1679 =>
(12 => 2316, others => 0),
1680 =>
(others => 0),
1681 =>
(others => 0),
1682 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 235 => 1118, 236 => 2318,
others => 0),
1683 =>
(others => 0),
1684 =>
(others => 0),
1685 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2320, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1686 =>
(others => 0),
1687 =>
(others => 0),
1688 =>
(others => 0),
1689 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2323, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1690 =>
(others => 0),
1691 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 2326,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
1692 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 2328,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
1693 =>
(others => 0),
1694 =>
(12 => 2331, others => 0),
1695 =>
(57 => 2332, 134 => 40, 181 => 49, 215 => 50,
others => 0),
1696 =>
(others => 0),
1697 =>
(others => 0),
1698 =>
(52 => 2336, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
1699 =>
(55 => 2337, others => 0),
1700 =>
(others => 0),
1701 =>
(others => 0),
1702 =>
(others => 0),
1703 =>
(others => 0),
1704 =>
(others => 0),
1705 =>
(others => 0),
1706 =>
(others => 0),
1707 =>
(others => 0),
1708 =>
(10 => 1701, 16 => 198, 17 => 199, 75 => 1702,
120 => 1703, 122 => 1704, 173 => 226, 179 => 1705,
180 => 1706, 191 => 2341, 206 => 235, others => 0),
1709 =>
(10 => 1701, 16 => 198, 17 => 199, 75 => 1702,
120 => 1703, 122 => 1704, 173 => 226, 179 => 1705,
180 => 1706, 191 => 1707, 192 => 2343, 206 => 235,
others => 0),
1710 =>
(12 => 249, others => 0),
1711 =>
(others => 0),
1712 =>
(others => 0),
1713 =>
(others => 0),
1714 =>
(10 => 1135, 16 => 198, 17 => 199, 38 => 1712,
55 => 72, 56 => 1623, 78 => 1136, 122 => 1137,
173 => 226, 180 => 1138, 187 => 2347, 189 => 1715,
206 => 235, others => 0),
1715 =>
(others => 0),
1716 =>
(57 => 2348, 134 => 40, 181 => 49, 215 => 50,
others => 0),
1717 =>
(52 => 2349, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
1718 =>
(others => 0),
1719 =>
(others => 0),
1720 =>
(others => 0),
1721 =>
(others => 0),
1722 =>
(others => 0),
1723 =>
(10 => 1135, 16 => 198, 17 => 199, 38 => 1712,
55 => 72, 56 => 1623, 78 => 1136, 122 => 1137,
173 => 226, 180 => 1138, 187 => 1713, 188 => 2354,
189 => 1715, 206 => 235, others => 0),
1724 =>
(others => 0),
1725 =>
(others => 0),
1726 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2356, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
1727 =>
(others => 0),
1728 =>
(12 => 2359, others => 0),
1729 =>
(12 => 2361, others => 0),
1730 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
110 => 2362, 121 => 105, 124 => 1149, 134 => 1150,
156 => 270, 164 => 1151, 166 => 2363, 176 => 109,
194 => 110, 202 => 272, 208 => 273, 214 => 111,
217 => 1153, 221 => 274, others => 0),
1731 =>
(others => 0),
1732 =>
(others => 0),
1733 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2367, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1734 =>
(others => 0),
1735 =>
(others => 0),
1736 =>
(others => 0),
1737 =>
(18 => 102, 36 => 2371, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
173 => 1738, 176 => 109, 194 => 110, 214 => 111,
229 => 1739, others => 0),
1738 =>
(others => 0),
1739 =>
(others => 0),
1740 =>
(others => 0),
1741 =>
(others => 0),
1742 =>
(others => 0),
1743 =>
(3 => 697, 4 => 698, 18 => 102, 58 => 699,
59 => 700, 63 => 103, 76 => 701, 77 => 702,
90 => 104, 121 => 105, 134 => 106, 156 => 703,
164 => 108, 176 => 109, 194 => 110, 212 => 2375,
214 => 111, 238 => 705, others => 0),
1744 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2376,
222 => 433, 225 => 434, 242 => 435, others => 0),
1745 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2377, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1746 =>
(others => 0),
1747 =>
(others => 0),
1748 =>
(others => 0),
1749 =>
(3 => 697, 4 => 698, 18 => 102, 58 => 699,
59 => 700, 63 => 103, 76 => 701, 77 => 702,
90 => 104, 121 => 105, 134 => 106, 156 => 703,
164 => 108, 176 => 109, 194 => 110, 212 => 2381,
214 => 111, 238 => 705, others => 0),
1750 =>
(others => 0),
1751 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2383,
222 => 433, 225 => 434, 242 => 435, others => 0),
1752 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2384, 229 => 923,
others => 0),
1753 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2386, 229 => 923,
others => 0),
1754 =>
(others => 0),
1755 =>
(others => 0),
1756 =>
(others => 0),
1757 =>
(others => 0),
1758 =>
(others => 0),
1759 =>
(74 => 2397, others => 0),
1760 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2398, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1761 =>
(others => 0),
1762 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 2399, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 156 => 1416,
164 => 108, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
1763 =>
(others => 0),
1764 =>
(60 => 1236, 62 => 1237, 200 => 1238, 211 => 2041,
others => 0),
1765 =>
(others => 0),
1766 =>
(others => 0),
1767 =>
(others => 0),
1768 =>
(others => 0),
1769 =>
(others => 0),
1770 =>
(others => 0),
1771 =>
(86 => 1209, 218 => 2404, others => 0),
1772 =>
(others => 0),
1773 =>
(others => 0),
1774 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 2409, 66 => 1024,
90 => 104, 91 => 1025, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
208 => 273, 214 => 111, 221 => 348, others => 0),
1775 =>
(29 => 2411, 30 => 2412, others => 0),
1776 =>
(others => 0),
1777 =>
(others => 0),
1778 =>
(others => 0),
1779 =>
(others => 0),
1780 =>
(others => 0),
1781 =>
(others => 0),
1782 =>
(others => 0),
1783 =>
(others => 0),
1784 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2419, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1785 =>
(others => 0),
1786 =>
(others => 0),
1787 =>
(others => 0),
1788 =>
(others => 0),
1789 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2424,
222 => 433, 225 => 434, 242 => 435, others => 0),
1790 =>
(others => 0),
1791 =>
(others => 0),
1792 =>
(others => 0),
1793 =>
(others => 0),
1794 =>
(others => 0),
1795 =>
(84 => 2431, others => 0),
1796 =>
(others => 0),
1797 =>
(others => 0),
1798 =>
(others => 0),
1799 =>
(86 => 2432, others => 0),
1800 =>
(134 => 40, 181 => 2434, 215 => 42, others => 0),
1801 =>
(others => 0),
1802 =>
(others => 0),
1803 =>
(others => 0),
1804 =>
(others => 0),
1805 =>
(60 => 1236, 62 => 1237, 200 => 1238, 211 => 2438,
others => 0),
1806 =>
(12 => 2440, others => 0),
1807 =>
(others => 0),
1808 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2046, others => 0),
1809 =>
(others => 0),
1810 =>
(others => 0),
1811 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2442, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1812 =>
(others => 0),
1813 =>
(69 => 2445, others => 0),
1814 =>
(139 => 2447, others => 0),
1815 =>
(12 => 2450, others => 0),
1816 =>
(others => 0),
1817 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2451, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1818 =>
(others => 0),
1819 =>
(12 => 2454, others => 0),
1820 =>
(12 => 2456, others => 0),
1821 =>
(others => 0),
1822 =>
(12 => 2458, others => 0),
1823 =>
(200 => 2459, others => 0),
1824 =>
(200 => 2460, others => 0),
1825 =>
(others => 0),
1826 =>
(others => 0),
1827 =>
(others => 0),
1828 =>
(others => 0),
1829 =>
(86 => 1209, 218 => 2463, others => 0),
1830 =>
(134 => 40, 181 => 2465, 215 => 42, others => 0),
1831 =>
(158 => 1886, others => 0),
1832 =>
(others => 0),
1833 =>
(12 => 2467, others => 0),
1834 =>
(5 => 2469, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2470,
others => 0),
1835 =>
(12 => 2472, others => 0),
1836 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2473, others => 0),
1837 =>
(14 => 1971, others => 0),
1838 =>
(others => 0),
1839 =>
(14 => 1980, others => 0),
1840 =>
(others => 0),
1841 =>
(others => 0),
1842 =>
(14 => 2144, others => 0),
1843 =>
(others => 0),
1844 =>
(others => 0),
1845 =>
(12 => 2477, others => 0),
1846 =>
(12 => 2479, others => 0),
1847 =>
(others => 0),
1848 =>
(73 => 2482, others => 0),
1849 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2483, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1850 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2484, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
1851 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 2485, 66 => 1024,
90 => 104, 91 => 1025, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
208 => 273, 214 => 111, 221 => 348, others => 0),
1852 =>
(25 => 2487, others => 0),
1853 =>
(others => 0),
1854 =>
(others => 0),
1855 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 153 => 2488, 156 => 270, 164 => 108,
176 => 344, 194 => 110, 198 => 807, 199 => 808,
202 => 272, 214 => 111, 221 => 809, others => 0),
1856 =>
(others => 0),
1857 =>
(others => 0),
1858 =>
(others => 0),
1859 =>
(others => 0),
1860 =>
(others => 0),
1861 =>
(86 => 1209, 218 => 2491, others => 0),
1862 =>
(134 => 40, 181 => 2493, 215 => 42, others => 0),
1863 =>
(others => 0),
1864 =>
(86 => 1209, 218 => 2494, others => 0),
1865 =>
(134 => 40, 181 => 2496, 215 => 42, others => 0),
1866 =>
(others => 0),
1867 =>
(others => 0),
1868 =>
(others => 0),
1869 =>
(others => 0),
1870 =>
(12 => 2501, others => 0),
1871 =>
(others => 0),
1872 =>
(others => 0),
1873 =>
(others => 0),
1874 =>
(others => 0),
1875 =>
(others => 0),
1876 =>
(others => 0),
1877 =>
(others => 0),
1878 =>
(others => 0),
1879 =>
(134 => 40, 181 => 2506, 215 => 42, others => 0),
1880 =>
(others => 0),
1881 =>
(12 => 2508, others => 0),
1882 =>
(12 => 2510, others => 0),
1883 =>
(134 => 40, 181 => 2512, 215 => 42, others => 0),
1884 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2513,
222 => 433, 225 => 434, 242 => 435, others => 0),
1885 =>
(others => 0),
1886 =>
(12 => 2517, others => 0),
1887 =>
(others => 0),
1888 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2520, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1889 =>
(others => 0),
1890 =>
(others => 0),
1891 =>
(others => 0),
1892 =>
(others => 0),
1893 =>
(others => 0),
1894 =>
(others => 0),
1895 =>
(86 => 1209, 218 => 2524, others => 0),
1896 =>
(134 => 40, 181 => 2526, 215 => 42, others => 0),
1897 =>
(others => 0),
1898 =>
(86 => 1209, 218 => 2527, others => 0),
1899 =>
(134 => 40, 181 => 2529, 215 => 42, others => 0),
1900 =>
(others => 0),
1901 =>
(others => 0),
1902 =>
(others => 0),
1903 =>
(others => 0),
1904 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2533, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1905 =>
(10 => 197, 14 => 2538, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 2539, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
1906 =>
(others => 0),
1907 =>
(others => 0),
1908 =>
(others => 0),
1909 =>
(others => 0),
1910 =>
(others => 0),
1911 =>
(others => 0),
1912 =>
(others => 0),
1913 =>
(others => 0),
1914 =>
(others => 0),
1915 =>
(others => 0),
1916 =>
(others => 0),
1917 =>
(others => 0),
1918 =>
(61 => 2550, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1919 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2551,
222 => 433, 225 => 434, 242 => 435, others => 0),
1920 =>
(61 => 2553, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1921 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2554,
222 => 433, 225 => 434, 242 => 435, others => 0),
1922 =>
(others => 0),
1923 =>
(others => 0),
1924 =>
(others => 0),
1925 =>
(others => 0),
1926 =>
(others => 0),
1927 =>
(others => 0),
1928 =>
(others => 0),
1929 =>
(others => 0),
1930 =>
(others => 0),
1931 =>
(others => 0),
1932 =>
(others => 0),
1933 =>
(others => 0),
1934 =>
(61 => 2565, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1935 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2566,
222 => 433, 225 => 434, 242 => 435, others => 0),
1936 =>
(61 => 2568, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1937 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2569,
222 => 433, 225 => 434, 242 => 435, others => 0),
1938 =>
(others => 0),
1939 =>
(others => 0),
1940 =>
(12 => 2576, others => 0),
1941 =>
(12 => 2580, others => 0),
1942 =>
(others => 0),
1943 =>
(others => 0),
1944 =>
(others => 0),
1945 =>
(others => 0),
1946 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2582, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1947 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2586, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 2587, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
1948 =>
(others => 0),
1949 =>
(others => 0),
1950 =>
(others => 0),
1951 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 2590, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
1952 =>
(others => 0),
1953 =>
(others => 0),
1954 =>
(86 => 1209, 218 => 2592, others => 0),
1955 =>
(134 => 40, 181 => 2594, 215 => 42, others => 0),
1956 =>
(others => 0),
1957 =>
(others => 0),
1958 =>
(others => 0),
1959 =>
(others => 0),
1960 =>
(others => 0),
1961 =>
(others => 0),
1962 =>
(others => 0),
1963 =>
(134 => 40, 181 => 2602, 215 => 42, others => 0),
1964 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2603,
222 => 433, 225 => 434, 242 => 435, others => 0),
1965 =>
(12 => 2607, others => 0),
1966 =>
(12 => 2609, others => 0),
1967 =>
(12 => 2611, others => 0),
1968 =>
(61 => 2613, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1969 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2614,
222 => 433, 225 => 434, 242 => 435, others => 0),
1970 =>
(12 => 2616, others => 0),
1971 =>
(12 => 2618, others => 0),
1972 =>
(others => 0),
1973 =>
(others => 0),
1974 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2623, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1975 =>
(12 => 2625, others => 0),
1976 =>
(12 => 2627, others => 0),
1977 =>
(61 => 2629, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
1978 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2630,
222 => 433, 225 => 434, 242 => 435, others => 0),
1979 =>
(12 => 2632, others => 0),
1980 =>
(12 => 2634, others => 0),
1981 =>
(others => 0),
1982 =>
(others => 0),
1983 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2639, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
1984 =>
(5 => 2641, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2642,
others => 0),
1985 =>
(others => 0),
1986 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 2643, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
1987 =>
(others => 0),
1988 =>
(others => 0),
1989 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2648, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
1990 =>
(others => 0),
1991 =>
(others => 0),
1992 =>
(others => 0),
1993 =>
(others => 0),
1994 =>
(others => 0),
1995 =>
(others => 0),
1996 =>
(others => 0),
1997 =>
(others => 0),
1998 =>
(others => 0),
1999 =>
(others => 0),
2000 =>
(others => 0),
2001 =>
(others => 0),
2002 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
109 => 2653, 110 => 1148, 121 => 105, 124 => 1149,
134 => 1150, 156 => 270, 164 => 1151, 166 => 1152,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 217 => 1153, 221 => 274, others => 0),
2003 =>
(others => 0),
2004 =>
(12 => 2657, others => 0),
2005 =>
(12 => 2659, others => 0),
2006 =>
(12 => 2662, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 2663, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
2007 =>
(12 => 2665, others => 0),
2008 =>
(others => 0),
2009 =>
(12 => 2667, others => 0),
2010 =>
(12 => 2670, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 2671, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
2011 =>
(12 => 2673, others => 0),
2012 =>
(others => 0),
2013 =>
(5 => 2675, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2676,
others => 0),
2014 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2677, others => 0),
2015 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2678, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2016 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2679, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2017 =>
(others => 0),
2018 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
2019 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2681, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2020 =>
(others => 0),
2021 =>
(others => 0),
2022 =>
(others => 0),
2023 =>
(others => 0),
2024 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2687, 229 => 923,
others => 0),
2025 =>
(others => 0),
2026 =>
(12 => 2688, others => 0),
2027 =>
(others => 0),
2028 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
2029 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2691, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2030 =>
(others => 0),
2031 =>
(others => 0),
2032 =>
(others => 0),
2033 =>
(others => 0),
2034 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 2693, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 156 => 1416,
164 => 108, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
2035 =>
(others => 0),
2036 =>
(others => 0),
2037 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 138 => 2697, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2698,
others => 0),
2038 =>
(others => 0),
2039 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 2701,
others => 0),
2040 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 344,
194 => 110, 198 => 1032, 199 => 808, 202 => 272,
214 => 111, 221 => 1033, others => 0),
2041 =>
(others => 0),
2042 =>
(55 => 72, 56 => 182, 113 => 2703, 171 => 184,
others => 0),
2043 =>
(5 => 2705, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2706,
others => 0),
2044 =>
(55 => 72, 56 => 182, 113 => 2707, 171 => 184,
others => 0),
2045 =>
(others => 0),
2046 =>
(60 => 1236, 62 => 1237, 200 => 1238, 211 => 2438,
others => 0),
2047 =>
(others => 0),
2048 =>
(others => 0),
2049 =>
(others => 0),
2050 =>
(others => 0),
2051 =>
(others => 0),
2052 =>
(12 => 2713, others => 0),
2053 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
2054 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2715, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2055 =>
(others => 0),
2056 =>
(12 => 2718, others => 0),
2057 =>
(others => 0),
2058 =>
(others => 0),
2059 =>
(others => 0),
2060 =>
(others => 0),
2061 =>
(others => 0),
2062 =>
(others => 0),
2063 =>
(others => 0),
2064 =>
(134 => 40, 181 => 2722, 215 => 42, others => 0),
2065 =>
(others => 0),
2066 =>
(others => 0),
2067 =>
(others => 0),
2068 =>
(134 => 40, 181 => 2725, 215 => 42, others => 0),
2069 =>
(others => 0),
2070 =>
(134 => 40, 181 => 2727, 215 => 42, others => 0),
2071 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
2072 =>
(others => 0),
2073 =>
(others => 0),
2074 =>
(others => 0),
2075 =>
(others => 0),
2076 =>
(others => 0),
2077 =>
(12 => 2733, others => 0),
2078 =>
(12 => 2735, others => 0),
2079 =>
(others => 0),
2080 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2736, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2081 =>
(others => 0),
2082 =>
(others => 0),
2083 =>
(others => 0),
2084 =>
(others => 0),
2085 =>
(others => 0),
2086 =>
(others => 0),
2087 =>
(others => 0),
2088 =>
(55 => 72, 56 => 182, 113 => 2743, 171 => 184,
others => 0),
2089 =>
(5 => 2745, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2746,
others => 0),
2090 =>
(55 => 72, 56 => 182, 113 => 2747, 171 => 184,
others => 0),
2091 =>
(others => 0),
2092 =>
(12 => 2749, others => 0),
2093 =>
(others => 0),
2094 =>
(12 => 2752, others => 0),
2095 =>
(12 => 2754, others => 0),
2096 =>
(others => 0),
2097 =>
(12 => 2756, others => 0),
2098 =>
(others => 0),
2099 =>
(others => 0),
2100 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2757, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2101 =>
(others => 0),
2102 =>
(others => 0),
2103 =>
(others => 0),
2104 =>
(others => 0),
2105 =>
(others => 0),
2106 =>
(others => 0),
2107 =>
(others => 0),
2108 =>
(others => 0),
2109 =>
(others => 0),
2110 =>
(others => 0),
2111 =>
(others => 0),
2112 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2764, others => 0),
2113 =>
(others => 0),
2114 =>
(others => 0),
2115 =>
(others => 0),
2116 =>
(others => 0),
2117 =>
(others => 0),
2118 =>
(others => 0),
2119 =>
(others => 0),
2120 =>
(others => 0),
2121 =>
(others => 0),
2122 =>
(134 => 40, 181 => 2769, 215 => 42, others => 0),
2123 =>
(others => 0),
2124 =>
(134 => 40, 181 => 2771, 215 => 42, others => 0),
2125 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
2126 =>
(others => 0),
2127 =>
(others => 0),
2128 =>
(134 => 40, 181 => 2775, 215 => 42, others => 0),
2129 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
2130 =>
(others => 0),
2131 =>
(others => 0),
2132 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 283, 21 => 2779, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 169 => 224, 170 => 225, 173 => 226,
177 => 227, 178 => 228, 180 => 230, 193 => 234,
206 => 235, 223 => 236, 224 => 237, 227 => 238,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2133 =>
(134 => 40, 181 => 2781, 215 => 42, others => 0),
2134 =>
(12 => 2783, others => 0),
2135 =>
(others => 0),
2136 =>
(others => 0),
2137 =>
(5 => 2785, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2786,
others => 0),
2138 =>
(others => 0),
2139 =>
(12 => 2788, others => 0),
2140 =>
(12 => 2790, others => 0),
2141 =>
(61 => 2792, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2142 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2793,
222 => 433, 225 => 434, 242 => 435, others => 0),
2143 =>
(12 => 2795, others => 0),
2144 =>
(12 => 2797, others => 0),
2145 =>
(others => 0),
2146 =>
(others => 0),
2147 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2802, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2148 =>
(others => 0),
2149 =>
(others => 0),
2150 =>
(others => 0),
2151 =>
(86 => 1209, 218 => 2803, others => 0),
2152 =>
(61 => 2805, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2153 =>
(others => 0),
2154 =>
(others => 0),
2155 =>
(others => 0),
2156 =>
(others => 0),
2157 =>
(others => 0),
2158 =>
(others => 0),
2159 =>
(others => 0),
2160 =>
(others => 0),
2161 =>
(61 => 2813, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2162 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2814,
222 => 433, 225 => 434, 242 => 435, others => 0),
2163 =>
(others => 0),
2164 =>
(others => 0),
2165 =>
(others => 0),
2166 =>
(86 => 1209, 218 => 2815, others => 0),
2167 =>
(61 => 2817, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2168 =>
(others => 0),
2169 =>
(others => 0),
2170 =>
(others => 0),
2171 =>
(others => 0),
2172 =>
(others => 0),
2173 =>
(others => 0),
2174 =>
(others => 0),
2175 =>
(others => 0),
2176 =>
(61 => 2825, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2177 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2826,
222 => 433, 225 => 434, 242 => 435, others => 0),
2178 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2827, others => 0),
2179 =>
(others => 0),
2180 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2828, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2181 =>
(10 => 197, 14 => 2833, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 2834, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
2182 =>
(others => 0),
2183 =>
(others => 0),
2184 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 2837, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2185 =>
(10 => 197, 14 => 2842, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 2843, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
2186 =>
(others => 0),
2187 =>
(12 => 2847, others => 0),
2188 =>
(others => 0),
2189 =>
(12 => 2850, others => 0),
2190 =>
(others => 0),
2191 =>
(others => 0),
2192 =>
(12 => 2854, others => 0),
2193 =>
(12 => 2856, others => 0),
2194 =>
(others => 0),
2195 =>
(55 => 72, 56 => 182, 113 => 2858, 171 => 184,
others => 0),
2196 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 873, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2197 =>
(others => 0),
2198 =>
(5 => 2860, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2861,
others => 0),
2199 =>
(55 => 72, 56 => 182, 113 => 2862, 171 => 184,
others => 0),
2200 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2863, others => 0),
2201 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1006, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2202 =>
(others => 0),
2203 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1015, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2204 =>
(others => 0),
2205 =>
(others => 0),
2206 =>
(others => 0),
2207 =>
(others => 0),
2208 =>
(others => 0),
2209 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2866, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2210 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2867, others => 0),
2211 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2868, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2212 =>
(others => 0),
2213 =>
(others => 0),
2214 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2870, others => 0),
2215 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2871, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2216 =>
(others => 0),
2217 =>
(others => 0),
2218 =>
(others => 0),
2219 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 2875, others => 0),
2220 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 2876, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2221 =>
(others => 0),
2222 =>
(others => 0),
2223 =>
(others => 0),
2224 =>
(others => 0),
2225 =>
(86 => 1209, 218 => 2877, others => 0),
2226 =>
(134 => 40, 181 => 2879, 215 => 42, others => 0),
2227 =>
(others => 0),
2228 =>
(others => 0),
2229 =>
(others => 0),
2230 =>
(others => 0),
2231 =>
(others => 0),
2232 =>
(others => 0),
2233 =>
(others => 0),
2234 =>
(134 => 40, 181 => 2887, 215 => 42, others => 0),
2235 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2888,
222 => 433, 225 => 434, 242 => 435, others => 0),
2236 =>
(others => 0),
2237 =>
(others => 0),
2238 =>
(12 => 2891, others => 0),
2239 =>
(others => 0),
2240 =>
(9 => 2893, others => 0),
2241 =>
(others => 0),
2242 =>
(others => 0),
2243 =>
(others => 0),
2244 =>
(10 => 1619, 16 => 198, 17 => 199, 38 => 1620,
40 => 2895, 55 => 72, 56 => 1623, 173 => 226,
206 => 235, 248 => 2896, others => 0),
2245 =>
(others => 0),
2246 =>
(others => 0),
2247 =>
(5 => 2899, 18 => 102, 39 => 2900, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
2248 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 2902,
others => 0),
2249 =>
(others => 0),
2250 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
123 => 2906, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 228 => 2907,
229 => 923, others => 0),
2251 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 2909, 214 => 111, 229 => 180,
others => 0),
2252 =>
(others => 0),
2253 =>
(others => 0),
2254 =>
(others => 0),
2255 =>
(others => 0),
2256 =>
(others => 0),
2257 =>
(9 => 2915, 12 => 2916, others => 0),
2258 =>
(others => 0),
2259 =>
(51 => 1637, 53 => 1638, 81 => 2917, others => 0),
2260 =>
(others => 0),
2261 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 2920,
others => 0),
2262 =>
(others => 0),
2263 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 2921,
others => 0),
2264 =>
(others => 0),
2265 =>
(others => 0),
2266 =>
(others => 0),
2267 =>
(55 => 72, 56 => 182, 113 => 2925, 171 => 184,
others => 0),
2268 =>
(5 => 2927, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2928,
others => 0),
2269 =>
(55 => 72, 56 => 182, 113 => 2929, 171 => 184,
others => 0),
2270 =>
(others => 0),
2271 =>
(12 => 2931, others => 0),
2272 =>
(205 => 2933, others => 0),
2273 =>
(others => 0),
2274 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2934, 229 => 923,
others => 0),
2275 =>
(9 => 2937, 12 => 2938, others => 0),
2276 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2939, 229 => 923,
others => 0),
2277 =>
(others => 0),
2278 =>
(others => 0),
2279 =>
(others => 0),
2280 =>
(12 => 2941, others => 0),
2281 =>
(205 => 2239, others => 0),
2282 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2943, 229 => 923,
others => 0),
2283 =>
(others => 0),
2284 =>
(others => 0),
2285 =>
(9 => 2947, 12 => 2948, others => 0),
2286 =>
(12 => 2950, others => 0),
2287 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2951, 229 => 923,
others => 0),
2288 =>
(205 => 2273, others => 0),
2289 =>
(others => 0),
2290 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 2955, 229 => 923,
others => 0),
2291 =>
(others => 0),
2292 =>
(others => 0),
2293 =>
(others => 0),
2294 =>
(others => 0),
2295 =>
(others => 0),
2296 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2959, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2297 =>
(others => 0),
2298 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2961, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2299 =>
(others => 0),
2300 =>
(others => 0),
2301 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 2964, 235 => 1118,
236 => 1119, others => 0),
2302 =>
(others => 0),
2303 =>
(others => 0),
2304 =>
(others => 0),
2305 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2968,
222 => 433, 225 => 434, 242 => 435, others => 0),
2306 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 2969,
222 => 433, 225 => 434, 242 => 435, others => 0),
2307 =>
(others => 0),
2308 =>
(others => 0),
2309 =>
(others => 0),
2310 =>
(12 => 2974, others => 0),
2311 =>
(55 => 2975, others => 0),
2312 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 2976, 235 => 1118,
236 => 1119, others => 0),
2313 =>
(others => 0),
2314 =>
(others => 0),
2315 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
55 => 72, 56 => 182, 63 => 103, 67 => 1413,
68 => 2977, 90 => 104, 94 => 268, 113 => 2978,
121 => 105, 134 => 106, 156 => 1416, 164 => 108,
171 => 184, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
2316 =>
(others => 0),
2317 =>
(others => 0),
2318 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 235 => 1684, others => 0),
2319 =>
(others => 0),
2320 =>
(others => 0),
2321 =>
(others => 0),
2322 =>
(others => 0),
2323 =>
(others => 0),
2324 =>
(others => 0),
2325 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2984, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2326 =>
(others => 0),
2327 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 2986, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2328 =>
(others => 0),
2329 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 2989,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
2330 =>
(others => 0),
2331 =>
(others => 0),
2332 =>
(12 => 122, others => 0),
2333 =>
(57 => 2992, 134 => 40, 181 => 49, 215 => 50,
others => 0),
2334 =>
(52 => 2993, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
2335 =>
(others => 0),
2336 =>
(others => 0),
2337 =>
(others => 0),
2338 =>
(others => 0),
2339 =>
(others => 0),
2340 =>
(others => 0),
2341 =>
(others => 0),
2342 =>
(others => 0),
2343 =>
(10 => 1701, 16 => 198, 17 => 199, 75 => 1702,
120 => 1703, 122 => 1704, 173 => 226, 179 => 1705,
180 => 1706, 191 => 2341, 206 => 235, others => 0),
2344 =>
(158 => 218, others => 0),
2345 =>
(others => 0),
2346 =>
(others => 0),
2347 =>
(others => 0),
2348 =>
(12 => 450, others => 0),
2349 =>
(others => 0),
2350 =>
(57 => 3006, 134 => 40, 181 => 49, 215 => 50,
others => 0),
2351 =>
(52 => 3007, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
2352 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 3008,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
2353 =>
(others => 0),
2354 =>
(10 => 1135, 16 => 198, 17 => 199, 38 => 1712,
55 => 72, 56 => 1623, 78 => 1136, 122 => 1137,
173 => 226, 180 => 1138, 187 => 2347, 189 => 1715,
206 => 235, others => 0),
2355 =>
(others => 0),
2356 =>
(others => 0),
2357 =>
(others => 0),
2358 =>
(others => 0),
2359 =>
(others => 0),
2360 =>
(others => 0),
2361 =>
(others => 0),
2362 =>
(others => 0),
2363 =>
(others => 0),
2364 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 1146, 94 => 268,
110 => 3015, 121 => 105, 124 => 1149, 134 => 1150,
156 => 270, 164 => 1151, 166 => 3016, 176 => 109,
194 => 110, 202 => 272, 208 => 273, 214 => 111,
217 => 1153, 221 => 274, others => 0),
2365 =>
(others => 0),
2366 =>
(others => 0),
2367 =>
(others => 0),
2368 =>
(others => 0),
2369 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3018, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2370 =>
(others => 0),
2371 =>
(others => 0),
2372 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 3020,
others => 0),
2373 =>
(others => 0),
2374 =>
(others => 0),
2375 =>
(213 => 3024, others => 0),
2376 =>
(others => 0),
2377 =>
(others => 0),
2378 =>
(others => 0),
2379 =>
(others => 0),
2380 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3028, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2381 =>
(others => 0),
2382 =>
(others => 0),
2383 =>
(others => 0),
2384 =>
(others => 0),
2385 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 3032, 229 => 923,
others => 0),
2386 =>
(others => 0),
2387 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3034, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2388 =>
(86 => 1209, 218 => 3035, others => 0),
2389 =>
(others => 0),
2390 =>
(others => 0),
2391 =>
(others => 0),
2392 =>
(others => 0),
2393 =>
(others => 0),
2394 =>
(others => 0),
2395 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3039, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2396 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3040,
222 => 433, 225 => 434, 242 => 435, others => 0),
2397 =>
(others => 0),
2398 =>
(others => 0),
2399 =>
(others => 0),
2400 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3045, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2401 =>
(others => 0),
2402 =>
(others => 0),
2403 =>
(others => 0),
2404 =>
(others => 0),
2405 =>
(others => 0),
2406 =>
(others => 0),
2407 =>
(86 => 1209, 218 => 3050, others => 0),
2408 =>
(others => 0),
2409 =>
(others => 0),
2410 =>
(others => 0),
2411 =>
(others => 0),
2412 =>
(29 => 3056, others => 0),
2413 =>
(others => 0),
2414 =>
(others => 0),
2415 =>
(others => 0),
2416 =>
(others => 0),
2417 =>
(86 => 1209, 218 => 3064, others => 0),
2418 =>
(others => 0),
2419 =>
(others => 0),
2420 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3067,
222 => 433, 225 => 434, 242 => 435, others => 0),
2421 =>
(others => 0),
2422 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3069,
222 => 433, 225 => 434, 242 => 435, others => 0),
2423 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3070,
222 => 433, 225 => 434, 242 => 435, others => 0),
2424 =>
(others => 0),
2425 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3073,
222 => 433, 225 => 434, 242 => 435, others => 0),
2426 =>
(86 => 1209, 218 => 3074, others => 0),
2427 =>
(others => 0),
2428 =>
(83 => 3077, 134 => 40, 166 => 1796, 181 => 1797,
215 => 42, others => 0),
2429 =>
(83 => 3078, 134 => 40, 166 => 1796, 181 => 1797,
215 => 42, others => 0),
2430 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3079,
222 => 433, 225 => 434, 242 => 435, others => 0),
2431 =>
(others => 0),
2432 =>
(others => 0),
2433 =>
(others => 0),
2434 =>
(others => 0),
2435 =>
(134 => 40, 181 => 3084, 215 => 42, others => 0),
2436 =>
(others => 0),
2437 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3085, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2438 =>
(others => 0),
2439 =>
(others => 0),
2440 =>
(others => 0),
2441 =>
(others => 0),
2442 =>
(12 => 3088, others => 0),
2443 =>
(others => 0),
2444 =>
(others => 0),
2445 =>
(others => 0),
2446 =>
(others => 0),
2447 =>
(others => 0),
2448 =>
(others => 0),
2449 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3093, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2450 =>
(others => 0),
2451 =>
(12 => 3096, others => 0),
2452 =>
(others => 0),
2453 =>
(others => 0),
2454 =>
(others => 0),
2455 =>
(others => 0),
2456 =>
(others => 0),
2457 =>
(others => 0),
2458 =>
(others => 0),
2459 =>
(others => 0),
2460 =>
(others => 0),
2461 =>
(134 => 40, 181 => 3101, 215 => 42, others => 0),
2462 =>
(others => 0),
2463 =>
(others => 0),
2464 =>
(others => 0),
2465 =>
(others => 0),
2466 =>
(14 => 2538, others => 0),
2467 =>
(others => 0),
2468 =>
(others => 0),
2469 =>
(12 => 3106, others => 0),
2470 =>
(12 => 3108, others => 0),
2471 =>
(158 => 2587, others => 0),
2472 =>
(others => 0),
2473 =>
(12 => 3110, others => 0),
2474 =>
(5 => 3112, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3113,
others => 0),
2475 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3114, others => 0),
2476 =>
(14 => 2833, others => 0),
2477 =>
(others => 0),
2478 =>
(14 => 2842, others => 0),
2479 =>
(others => 0),
2480 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3115, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2481 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3116, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2482 =>
(others => 0),
2483 =>
(others => 0),
2484 =>
(others => 0),
2485 =>
(others => 0),
2486 =>
(27 => 3120, others => 0),
2487 =>
(others => 0),
2488 =>
(others => 0),
2489 =>
(134 => 40, 181 => 3123, 215 => 42, others => 0),
2490 =>
(others => 0),
2491 =>
(others => 0),
2492 =>
(others => 0),
2493 =>
(others => 0),
2494 =>
(others => 0),
2495 =>
(others => 0),
2496 =>
(others => 0),
2497 =>
(others => 0),
2498 =>
(86 => 1209, 218 => 3128, others => 0),
2499 =>
(134 => 40, 181 => 3130, 215 => 42, others => 0),
2500 =>
(others => 0),
2501 =>
(others => 0),
2502 =>
(others => 0),
2503 =>
(others => 0),
2504 =>
(others => 0),
2505 =>
(others => 0),
2506 =>
(others => 0),
2507 =>
(others => 0),
2508 =>
(others => 0),
2509 =>
(others => 0),
2510 =>
(others => 0),
2511 =>
(others => 0),
2512 =>
(others => 0),
2513 =>
(others => 0),
2514 =>
(134 => 40, 181 => 3139, 215 => 42, others => 0),
2515 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3140,
222 => 433, 225 => 434, 242 => 435, others => 0),
2516 =>
(others => 0),
2517 =>
(others => 0),
2518 =>
(134 => 40, 181 => 3143, 215 => 42, others => 0),
2519 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3144,
222 => 433, 225 => 434, 242 => 435, others => 0),
2520 =>
(others => 0),
2521 =>
(12 => 3148, others => 0),
2522 =>
(134 => 40, 181 => 3150, 215 => 42, others => 0),
2523 =>
(others => 0),
2524 =>
(others => 0),
2525 =>
(others => 0),
2526 =>
(others => 0),
2527 =>
(others => 0),
2528 =>
(others => 0),
2529 =>
(others => 0),
2530 =>
(others => 0),
2531 =>
(86 => 1209, 218 => 3155, others => 0),
2532 =>
(134 => 40, 181 => 3157, 215 => 42, others => 0),
2533 =>
(12 => 3159, others => 0),
2534 =>
(12 => 3161, others => 0),
2535 =>
(61 => 3163, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2536 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3164,
222 => 433, 225 => 434, 242 => 435, others => 0),
2537 =>
(12 => 3166, others => 0),
2538 =>
(12 => 3168, others => 0),
2539 =>
(others => 0),
2540 =>
(others => 0),
2541 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3173, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2542 =>
(others => 0),
2543 =>
(others => 0),
2544 =>
(others => 0),
2545 =>
(86 => 1209, 218 => 3174, others => 0),
2546 =>
(61 => 3176, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2547 =>
(others => 0),
2548 =>
(others => 0),
2549 =>
(others => 0),
2550 =>
(others => 0),
2551 =>
(others => 0),
2552 =>
(others => 0),
2553 =>
(others => 0),
2554 =>
(others => 0),
2555 =>
(61 => 3184, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2556 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3185,
222 => 433, 225 => 434, 242 => 435, others => 0),
2557 =>
(others => 0),
2558 =>
(others => 0),
2559 =>
(others => 0),
2560 =>
(86 => 1209, 218 => 3186, others => 0),
2561 =>
(61 => 3188, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2562 =>
(others => 0),
2563 =>
(others => 0),
2564 =>
(others => 0),
2565 =>
(others => 0),
2566 =>
(others => 0),
2567 =>
(others => 0),
2568 =>
(others => 0),
2569 =>
(others => 0),
2570 =>
(61 => 3196, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2571 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3197,
222 => 433, 225 => 434, 242 => 435, others => 0),
2572 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3198, others => 0),
2573 =>
(others => 0),
2574 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3199, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2575 =>
(10 => 197, 14 => 3204, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 3205, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
2576 =>
(others => 0),
2577 =>
(others => 0),
2578 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3208, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2579 =>
(10 => 197, 14 => 3213, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 3214, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
2580 =>
(others => 0),
2581 =>
(12 => 3218, others => 0),
2582 =>
(12 => 3220, others => 0),
2583 =>
(12 => 3222, others => 0),
2584 =>
(134 => 40, 181 => 3224, 215 => 42, others => 0),
2585 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3225,
222 => 433, 225 => 434, 242 => 435, others => 0),
2586 =>
(others => 0),
2587 =>
(12 => 3229, others => 0),
2588 =>
(others => 0),
2589 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3232, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2590 =>
(others => 0),
2591 =>
(others => 0),
2592 =>
(others => 0),
2593 =>
(others => 0),
2594 =>
(others => 0),
2595 =>
(others => 0),
2596 =>
(86 => 1209, 218 => 3236, others => 0),
2597 =>
(134 => 40, 181 => 3238, 215 => 42, others => 0),
2598 =>
(others => 0),
2599 =>
(86 => 1209, 218 => 3239, others => 0),
2600 =>
(134 => 40, 181 => 3241, 215 => 42, others => 0),
2601 =>
(others => 0),
2602 =>
(others => 0),
2603 =>
(others => 0),
2604 =>
(others => 0),
2605 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3245, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2606 =>
(10 => 197, 14 => 3250, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 3251, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
2607 =>
(others => 0),
2608 =>
(others => 0),
2609 =>
(others => 0),
2610 =>
(others => 0),
2611 =>
(others => 0),
2612 =>
(others => 0),
2613 =>
(others => 0),
2614 =>
(others => 0),
2615 =>
(others => 0),
2616 =>
(others => 0),
2617 =>
(others => 0),
2618 =>
(others => 0),
2619 =>
(61 => 3262, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2620 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3263,
222 => 433, 225 => 434, 242 => 435, others => 0),
2621 =>
(61 => 3265, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2622 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3266,
222 => 433, 225 => 434, 242 => 435, others => 0),
2623 =>
(others => 0),
2624 =>
(others => 0),
2625 =>
(others => 0),
2626 =>
(others => 0),
2627 =>
(others => 0),
2628 =>
(others => 0),
2629 =>
(others => 0),
2630 =>
(others => 0),
2631 =>
(others => 0),
2632 =>
(others => 0),
2633 =>
(others => 0),
2634 =>
(others => 0),
2635 =>
(61 => 3277, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2636 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3278,
222 => 433, 225 => 434, 242 => 435, others => 0),
2637 =>
(61 => 3280, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2638 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3281,
222 => 433, 225 => 434, 242 => 435, others => 0),
2639 =>
(others => 0),
2640 =>
(others => 0),
2641 =>
(12 => 3288, others => 0),
2642 =>
(12 => 3292, others => 0),
2643 =>
(others => 0),
2644 =>
(others => 0),
2645 =>
(12 => 3295, others => 0),
2646 =>
(12 => 3297, others => 0),
2647 =>
(12 => 3301, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 3302, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
2648 =>
(12 => 3304, others => 0),
2649 =>
(others => 0),
2650 =>
(others => 0),
2651 =>
(others => 0),
2652 =>
(others => 0),
2653 =>
(others => 0),
2654 =>
(others => 0),
2655 =>
(others => 0),
2656 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3308, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
2657 =>
(others => 0),
2658 =>
(others => 0),
2659 =>
(others => 0),
2660 =>
(others => 0),
2661 =>
(12 => 3312, others => 0),
2662 =>
(others => 0),
2663 =>
(12 => 3315, others => 0),
2664 =>
(others => 0),
2665 =>
(others => 0),
2666 =>
(others => 0),
2667 =>
(others => 0),
2668 =>
(others => 0),
2669 =>
(12 => 3319, others => 0),
2670 =>
(others => 0),
2671 =>
(12 => 3322, others => 0),
2672 =>
(others => 0),
2673 =>
(others => 0),
2674 =>
(others => 0),
2675 =>
(12 => 3327, others => 0),
2676 =>
(12 => 3330, others => 0),
2677 =>
(others => 0),
2678 =>
(others => 0),
2679 =>
(others => 0),
2680 =>
(12 => 3332, others => 0),
2681 =>
(others => 0),
2682 =>
(others => 0),
2683 =>
(others => 0),
2684 =>
(55 => 72, 56 => 182, 113 => 3337, 171 => 184,
others => 0),
2685 =>
(5 => 3339, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3340,
others => 0),
2686 =>
(55 => 72, 56 => 182, 113 => 3341, 171 => 184,
others => 0),
2687 =>
(others => 0),
2688 =>
(others => 0),
2689 =>
(others => 0),
2690 =>
(12 => 3343, others => 0),
2691 =>
(others => 0),
2692 =>
(5 => 2899, 18 => 102, 39 => 3345, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
2693 =>
(others => 0),
2694 =>
(others => 0),
2695 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 3347, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 156 => 1416,
164 => 108, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
2696 =>
(5 => 2899, 18 => 102, 39 => 3348, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
2697 =>
(others => 0),
2698 =>
(others => 0),
2699 =>
(others => 0),
2700 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 138 => 3351, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 2698,
others => 0),
2701 =>
(others => 0),
2702 =>
(others => 0),
2703 =>
(others => 0),
2704 =>
(others => 0),
2705 =>
(others => 0),
2706 =>
(others => 0),
2707 =>
(others => 0),
2708 =>
(others => 0),
2709 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3355, others => 0),
2710 =>
(others => 0),
2711 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
2712 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 3358, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2713 =>
(others => 0),
2714 =>
(12 => 3359, others => 0),
2715 =>
(others => 0),
2716 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 180, others => 0),
2717 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 3362, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2718 =>
(others => 0),
2719 =>
(others => 0),
2720 =>
(others => 0),
2721 =>
(others => 0),
2722 =>
(others => 0),
2723 =>
(others => 0),
2724 =>
(others => 0),
2725 =>
(others => 0),
2726 =>
(others => 0),
2727 =>
(others => 0),
2728 =>
(134 => 40, 181 => 3367, 215 => 42, others => 0),
2729 =>
(others => 0),
2730 =>
(others => 0),
2731 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3368, others => 0),
2732 =>
(others => 0),
2733 =>
(others => 0),
2734 =>
(others => 0),
2735 =>
(others => 0),
2736 =>
(12 => 3372, others => 0),
2737 =>
(others => 0),
2738 =>
(others => 0),
2739 =>
(others => 0),
2740 =>
(55 => 72, 56 => 182, 113 => 3373, 171 => 184,
others => 0),
2741 =>
(5 => 3375, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3376,
others => 0),
2742 =>
(55 => 72, 56 => 182, 113 => 3377, 171 => 184,
others => 0),
2743 =>
(others => 0),
2744 =>
(others => 0),
2745 =>
(others => 0),
2746 =>
(others => 0),
2747 =>
(others => 0),
2748 =>
(others => 0),
2749 =>
(others => 0),
2750 =>
(others => 0),
2751 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3382, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2752 =>
(others => 0),
2753 =>
(others => 0),
2754 =>
(others => 0),
2755 =>
(others => 0),
2756 =>
(others => 0),
2757 =>
(12 => 3387, others => 0),
2758 =>
(others => 0),
2759 =>
(others => 0),
2760 =>
(others => 0),
2761 =>
(others => 0),
2762 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3388, others => 0),
2763 =>
(others => 0),
2764 =>
(others => 0),
2765 =>
(5 => 3391, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3392,
others => 0),
2766 =>
(others => 0),
2767 =>
(others => 0),
2768 =>
(others => 0),
2769 =>
(others => 0),
2770 =>
(others => 0),
2771 =>
(others => 0),
2772 =>
(134 => 40, 181 => 3396, 215 => 42, others => 0),
2773 =>
(others => 0),
2774 =>
(others => 0),
2775 =>
(others => 0),
2776 =>
(134 => 40, 181 => 3399, 215 => 42, others => 0),
2777 =>
(others => 0),
2778 =>
(134 => 40, 181 => 3401, 215 => 42, others => 0),
2779 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 510, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 122 => 211, 128 => 212,
129 => 213, 130 => 214, 131 => 215, 132 => 216,
137 => 217, 160 => 219, 161 => 220, 163 => 221,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 180 => 230, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 237 => 241,
243 => 242, 244 => 36, 245 => 37, others => 0),
2780 =>
(others => 0),
2781 =>
(others => 0),
2782 =>
(others => 0),
2783 =>
(others => 0),
2784 =>
(others => 0),
2785 =>
(12 => 3407, others => 0),
2786 =>
(12 => 3409, others => 0),
2787 =>
(others => 0),
2788 =>
(others => 0),
2789 =>
(others => 0),
2790 =>
(others => 0),
2791 =>
(others => 0),
2792 =>
(others => 0),
2793 =>
(others => 0),
2794 =>
(others => 0),
2795 =>
(others => 0),
2796 =>
(others => 0),
2797 =>
(others => 0),
2798 =>
(61 => 3418, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2799 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3419,
222 => 433, 225 => 434, 242 => 435, others => 0),
2800 =>
(61 => 3421, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2801 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3422,
222 => 433, 225 => 434, 242 => 435, others => 0),
2802 =>
(others => 0),
2803 =>
(others => 0),
2804 =>
(others => 0),
2805 =>
(others => 0),
2806 =>
(others => 0),
2807 =>
(86 => 1209, 218 => 3427, others => 0),
2808 =>
(61 => 3429, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2809 =>
(others => 0),
2810 =>
(86 => 1209, 218 => 3430, others => 0),
2811 =>
(61 => 3432, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2812 =>
(others => 0),
2813 =>
(others => 0),
2814 =>
(others => 0),
2815 =>
(others => 0),
2816 =>
(others => 0),
2817 =>
(others => 0),
2818 =>
(others => 0),
2819 =>
(86 => 1209, 218 => 3438, others => 0),
2820 =>
(61 => 3440, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2821 =>
(others => 0),
2822 =>
(86 => 1209, 218 => 3441, others => 0),
2823 =>
(61 => 3443, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2824 =>
(others => 0),
2825 =>
(others => 0),
2826 =>
(others => 0),
2827 =>
(12 => 3450, others => 0),
2828 =>
(12 => 3452, others => 0),
2829 =>
(12 => 3454, others => 0),
2830 =>
(61 => 3456, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2831 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3457,
222 => 433, 225 => 434, 242 => 435, others => 0),
2832 =>
(12 => 3459, others => 0),
2833 =>
(12 => 3461, others => 0),
2834 =>
(others => 0),
2835 =>
(others => 0),
2836 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3466, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2837 =>
(12 => 3468, others => 0),
2838 =>
(12 => 3470, others => 0),
2839 =>
(61 => 3472, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
2840 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3473,
222 => 433, 225 => 434, 242 => 435, others => 0),
2841 =>
(12 => 3475, others => 0),
2842 =>
(12 => 3477, others => 0),
2843 =>
(others => 0),
2844 =>
(others => 0),
2845 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3482, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2846 =>
(others => 0),
2847 =>
(others => 0),
2848 =>
(others => 0),
2849 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1065, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2850 =>
(others => 0),
2851 =>
(12 => 3485, others => 0),
2852 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3486, others => 0),
2853 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1332, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2854 =>
(others => 0),
2855 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1341, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
2856 =>
(others => 0),
2857 =>
(others => 0),
2858 =>
(others => 0),
2859 =>
(others => 0),
2860 =>
(12 => 3491, others => 0),
2861 =>
(12 => 3493, others => 0),
2862 =>
(others => 0),
2863 =>
(12 => 3496, others => 0),
2864 =>
(5 => 3498, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3499,
others => 0),
2865 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3500, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2866 =>
(others => 0),
2867 =>
(others => 0),
2868 =>
(others => 0),
2869 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3502, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2870 =>
(others => 0),
2871 =>
(others => 0),
2872 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3504, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2873 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3505, others => 0),
2874 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3506, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2875 =>
(others => 0),
2876 =>
(others => 0),
2877 =>
(others => 0),
2878 =>
(others => 0),
2879 =>
(others => 0),
2880 =>
(others => 0),
2881 =>
(86 => 1209, 218 => 3510, others => 0),
2882 =>
(134 => 40, 181 => 3512, 215 => 42, others => 0),
2883 =>
(others => 0),
2884 =>
(86 => 1209, 218 => 3513, others => 0),
2885 =>
(134 => 40, 181 => 3515, 215 => 42, others => 0),
2886 =>
(others => 0),
2887 =>
(others => 0),
2888 =>
(others => 0),
2889 =>
(others => 0),
2890 =>
(others => 0),
2891 =>
(others => 0),
2892 =>
(others => 0),
2893 =>
(others => 0),
2894 =>
(246 => 3523, others => 0),
2895 =>
(others => 0),
2896 =>
(others => 0),
2897 =>
(others => 0),
2898 =>
(5 => 3524, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 228 => 3525,
229 => 923, others => 0),
2899 =>
(others => 0),
2900 =>
(12 => 3528, others => 0),
2901 =>
(others => 0),
2902 =>
(others => 0),
2903 =>
(others => 0),
2904 =>
(others => 0),
2905 =>
(others => 0),
2906 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 3534, 229 => 923,
others => 0),
2907 =>
(others => 0),
2908 =>
(12 => 3536, others => 0),
2909 =>
(12 => 3538, others => 0),
2910 =>
(205 => 3540, others => 0),
2911 =>
(others => 0),
2912 =>
(others => 0),
2913 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 3542, 214 => 111, 229 => 180,
others => 0),
2914 =>
(others => 0),
2915 =>
(others => 0),
2916 =>
(others => 0),
2917 =>
(others => 0),
2918 =>
(others => 0),
2919 =>
(51 => 1637, 53 => 1638, 81 => 3545, others => 0),
2920 =>
(others => 0),
2921 =>
(201 => 3547, others => 0),
2922 =>
(55 => 72, 56 => 182, 113 => 3548, 171 => 184,
others => 0),
2923 =>
(5 => 3550, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3551,
others => 0),
2924 =>
(55 => 72, 56 => 182, 113 => 3552, 171 => 184,
others => 0),
2925 =>
(others => 0),
2926 =>
(others => 0),
2927 =>
(others => 0),
2928 =>
(others => 0),
2929 =>
(others => 0),
2930 =>
(others => 0),
2931 =>
(others => 0),
2932 =>
(12 => 3558, others => 0),
2933 =>
(others => 0),
2934 =>
(9 => 3560, others => 0),
2935 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 3562, 214 => 111, 229 => 180,
others => 0),
2936 =>
(others => 0),
2937 =>
(others => 0),
2938 =>
(others => 0),
2939 =>
(9 => 3567, 12 => 3568, others => 0),
2940 =>
(others => 0),
2941 =>
(others => 0),
2942 =>
(12 => 3571, others => 0),
2943 =>
(9 => 3573, others => 0),
2944 =>
(others => 0),
2945 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 3575, 214 => 111, 229 => 180,
others => 0),
2946 =>
(others => 0),
2947 =>
(others => 0),
2948 =>
(others => 0),
2949 =>
(others => 0),
2950 =>
(others => 0),
2951 =>
(9 => 3581, 12 => 3582, others => 0),
2952 =>
(12 => 3584, others => 0),
2953 =>
(205 => 2933, others => 0),
2954 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 3586, 229 => 923,
others => 0),
2955 =>
(9 => 3589, 12 => 3590, others => 0),
2956 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 228 => 3591, 229 => 923,
others => 0),
2957 =>
(others => 0),
2958 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 3592, 235 => 1118,
236 => 1119, others => 0),
2959 =>
(others => 0),
2960 =>
(others => 0),
2961 =>
(others => 0),
2962 =>
(others => 0),
2963 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 3595, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2964 =>
(others => 0),
2965 =>
(others => 0),
2966 =>
(86 => 1209, 218 => 3597, others => 0),
2967 =>
(others => 0),
2968 =>
(others => 0),
2969 =>
(others => 0),
2970 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3604,
222 => 433, 225 => 434, 242 => 435, others => 0),
2971 =>
(others => 0),
2972 =>
(others => 0),
2973 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
55 => 72, 56 => 182, 63 => 103, 67 => 1413,
68 => 3605, 90 => 104, 94 => 268, 113 => 3606,
121 => 105, 134 => 106, 156 => 1416, 164 => 108,
171 => 184, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
2974 =>
(others => 0),
2975 =>
(12 => 3610, others => 0),
2976 =>
(others => 0),
2977 =>
(others => 0),
2978 =>
(others => 0),
2979 =>
(others => 0),
2980 =>
(others => 0),
2981 =>
(others => 0),
2982 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 3615, 235 => 1118,
236 => 1119, others => 0),
2983 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 3616,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
2984 =>
(others => 0),
2985 =>
(others => 0),
2986 =>
(others => 0),
2987 =>
(others => 0),
2988 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 141 => 3619, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 1678,
others => 0),
2989 =>
(others => 0),
2990 =>
(others => 0),
2991 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 205, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 218, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
2992 =>
(12 => 290, others => 0),
2993 =>
(others => 0),
2994 =>
(57 => 3622, 134 => 40, 181 => 49, 215 => 50,
others => 0),
2995 =>
(52 => 3623, 57 => 87, 134 => 40, 181 => 49,
215 => 50, others => 0),
2996 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3624, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
2997 =>
(55 => 72, 56 => 182, 79 => 3626, 113 => 3627,
171 => 184, others => 0),
2998 =>
(others => 0),
2999 =>
(others => 0),
3000 =>
(others => 0),
3001 =>
(others => 0),
3002 =>
(others => 0),
3003 =>
(others => 0),
3004 =>
(others => 0),
3005 =>
(158 => 521, others => 0),
3006 =>
(12 => 771, others => 0),
3007 =>
(others => 0),
3008 =>
(others => 0),
3009 =>
(others => 0),
3010 =>
(others => 0),
3011 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 3635,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
3012 =>
(others => 0),
3013 =>
(others => 0),
3014 =>
(others => 0),
3015 =>
(others => 0),
3016 =>
(others => 0),
3017 =>
(others => 0),
3018 =>
(others => 0),
3019 =>
(others => 0),
3020 =>
(others => 0),
3021 =>
(others => 0),
3022 =>
(others => 0),
3023 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3644,
222 => 433, 225 => 434, 242 => 435, others => 0),
3024 =>
(others => 0),
3025 =>
(others => 0),
3026 =>
(3 => 697, 4 => 698, 18 => 102, 58 => 699,
59 => 700, 63 => 103, 76 => 701, 77 => 702,
90 => 104, 121 => 105, 134 => 106, 156 => 703,
164 => 108, 176 => 109, 194 => 110, 212 => 3648,
214 => 111, 238 => 705, others => 0),
3027 =>
(others => 0),
3028 =>
(others => 0),
3029 =>
(others => 0),
3030 =>
(others => 0),
3031 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3652, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3032 =>
(others => 0),
3033 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3654, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3034 =>
(others => 0),
3035 =>
(others => 0),
3036 =>
(others => 0),
3037 =>
(others => 0),
3038 =>
(others => 0),
3039 =>
(others => 0),
3040 =>
(others => 0),
3041 =>
(others => 0),
3042 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3661, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3043 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3662,
222 => 433, 225 => 434, 242 => 435, others => 0),
3044 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3663, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3045 =>
(others => 0),
3046 =>
(others => 0),
3047 =>
(others => 0),
3048 =>
(others => 0),
3049 =>
(others => 0),
3050 =>
(others => 0),
3051 =>
(others => 0),
3052 =>
(others => 0),
3053 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3672,
222 => 433, 225 => 434, 242 => 435, others => 0),
3054 =>
(others => 0),
3055 =>
(others => 0),
3056 =>
(others => 0),
3057 =>
(others => 0),
3058 =>
(others => 0),
3059 =>
(others => 0),
3060 =>
(55 => 72, 56 => 182, 113 => 3676, 171 => 184,
others => 0),
3061 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3677,
222 => 433, 225 => 434, 242 => 435, others => 0),
3062 =>
(others => 0),
3063 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3678,
222 => 433, 225 => 434, 242 => 435, others => 0),
3064 =>
(others => 0),
3065 =>
(others => 0),
3066 =>
(others => 0),
3067 =>
(others => 0),
3068 =>
(others => 0),
3069 =>
(others => 0),
3070 =>
(others => 0),
3071 =>
(86 => 1209, 218 => 3686, others => 0),
3072 =>
(others => 0),
3073 =>
(others => 0),
3074 =>
(others => 0),
3075 =>
(others => 0),
3076 =>
(others => 0),
3077 =>
(84 => 3694, others => 0),
3078 =>
(others => 0),
3079 =>
(others => 0),
3080 =>
(83 => 3695, 134 => 40, 166 => 1796, 181 => 1797,
215 => 42, others => 0),
3081 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3696,
222 => 433, 225 => 434, 242 => 435, others => 0),
3082 =>
(others => 0),
3083 =>
(others => 0),
3084 =>
(others => 0),
3085 =>
(12 => 3699, others => 0),
3086 =>
(others => 0),
3087 =>
(others => 0),
3088 =>
(others => 0),
3089 =>
(5 => 2899, 18 => 102, 39 => 3701, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
3090 =>
(others => 0),
3091 =>
(5 => 2899, 18 => 102, 39 => 3703, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
3092 =>
(others => 0),
3093 =>
(12 => 3706, others => 0),
3094 =>
(others => 0),
3095 =>
(others => 0),
3096 =>
(others => 0),
3097 =>
(others => 0),
3098 =>
(others => 0),
3099 =>
(others => 0),
3100 =>
(others => 0),
3101 =>
(others => 0),
3102 =>
(134 => 40, 181 => 3710, 215 => 42, others => 0),
3103 =>
(others => 0),
3104 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3711, others => 0),
3105 =>
(14 => 3204, others => 0),
3106 =>
(others => 0),
3107 =>
(14 => 3213, others => 0),
3108 =>
(others => 0),
3109 =>
(14 => 3250, others => 0),
3110 =>
(others => 0),
3111 =>
(others => 0),
3112 =>
(12 => 3714, others => 0),
3113 =>
(12 => 3716, others => 0),
3114 =>
(12 => 3718, others => 0),
3115 =>
(others => 0),
3116 =>
(others => 0),
3117 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3720, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3118 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3721, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3119 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3722, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3120 =>
(others => 0),
3121 =>
(27 => 3723, others => 0),
3122 =>
(others => 0),
3123 =>
(others => 0),
3124 =>
(134 => 40, 181 => 3726, 215 => 42, others => 0),
3125 =>
(others => 0),
3126 =>
(134 => 40, 181 => 3728, 215 => 42, others => 0),
3127 =>
(others => 0),
3128 =>
(others => 0),
3129 =>
(others => 0),
3130 =>
(others => 0),
3131 =>
(others => 0),
3132 =>
(others => 0),
3133 =>
(others => 0),
3134 =>
(others => 0),
3135 =>
(others => 0),
3136 =>
(86 => 1209, 218 => 3731, others => 0),
3137 =>
(134 => 40, 181 => 3733, 215 => 42, others => 0),
3138 =>
(others => 0),
3139 =>
(others => 0),
3140 =>
(others => 0),
3141 =>
(others => 0),
3142 =>
(others => 0),
3143 =>
(others => 0),
3144 =>
(others => 0),
3145 =>
(134 => 40, 181 => 3741, 215 => 42, others => 0),
3146 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3742,
222 => 433, 225 => 434, 242 => 435, others => 0),
3147 =>
(others => 0),
3148 =>
(others => 0),
3149 =>
(others => 0),
3150 =>
(others => 0),
3151 =>
(134 => 40, 181 => 3746, 215 => 42, others => 0),
3152 =>
(others => 0),
3153 =>
(134 => 40, 181 => 3748, 215 => 42, others => 0),
3154 =>
(others => 0),
3155 =>
(others => 0),
3156 =>
(others => 0),
3157 =>
(others => 0),
3158 =>
(others => 0),
3159 =>
(others => 0),
3160 =>
(others => 0),
3161 =>
(others => 0),
3162 =>
(others => 0),
3163 =>
(others => 0),
3164 =>
(others => 0),
3165 =>
(others => 0),
3166 =>
(others => 0),
3167 =>
(others => 0),
3168 =>
(others => 0),
3169 =>
(61 => 3759, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3170 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3760,
222 => 433, 225 => 434, 242 => 435, others => 0),
3171 =>
(61 => 3762, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3172 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3763,
222 => 433, 225 => 434, 242 => 435, others => 0),
3173 =>
(others => 0),
3174 =>
(others => 0),
3175 =>
(others => 0),
3176 =>
(others => 0),
3177 =>
(others => 0),
3178 =>
(86 => 1209, 218 => 3768, others => 0),
3179 =>
(61 => 3770, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3180 =>
(others => 0),
3181 =>
(86 => 1209, 218 => 3771, others => 0),
3182 =>
(61 => 3773, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3183 =>
(others => 0),
3184 =>
(others => 0),
3185 =>
(others => 0),
3186 =>
(others => 0),
3187 =>
(others => 0),
3188 =>
(others => 0),
3189 =>
(others => 0),
3190 =>
(86 => 1209, 218 => 3779, others => 0),
3191 =>
(61 => 3781, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3192 =>
(others => 0),
3193 =>
(86 => 1209, 218 => 3782, others => 0),
3194 =>
(61 => 3784, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3195 =>
(others => 0),
3196 =>
(others => 0),
3197 =>
(others => 0),
3198 =>
(12 => 3791, others => 0),
3199 =>
(12 => 3793, others => 0),
3200 =>
(12 => 3795, others => 0),
3201 =>
(61 => 3797, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3202 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3798,
222 => 433, 225 => 434, 242 => 435, others => 0),
3203 =>
(12 => 3800, others => 0),
3204 =>
(12 => 3802, others => 0),
3205 =>
(others => 0),
3206 =>
(others => 0),
3207 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3807, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3208 =>
(12 => 3809, others => 0),
3209 =>
(12 => 3811, others => 0),
3210 =>
(61 => 3813, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3211 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3814,
222 => 433, 225 => 434, 242 => 435, others => 0),
3212 =>
(12 => 3816, others => 0),
3213 =>
(12 => 3818, others => 0),
3214 =>
(others => 0),
3215 =>
(others => 0),
3216 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3823, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3217 =>
(others => 0),
3218 =>
(others => 0),
3219 =>
(others => 0),
3220 =>
(others => 0),
3221 =>
(others => 0),
3222 =>
(others => 0),
3223 =>
(others => 0),
3224 =>
(others => 0),
3225 =>
(others => 0),
3226 =>
(134 => 40, 181 => 3831, 215 => 42, others => 0),
3227 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3832,
222 => 433, 225 => 434, 242 => 435, others => 0),
3228 =>
(others => 0),
3229 =>
(others => 0),
3230 =>
(134 => 40, 181 => 3835, 215 => 42, others => 0),
3231 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3836,
222 => 433, 225 => 434, 242 => 435, others => 0),
3232 =>
(others => 0),
3233 =>
(12 => 3840, others => 0),
3234 =>
(134 => 40, 181 => 3842, 215 => 42, others => 0),
3235 =>
(others => 0),
3236 =>
(others => 0),
3237 =>
(others => 0),
3238 =>
(others => 0),
3239 =>
(others => 0),
3240 =>
(others => 0),
3241 =>
(others => 0),
3242 =>
(others => 0),
3243 =>
(86 => 1209, 218 => 3847, others => 0),
3244 =>
(134 => 40, 181 => 3849, 215 => 42, others => 0),
3245 =>
(12 => 3851, others => 0),
3246 =>
(12 => 3853, others => 0),
3247 =>
(61 => 3855, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3248 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3856,
222 => 433, 225 => 434, 242 => 435, others => 0),
3249 =>
(12 => 3858, others => 0),
3250 =>
(12 => 3860, others => 0),
3251 =>
(others => 0),
3252 =>
(others => 0),
3253 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3865, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3254 =>
(others => 0),
3255 =>
(others => 0),
3256 =>
(others => 0),
3257 =>
(86 => 1209, 218 => 3866, others => 0),
3258 =>
(61 => 3868, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3259 =>
(others => 0),
3260 =>
(others => 0),
3261 =>
(others => 0),
3262 =>
(others => 0),
3263 =>
(others => 0),
3264 =>
(others => 0),
3265 =>
(others => 0),
3266 =>
(others => 0),
3267 =>
(61 => 3876, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3268 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3877,
222 => 433, 225 => 434, 242 => 435, others => 0),
3269 =>
(others => 0),
3270 =>
(others => 0),
3271 =>
(others => 0),
3272 =>
(86 => 1209, 218 => 3878, others => 0),
3273 =>
(61 => 3880, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3274 =>
(others => 0),
3275 =>
(others => 0),
3276 =>
(others => 0),
3277 =>
(others => 0),
3278 =>
(others => 0),
3279 =>
(others => 0),
3280 =>
(others => 0),
3281 =>
(others => 0),
3282 =>
(61 => 3888, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3283 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 3889,
222 => 433, 225 => 434, 242 => 435, others => 0),
3284 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3890, others => 0),
3285 =>
(others => 0),
3286 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3891, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3287 =>
(10 => 197, 14 => 3896, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 3897, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
3288 =>
(others => 0),
3289 =>
(others => 0),
3290 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3900, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3291 =>
(10 => 197, 14 => 3905, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 3906, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
3292 =>
(others => 0),
3293 =>
(12 => 3910, others => 0),
3294 =>
(others => 0),
3295 =>
(others => 0),
3296 =>
(others => 0),
3297 =>
(others => 0),
3298 =>
(others => 0),
3299 =>
(12 => 3914, others => 0),
3300 =>
(12 => 3916, others => 0),
3301 =>
(others => 0),
3302 =>
(12 => 3919, others => 0),
3303 =>
(others => 0),
3304 =>
(others => 0),
3305 =>
(12 => 3922, others => 0),
3306 =>
(12 => 3924, others => 0),
3307 =>
(12 => 3927, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 3928, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
3308 =>
(12 => 3930, others => 0),
3309 =>
(others => 0),
3310 =>
(others => 0),
3311 =>
(others => 0),
3312 =>
(others => 0),
3313 =>
(others => 0),
3314 =>
(others => 0),
3315 =>
(others => 0),
3316 =>
(others => 0),
3317 =>
(others => 0),
3318 =>
(others => 0),
3319 =>
(others => 0),
3320 =>
(others => 0),
3321 =>
(others => 0),
3322 =>
(others => 0),
3323 =>
(others => 0),
3324 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3935, others => 0),
3325 =>
(others => 0),
3326 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3938, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3327 =>
(others => 0),
3328 =>
(others => 0),
3329 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 3942, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3330 =>
(others => 0),
3331 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 3944, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3332 =>
(others => 0),
3333 =>
(others => 0),
3334 =>
(55 => 72, 56 => 182, 113 => 3946, 171 => 184,
others => 0),
3335 =>
(5 => 3948, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3949,
others => 0),
3336 =>
(55 => 72, 56 => 182, 113 => 3950, 171 => 184,
others => 0),
3337 =>
(others => 0),
3338 =>
(others => 0),
3339 =>
(others => 0),
3340 =>
(others => 0),
3341 =>
(others => 0),
3342 =>
(12 => 3954, others => 0),
3343 =>
(others => 0),
3344 =>
(others => 0),
3345 =>
(others => 0),
3346 =>
(5 => 2899, 18 => 102, 39 => 3956, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
3347 =>
(others => 0),
3348 =>
(others => 0),
3349 =>
(others => 0),
3350 =>
(5 => 2899, 18 => 102, 39 => 3957, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
3351 =>
(others => 0),
3352 =>
(others => 0),
3353 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3958, others => 0),
3354 =>
(others => 0),
3355 =>
(others => 0),
3356 =>
(5 => 3961, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3962,
others => 0),
3357 =>
(12 => 3963, others => 0),
3358 =>
(others => 0),
3359 =>
(others => 0),
3360 =>
(others => 0),
3361 =>
(12 => 3966, others => 0),
3362 =>
(others => 0),
3363 =>
(others => 0),
3364 =>
(others => 0),
3365 =>
(others => 0),
3366 =>
(others => 0),
3367 =>
(others => 0),
3368 =>
(12 => 3970, others => 0),
3369 =>
(others => 0),
3370 =>
(others => 0),
3371 =>
(others => 0),
3372 =>
(others => 0),
3373 =>
(others => 0),
3374 =>
(others => 0),
3375 =>
(others => 0),
3376 =>
(others => 0),
3377 =>
(others => 0),
3378 =>
(others => 0),
3379 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3975, others => 0),
3380 =>
(others => 0),
3381 =>
(others => 0),
3382 =>
(12 => 3978, others => 0),
3383 =>
(others => 0),
3384 =>
(others => 0),
3385 =>
(others => 0),
3386 =>
(others => 0),
3387 =>
(others => 0),
3388 =>
(others => 0),
3389 =>
(5 => 3981, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 3982,
others => 0),
3390 =>
(others => 0),
3391 =>
(others => 0),
3392 =>
(others => 0),
3393 =>
(others => 0),
3394 =>
(others => 0),
3395 =>
(others => 0),
3396 =>
(others => 0),
3397 =>
(others => 0),
3398 =>
(others => 0),
3399 =>
(others => 0),
3400 =>
(others => 0),
3401 =>
(others => 0),
3402 =>
(134 => 40, 181 => 3988, 215 => 42, others => 0),
3403 =>
(others => 0),
3404 =>
(others => 0),
3405 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 3989, others => 0),
3406 =>
(others => 0),
3407 =>
(others => 0),
3408 =>
(others => 0),
3409 =>
(others => 0),
3410 =>
(others => 0),
3411 =>
(others => 0),
3412 =>
(others => 0),
3413 =>
(86 => 1209, 218 => 3992, others => 0),
3414 =>
(61 => 3994, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3415 =>
(others => 0),
3416 =>
(others => 0),
3417 =>
(others => 0),
3418 =>
(others => 0),
3419 =>
(others => 0),
3420 =>
(others => 0),
3421 =>
(others => 0),
3422 =>
(others => 0),
3423 =>
(61 => 4002, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3424 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4003,
222 => 433, 225 => 434, 242 => 435, others => 0),
3425 =>
(61 => 4005, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3426 =>
(others => 0),
3427 =>
(others => 0),
3428 =>
(others => 0),
3429 =>
(others => 0),
3430 =>
(others => 0),
3431 =>
(others => 0),
3432 =>
(others => 0),
3433 =>
(others => 0),
3434 =>
(86 => 1209, 218 => 4010, others => 0),
3435 =>
(61 => 4012, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3436 =>
(61 => 4014, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3437 =>
(others => 0),
3438 =>
(others => 0),
3439 =>
(others => 0),
3440 =>
(others => 0),
3441 =>
(others => 0),
3442 =>
(others => 0),
3443 =>
(others => 0),
3444 =>
(others => 0),
3445 =>
(86 => 1209, 218 => 4019, others => 0),
3446 =>
(61 => 4021, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3447 =>
(others => 0),
3448 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 4022, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3449 =>
(10 => 197, 14 => 4027, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 4028, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
3450 =>
(others => 0),
3451 =>
(others => 0),
3452 =>
(others => 0),
3453 =>
(others => 0),
3454 =>
(others => 0),
3455 =>
(others => 0),
3456 =>
(others => 0),
3457 =>
(others => 0),
3458 =>
(others => 0),
3459 =>
(others => 0),
3460 =>
(others => 0),
3461 =>
(others => 0),
3462 =>
(61 => 4039, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3463 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4040,
222 => 433, 225 => 434, 242 => 435, others => 0),
3464 =>
(61 => 4042, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3465 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4043,
222 => 433, 225 => 434, 242 => 435, others => 0),
3466 =>
(others => 0),
3467 =>
(others => 0),
3468 =>
(others => 0),
3469 =>
(others => 0),
3470 =>
(others => 0),
3471 =>
(others => 0),
3472 =>
(others => 0),
3473 =>
(others => 0),
3474 =>
(others => 0),
3475 =>
(others => 0),
3476 =>
(others => 0),
3477 =>
(others => 0),
3478 =>
(61 => 4054, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3479 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4055,
222 => 433, 225 => 434, 242 => 435, others => 0),
3480 =>
(61 => 4057, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3481 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4058,
222 => 433, 225 => 434, 242 => 435, others => 0),
3482 =>
(others => 0),
3483 =>
(others => 0),
3484 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1885, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3485 =>
(others => 0),
3486 =>
(12 => 4062, others => 0),
3487 =>
(5 => 4064, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4065,
others => 0),
3488 =>
(12 => 4067, others => 0),
3489 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4068, others => 0),
3490 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1972, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3491 =>
(others => 0),
3492 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 1981, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3493 =>
(others => 0),
3494 =>
(others => 0),
3495 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2145, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3496 =>
(others => 0),
3497 =>
(others => 0),
3498 =>
(12 => 4072, others => 0),
3499 =>
(12 => 4074, others => 0),
3500 =>
(others => 0),
3501 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4075, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3502 =>
(others => 0),
3503 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4076, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3504 =>
(others => 0),
3505 =>
(others => 0),
3506 =>
(others => 0),
3507 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4078, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3508 =>
(134 => 40, 181 => 4080, 215 => 42, others => 0),
3509 =>
(others => 0),
3510 =>
(others => 0),
3511 =>
(others => 0),
3512 =>
(others => 0),
3513 =>
(others => 0),
3514 =>
(others => 0),
3515 =>
(others => 0),
3516 =>
(others => 0),
3517 =>
(86 => 1209, 218 => 4085, others => 0),
3518 =>
(134 => 40, 181 => 4087, 215 => 42, others => 0),
3519 =>
(others => 0),
3520 =>
(12 => 4089, others => 0),
3521 =>
(others => 0),
3522 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 64 => 339, 65 => 4091, 66 => 1024,
90 => 104, 91 => 1025, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 166 => 343,
176 => 344, 194 => 110, 199 => 345, 202 => 272,
208 => 273, 214 => 111, 221 => 348, others => 0),
3523 =>
(246 => 4093, 247 => 4094, others => 0),
3524 =>
(others => 0),
3525 =>
(others => 0),
3526 =>
(others => 0),
3527 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4095, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3528 =>
(others => 0),
3529 =>
(others => 0),
3530 =>
(others => 0),
3531 =>
(55 => 72, 56 => 182, 113 => 4100, 171 => 184,
others => 0),
3532 =>
(5 => 4102, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4103,
others => 0),
3533 =>
(55 => 72, 56 => 182, 113 => 4104, 171 => 184,
others => 0),
3534 =>
(others => 0),
3535 =>
(others => 0),
3536 =>
(others => 0),
3537 =>
(others => 0),
3538 =>
(others => 0),
3539 =>
(12 => 4108, others => 0),
3540 =>
(12 => 4110, others => 0),
3541 =>
(12 => 4112, others => 0),
3542 =>
(12 => 4114, others => 0),
3543 =>
(205 => 4116, others => 0),
3544 =>
(others => 0),
3545 =>
(others => 0),
3546 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 94 => 268, 121 => 105,
134 => 106, 156 => 270, 164 => 108, 176 => 109,
194 => 110, 202 => 272, 214 => 111, 221 => 4117,
others => 0),
3547 =>
(others => 0),
3548 =>
(others => 0),
3549 =>
(others => 0),
3550 =>
(others => 0),
3551 =>
(others => 0),
3552 =>
(others => 0),
3553 =>
(others => 0),
3554 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4121, others => 0),
3555 =>
(others => 0),
3556 =>
(others => 0),
3557 =>
(others => 0),
3558 =>
(others => 0),
3559 =>
(others => 0),
3560 =>
(others => 0),
3561 =>
(12 => 4127, others => 0),
3562 =>
(12 => 4129, others => 0),
3563 =>
(205 => 4131, others => 0),
3564 =>
(others => 0),
3565 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 4133, 214 => 111, 229 => 180,
others => 0),
3566 =>
(others => 0),
3567 =>
(others => 0),
3568 =>
(others => 0),
3569 =>
(others => 0),
3570 =>
(others => 0),
3571 =>
(others => 0),
3572 =>
(others => 0),
3573 =>
(others => 0),
3574 =>
(12 => 4140, others => 0),
3575 =>
(12 => 4142, others => 0),
3576 =>
(205 => 4144, others => 0),
3577 =>
(others => 0),
3578 =>
(others => 0),
3579 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 4146, 214 => 111, 229 => 180,
others => 0),
3580 =>
(others => 0),
3581 =>
(others => 0),
3582 =>
(others => 0),
3583 =>
(others => 0),
3584 =>
(others => 0),
3585 =>
(12 => 4151, others => 0),
3586 =>
(9 => 4153, others => 0),
3587 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 4155, 214 => 111, 229 => 180,
others => 0),
3588 =>
(others => 0),
3589 =>
(others => 0),
3590 =>
(others => 0),
3591 =>
(9 => 4160, 12 => 4161, others => 0),
3592 =>
(others => 0),
3593 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 4163, 235 => 1118,
236 => 1119, others => 0),
3594 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 4164, 235 => 1118,
236 => 1119, others => 0),
3595 =>
(others => 0),
3596 =>
(others => 0),
3597 =>
(others => 0),
3598 =>
(others => 0),
3599 =>
(others => 0),
3600 =>
(86 => 1209, 218 => 4168, others => 0),
3601 =>
(others => 0),
3602 =>
(86 => 1209, 218 => 4171, others => 0),
3603 =>
(others => 0),
3604 =>
(others => 0),
3605 =>
(others => 0),
3606 =>
(others => 0),
3607 =>
(others => 0),
3608 =>
(others => 0),
3609 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
55 => 72, 56 => 182, 63 => 103, 67 => 1413,
68 => 4178, 90 => 104, 94 => 268, 113 => 4179,
121 => 105, 134 => 106, 156 => 1416, 164 => 108,
171 => 184, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
3610 =>
(others => 0),
3611 =>
(others => 0),
3612 =>
(12 => 4183, others => 0),
3613 =>
(12 => 4185, others => 0),
3614 =>
(others => 0),
3615 =>
(others => 0),
3616 =>
(others => 0),
3617 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 4188,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
3618 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 4189,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
3619 =>
(others => 0),
3620 =>
(others => 0),
3621 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 520, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 521, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
3622 =>
(12 => 533, others => 0),
3623 =>
(others => 0),
3624 =>
(others => 0),
3625 =>
(55 => 4193, others => 0),
3626 =>
(others => 0),
3627 =>
(others => 0),
3628 =>
(others => 0),
3629 =>
(others => 0),
3630 =>
(others => 0),
3631 =>
(others => 0),
3632 =>
(158 => 874, others => 0),
3633 =>
(others => 0),
3634 =>
(others => 0),
3635 =>
(others => 0),
3636 =>
(others => 0),
3637 =>
(others => 0),
3638 =>
(18 => 102, 36 => 1736, 37 => 4200, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 173 => 1738, 176 => 109, 194 => 110,
214 => 111, 229 => 1739, others => 0),
3639 =>
(others => 0),
3640 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 4201, 90 => 104, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 214 => 111,
221 => 1418, others => 0),
3641 =>
(others => 0),
3642 =>
(others => 0),
3643 =>
(others => 0),
3644 =>
(others => 0),
3645 =>
(others => 0),
3646 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4206,
222 => 433, 225 => 434, 242 => 435, others => 0),
3647 =>
(others => 0),
3648 =>
(others => 0),
3649 =>
(others => 0),
3650 =>
(3 => 697, 4 => 698, 18 => 102, 58 => 699,
59 => 700, 63 => 103, 76 => 701, 77 => 702,
90 => 104, 121 => 105, 134 => 106, 156 => 703,
164 => 108, 176 => 109, 194 => 110, 212 => 4208,
214 => 111, 238 => 705, others => 0),
3651 =>
(others => 0),
3652 =>
(others => 0),
3653 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4210, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3654 =>
(others => 0),
3655 =>
(others => 0),
3656 =>
(others => 0),
3657 =>
(others => 0),
3658 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4212,
222 => 433, 225 => 434, 242 => 435, others => 0),
3659 =>
(others => 0),
3660 =>
(others => 0),
3661 =>
(others => 0),
3662 =>
(others => 0),
3663 =>
(others => 0),
3664 =>
(others => 0),
3665 =>
(others => 0),
3666 =>
(others => 0),
3667 =>
(others => 0),
3668 =>
(others => 0),
3669 =>
(others => 0),
3670 =>
(others => 0),
3671 =>
(others => 0),
3672 =>
(others => 0),
3673 =>
(others => 0),
3674 =>
(others => 0),
3675 =>
(others => 0),
3676 =>
(others => 0),
3677 =>
(others => 0),
3678 =>
(others => 0),
3679 =>
(others => 0),
3680 =>
(others => 0),
3681 =>
(others => 0),
3682 =>
(others => 0),
3683 =>
(others => 0),
3684 =>
(others => 0),
3685 =>
(others => 0),
3686 =>
(others => 0),
3687 =>
(others => 0),
3688 =>
(others => 0),
3689 =>
(86 => 1209, 218 => 4236, others => 0),
3690 =>
(others => 0),
3691 =>
(others => 0),
3692 =>
(others => 0),
3693 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4241,
222 => 433, 225 => 434, 242 => 435, others => 0),
3694 =>
(others => 0),
3695 =>
(others => 0),
3696 =>
(others => 0),
3697 =>
(others => 0),
3698 =>
(others => 0),
3699 =>
(others => 0),
3700 =>
(others => 0),
3701 =>
(others => 0),
3702 =>
(5 => 2899, 18 => 102, 39 => 4244, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
3703 =>
(others => 0),
3704 =>
(5 => 2899, 18 => 102, 39 => 4245, 63 => 103,
90 => 104, 121 => 105, 134 => 106, 156 => 107,
164 => 108, 176 => 109, 194 => 110, 214 => 111,
228 => 2901, 229 => 923, others => 0),
3705 =>
(others => 0),
3706 =>
(others => 0),
3707 =>
(others => 0),
3708 =>
(others => 0),
3709 =>
(others => 0),
3710 =>
(others => 0),
3711 =>
(12 => 4249, others => 0),
3712 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4250, others => 0),
3713 =>
(14 => 3896, others => 0),
3714 =>
(others => 0),
3715 =>
(14 => 3905, others => 0),
3716 =>
(others => 0),
3717 =>
(14 => 4027, others => 0),
3718 =>
(others => 0),
3719 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4251, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
3720 =>
(others => 0),
3721 =>
(others => 0),
3722 =>
(others => 0),
3723 =>
(others => 0),
3724 =>
(others => 0),
3725 =>
(others => 0),
3726 =>
(others => 0),
3727 =>
(others => 0),
3728 =>
(others => 0),
3729 =>
(134 => 40, 181 => 4256, 215 => 42, others => 0),
3730 =>
(others => 0),
3731 =>
(others => 0),
3732 =>
(others => 0),
3733 =>
(others => 0),
3734 =>
(others => 0),
3735 =>
(86 => 1209, 218 => 4259, others => 0),
3736 =>
(134 => 40, 181 => 4261, 215 => 42, others => 0),
3737 =>
(others => 0),
3738 =>
(86 => 1209, 218 => 4262, others => 0),
3739 =>
(134 => 40, 181 => 4264, 215 => 42, others => 0),
3740 =>
(others => 0),
3741 =>
(others => 0),
3742 =>
(others => 0),
3743 =>
(others => 0),
3744 =>
(others => 0),
3745 =>
(others => 0),
3746 =>
(others => 0),
3747 =>
(others => 0),
3748 =>
(others => 0),
3749 =>
(134 => 40, 181 => 4271, 215 => 42, others => 0),
3750 =>
(others => 0),
3751 =>
(others => 0),
3752 =>
(others => 0),
3753 =>
(others => 0),
3754 =>
(86 => 1209, 218 => 4272, others => 0),
3755 =>
(61 => 4274, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3756 =>
(others => 0),
3757 =>
(others => 0),
3758 =>
(others => 0),
3759 =>
(others => 0),
3760 =>
(others => 0),
3761 =>
(others => 0),
3762 =>
(others => 0),
3763 =>
(others => 0),
3764 =>
(61 => 4282, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3765 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4283,
222 => 433, 225 => 434, 242 => 435, others => 0),
3766 =>
(61 => 4285, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3767 =>
(others => 0),
3768 =>
(others => 0),
3769 =>
(others => 0),
3770 =>
(others => 0),
3771 =>
(others => 0),
3772 =>
(others => 0),
3773 =>
(others => 0),
3774 =>
(others => 0),
3775 =>
(86 => 1209, 218 => 4290, others => 0),
3776 =>
(61 => 4292, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3777 =>
(61 => 4294, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3778 =>
(others => 0),
3779 =>
(others => 0),
3780 =>
(others => 0),
3781 =>
(others => 0),
3782 =>
(others => 0),
3783 =>
(others => 0),
3784 =>
(others => 0),
3785 =>
(others => 0),
3786 =>
(86 => 1209, 218 => 4299, others => 0),
3787 =>
(61 => 4301, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3788 =>
(others => 0),
3789 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 4302, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
3790 =>
(10 => 197, 14 => 4307, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 4308, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
3791 =>
(others => 0),
3792 =>
(others => 0),
3793 =>
(others => 0),
3794 =>
(others => 0),
3795 =>
(others => 0),
3796 =>
(others => 0),
3797 =>
(others => 0),
3798 =>
(others => 0),
3799 =>
(others => 0),
3800 =>
(others => 0),
3801 =>
(others => 0),
3802 =>
(others => 0),
3803 =>
(61 => 4319, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3804 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4320,
222 => 433, 225 => 434, 242 => 435, others => 0),
3805 =>
(61 => 4322, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3806 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4323,
222 => 433, 225 => 434, 242 => 435, others => 0),
3807 =>
(others => 0),
3808 =>
(others => 0),
3809 =>
(others => 0),
3810 =>
(others => 0),
3811 =>
(others => 0),
3812 =>
(others => 0),
3813 =>
(others => 0),
3814 =>
(others => 0),
3815 =>
(others => 0),
3816 =>
(others => 0),
3817 =>
(others => 0),
3818 =>
(others => 0),
3819 =>
(61 => 4334, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3820 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4335,
222 => 433, 225 => 434, 242 => 435, others => 0),
3821 =>
(61 => 4337, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3822 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4338,
222 => 433, 225 => 434, 242 => 435, others => 0),
3823 =>
(others => 0),
3824 =>
(others => 0),
3825 =>
(others => 0),
3826 =>
(others => 0),
3827 =>
(others => 0),
3828 =>
(86 => 1209, 218 => 4341, others => 0),
3829 =>
(134 => 40, 181 => 4343, 215 => 42, others => 0),
3830 =>
(others => 0),
3831 =>
(others => 0),
3832 =>
(others => 0),
3833 =>
(others => 0),
3834 =>
(others => 0),
3835 =>
(others => 0),
3836 =>
(others => 0),
3837 =>
(134 => 40, 181 => 4351, 215 => 42, others => 0),
3838 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4352,
222 => 433, 225 => 434, 242 => 435, others => 0),
3839 =>
(others => 0),
3840 =>
(others => 0),
3841 =>
(others => 0),
3842 =>
(others => 0),
3843 =>
(134 => 40, 181 => 4356, 215 => 42, others => 0),
3844 =>
(others => 0),
3845 =>
(134 => 40, 181 => 4358, 215 => 42, others => 0),
3846 =>
(others => 0),
3847 =>
(others => 0),
3848 =>
(others => 0),
3849 =>
(others => 0),
3850 =>
(others => 0),
3851 =>
(others => 0),
3852 =>
(others => 0),
3853 =>
(others => 0),
3854 =>
(others => 0),
3855 =>
(others => 0),
3856 =>
(others => 0),
3857 =>
(others => 0),
3858 =>
(others => 0),
3859 =>
(others => 0),
3860 =>
(others => 0),
3861 =>
(61 => 4369, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3862 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4370,
222 => 433, 225 => 434, 242 => 435, others => 0),
3863 =>
(61 => 4372, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3864 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4373,
222 => 433, 225 => 434, 242 => 435, others => 0),
3865 =>
(others => 0),
3866 =>
(others => 0),
3867 =>
(others => 0),
3868 =>
(others => 0),
3869 =>
(others => 0),
3870 =>
(86 => 1209, 218 => 4378, others => 0),
3871 =>
(61 => 4380, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3872 =>
(others => 0),
3873 =>
(86 => 1209, 218 => 4381, others => 0),
3874 =>
(61 => 4383, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3875 =>
(others => 0),
3876 =>
(others => 0),
3877 =>
(others => 0),
3878 =>
(others => 0),
3879 =>
(others => 0),
3880 =>
(others => 0),
3881 =>
(others => 0),
3882 =>
(86 => 1209, 218 => 4389, others => 0),
3883 =>
(61 => 4391, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3884 =>
(others => 0),
3885 =>
(86 => 1209, 218 => 4392, others => 0),
3886 =>
(61 => 4394, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3887 =>
(others => 0),
3888 =>
(others => 0),
3889 =>
(others => 0),
3890 =>
(12 => 4401, others => 0),
3891 =>
(12 => 4403, others => 0),
3892 =>
(12 => 4405, others => 0),
3893 =>
(61 => 4407, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3894 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4408,
222 => 433, 225 => 434, 242 => 435, others => 0),
3895 =>
(12 => 4410, others => 0),
3896 =>
(12 => 4412, others => 0),
3897 =>
(others => 0),
3898 =>
(others => 0),
3899 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4417, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3900 =>
(12 => 4419, others => 0),
3901 =>
(12 => 4421, others => 0),
3902 =>
(61 => 4423, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3903 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4424,
222 => 433, 225 => 434, 242 => 435, others => 0),
3904 =>
(12 => 4426, others => 0),
3905 =>
(12 => 4428, others => 0),
3906 =>
(others => 0),
3907 =>
(others => 0),
3908 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4433, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
3909 =>
(others => 0),
3910 =>
(others => 0),
3911 =>
(others => 0),
3912 =>
(others => 0),
3913 =>
(others => 0),
3914 =>
(others => 0),
3915 =>
(others => 0),
3916 =>
(others => 0),
3917 =>
(others => 0),
3918 =>
(others => 0),
3919 =>
(others => 0),
3920 =>
(others => 0),
3921 =>
(others => 0),
3922 =>
(others => 0),
3923 =>
(others => 0),
3924 =>
(others => 0),
3925 =>
(others => 0),
3926 =>
(12 => 4441, others => 0),
3927 =>
(others => 0),
3928 =>
(12 => 4444, others => 0),
3929 =>
(others => 0),
3930 =>
(others => 0),
3931 =>
(others => 0),
3932 =>
(others => 0),
3933 =>
(others => 0),
3934 =>
(others => 0),
3935 =>
(12 => 4448, others => 0),
3936 =>
(12 => 4450, others => 0),
3937 =>
(12 => 4453, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 4454, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
3938 =>
(12 => 4456, others => 0),
3939 =>
(others => 0),
3940 =>
(12 => 4458, others => 0),
3941 =>
(12 => 4461, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 4462, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
3942 =>
(12 => 4464, others => 0),
3943 =>
(others => 0),
3944 =>
(others => 0),
3945 =>
(12 => 4465, others => 0),
3946 =>
(others => 0),
3947 =>
(others => 0),
3948 =>
(others => 0),
3949 =>
(others => 0),
3950 =>
(others => 0),
3951 =>
(others => 0),
3952 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4469, others => 0),
3953 =>
(others => 0),
3954 =>
(others => 0),
3955 =>
(12 => 4471, others => 0),
3956 =>
(others => 0),
3957 =>
(others => 0),
3958 =>
(others => 0),
3959 =>
(5 => 4473, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4474,
others => 0),
3960 =>
(others => 0),
3961 =>
(others => 0),
3962 =>
(others => 0),
3963 =>
(others => 0),
3964 =>
(others => 0),
3965 =>
(12 => 4477, others => 0),
3966 =>
(others => 0),
3967 =>
(others => 0),
3968 =>
(others => 0),
3969 =>
(others => 0),
3970 =>
(others => 0),
3971 =>
(others => 0),
3972 =>
(others => 0),
3973 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4480, others => 0),
3974 =>
(others => 0),
3975 =>
(others => 0),
3976 =>
(5 => 4483, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4484,
others => 0),
3977 =>
(others => 0),
3978 =>
(others => 0),
3979 =>
(others => 0),
3980 =>
(others => 0),
3981 =>
(others => 0),
3982 =>
(others => 0),
3983 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4487, others => 0),
3984 =>
(others => 0),
3985 =>
(others => 0),
3986 =>
(others => 0),
3987 =>
(others => 0),
3988 =>
(others => 0),
3989 =>
(12 => 4490, others => 0),
3990 =>
(others => 0),
3991 =>
(others => 0),
3992 =>
(others => 0),
3993 =>
(others => 0),
3994 =>
(others => 0),
3995 =>
(others => 0),
3996 =>
(86 => 1209, 218 => 4493, others => 0),
3997 =>
(61 => 4495, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
3998 =>
(others => 0),
3999 =>
(86 => 1209, 218 => 4496, others => 0),
4000 =>
(61 => 4498, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4001 =>
(others => 0),
4002 =>
(others => 0),
4003 =>
(others => 0),
4004 =>
(others => 0),
4005 =>
(others => 0),
4006 =>
(61 => 4504, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4007 =>
(others => 0),
4008 =>
(61 => 4506, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4009 =>
(others => 0),
4010 =>
(others => 0),
4011 =>
(others => 0),
4012 =>
(others => 0),
4013 =>
(others => 0),
4014 =>
(others => 0),
4015 =>
(61 => 4511, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4016 =>
(others => 0),
4017 =>
(61 => 4513, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4018 =>
(others => 0),
4019 =>
(others => 0),
4020 =>
(others => 0),
4021 =>
(others => 0),
4022 =>
(12 => 4517, others => 0),
4023 =>
(12 => 4519, others => 0),
4024 =>
(61 => 4521, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4025 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4522,
222 => 433, 225 => 434, 242 => 435, others => 0),
4026 =>
(12 => 4524, others => 0),
4027 =>
(12 => 4526, others => 0),
4028 =>
(others => 0),
4029 =>
(others => 0),
4030 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4531, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4031 =>
(others => 0),
4032 =>
(others => 0),
4033 =>
(others => 0),
4034 =>
(86 => 1209, 218 => 4532, others => 0),
4035 =>
(61 => 4534, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4036 =>
(others => 0),
4037 =>
(others => 0),
4038 =>
(others => 0),
4039 =>
(others => 0),
4040 =>
(others => 0),
4041 =>
(others => 0),
4042 =>
(others => 0),
4043 =>
(others => 0),
4044 =>
(61 => 4542, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4045 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4543,
222 => 433, 225 => 434, 242 => 435, others => 0),
4046 =>
(others => 0),
4047 =>
(others => 0),
4048 =>
(others => 0),
4049 =>
(86 => 1209, 218 => 4544, others => 0),
4050 =>
(61 => 4546, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4051 =>
(others => 0),
4052 =>
(others => 0),
4053 =>
(others => 0),
4054 =>
(others => 0),
4055 =>
(others => 0),
4056 =>
(others => 0),
4057 =>
(others => 0),
4058 =>
(others => 0),
4059 =>
(61 => 4554, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4060 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4555,
222 => 433, 225 => 434, 242 => 435, others => 0),
4061 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2539, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4062 =>
(others => 0),
4063 =>
(others => 0),
4064 =>
(12 => 4558, others => 0),
4065 =>
(12 => 4560, others => 0),
4066 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2586, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4067 =>
(others => 0),
4068 =>
(12 => 4562, others => 0),
4069 =>
(5 => 4564, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4565,
others => 0),
4070 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4566, others => 0),
4071 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2834, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4072 =>
(others => 0),
4073 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 2843, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4074 =>
(others => 0),
4075 =>
(others => 0),
4076 =>
(others => 0),
4077 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4567, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
4078 =>
(others => 0),
4079 =>
(others => 0),
4080 =>
(others => 0),
4081 =>
(134 => 40, 181 => 4570, 215 => 42, others => 0),
4082 =>
(others => 0),
4083 =>
(134 => 40, 181 => 4572, 215 => 42, others => 0),
4084 =>
(others => 0),
4085 =>
(others => 0),
4086 =>
(others => 0),
4087 =>
(others => 0),
4088 =>
(others => 0),
4089 =>
(others => 0),
4090 =>
(12 => 4577, others => 0),
4091 =>
(others => 0),
4092 =>
(others => 0),
4093 =>
(others => 0),
4094 =>
(246 => 4581, others => 0),
4095 =>
(12 => 4583, others => 0),
4096 =>
(others => 0),
4097 =>
(55 => 72, 56 => 182, 113 => 4584, 171 => 184,
others => 0),
4098 =>
(5 => 4586, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4587,
others => 0),
4099 =>
(55 => 72, 56 => 182, 113 => 4588, 171 => 184,
others => 0),
4100 =>
(others => 0),
4101 =>
(others => 0),
4102 =>
(others => 0),
4103 =>
(others => 0),
4104 =>
(others => 0),
4105 =>
(others => 0),
4106 =>
(others => 0),
4107 =>
(others => 0),
4108 =>
(others => 0),
4109 =>
(others => 0),
4110 =>
(others => 0),
4111 =>
(others => 0),
4112 =>
(others => 0),
4113 =>
(others => 0),
4114 =>
(others => 0),
4115 =>
(12 => 4597, others => 0),
4116 =>
(12 => 4599, others => 0),
4117 =>
(others => 0),
4118 =>
(others => 0),
4119 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4600, others => 0),
4120 =>
(others => 0),
4121 =>
(others => 0),
4122 =>
(5 => 4603, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4604,
others => 0),
4123 =>
(others => 0),
4124 =>
(12 => 4606, others => 0),
4125 =>
(others => 0),
4126 =>
(others => 0),
4127 =>
(others => 0),
4128 =>
(others => 0),
4129 =>
(others => 0),
4130 =>
(12 => 4611, others => 0),
4131 =>
(12 => 4613, others => 0),
4132 =>
(12 => 4615, others => 0),
4133 =>
(12 => 4617, others => 0),
4134 =>
(205 => 4619, others => 0),
4135 =>
(others => 0),
4136 =>
(others => 0),
4137 =>
(12 => 4621, others => 0),
4138 =>
(others => 0),
4139 =>
(others => 0),
4140 =>
(others => 0),
4141 =>
(others => 0),
4142 =>
(others => 0),
4143 =>
(12 => 4626, others => 0),
4144 =>
(12 => 4628, others => 0),
4145 =>
(12 => 4630, others => 0),
4146 =>
(12 => 4632, others => 0),
4147 =>
(205 => 4634, others => 0),
4148 =>
(others => 0),
4149 =>
(others => 0),
4150 =>
(others => 0),
4151 =>
(others => 0),
4152 =>
(others => 0),
4153 =>
(others => 0),
4154 =>
(12 => 4639, others => 0),
4155 =>
(12 => 4641, others => 0),
4156 =>
(205 => 4643, others => 0),
4157 =>
(others => 0),
4158 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 205 => 4645, 214 => 111, 229 => 180,
others => 0),
4159 =>
(others => 0),
4160 =>
(others => 0),
4161 =>
(others => 0),
4162 =>
(others => 0),
4163 =>
(others => 0),
4164 =>
(others => 0),
4165 =>
(10 => 1115, 16 => 198, 17 => 199, 78 => 1116,
173 => 226, 206 => 235, 234 => 4650, 235 => 1118,
236 => 1119, others => 0),
4166 =>
(others => 0),
4167 =>
(others => 0),
4168 =>
(others => 0),
4169 =>
(others => 0),
4170 =>
(others => 0),
4171 =>
(others => 0),
4172 =>
(others => 0),
4173 =>
(others => 0),
4174 =>
(86 => 1209, 218 => 4657, others => 0),
4175 =>
(others => 0),
4176 =>
(12 => 4662, others => 0),
4177 =>
(12 => 4664, others => 0),
4178 =>
(others => 0),
4179 =>
(others => 0),
4180 =>
(others => 0),
4181 =>
(others => 0),
4182 =>
(55 => 72, 56 => 182, 113 => 4667, 171 => 184,
others => 0),
4183 =>
(others => 0),
4184 =>
(others => 0),
4185 =>
(others => 0),
4186 =>
(others => 0),
4187 =>
(others => 0),
4188 =>
(others => 0),
4189 =>
(others => 0),
4190 =>
(10 => 1135, 16 => 198, 17 => 199, 78 => 1136,
122 => 1137, 173 => 226, 180 => 1138, 186 => 4672,
189 => 1140, 190 => 1141, 206 => 235, others => 0),
4191 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 873, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 158 => 874, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
4192 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4674, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4193 =>
(others => 0),
4194 =>
(others => 0),
4195 =>
(others => 0),
4196 =>
(others => 0),
4197 =>
(others => 0),
4198 =>
(others => 0),
4199 =>
(others => 0),
4200 =>
(18 => 102, 36 => 2371, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
173 => 1738, 176 => 109, 194 => 110, 214 => 111,
229 => 1739, others => 0),
4201 =>
(others => 0),
4202 =>
(others => 0),
4203 =>
(others => 0),
4204 =>
(others => 0),
4205 =>
(others => 0),
4206 =>
(others => 0),
4207 =>
(others => 0),
4208 =>
(others => 0),
4209 =>
(others => 0),
4210 =>
(others => 0),
4211 =>
(others => 0),
4212 =>
(others => 0),
4213 =>
(others => 0),
4214 =>
(others => 0),
4215 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4687,
222 => 433, 225 => 434, 242 => 435, others => 0),
4216 =>
(others => 0),
4217 =>
(others => 0),
4218 =>
(others => 0),
4219 =>
(others => 0),
4220 =>
(others => 0),
4221 =>
(others => 0),
4222 =>
(others => 0),
4223 =>
(others => 0),
4224 =>
(86 => 1209, 218 => 4692, others => 0),
4225 =>
(others => 0),
4226 =>
(86 => 1209, 218 => 4695, others => 0),
4227 =>
(others => 0),
4228 =>
(others => 0),
4229 =>
(others => 0),
4230 =>
(others => 0),
4231 =>
(others => 0),
4232 =>
(others => 0),
4233 =>
(others => 0),
4234 =>
(others => 0),
4235 =>
(others => 0),
4236 =>
(others => 0),
4237 =>
(others => 0),
4238 =>
(others => 0),
4239 =>
(others => 0),
4240 =>
(others => 0),
4241 =>
(others => 0),
4242 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4710,
222 => 433, 225 => 434, 242 => 435, others => 0),
4243 =>
(others => 0),
4244 =>
(others => 0),
4245 =>
(others => 0),
4246 =>
(others => 0),
4247 =>
(others => 0),
4248 =>
(14 => 4307, others => 0),
4249 =>
(others => 0),
4250 =>
(12 => 4712, others => 0),
4251 =>
(others => 0),
4252 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 4713, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
4253 =>
(others => 0),
4254 =>
(others => 0),
4255 =>
(others => 0),
4256 =>
(others => 0),
4257 =>
(134 => 40, 181 => 4716, 215 => 42, others => 0),
4258 =>
(others => 0),
4259 =>
(others => 0),
4260 =>
(others => 0),
4261 =>
(others => 0),
4262 =>
(others => 0),
4263 =>
(others => 0),
4264 =>
(others => 0),
4265 =>
(others => 0),
4266 =>
(86 => 1209, 218 => 4721, others => 0),
4267 =>
(134 => 40, 181 => 4723, 215 => 42, others => 0),
4268 =>
(others => 0),
4269 =>
(others => 0),
4270 =>
(others => 0),
4271 =>
(others => 0),
4272 =>
(others => 0),
4273 =>
(others => 0),
4274 =>
(others => 0),
4275 =>
(others => 0),
4276 =>
(86 => 1209, 218 => 4727, others => 0),
4277 =>
(61 => 4729, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4278 =>
(others => 0),
4279 =>
(86 => 1209, 218 => 4730, others => 0),
4280 =>
(61 => 4732, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4281 =>
(others => 0),
4282 =>
(others => 0),
4283 =>
(others => 0),
4284 =>
(others => 0),
4285 =>
(others => 0),
4286 =>
(61 => 4738, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4287 =>
(others => 0),
4288 =>
(61 => 4740, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4289 =>
(others => 0),
4290 =>
(others => 0),
4291 =>
(others => 0),
4292 =>
(others => 0),
4293 =>
(others => 0),
4294 =>
(others => 0),
4295 =>
(61 => 4745, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4296 =>
(others => 0),
4297 =>
(61 => 4747, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4298 =>
(others => 0),
4299 =>
(others => 0),
4300 =>
(others => 0),
4301 =>
(others => 0),
4302 =>
(12 => 4751, others => 0),
4303 =>
(12 => 4753, others => 0),
4304 =>
(61 => 4755, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4305 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4756,
222 => 433, 225 => 434, 242 => 435, others => 0),
4306 =>
(12 => 4758, others => 0),
4307 =>
(12 => 4760, others => 0),
4308 =>
(others => 0),
4309 =>
(others => 0),
4310 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4765, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4311 =>
(others => 0),
4312 =>
(others => 0),
4313 =>
(others => 0),
4314 =>
(86 => 1209, 218 => 4766, others => 0),
4315 =>
(61 => 4768, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4316 =>
(others => 0),
4317 =>
(others => 0),
4318 =>
(others => 0),
4319 =>
(others => 0),
4320 =>
(others => 0),
4321 =>
(others => 0),
4322 =>
(others => 0),
4323 =>
(others => 0),
4324 =>
(61 => 4776, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4325 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4777,
222 => 433, 225 => 434, 242 => 435, others => 0),
4326 =>
(others => 0),
4327 =>
(others => 0),
4328 =>
(others => 0),
4329 =>
(86 => 1209, 218 => 4778, others => 0),
4330 =>
(61 => 4780, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4331 =>
(others => 0),
4332 =>
(others => 0),
4333 =>
(others => 0),
4334 =>
(others => 0),
4335 =>
(others => 0),
4336 =>
(others => 0),
4337 =>
(others => 0),
4338 =>
(others => 0),
4339 =>
(61 => 4788, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4340 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4789,
222 => 433, 225 => 434, 242 => 435, others => 0),
4341 =>
(others => 0),
4342 =>
(others => 0),
4343 =>
(others => 0),
4344 =>
(others => 0),
4345 =>
(86 => 1209, 218 => 4792, others => 0),
4346 =>
(134 => 40, 181 => 4794, 215 => 42, others => 0),
4347 =>
(others => 0),
4348 =>
(86 => 1209, 218 => 4795, others => 0),
4349 =>
(134 => 40, 181 => 4797, 215 => 42, others => 0),
4350 =>
(others => 0),
4351 =>
(others => 0),
4352 =>
(others => 0),
4353 =>
(others => 0),
4354 =>
(others => 0),
4355 =>
(others => 0),
4356 =>
(others => 0),
4357 =>
(others => 0),
4358 =>
(others => 0),
4359 =>
(134 => 40, 181 => 4804, 215 => 42, others => 0),
4360 =>
(others => 0),
4361 =>
(others => 0),
4362 =>
(others => 0),
4363 =>
(others => 0),
4364 =>
(86 => 1209, 218 => 4805, others => 0),
4365 =>
(61 => 4807, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4366 =>
(others => 0),
4367 =>
(others => 0),
4368 =>
(others => 0),
4369 =>
(others => 0),
4370 =>
(others => 0),
4371 =>
(others => 0),
4372 =>
(others => 0),
4373 =>
(others => 0),
4374 =>
(61 => 4815, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4375 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4816,
222 => 433, 225 => 434, 242 => 435, others => 0),
4376 =>
(61 => 4818, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4377 =>
(others => 0),
4378 =>
(others => 0),
4379 =>
(others => 0),
4380 =>
(others => 0),
4381 =>
(others => 0),
4382 =>
(others => 0),
4383 =>
(others => 0),
4384 =>
(others => 0),
4385 =>
(86 => 1209, 218 => 4823, others => 0),
4386 =>
(61 => 4825, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4387 =>
(61 => 4827, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4388 =>
(others => 0),
4389 =>
(others => 0),
4390 =>
(others => 0),
4391 =>
(others => 0),
4392 =>
(others => 0),
4393 =>
(others => 0),
4394 =>
(others => 0),
4395 =>
(others => 0),
4396 =>
(86 => 1209, 218 => 4832, others => 0),
4397 =>
(61 => 4834, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4398 =>
(others => 0),
4399 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 4835, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
4400 =>
(10 => 197, 14 => 4840, 16 => 198, 17 => 199,
19 => 200, 20 => 201, 23 => 202, 24 => 203,
48 => 204, 50 => 4841, 55 => 72, 56 => 206,
85 => 207, 88 => 208, 119 => 209, 120 => 210,
122 => 211, 128 => 212, 129 => 213, 130 => 214,
131 => 215, 132 => 216, 137 => 217, 160 => 219,
161 => 220, 163 => 221, 167 => 222, 168 => 223,
169 => 224, 170 => 225, 173 => 226, 177 => 227,
178 => 228, 179 => 229, 180 => 230, 183 => 231,
184 => 232, 185 => 233, 193 => 234, 206 => 235,
223 => 236, 224 => 237, 227 => 238, 232 => 239,
233 => 240, 237 => 241, 243 => 242, 244 => 36,
245 => 37, others => 0),
4401 =>
(others => 0),
4402 =>
(others => 0),
4403 =>
(others => 0),
4404 =>
(others => 0),
4405 =>
(others => 0),
4406 =>
(others => 0),
4407 =>
(others => 0),
4408 =>
(others => 0),
4409 =>
(others => 0),
4410 =>
(others => 0),
4411 =>
(others => 0),
4412 =>
(others => 0),
4413 =>
(61 => 4852, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4414 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4853,
222 => 433, 225 => 434, 242 => 435, others => 0),
4415 =>
(61 => 4855, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4416 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4856,
222 => 433, 225 => 434, 242 => 435, others => 0),
4417 =>
(others => 0),
4418 =>
(others => 0),
4419 =>
(others => 0),
4420 =>
(others => 0),
4421 =>
(others => 0),
4422 =>
(others => 0),
4423 =>
(others => 0),
4424 =>
(others => 0),
4425 =>
(others => 0),
4426 =>
(others => 0),
4427 =>
(others => 0),
4428 =>
(others => 0),
4429 =>
(61 => 4867, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4430 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4868,
222 => 433, 225 => 434, 242 => 435, others => 0),
4431 =>
(61 => 4870, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4432 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4871,
222 => 433, 225 => 434, 242 => 435, others => 0),
4433 =>
(others => 0),
4434 =>
(others => 0),
4435 =>
(others => 0),
4436 =>
(others => 0),
4437 =>
(others => 0),
4438 =>
(others => 0),
4439 =>
(others => 0),
4440 =>
(others => 0),
4441 =>
(others => 0),
4442 =>
(others => 0),
4443 =>
(others => 0),
4444 =>
(others => 0),
4445 =>
(others => 0),
4446 =>
(others => 0),
4447 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 4878, 164 => 108, 176 => 109,
194 => 110, 214 => 111, others => 0),
4448 =>
(others => 0),
4449 =>
(others => 0),
4450 =>
(others => 0),
4451 =>
(others => 0),
4452 =>
(12 => 4882, others => 0),
4453 =>
(others => 0),
4454 =>
(12 => 4885, others => 0),
4455 =>
(others => 0),
4456 =>
(others => 0),
4457 =>
(others => 0),
4458 =>
(others => 0),
4459 =>
(others => 0),
4460 =>
(12 => 4889, others => 0),
4461 =>
(others => 0),
4462 =>
(12 => 4892, others => 0),
4463 =>
(others => 0),
4464 =>
(others => 0),
4465 =>
(others => 0),
4466 =>
(others => 0),
4467 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4894, others => 0),
4468 =>
(others => 0),
4469 =>
(others => 0),
4470 =>
(5 => 4897, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4898,
others => 0),
4471 =>
(others => 0),
4472 =>
(others => 0),
4473 =>
(others => 0),
4474 =>
(others => 0),
4475 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4900, others => 0),
4476 =>
(12 => 4901, others => 0),
4477 =>
(others => 0),
4478 =>
(12 => 4902, others => 0),
4479 =>
(others => 0),
4480 =>
(others => 0),
4481 =>
(5 => 4904, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4905,
others => 0),
4482 =>
(others => 0),
4483 =>
(others => 0),
4484 =>
(others => 0),
4485 =>
(others => 0),
4486 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4907, others => 0),
4487 =>
(others => 0),
4488 =>
(others => 0),
4489 =>
(others => 0),
4490 =>
(others => 0),
4491 =>
(61 => 4910, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4492 =>
(others => 0),
4493 =>
(others => 0),
4494 =>
(others => 0),
4495 =>
(others => 0),
4496 =>
(others => 0),
4497 =>
(others => 0),
4498 =>
(others => 0),
4499 =>
(others => 0),
4500 =>
(86 => 1209, 218 => 4915, others => 0),
4501 =>
(61 => 4917, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4502 =>
(others => 0),
4503 =>
(others => 0),
4504 =>
(others => 0),
4505 =>
(others => 0),
4506 =>
(others => 0),
4507 =>
(61 => 4921, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4508 =>
(others => 0),
4509 =>
(others => 0),
4510 =>
(others => 0),
4511 =>
(others => 0),
4512 =>
(others => 0),
4513 =>
(others => 0),
4514 =>
(61 => 4925, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4515 =>
(others => 0),
4516 =>
(others => 0),
4517 =>
(others => 0),
4518 =>
(others => 0),
4519 =>
(others => 0),
4520 =>
(others => 0),
4521 =>
(others => 0),
4522 =>
(others => 0),
4523 =>
(others => 0),
4524 =>
(others => 0),
4525 =>
(others => 0),
4526 =>
(others => 0),
4527 =>
(61 => 4934, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4528 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4935,
222 => 433, 225 => 434, 242 => 435, others => 0),
4529 =>
(61 => 4937, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4530 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 4938,
222 => 433, 225 => 434, 242 => 435, others => 0),
4531 =>
(others => 0),
4532 =>
(others => 0),
4533 =>
(others => 0),
4534 =>
(others => 0),
4535 =>
(others => 0),
4536 =>
(86 => 1209, 218 => 4943, others => 0),
4537 =>
(61 => 4945, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4538 =>
(others => 0),
4539 =>
(86 => 1209, 218 => 4946, others => 0),
4540 =>
(61 => 4948, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4541 =>
(others => 0),
4542 =>
(others => 0),
4543 =>
(others => 0),
4544 =>
(others => 0),
4545 =>
(others => 0),
4546 =>
(others => 0),
4547 =>
(others => 0),
4548 =>
(86 => 1209, 218 => 4954, others => 0),
4549 =>
(61 => 4956, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4550 =>
(others => 0),
4551 =>
(86 => 1209, 218 => 4957, others => 0),
4552 =>
(61 => 4959, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4553 =>
(others => 0),
4554 =>
(others => 0),
4555 =>
(others => 0),
4556 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4963, others => 0),
4557 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3205, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4558 =>
(others => 0),
4559 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3214, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4560 =>
(others => 0),
4561 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3251, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4562 =>
(others => 0),
4563 =>
(others => 0),
4564 =>
(12 => 4966, others => 0),
4565 =>
(12 => 4968, others => 0),
4566 =>
(12 => 4970, others => 0),
4567 =>
(others => 0),
4568 =>
(others => 0),
4569 =>
(others => 0),
4570 =>
(others => 0),
4571 =>
(others => 0),
4572 =>
(others => 0),
4573 =>
(134 => 40, 181 => 4974, 215 => 42, others => 0),
4574 =>
(others => 0),
4575 =>
(others => 0),
4576 =>
(others => 0),
4577 =>
(others => 0),
4578 =>
(10 => 1619, 16 => 198, 17 => 199, 38 => 1620,
40 => 1621, 42 => 4976, 55 => 72, 56 => 1623,
173 => 226, 206 => 235, 248 => 1624, others => 0),
4579 =>
(others => 0),
4580 =>
(others => 0),
4581 =>
(others => 0),
4582 =>
(others => 0),
4583 =>
(others => 0),
4584 =>
(others => 0),
4585 =>
(others => 0),
4586 =>
(others => 0),
4587 =>
(others => 0),
4588 =>
(others => 0),
4589 =>
(others => 0),
4590 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 4983, others => 0),
4591 =>
(others => 0),
4592 =>
(others => 0),
4593 =>
(others => 0),
4594 =>
(others => 0),
4595 =>
(others => 0),
4596 =>
(others => 0),
4597 =>
(others => 0),
4598 =>
(others => 0),
4599 =>
(others => 0),
4600 =>
(others => 0),
4601 =>
(5 => 4988, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 4989,
others => 0),
4602 =>
(others => 0),
4603 =>
(others => 0),
4604 =>
(others => 0),
4605 =>
(others => 0),
4606 =>
(others => 0),
4607 =>
(12 => 4993, others => 0),
4608 =>
(others => 0),
4609 =>
(others => 0),
4610 =>
(others => 0),
4611 =>
(others => 0),
4612 =>
(others => 0),
4613 =>
(others => 0),
4614 =>
(others => 0),
4615 =>
(others => 0),
4616 =>
(others => 0),
4617 =>
(others => 0),
4618 =>
(12 => 4999, others => 0),
4619 =>
(12 => 5001, others => 0),
4620 =>
(others => 0),
4621 =>
(others => 0),
4622 =>
(12 => 5004, others => 0),
4623 =>
(others => 0),
4624 =>
(others => 0),
4625 =>
(others => 0),
4626 =>
(others => 0),
4627 =>
(others => 0),
4628 =>
(others => 0),
4629 =>
(others => 0),
4630 =>
(others => 0),
4631 =>
(others => 0),
4632 =>
(others => 0),
4633 =>
(12 => 5010, others => 0),
4634 =>
(12 => 5012, others => 0),
4635 =>
(others => 0),
4636 =>
(12 => 5014, others => 0),
4637 =>
(others => 0),
4638 =>
(others => 0),
4639 =>
(others => 0),
4640 =>
(others => 0),
4641 =>
(others => 0),
4642 =>
(12 => 5019, others => 0),
4643 =>
(12 => 5021, others => 0),
4644 =>
(12 => 5023, others => 0),
4645 =>
(12 => 5025, others => 0),
4646 =>
(205 => 5027, others => 0),
4647 =>
(others => 0),
4648 =>
(others => 0),
4649 =>
(others => 0),
4650 =>
(others => 0),
4651 =>
(others => 0),
4652 =>
(others => 0),
4653 =>
(others => 0),
4654 =>
(others => 0),
4655 =>
(others => 0),
4656 =>
(others => 0),
4657 =>
(others => 0),
4658 =>
(others => 0),
4659 =>
(others => 0),
4660 =>
(others => 0),
4661 =>
(55 => 72, 56 => 182, 113 => 5036, 171 => 184,
others => 0),
4662 =>
(others => 0),
4663 =>
(others => 0),
4664 =>
(others => 0),
4665 =>
(12 => 5041, others => 0),
4666 =>
(12 => 5043, others => 0),
4667 =>
(others => 0),
4668 =>
(others => 0),
4669 =>
(others => 0),
4670 =>
(others => 0),
4671 =>
(others => 0),
4672 =>
(others => 0),
4673 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5046,
222 => 433, 225 => 434, 242 => 435, others => 0),
4674 =>
(others => 0),
4675 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 67 => 1413, 68 => 5048, 90 => 104,
94 => 268, 121 => 105, 134 => 106, 156 => 1416,
164 => 108, 176 => 344, 194 => 110, 199 => 1417,
202 => 272, 214 => 111, 221 => 1418, 229 => 1764,
others => 0),
4676 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 5049, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
4677 =>
(55 => 72, 56 => 182, 113 => 5050, 171 => 184,
others => 0),
4678 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 5051, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
4679 =>
(others => 0),
4680 =>
(others => 0),
4681 =>
(others => 0),
4682 =>
(others => 0),
4683 =>
(others => 0),
4684 =>
(others => 0),
4685 =>
(others => 0),
4686 =>
(others => 0),
4687 =>
(others => 0),
4688 =>
(others => 0),
4689 =>
(others => 0),
4690 =>
(others => 0),
4691 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5057,
222 => 433, 225 => 434, 242 => 435, others => 0),
4692 =>
(others => 0),
4693 =>
(others => 0),
4694 =>
(others => 0),
4695 =>
(others => 0),
4696 =>
(others => 0),
4697 =>
(others => 0),
4698 =>
(others => 0),
4699 =>
(others => 0),
4700 =>
(others => 0),
4701 =>
(others => 0),
4702 =>
(others => 0),
4703 =>
(others => 0),
4704 =>
(others => 0),
4705 =>
(others => 0),
4706 =>
(others => 0),
4707 =>
(others => 0),
4708 =>
(others => 0),
4709 =>
(others => 0),
4710 =>
(others => 0),
4711 =>
(14 => 4840, others => 0),
4712 =>
(others => 0),
4713 =>
(others => 0),
4714 =>
(others => 0),
4715 =>
(others => 0),
4716 =>
(others => 0),
4717 =>
(134 => 40, 181 => 5070, 215 => 42, others => 0),
4718 =>
(others => 0),
4719 =>
(134 => 40, 181 => 5072, 215 => 42, others => 0),
4720 =>
(others => 0),
4721 =>
(others => 0),
4722 =>
(others => 0),
4723 =>
(others => 0),
4724 =>
(others => 0),
4725 =>
(61 => 5076, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4726 =>
(others => 0),
4727 =>
(others => 0),
4728 =>
(others => 0),
4729 =>
(others => 0),
4730 =>
(others => 0),
4731 =>
(others => 0),
4732 =>
(others => 0),
4733 =>
(others => 0),
4734 =>
(86 => 1209, 218 => 5081, others => 0),
4735 =>
(61 => 5083, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4736 =>
(others => 0),
4737 =>
(others => 0),
4738 =>
(others => 0),
4739 =>
(others => 0),
4740 =>
(others => 0),
4741 =>
(61 => 5087, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4742 =>
(others => 0),
4743 =>
(others => 0),
4744 =>
(others => 0),
4745 =>
(others => 0),
4746 =>
(others => 0),
4747 =>
(others => 0),
4748 =>
(61 => 5091, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4749 =>
(others => 0),
4750 =>
(others => 0),
4751 =>
(others => 0),
4752 =>
(others => 0),
4753 =>
(others => 0),
4754 =>
(others => 0),
4755 =>
(others => 0),
4756 =>
(others => 0),
4757 =>
(others => 0),
4758 =>
(others => 0),
4759 =>
(others => 0),
4760 =>
(others => 0),
4761 =>
(61 => 5100, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4762 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5101,
222 => 433, 225 => 434, 242 => 435, others => 0),
4763 =>
(61 => 5103, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4764 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5104,
222 => 433, 225 => 434, 242 => 435, others => 0),
4765 =>
(others => 0),
4766 =>
(others => 0),
4767 =>
(others => 0),
4768 =>
(others => 0),
4769 =>
(others => 0),
4770 =>
(86 => 1209, 218 => 5109, others => 0),
4771 =>
(61 => 5111, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4772 =>
(others => 0),
4773 =>
(86 => 1209, 218 => 5112, others => 0),
4774 =>
(61 => 5114, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4775 =>
(others => 0),
4776 =>
(others => 0),
4777 =>
(others => 0),
4778 =>
(others => 0),
4779 =>
(others => 0),
4780 =>
(others => 0),
4781 =>
(others => 0),
4782 =>
(86 => 1209, 218 => 5120, others => 0),
4783 =>
(61 => 5122, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4784 =>
(others => 0),
4785 =>
(86 => 1209, 218 => 5123, others => 0),
4786 =>
(61 => 5125, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4787 =>
(others => 0),
4788 =>
(others => 0),
4789 =>
(others => 0),
4790 =>
(134 => 40, 181 => 5130, 215 => 42, others => 0),
4791 =>
(others => 0),
4792 =>
(others => 0),
4793 =>
(others => 0),
4794 =>
(others => 0),
4795 =>
(others => 0),
4796 =>
(others => 0),
4797 =>
(others => 0),
4798 =>
(others => 0),
4799 =>
(86 => 1209, 218 => 5135, others => 0),
4800 =>
(134 => 40, 181 => 5137, 215 => 42, others => 0),
4801 =>
(others => 0),
4802 =>
(others => 0),
4803 =>
(others => 0),
4804 =>
(others => 0),
4805 =>
(others => 0),
4806 =>
(others => 0),
4807 =>
(others => 0),
4808 =>
(others => 0),
4809 =>
(86 => 1209, 218 => 5141, others => 0),
4810 =>
(61 => 5143, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4811 =>
(others => 0),
4812 =>
(86 => 1209, 218 => 5144, others => 0),
4813 =>
(61 => 5146, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4814 =>
(others => 0),
4815 =>
(others => 0),
4816 =>
(others => 0),
4817 =>
(others => 0),
4818 =>
(others => 0),
4819 =>
(61 => 5152, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4820 =>
(others => 0),
4821 =>
(61 => 5154, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4822 =>
(others => 0),
4823 =>
(others => 0),
4824 =>
(others => 0),
4825 =>
(others => 0),
4826 =>
(others => 0),
4827 =>
(others => 0),
4828 =>
(61 => 5159, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4829 =>
(others => 0),
4830 =>
(61 => 5161, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4831 =>
(others => 0),
4832 =>
(others => 0),
4833 =>
(others => 0),
4834 =>
(others => 0),
4835 =>
(12 => 5165, others => 0),
4836 =>
(12 => 5167, others => 0),
4837 =>
(61 => 5169, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4838 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5170,
222 => 433, 225 => 434, 242 => 435, others => 0),
4839 =>
(12 => 5172, others => 0),
4840 =>
(12 => 5174, others => 0),
4841 =>
(others => 0),
4842 =>
(others => 0),
4843 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 5179, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4844 =>
(others => 0),
4845 =>
(others => 0),
4846 =>
(others => 0),
4847 =>
(86 => 1209, 218 => 5180, others => 0),
4848 =>
(61 => 5182, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4849 =>
(others => 0),
4850 =>
(others => 0),
4851 =>
(others => 0),
4852 =>
(others => 0),
4853 =>
(others => 0),
4854 =>
(others => 0),
4855 =>
(others => 0),
4856 =>
(others => 0),
4857 =>
(61 => 5190, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4858 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5191,
222 => 433, 225 => 434, 242 => 435, others => 0),
4859 =>
(others => 0),
4860 =>
(others => 0),
4861 =>
(others => 0),
4862 =>
(86 => 1209, 218 => 5192, others => 0),
4863 =>
(61 => 5194, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4864 =>
(others => 0),
4865 =>
(others => 0),
4866 =>
(others => 0),
4867 =>
(others => 0),
4868 =>
(others => 0),
4869 =>
(others => 0),
4870 =>
(others => 0),
4871 =>
(others => 0),
4872 =>
(61 => 5202, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4873 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5203,
222 => 433, 225 => 434, 242 => 435, others => 0),
4874 =>
(others => 0),
4875 =>
(others => 0),
4876 =>
(12 => 5205, others => 0),
4877 =>
(12 => 5208, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 5209, 164 => 108,
176 => 109, 194 => 110, 214 => 111, others => 0),
4878 =>
(12 => 5211, others => 0),
4879 =>
(others => 0),
4880 =>
(others => 0),
4881 =>
(others => 0),
4882 =>
(others => 0),
4883 =>
(others => 0),
4884 =>
(others => 0),
4885 =>
(others => 0),
4886 =>
(others => 0),
4887 =>
(others => 0),
4888 =>
(others => 0),
4889 =>
(others => 0),
4890 =>
(others => 0),
4891 =>
(others => 0),
4892 =>
(others => 0),
4893 =>
(others => 0),
4894 =>
(others => 0),
4895 =>
(5 => 5217, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 5218,
others => 0),
4896 =>
(others => 0),
4897 =>
(others => 0),
4898 =>
(others => 0),
4899 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5220, others => 0),
4900 =>
(others => 0),
4901 =>
(others => 0),
4902 =>
(others => 0),
4903 =>
(others => 0),
4904 =>
(others => 0),
4905 =>
(others => 0),
4906 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5222, others => 0),
4907 =>
(others => 0),
4908 =>
(others => 0),
4909 =>
(others => 0),
4910 =>
(others => 0),
4911 =>
(61 => 5225, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4912 =>
(others => 0),
4913 =>
(61 => 5227, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4914 =>
(others => 0),
4915 =>
(others => 0),
4916 =>
(others => 0),
4917 =>
(others => 0),
4918 =>
(others => 0),
4919 =>
(others => 0),
4920 =>
(others => 0),
4921 =>
(others => 0),
4922 =>
(others => 0),
4923 =>
(others => 0),
4924 =>
(others => 0),
4925 =>
(others => 0),
4926 =>
(others => 0),
4927 =>
(others => 0),
4928 =>
(others => 0),
4929 =>
(86 => 1209, 218 => 5232, others => 0),
4930 =>
(61 => 5234, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4931 =>
(others => 0),
4932 =>
(others => 0),
4933 =>
(others => 0),
4934 =>
(others => 0),
4935 =>
(others => 0),
4936 =>
(others => 0),
4937 =>
(others => 0),
4938 =>
(others => 0),
4939 =>
(61 => 5242, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4940 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5243,
222 => 433, 225 => 434, 242 => 435, others => 0),
4941 =>
(61 => 5245, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4942 =>
(others => 0),
4943 =>
(others => 0),
4944 =>
(others => 0),
4945 =>
(others => 0),
4946 =>
(others => 0),
4947 =>
(others => 0),
4948 =>
(others => 0),
4949 =>
(others => 0),
4950 =>
(86 => 1209, 218 => 5250, others => 0),
4951 =>
(61 => 5252, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4952 =>
(61 => 5254, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4953 =>
(others => 0),
4954 =>
(others => 0),
4955 =>
(others => 0),
4956 =>
(others => 0),
4957 =>
(others => 0),
4958 =>
(others => 0),
4959 =>
(others => 0),
4960 =>
(others => 0),
4961 =>
(86 => 1209, 218 => 5259, others => 0),
4962 =>
(61 => 5261, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
4963 =>
(12 => 5263, others => 0),
4964 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5264, others => 0),
4965 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3897, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4966 =>
(others => 0),
4967 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 3906, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4968 =>
(others => 0),
4969 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4028, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
4970 =>
(others => 0),
4971 =>
(others => 0),
4972 =>
(others => 0),
4973 =>
(others => 0),
4974 =>
(others => 0),
4975 =>
(others => 0),
4976 =>
(others => 0),
4977 =>
(others => 0),
4978 =>
(others => 0),
4979 =>
(others => 0),
4980 =>
(others => 0),
4981 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5267, others => 0),
4982 =>
(others => 0),
4983 =>
(others => 0),
4984 =>
(5 => 5270, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 5271,
others => 0),
4985 =>
(others => 0),
4986 =>
(others => 0),
4987 =>
(others => 0),
4988 =>
(others => 0),
4989 =>
(others => 0),
4990 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5273, others => 0),
4991 =>
(others => 0),
4992 =>
(others => 0),
4993 =>
(others => 0),
4994 =>
(others => 0),
4995 =>
(others => 0),
4996 =>
(others => 0),
4997 =>
(others => 0),
4998 =>
(others => 0),
4999 =>
(others => 0),
5000 =>
(others => 0),
5001 =>
(others => 0),
5002 =>
(others => 0),
5003 =>
(others => 0),
5004 =>
(others => 0),
5005 =>
(others => 0),
5006 =>
(others => 0),
5007 =>
(others => 0),
5008 =>
(others => 0),
5009 =>
(others => 0),
5010 =>
(others => 0),
5011 =>
(others => 0),
5012 =>
(others => 0),
5013 =>
(others => 0),
5014 =>
(others => 0),
5015 =>
(12 => 5282, others => 0),
5016 =>
(others => 0),
5017 =>
(others => 0),
5018 =>
(others => 0),
5019 =>
(others => 0),
5020 =>
(others => 0),
5021 =>
(others => 0),
5022 =>
(others => 0),
5023 =>
(others => 0),
5024 =>
(others => 0),
5025 =>
(others => 0),
5026 =>
(12 => 5288, others => 0),
5027 =>
(12 => 5290, others => 0),
5028 =>
(others => 0),
5029 =>
(others => 0),
5030 =>
(others => 0),
5031 =>
(others => 0),
5032 =>
(others => 0),
5033 =>
(others => 0),
5034 =>
(others => 0),
5035 =>
(others => 0),
5036 =>
(others => 0),
5037 =>
(others => 0),
5038 =>
(others => 0),
5039 =>
(others => 0),
5040 =>
(55 => 72, 56 => 182, 113 => 5296, 171 => 184,
others => 0),
5041 =>
(others => 0),
5042 =>
(others => 0),
5043 =>
(others => 0),
5044 =>
(12 => 5300, others => 0),
5045 =>
(others => 0),
5046 =>
(others => 0),
5047 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5303,
222 => 433, 225 => 434, 242 => 435, others => 0),
5048 =>
(others => 0),
5049 =>
(others => 0),
5050 =>
(others => 0),
5051 =>
(others => 0),
5052 =>
(others => 0),
5053 =>
(others => 0),
5054 =>
(others => 0),
5055 =>
(others => 0),
5056 =>
(others => 0),
5057 =>
(others => 0),
5058 =>
(others => 0),
5059 =>
(others => 0),
5060 =>
(others => 0),
5061 =>
(others => 0),
5062 =>
(others => 0),
5063 =>
(others => 0),
5064 =>
(others => 0),
5065 =>
(others => 0),
5066 =>
(others => 0),
5067 =>
(others => 0),
5068 =>
(others => 0),
5069 =>
(others => 0),
5070 =>
(others => 0),
5071 =>
(others => 0),
5072 =>
(others => 0),
5073 =>
(134 => 40, 181 => 5319, 215 => 42, others => 0),
5074 =>
(others => 0),
5075 =>
(others => 0),
5076 =>
(others => 0),
5077 =>
(61 => 5322, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5078 =>
(others => 0),
5079 =>
(61 => 5324, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5080 =>
(others => 0),
5081 =>
(others => 0),
5082 =>
(others => 0),
5083 =>
(others => 0),
5084 =>
(others => 0),
5085 =>
(others => 0),
5086 =>
(others => 0),
5087 =>
(others => 0),
5088 =>
(others => 0),
5089 =>
(others => 0),
5090 =>
(others => 0),
5091 =>
(others => 0),
5092 =>
(others => 0),
5093 =>
(others => 0),
5094 =>
(others => 0),
5095 =>
(86 => 1209, 218 => 5329, others => 0),
5096 =>
(61 => 5331, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5097 =>
(others => 0),
5098 =>
(others => 0),
5099 =>
(others => 0),
5100 =>
(others => 0),
5101 =>
(others => 0),
5102 =>
(others => 0),
5103 =>
(others => 0),
5104 =>
(others => 0),
5105 =>
(61 => 5339, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5106 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5340,
222 => 433, 225 => 434, 242 => 435, others => 0),
5107 =>
(61 => 5342, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5108 =>
(others => 0),
5109 =>
(others => 0),
5110 =>
(others => 0),
5111 =>
(others => 0),
5112 =>
(others => 0),
5113 =>
(others => 0),
5114 =>
(others => 0),
5115 =>
(others => 0),
5116 =>
(86 => 1209, 218 => 5347, others => 0),
5117 =>
(61 => 5349, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5118 =>
(61 => 5351, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5119 =>
(others => 0),
5120 =>
(others => 0),
5121 =>
(others => 0),
5122 =>
(others => 0),
5123 =>
(others => 0),
5124 =>
(others => 0),
5125 =>
(others => 0),
5126 =>
(others => 0),
5127 =>
(86 => 1209, 218 => 5356, others => 0),
5128 =>
(61 => 5358, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5129 =>
(others => 0),
5130 =>
(others => 0),
5131 =>
(134 => 40, 181 => 5361, 215 => 42, others => 0),
5132 =>
(others => 0),
5133 =>
(134 => 40, 181 => 5363, 215 => 42, others => 0),
5134 =>
(others => 0),
5135 =>
(others => 0),
5136 =>
(others => 0),
5137 =>
(others => 0),
5138 =>
(others => 0),
5139 =>
(61 => 5367, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5140 =>
(others => 0),
5141 =>
(others => 0),
5142 =>
(others => 0),
5143 =>
(others => 0),
5144 =>
(others => 0),
5145 =>
(others => 0),
5146 =>
(others => 0),
5147 =>
(others => 0),
5148 =>
(86 => 1209, 218 => 5372, others => 0),
5149 =>
(61 => 5374, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5150 =>
(others => 0),
5151 =>
(others => 0),
5152 =>
(others => 0),
5153 =>
(others => 0),
5154 =>
(others => 0),
5155 =>
(61 => 5378, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5156 =>
(others => 0),
5157 =>
(others => 0),
5158 =>
(others => 0),
5159 =>
(others => 0),
5160 =>
(others => 0),
5161 =>
(others => 0),
5162 =>
(61 => 5382, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5163 =>
(others => 0),
5164 =>
(others => 0),
5165 =>
(others => 0),
5166 =>
(others => 0),
5167 =>
(others => 0),
5168 =>
(others => 0),
5169 =>
(others => 0),
5170 =>
(others => 0),
5171 =>
(others => 0),
5172 =>
(others => 0),
5173 =>
(others => 0),
5174 =>
(others => 0),
5175 =>
(61 => 5391, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5176 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5392,
222 => 433, 225 => 434, 242 => 435, others => 0),
5177 =>
(61 => 5394, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5178 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5395,
222 => 433, 225 => 434, 242 => 435, others => 0),
5179 =>
(others => 0),
5180 =>
(others => 0),
5181 =>
(others => 0),
5182 =>
(others => 0),
5183 =>
(others => 0),
5184 =>
(86 => 1209, 218 => 5400, others => 0),
5185 =>
(61 => 5402, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5186 =>
(others => 0),
5187 =>
(86 => 1209, 218 => 5403, others => 0),
5188 =>
(61 => 5405, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5189 =>
(others => 0),
5190 =>
(others => 0),
5191 =>
(others => 0),
5192 =>
(others => 0),
5193 =>
(others => 0),
5194 =>
(others => 0),
5195 =>
(others => 0),
5196 =>
(86 => 1209, 218 => 5411, others => 0),
5197 =>
(61 => 5413, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5198 =>
(others => 0),
5199 =>
(86 => 1209, 218 => 5414, others => 0),
5200 =>
(61 => 5416, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5201 =>
(others => 0),
5202 =>
(others => 0),
5203 =>
(others => 0),
5204 =>
(others => 0),
5205 =>
(others => 0),
5206 =>
(others => 0),
5207 =>
(12 => 5422, others => 0),
5208 =>
(others => 0),
5209 =>
(12 => 5425, others => 0),
5210 =>
(others => 0),
5211 =>
(others => 0),
5212 =>
(others => 0),
5213 =>
(others => 0),
5214 =>
(others => 0),
5215 =>
(others => 0),
5216 =>
(others => 0),
5217 =>
(others => 0),
5218 =>
(others => 0),
5219 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5428, others => 0),
5220 =>
(others => 0),
5221 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5429, others => 0),
5222 =>
(others => 0),
5223 =>
(others => 0),
5224 =>
(others => 0),
5225 =>
(others => 0),
5226 =>
(others => 0),
5227 =>
(others => 0),
5228 =>
(61 => 5433, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5229 =>
(others => 0),
5230 =>
(others => 0),
5231 =>
(others => 0),
5232 =>
(others => 0),
5233 =>
(others => 0),
5234 =>
(others => 0),
5235 =>
(others => 0),
5236 =>
(86 => 1209, 218 => 5436, others => 0),
5237 =>
(61 => 5438, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5238 =>
(others => 0),
5239 =>
(86 => 1209, 218 => 5439, others => 0),
5240 =>
(61 => 5441, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5241 =>
(others => 0),
5242 =>
(others => 0),
5243 =>
(others => 0),
5244 =>
(others => 0),
5245 =>
(others => 0),
5246 =>
(61 => 5447, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5247 =>
(others => 0),
5248 =>
(61 => 5449, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5249 =>
(others => 0),
5250 =>
(others => 0),
5251 =>
(others => 0),
5252 =>
(others => 0),
5253 =>
(others => 0),
5254 =>
(others => 0),
5255 =>
(61 => 5454, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5256 =>
(others => 0),
5257 =>
(61 => 5456, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5258 =>
(others => 0),
5259 =>
(others => 0),
5260 =>
(others => 0),
5261 =>
(others => 0),
5262 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4308, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
5263 =>
(others => 0),
5264 =>
(12 => 5460, others => 0),
5265 =>
(others => 0),
5266 =>
(others => 0),
5267 =>
(others => 0),
5268 =>
(5 => 5462, 18 => 102, 63 => 103, 90 => 104,
121 => 105, 134 => 106, 156 => 107, 164 => 108,
176 => 109, 194 => 110, 214 => 111, 229 => 5463,
others => 0),
5269 =>
(others => 0),
5270 =>
(others => 0),
5271 =>
(others => 0),
5272 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5465, others => 0),
5273 =>
(others => 0),
5274 =>
(others => 0),
5275 =>
(others => 0),
5276 =>
(others => 0),
5277 =>
(others => 0),
5278 =>
(others => 0),
5279 =>
(others => 0),
5280 =>
(others => 0),
5281 =>
(others => 0),
5282 =>
(others => 0),
5283 =>
(others => 0),
5284 =>
(others => 0),
5285 =>
(others => 0),
5286 =>
(others => 0),
5287 =>
(others => 0),
5288 =>
(others => 0),
5289 =>
(others => 0),
5290 =>
(others => 0),
5291 =>
(others => 0),
5292 =>
(others => 0),
5293 =>
(others => 0),
5294 =>
(others => 0),
5295 =>
(12 => 5471, others => 0),
5296 =>
(others => 0),
5297 =>
(others => 0),
5298 =>
(others => 0),
5299 =>
(others => 0),
5300 =>
(others => 0),
5301 =>
(86 => 1209, 218 => 5474, others => 0),
5302 =>
(others => 0),
5303 =>
(others => 0),
5304 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 5480, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
5305 =>
(others => 0),
5306 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 5483, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
5307 =>
(others => 0),
5308 =>
(others => 0),
5309 =>
(86 => 1209, 218 => 5484, others => 0),
5310 =>
(others => 0),
5311 =>
(others => 0),
5312 =>
(others => 0),
5313 =>
(others => 0),
5314 =>
(others => 0),
5315 =>
(others => 0),
5316 =>
(others => 0),
5317 =>
(others => 0),
5318 =>
(others => 0),
5319 =>
(others => 0),
5320 =>
(others => 0),
5321 =>
(others => 0),
5322 =>
(others => 0),
5323 =>
(others => 0),
5324 =>
(others => 0),
5325 =>
(61 => 5493, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5326 =>
(others => 0),
5327 =>
(others => 0),
5328 =>
(others => 0),
5329 =>
(others => 0),
5330 =>
(others => 0),
5331 =>
(others => 0),
5332 =>
(others => 0),
5333 =>
(86 => 1209, 218 => 5496, others => 0),
5334 =>
(61 => 5498, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5335 =>
(others => 0),
5336 =>
(86 => 1209, 218 => 5499, others => 0),
5337 =>
(61 => 5501, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5338 =>
(others => 0),
5339 =>
(others => 0),
5340 =>
(others => 0),
5341 =>
(others => 0),
5342 =>
(others => 0),
5343 =>
(61 => 5507, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5344 =>
(others => 0),
5345 =>
(61 => 5509, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5346 =>
(others => 0),
5347 =>
(others => 0),
5348 =>
(others => 0),
5349 =>
(others => 0),
5350 =>
(others => 0),
5351 =>
(others => 0),
5352 =>
(61 => 5514, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5353 =>
(others => 0),
5354 =>
(61 => 5516, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5355 =>
(others => 0),
5356 =>
(others => 0),
5357 =>
(others => 0),
5358 =>
(others => 0),
5359 =>
(others => 0),
5360 =>
(others => 0),
5361 =>
(others => 0),
5362 =>
(others => 0),
5363 =>
(others => 0),
5364 =>
(134 => 40, 181 => 5522, 215 => 42, others => 0),
5365 =>
(others => 0),
5366 =>
(others => 0),
5367 =>
(others => 0),
5368 =>
(61 => 5525, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5369 =>
(others => 0),
5370 =>
(61 => 5527, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5371 =>
(others => 0),
5372 =>
(others => 0),
5373 =>
(others => 0),
5374 =>
(others => 0),
5375 =>
(others => 0),
5376 =>
(others => 0),
5377 =>
(others => 0),
5378 =>
(others => 0),
5379 =>
(others => 0),
5380 =>
(others => 0),
5381 =>
(others => 0),
5382 =>
(others => 0),
5383 =>
(others => 0),
5384 =>
(others => 0),
5385 =>
(others => 0),
5386 =>
(86 => 1209, 218 => 5532, others => 0),
5387 =>
(61 => 5534, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5388 =>
(others => 0),
5389 =>
(others => 0),
5390 =>
(others => 0),
5391 =>
(others => 0),
5392 =>
(others => 0),
5393 =>
(others => 0),
5394 =>
(others => 0),
5395 =>
(others => 0),
5396 =>
(61 => 5542, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5397 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5543,
222 => 433, 225 => 434, 242 => 435, others => 0),
5398 =>
(61 => 5545, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5399 =>
(others => 0),
5400 =>
(others => 0),
5401 =>
(others => 0),
5402 =>
(others => 0),
5403 =>
(others => 0),
5404 =>
(others => 0),
5405 =>
(others => 0),
5406 =>
(others => 0),
5407 =>
(86 => 1209, 218 => 5550, others => 0),
5408 =>
(61 => 5552, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5409 =>
(61 => 5554, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5410 =>
(others => 0),
5411 =>
(others => 0),
5412 =>
(others => 0),
5413 =>
(others => 0),
5414 =>
(others => 0),
5415 =>
(others => 0),
5416 =>
(others => 0),
5417 =>
(others => 0),
5418 =>
(86 => 1209, 218 => 5559, others => 0),
5419 =>
(61 => 5561, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5420 =>
(others => 0),
5421 =>
(others => 0),
5422 =>
(others => 0),
5423 =>
(others => 0),
5424 =>
(others => 0),
5425 =>
(others => 0),
5426 =>
(others => 0),
5427 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5564, others => 0),
5428 =>
(others => 0),
5429 =>
(others => 0),
5430 =>
(others => 0),
5431 =>
(others => 0),
5432 =>
(others => 0),
5433 =>
(others => 0),
5434 =>
(61 => 5567, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5435 =>
(others => 0),
5436 =>
(others => 0),
5437 =>
(others => 0),
5438 =>
(others => 0),
5439 =>
(others => 0),
5440 =>
(others => 0),
5441 =>
(others => 0),
5442 =>
(others => 0),
5443 =>
(86 => 1209, 218 => 5572, others => 0),
5444 =>
(61 => 5574, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5445 =>
(others => 0),
5446 =>
(others => 0),
5447 =>
(others => 0),
5448 =>
(others => 0),
5449 =>
(others => 0),
5450 =>
(61 => 5578, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5451 =>
(others => 0),
5452 =>
(others => 0),
5453 =>
(others => 0),
5454 =>
(others => 0),
5455 =>
(others => 0),
5456 =>
(others => 0),
5457 =>
(61 => 5582, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5458 =>
(others => 0),
5459 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 4841, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
5460 =>
(others => 0),
5461 =>
(others => 0),
5462 =>
(others => 0),
5463 =>
(others => 0),
5464 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5584, others => 0),
5465 =>
(others => 0),
5466 =>
(others => 0),
5467 =>
(others => 0),
5468 =>
(others => 0),
5469 =>
(others => 0),
5470 =>
(others => 0),
5471 =>
(others => 0),
5472 =>
(12 => 5587, others => 0),
5473 =>
(others => 0),
5474 =>
(others => 0),
5475 =>
(others => 0),
5476 =>
(others => 0),
5477 =>
(86 => 1209, 218 => 5590, others => 0),
5478 =>
(others => 0),
5479 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5593,
222 => 433, 225 => 434, 242 => 435, others => 0),
5480 =>
(others => 0),
5481 =>
(7 => 264, 8 => 265, 14 => 266, 18 => 102,
63 => 103, 90 => 104, 91 => 5595, 94 => 268,
121 => 105, 134 => 106, 156 => 270, 164 => 108,
176 => 109, 194 => 110, 202 => 272, 208 => 273,
214 => 111, 221 => 274, others => 0),
5482 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5596,
222 => 433, 225 => 434, 242 => 435, others => 0),
5483 =>
(others => 0),
5484 =>
(others => 0),
5485 =>
(others => 0),
5486 =>
(others => 0),
5487 =>
(others => 0),
5488 =>
(others => 0),
5489 =>
(others => 0),
5490 =>
(others => 0),
5491 =>
(others => 0),
5492 =>
(others => 0),
5493 =>
(others => 0),
5494 =>
(61 => 5602, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5495 =>
(others => 0),
5496 =>
(others => 0),
5497 =>
(others => 0),
5498 =>
(others => 0),
5499 =>
(others => 0),
5500 =>
(others => 0),
5501 =>
(others => 0),
5502 =>
(others => 0),
5503 =>
(86 => 1209, 218 => 5607, others => 0),
5504 =>
(61 => 5609, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5505 =>
(others => 0),
5506 =>
(others => 0),
5507 =>
(others => 0),
5508 =>
(others => 0),
5509 =>
(others => 0),
5510 =>
(61 => 5613, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5511 =>
(others => 0),
5512 =>
(others => 0),
5513 =>
(others => 0),
5514 =>
(others => 0),
5515 =>
(others => 0),
5516 =>
(others => 0),
5517 =>
(61 => 5617, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5518 =>
(others => 0),
5519 =>
(others => 0),
5520 =>
(others => 0),
5521 =>
(others => 0),
5522 =>
(others => 0),
5523 =>
(others => 0),
5524 =>
(others => 0),
5525 =>
(others => 0),
5526 =>
(others => 0),
5527 =>
(others => 0),
5528 =>
(61 => 5622, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5529 =>
(others => 0),
5530 =>
(others => 0),
5531 =>
(others => 0),
5532 =>
(others => 0),
5533 =>
(others => 0),
5534 =>
(others => 0),
5535 =>
(others => 0),
5536 =>
(86 => 1209, 218 => 5625, others => 0),
5537 =>
(61 => 5627, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5538 =>
(others => 0),
5539 =>
(86 => 1209, 218 => 5628, others => 0),
5540 =>
(61 => 5630, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5541 =>
(others => 0),
5542 =>
(others => 0),
5543 =>
(others => 0),
5544 =>
(others => 0),
5545 =>
(others => 0),
5546 =>
(61 => 5636, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5547 =>
(others => 0),
5548 =>
(61 => 5638, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5549 =>
(others => 0),
5550 =>
(others => 0),
5551 =>
(others => 0),
5552 =>
(others => 0),
5553 =>
(others => 0),
5554 =>
(others => 0),
5555 =>
(61 => 5643, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5556 =>
(others => 0),
5557 =>
(61 => 5645, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5558 =>
(others => 0),
5559 =>
(others => 0),
5560 =>
(others => 0),
5561 =>
(others => 0),
5562 =>
(others => 0),
5563 =>
(others => 0),
5564 =>
(others => 0),
5565 =>
(others => 0),
5566 =>
(others => 0),
5567 =>
(others => 0),
5568 =>
(61 => 5650, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5569 =>
(others => 0),
5570 =>
(61 => 5652, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5571 =>
(others => 0),
5572 =>
(others => 0),
5573 =>
(others => 0),
5574 =>
(others => 0),
5575 =>
(others => 0),
5576 =>
(others => 0),
5577 =>
(others => 0),
5578 =>
(others => 0),
5579 =>
(others => 0),
5580 =>
(others => 0),
5581 =>
(others => 0),
5582 =>
(others => 0),
5583 =>
(18 => 102, 63 => 103, 90 => 104, 121 => 105,
134 => 106, 156 => 107, 164 => 108, 176 => 109,
194 => 110, 214 => 111, 229 => 5657, others => 0),
5584 =>
(others => 0),
5585 =>
(others => 0),
5586 =>
(others => 0),
5587 =>
(others => 0),
5588 =>
(others => 0),
5589 =>
(others => 0),
5590 =>
(others => 0),
5591 =>
(others => 0),
5592 =>
(others => 0),
5593 =>
(others => 0),
5594 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5665,
222 => 433, 225 => 434, 242 => 435, others => 0),
5595 =>
(others => 0),
5596 =>
(others => 0),
5597 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5669,
222 => 433, 225 => 434, 242 => 435, others => 0),
5598 =>
(others => 0),
5599 =>
(others => 0),
5600 =>
(others => 0),
5601 =>
(others => 0),
5602 =>
(others => 0),
5603 =>
(61 => 5674, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5604 =>
(others => 0),
5605 =>
(61 => 5676, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5606 =>
(others => 0),
5607 =>
(others => 0),
5608 =>
(others => 0),
5609 =>
(others => 0),
5610 =>
(others => 0),
5611 =>
(others => 0),
5612 =>
(others => 0),
5613 =>
(others => 0),
5614 =>
(others => 0),
5615 =>
(others => 0),
5616 =>
(others => 0),
5617 =>
(others => 0),
5618 =>
(others => 0),
5619 =>
(others => 0),
5620 =>
(others => 0),
5621 =>
(others => 0),
5622 =>
(others => 0),
5623 =>
(61 => 5683, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5624 =>
(others => 0),
5625 =>
(others => 0),
5626 =>
(others => 0),
5627 =>
(others => 0),
5628 =>
(others => 0),
5629 =>
(others => 0),
5630 =>
(others => 0),
5631 =>
(others => 0),
5632 =>
(86 => 1209, 218 => 5688, others => 0),
5633 =>
(61 => 5690, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5634 =>
(others => 0),
5635 =>
(others => 0),
5636 =>
(others => 0),
5637 =>
(others => 0),
5638 =>
(others => 0),
5639 =>
(61 => 5694, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5640 =>
(others => 0),
5641 =>
(others => 0),
5642 =>
(others => 0),
5643 =>
(others => 0),
5644 =>
(others => 0),
5645 =>
(others => 0),
5646 =>
(61 => 5698, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5647 =>
(others => 0),
5648 =>
(others => 0),
5649 =>
(others => 0),
5650 =>
(others => 0),
5651 =>
(others => 0),
5652 =>
(others => 0),
5653 =>
(61 => 5702, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5654 =>
(others => 0),
5655 =>
(others => 0),
5656 =>
(others => 0),
5657 =>
(others => 0),
5658 =>
(others => 0),
5659 =>
(others => 0),
5660 =>
(others => 0),
5661 =>
(others => 0),
5662 =>
(others => 0),
5663 =>
(86 => 1209, 218 => 5706, others => 0),
5664 =>
(others => 0),
5665 =>
(others => 0),
5666 =>
(10 => 197, 16 => 198, 17 => 199, 19 => 200,
20 => 201, 23 => 202, 24 => 203, 48 => 204,
50 => 5712, 55 => 72, 56 => 206, 85 => 207,
88 => 208, 119 => 209, 120 => 210, 122 => 211,
128 => 212, 129 => 213, 130 => 214, 131 => 215,
132 => 216, 137 => 217, 160 => 219, 161 => 220,
163 => 221, 167 => 222, 168 => 223, 169 => 224,
170 => 225, 173 => 226, 177 => 227, 178 => 228,
179 => 229, 180 => 230, 183 => 231, 184 => 232,
185 => 233, 193 => 234, 206 => 235, 223 => 236,
224 => 237, 227 => 238, 232 => 239, 233 => 240,
237 => 241, 243 => 242, 244 => 36, 245 => 37,
others => 0),
5667 =>
(86 => 1209, 218 => 5713, others => 0),
5668 =>
(others => 0),
5669 =>
(others => 0),
5670 =>
(others => 0),
5671 =>
(others => 0),
5672 =>
(others => 0),
5673 =>
(others => 0),
5674 =>
(others => 0),
5675 =>
(others => 0),
5676 =>
(others => 0),
5677 =>
(61 => 5722, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5678 =>
(others => 0),
5679 =>
(others => 0),
5680 =>
(others => 0),
5681 =>
(others => 0),
5682 =>
(others => 0),
5683 =>
(others => 0),
5684 =>
(61 => 5725, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5685 =>
(others => 0),
5686 =>
(61 => 5727, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5687 =>
(others => 0),
5688 =>
(others => 0),
5689 =>
(others => 0),
5690 =>
(others => 0),
5691 =>
(others => 0),
5692 =>
(others => 0),
5693 =>
(others => 0),
5694 =>
(others => 0),
5695 =>
(others => 0),
5696 =>
(others => 0),
5697 =>
(others => 0),
5698 =>
(others => 0),
5699 =>
(others => 0),
5700 =>
(others => 0),
5701 =>
(others => 0),
5702 =>
(others => 0),
5703 =>
(others => 0),
5704 =>
(others => 0),
5705 =>
(others => 0),
5706 =>
(others => 0),
5707 =>
(others => 0),
5708 =>
(others => 0),
5709 =>
(86 => 1209, 218 => 5736, others => 0),
5710 =>
(others => 0),
5711 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5739,
222 => 433, 225 => 434, 242 => 435, others => 0),
5712 =>
(others => 0),
5713 =>
(others => 0),
5714 =>
(others => 0),
5715 =>
(others => 0),
5716 =>
(86 => 1209, 218 => 5743, others => 0),
5717 =>
(others => 0),
5718 =>
(others => 0),
5719 =>
(others => 0),
5720 =>
(others => 0),
5721 =>
(others => 0),
5722 =>
(others => 0),
5723 =>
(others => 0),
5724 =>
(others => 0),
5725 =>
(others => 0),
5726 =>
(others => 0),
5727 =>
(others => 0),
5728 =>
(61 => 5750, 134 => 40, 164 => 1530, 181 => 1531,
215 => 42, others => 0),
5729 =>
(others => 0),
5730 =>
(others => 0),
5731 =>
(others => 0),
5732 =>
(others => 0),
5733 =>
(others => 0),
5734 =>
(others => 0),
5735 =>
(others => 0),
5736 =>
(others => 0),
5737 =>
(others => 0),
5738 =>
(others => 0),
5739 =>
(others => 0),
5740 =>
(2 => 410, 4 => 411, 13 => 412, 15 => 413,
18 => 102, 22 => 414, 28 => 415, 55 => 416,
59 => 417, 63 => 103, 77 => 418, 89 => 419,
90 => 104, 93 => 420, 121 => 105, 133 => 421,
134 => 106, 136 => 422, 145 => 423, 146 => 424,
151 => 425, 156 => 426, 159 => 427, 164 => 108,
173 => 428, 176 => 109, 194 => 110, 197 => 429,
210 => 430, 214 => 111, 216 => 431, 219 => 5757,
222 => 433, 225 => 434, 242 => 435, others => 0),
5741 =>
(others => 0),
5742 =>
(others => 0),
5743 =>
(others => 0),
5744 =>
(others => 0),
5745 =>
(others => 0),
5746 =>
(others => 0),
5747 =>
(others => 0),
5748 =>
(others => 0),
5749 =>
(others => 0),
5750 =>
(others => 0),
5751 =>
(others => 0),
5752 =>
(others => 0),
5753 =>
(others => 0),
5754 =>
(others => 0),
5755 =>
(86 => 1209, 218 => 5766, others => 0),
5756 =>
(others => 0),
5757 =>
(others => 0),
5758 =>
(others => 0),
5759 =>
(others => 0),
5760 =>
(others => 0),
5761 =>
(others => 0),
5762 =>
(others => 0),
5763 =>
(others => 0),
5764 =>
(others => 0),
5765 =>
(others => 0),
5766 =>
(others => 0),
5767 =>
(others => 0),
5768 =>
(others => 0),
5769 =>
(86 => 1209, 218 => 5777, others => 0),
5770 =>
(others => 0),
5771 =>
(others => 0),
5772 =>
(others => 0),
5773 =>
(others => 0),
5774 =>
(others => 0),
5775 =>
(others => 0),
5776 =>
(others => 0),
5777 =>
(others => 0),
5778 =>
(others => 0),
5779 =>
(others => 0),
5780 =>
(others => 0),
5781 =>
(others => 0),
5782 =>
(others => 0),
5783 =>
(others => 0),
5784 =>
(others => 0),
5785 =>
(others => 0),
5786 =>
(others => 0),
5787 =>
(others => 0),
5788 =>
(others => 0));
function Go_To
(State : Anagram.Grammars.LR_Parsers.State_Index;
NT : Anagram.Grammars.Non_Terminal_Index)
return Anagram.Grammars.LR_Parsers.State_Index
is
begin
return Go_To_Table (State, NT);
end Go_To;
type Action_Code is mod 2 ** 16;
for Action_Code'Size use 16;
Action_Table : constant array
(State_Index range 1 .. 5788,
Anagram.Grammars.Terminal_Count range 0 .. 104) of Action_Code :=
(1 =>
(40 => 32781, 41 => 32780, 56 => 32779, 60 => 32778,
67 => 32777, 68 => 32776, 70 => 32775, 71 => 32774,
72 => 32773, 86 => 32772, 99 => 32771, 103 => 32770,
others => 0),
2 =>
(46 => 32807, others => 0),
3 =>
(7 => 32812, 46 => 32807, 97 => 32811, others => 0),
4 =>
(53 => 32814, others => 0),
5 =>
(46 => 32815, others => 0),
6 =>
(40 => 32824, 41 => 32780, 60 => 32823, 67 => 32822,
68 => 32821, 72 => 32820, 103 => 32819, others => 0),
7 =>
(46 => 32807, others => 0),
8 =>
(16 => 32827, 46 => 32815, others => 0),
9 =>
(40 => 32830, 72 => 32829, others => 0),
10 =>
(67 => 32831, others => 0),
11 =>
(71 => 32833, 103 => 32832, others => 0),
12 =>
(40 => 32839, 46 => 32838, 68 => 32837, 70 => 32775,
72 => 32836, 97 => 32835, 99 => 32771, 103 => 32834,
others => 0),
13 =>
(46 => 32815, 90 => 32853, others => 0),
14 =>
(others => 0),
15 =>
(0 => 4, 40 => 32781, 41 => 32780, 56 => 32779,
60 => 32778, 67 => 32777, 68 => 32776, 70 => 32775,
71 => 32774, 72 => 32773, 86 => 32772, 99 => 32771,
103 => 32770, others => 0),
16 =>
(0 => 229, 40 => 229, 41 => 229, 56 => 229,
60 => 229, 67 => 229, 68 => 229, 70 => 229,
71 => 229, 72 => 229, 86 => 229, 99 => 229,
103 => 229, others => 0),
17 =>
(40 => 32781, 41 => 32780, 56 => 32779, 60 => 32778,
67 => 32777, 68 => 32776, 70 => 32775, 71 => 32860,
72 => 32773, 86 => 32859, 99 => 32771, 103 => 32770,
others => 0),
18 =>
(0 => 1519, 40 => 1519, 41 => 1519, 56 => 1519,
60 => 1519, 67 => 1519, 68 => 1519, 70 => 1519,
71 => 1519, 72 => 1519, 86 => 1519, 99 => 1519,
103 => 1519, others => 0),
19 =>
(0 => 1522, 40 => 1522, 41 => 1522, 56 => 1522,
60 => 1522, 67 => 1522, 68 => 1522, 70 => 1522,
71 => 1522, 72 => 1522, 86 => 1522, 99 => 1522,
103 => 1522, others => 0),
20 =>
(0 => 1525, 40 => 1525, 41 => 1525, 56 => 1525,
60 => 1525, 67 => 1525, 68 => 1525, 70 => 1525,
71 => 1525, 72 => 1525, 86 => 1525, 99 => 1525,
103 => 1525, others => 0),
21 =>
(0 => 1527, 40 => 1527, 41 => 1527, 56 => 1527,
60 => 1527, 67 => 1527, 68 => 1527, 70 => 1527,
71 => 1527, 72 => 1527, 86 => 1527, 99 => 1527,
103 => 1527, others => 0),
22 =>
(0 => 1526, 40 => 1526, 41 => 1526, 56 => 1526,
60 => 1526, 67 => 1526, 68 => 1526, 70 => 1526,
71 => 1526, 72 => 1526, 86 => 1526, 99 => 1526,
103 => 1526, others => 0),
23 =>
(0 => 1524, 40 => 1524, 41 => 1524, 56 => 1524,
60 => 1524, 67 => 1524, 68 => 1524, 70 => 1524,
71 => 1524, 72 => 1524, 86 => 1524, 99 => 1524,
103 => 1524, others => 0),
24 =>
(0 => 1528, 40 => 1528, 41 => 1528, 56 => 1528,
60 => 1528, 67 => 1528, 68 => 1528, 70 => 1528,
71 => 1528, 72 => 1528, 86 => 1528, 99 => 1528,
103 => 1528, others => 0),
25 =>
(0 => 193, 40 => 193, 41 => 193, 56 => 193,
60 => 193, 67 => 193, 68 => 193, 70 => 193,
71 => 193, 72 => 193, 86 => 193, 99 => 193,
103 => 193, others => 0),
26 =>
(0 => 1517, 40 => 1517, 41 => 1517, 56 => 1517,
60 => 1517, 67 => 1517, 68 => 1517, 70 => 1517,
71 => 1517, 72 => 1517, 86 => 1517, 99 => 1517,
103 => 1517, others => 0),
27 =>
(0 => 1515, 40 => 1515, 41 => 1515, 56 => 1515,
60 => 1515, 67 => 1515, 68 => 1515, 70 => 1515,
71 => 1515, 72 => 1515, 86 => 1515, 99 => 1515,
103 => 1515, others => 0),
28 =>
(0 => 1518, 40 => 1518, 41 => 1518, 56 => 1518,
60 => 1518, 67 => 1518, 68 => 1518, 70 => 1518,
71 => 1518, 72 => 1518, 86 => 1518, 99 => 1518,
103 => 1518, others => 0),
29 =>
(0 => 1523, 40 => 1523, 41 => 1523, 56 => 1523,
60 => 1523, 67 => 1523, 68 => 1523, 70 => 1523,
71 => 1523, 72 => 1523, 86 => 1523, 99 => 1523,
103 => 1523, others => 0),
30 =>
(0 => 1529, 40 => 1529, 41 => 1529, 56 => 1529,
60 => 1529, 67 => 1529, 68 => 1529, 70 => 1529,
71 => 1529, 72 => 1529, 86 => 1529, 99 => 1529,
103 => 1529, others => 0),
31 =>
(0 => 227, 40 => 227, 41 => 227, 56 => 227,
60 => 227, 67 => 227, 68 => 227, 70 => 227,
71 => 227, 72 => 227, 86 => 227, 99 => 227,
103 => 227, others => 0),
32 =>
(0 => 1520, 40 => 1520, 41 => 1520, 56 => 1520,
60 => 1520, 67 => 1520, 68 => 1520, 70 => 1520,
71 => 1520, 72 => 1520, 86 => 1520, 99 => 1520,
103 => 1520, others => 0),
33 =>
(0 => 1521, 40 => 1521, 41 => 1521, 56 => 1521,
60 => 1521, 67 => 1521, 68 => 1521, 70 => 1521,
71 => 1521, 72 => 1521, 86 => 1521, 99 => 1521,
103 => 1521, others => 0),
34 =>
(0 => 194, 40 => 194, 41 => 194, 56 => 194,
60 => 194, 67 => 194, 68 => 194, 70 => 194,
71 => 194, 72 => 194, 86 => 194, 99 => 194,
103 => 194, others => 0),
35 =>
(0 => 226, 40 => 226, 41 => 226, 56 => 226,
60 => 226, 67 => 226, 68 => 226, 70 => 226,
71 => 226, 72 => 226, 86 => 226, 99 => 226,
103 => 226, others => 0),
36 =>
(0 => 2219, 15 => 2219, 34 => 2219, 39 => 2219,
40 => 2219, 41 => 2219, 46 => 2219, 56 => 2219,
60 => 2219, 67 => 2219, 68 => 2219, 70 => 2219,
71 => 2219, 72 => 2219, 73 => 2219, 86 => 2219,
91 => 2219, 94 => 2219, 97 => 2219, 99 => 2219,
103 => 2219, others => 0),
37 =>
(0 => 2220, 15 => 2220, 34 => 2220, 39 => 2220,
40 => 2220, 41 => 2220, 46 => 2220, 56 => 2220,
60 => 2220, 67 => 2220, 68 => 2220, 70 => 2220,
71 => 2220, 72 => 2220, 73 => 2220, 86 => 2220,
91 => 2220, 94 => 2220, 97 => 2220, 99 => 2220,
103 => 2220, others => 0),
38 =>
(0 => 225, 40 => 225, 41 => 225, 56 => 225,
60 => 225, 67 => 225, 68 => 225, 70 => 225,
71 => 225, 72 => 225, 86 => 225, 99 => 225,
103 => 225, others => 0),
39 =>
(8 => 1477, 9 => 1477, 10 => 1477, 12 => 1477,
13 => 1477, 14 => 1477, 20 => 1477, 21 => 1477,
26 => 1477, 27 => 1477, 28 => 1477, 29 => 1477,
30 => 1477, 31 => 1477, 32 => 1477, 33 => 1477,
36 => 1477, 43 => 1477, 44 => 1477, 45 => 1477,
48 => 1477, 49 => 1477, 51 => 1477, 53 => 1477,
54 => 1477, 55 => 1477, 57 => 1477, 58 => 1477,
60 => 1477, 63 => 1477, 64 => 1477, 69 => 1477,
75 => 1477, 77 => 1477, 78 => 1477, 80 => 1477,
83 => 1477, 85 => 1477, 87 => 1477, 89 => 1477,
96 => 1477, 99 => 1477, 100 => 1477, 101 => 1477,
103 => 1477, 104 => 1477, others => 0),
40 =>
(12 => 1959, 21 => 1959, 29 => 1959, 53 => 1959,
83 => 1959, 85 => 1959, 100 => 1959, 103 => 1959,
others => 0),
41 =>
(21 => 32866, 29 => 32865, 85 => 32864, others => 0),
42 =>
(12 => 1960, 21 => 1960, 29 => 1960, 53 => 1960,
83 => 1960, 85 => 1960, 100 => 1960, 103 => 1960,
others => 0),
43 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
44 =>
(97 => 32881, others => 0),
45 =>
(21 => 32866, 29 => 32865, 85 => 32882, others => 0),
46 =>
(46 => 32807, others => 0),
47 =>
(29 => 1477, 51 => 247, 53 => 247, 78 => 247,
80 => 247, 85 => 247, 103 => 247, others => 0),
48 =>
(51 => 32889, 53 => 32888, 78 => 32887, 85 => 32886,
103 => 32885, others => 0),
49 =>
(29 => 32865, others => 0),
50 =>
(29 => 1960, 51 => 248, 53 => 248, 78 => 248,
80 => 248, 85 => 248, 103 => 248, others => 0),
51 =>
(46 => 32807, others => 0),
52 =>
(46 => 32815, others => 0),
53 =>
(46 => 32815, others => 0),
54 =>
(40 => 32894, 72 => 32893, others => 0),
55 =>
(67 => 32895, others => 0),
56 =>
(46 => 32815, 90 => 32853, others => 0),
57 =>
(0 => 1514, 40 => 1514, 41 => 1514, 56 => 1514,
60 => 1514, 67 => 1514, 68 => 1514, 70 => 1514,
71 => 1514, 72 => 1514, 86 => 1514, 99 => 1514,
103 => 1514, others => 0),
58 =>
(53 => 32898, 85 => 32897, others => 0),
59 =>
(46 => 32815, others => 0),
60 =>
(51 => 32901, 78 => 32900, 103 => 32885, others => 0),
61 =>
(46 => 32815, others => 0),
62 =>
(46 => 32815, 90 => 32853, others => 0),
63 =>
(40 => 32906, 72 => 32905, others => 0),
64 =>
(46 => 32807, others => 0),
65 =>
(103 => 32908, others => 0),
66 =>
(40 => 32911, 68 => 32910, 72 => 32909, others => 0),
67 =>
(46 => 32838, others => 0),
68 =>
(46 => 32815, others => 0),
69 =>
(46 => 32815, others => 0),
70 =>
(20 => 244, 21 => 244, 48 => 244, 51 => 244,
53 => 244, 63 => 244, 82 => 244, 85 => 244,
101 => 244, 103 => 244, others => 0),
71 =>
(46 => 32815, 90 => 32853, others => 0),
72 =>
(20 => 246, 21 => 32917, others => 0),
73 =>
(20 => 32919, others => 0),
74 =>
(40 => 1351, 46 => 1351, 68 => 1351, 70 => 1351,
72 => 1351, 97 => 1351, 99 => 1351, 103 => 1351,
others => 0),
75 =>
(40 => 1353, 46 => 1353, 68 => 1353, 70 => 1353,
72 => 1353, 97 => 1353, 99 => 1353, 103 => 1353,
others => 0),
76 =>
(40 => 1352, 46 => 1352, 68 => 1352, 70 => 1352,
72 => 1352, 97 => 1352, 99 => 1352, 103 => 1352,
others => 0),
77 =>
(40 => 1350, 46 => 1350, 68 => 1350, 70 => 1350,
72 => 1350, 97 => 1350, 99 => 1350, 103 => 1350,
others => 0),
78 =>
(40 => 1355, 46 => 1355, 68 => 1355, 70 => 1355,
72 => 1355, 97 => 1355, 99 => 1355, 103 => 1355,
others => 0),
79 =>
(40 => 1354, 46 => 1354, 68 => 1354, 70 => 1354,
72 => 1354, 97 => 1354, 99 => 1354, 103 => 1354,
others => 0),
80 =>
(40 => 1349, 46 => 1349, 68 => 1349, 70 => 1349,
72 => 1349, 97 => 1349, 99 => 1349, 103 => 1349,
others => 0),
81 =>
(40 => 32922, 46 => 32838, 68 => 32921, 70 => 32775,
72 => 32920, 97 => 32835, 99 => 32771, 103 => 32834,
others => 0),
82 =>
(40 => 1345, 46 => 1345, 68 => 1345, 70 => 1345,
72 => 1345, 97 => 1345, 99 => 1345, 103 => 1345,
others => 0),
83 =>
(40 => 1347, 46 => 1347, 68 => 1347, 70 => 1347,
72 => 1347, 97 => 1347, 99 => 1347, 103 => 1347,
others => 0),
84 =>
(40 => 1346, 46 => 1346, 68 => 1346, 70 => 1346,
72 => 1346, 97 => 1346, 99 => 1346, 103 => 1346,
others => 0),
85 =>
(51 => 240, 53 => 240, 80 => 240, others => 0),
86 =>
(51 => 32926, 53 => 32925, 80 => 32924, others => 0),
87 =>
(51 => 239, 53 => 239, 80 => 239, others => 0),
88 =>
(0 => 196, 40 => 196, 41 => 196, 56 => 196,
60 => 196, 67 => 196, 68 => 196, 70 => 196,
71 => 196, 72 => 196, 86 => 196, 99 => 196,
103 => 196, others => 0),
89 =>
(0 => 2, 40 => 32781, 41 => 32780, 56 => 32779,
60 => 32778, 67 => 32777, 68 => 32776, 70 => 32775,
71 => 32774, 72 => 32773, 86 => 32772, 99 => 32771,
103 => 32770, others => 0),
90 =>
(0 => 3, 40 => 32781, 41 => 32780, 56 => 32779,
60 => 32778, 67 => 32777, 68 => 32776, 70 => 32775,
71 => 32860, 72 => 32773, 86 => 32859, 99 => 32771,
103 => 32770, others => 0),
91 =>
(53 => 32929, others => 0),
92 =>
(40 => 32824, 41 => 32780, 60 => 32823, 67 => 32822,
68 => 32821, 72 => 32820, 103 => 32819, others => 0),
93 =>
(0 => 228, 40 => 228, 41 => 228, 56 => 228,
60 => 228, 67 => 228, 68 => 228, 70 => 228,
71 => 228, 72 => 228, 86 => 228, 99 => 228,
103 => 228, others => 0),
94 =>
(0 => 1516, 40 => 1516, 41 => 1516, 56 => 1516,
60 => 1516, 67 => 1516, 68 => 1516, 70 => 1516,
71 => 1516, 72 => 1516, 86 => 1516, 99 => 1516,
103 => 1516, others => 0),
95 =>
(0 => 1513, 40 => 1513, 41 => 1513, 56 => 1513,
60 => 1513, 67 => 1513, 68 => 1513, 70 => 1513,
71 => 1513, 72 => 1513, 86 => 1513, 99 => 1513,
103 => 1513, others => 0),
96 =>
(0 => 2239, 40 => 2239, 41 => 2239, 56 => 2239,
60 => 2239, 67 => 2239, 68 => 2239, 70 => 2239,
71 => 2239, 72 => 2239, 86 => 2239, 99 => 2239,
103 => 2239, others => 0),
97 =>
(19 => 32931, 46 => 32807, 90 => 32868, others => 0),
98 =>
(46 => 32807, others => 0),
99 =>
(21 => 32937, 85 => 32936, others => 0),
100 =>
(8 => 1596, 9 => 1596, 10 => 1596, 12 => 1596,
13 => 1596, 14 => 1596, 20 => 1596, 21 => 1596,
26 => 1596, 27 => 1596, 28 => 1596, 29 => 1596,
30 => 1596, 31 => 1596, 32 => 1596, 33 => 1596,
36 => 1596, 43 => 1596, 44 => 1596, 45 => 1596,
48 => 1596, 49 => 1596, 51 => 1596, 53 => 1596,
54 => 1596, 55 => 1596, 57 => 1596, 58 => 1596,
60 => 1596, 63 => 1596, 64 => 1596, 69 => 1596,
75 => 1596, 77 => 1596, 78 => 1596, 80 => 1596,
83 => 1596, 85 => 1596, 87 => 1596, 89 => 1596,
96 => 1596, 99 => 1596, 100 => 1596, 101 => 1596,
103 => 1596, 104 => 1596, others => 0),
101 =>
(8 => 1560, 9 => 1560, 10 => 1560, 12 => 1560,
13 => 1560, 14 => 1560, 20 => 1560, 21 => 1560,
26 => 1560, 27 => 1560, 28 => 1560, 29 => 1560,
30 => 1560, 31 => 1560, 32 => 1560, 33 => 1560,
36 => 1560, 43 => 1560, 44 => 1560, 45 => 1560,
48 => 1560, 49 => 1560, 51 => 1560, 53 => 1560,
54 => 1560, 55 => 1560, 57 => 1560, 58 => 1560,
60 => 1560, 63 => 1560, 64 => 1560, 69 => 1560,
75 => 1560, 77 => 1560, 78 => 1560, 83 => 1560,
85 => 1560, 87 => 1560, 89 => 1560, 96 => 1560,
99 => 1560, 100 => 1560, 101 => 1560, 103 => 1560,
104 => 1560, others => 0),
102 =>
(8 => 1558, 9 => 1558, 10 => 1558, 12 => 1558,
13 => 1558, 14 => 1558, 20 => 1558, 21 => 1558,
26 => 1558, 27 => 1558, 28 => 1558, 29 => 1558,
30 => 1558, 31 => 1558, 32 => 1558, 33 => 1558,
36 => 1558, 43 => 1558, 44 => 1558, 45 => 1558,
48 => 1558, 49 => 1558, 51 => 1558, 53 => 1558,
54 => 1558, 55 => 1558, 57 => 1558, 58 => 1558,
60 => 1558, 63 => 1558, 64 => 1558, 69 => 1558,
75 => 1558, 77 => 1558, 78 => 1558, 83 => 1558,
85 => 1558, 87 => 1558, 89 => 1558, 96 => 1558,
99 => 1558, 100 => 1558, 101 => 1558, 103 => 1558,
104 => 1558, others => 0),
103 =>
(8 => 1555, 9 => 1555, 10 => 1555, 12 => 1555,
13 => 1555, 14 => 1555, 20 => 1555, 21 => 1555,
26 => 1555, 27 => 1555, 28 => 1555, 29 => 1555,
30 => 1555, 31 => 1555, 32 => 1555, 33 => 1555,
36 => 1555, 43 => 1555, 44 => 1555, 45 => 1555,
48 => 1555, 49 => 1555, 51 => 1555, 53 => 1555,
54 => 1555, 55 => 1555, 57 => 1555, 58 => 1555,
60 => 1555, 63 => 1555, 64 => 1555, 69 => 1555,
75 => 1555, 77 => 1555, 78 => 1555, 83 => 1555,
85 => 1555, 87 => 1555, 89 => 1555, 96 => 1555,
99 => 1555, 100 => 1555, 101 => 1555, 103 => 1555,
104 => 1555, others => 0),
104 =>
(8 => 1556, 9 => 1556, 10 => 1556, 12 => 1556,
13 => 1556, 14 => 1556, 20 => 1556, 21 => 1556,
26 => 1556, 27 => 1556, 28 => 1556, 29 => 1556,
30 => 1556, 31 => 1556, 32 => 1556, 33 => 1556,
36 => 1556, 43 => 1556, 44 => 1556, 45 => 1556,
48 => 1556, 49 => 1556, 51 => 1556, 53 => 1556,
54 => 1556, 55 => 1556, 57 => 1556, 58 => 1556,
60 => 1556, 63 => 1556, 64 => 1556, 69 => 1556,
75 => 1556, 77 => 1556, 78 => 1556, 83 => 1556,
85 => 1556, 87 => 1556, 89 => 1556, 96 => 1556,
99 => 1556, 100 => 1556, 101 => 1556, 103 => 1556,
104 => 1556, others => 0),
105 =>
(8 => 1559, 9 => 1559, 10 => 1559, 12 => 1559,
13 => 1559, 14 => 1559, 20 => 1559, 21 => 1559,
26 => 1559, 27 => 1559, 28 => 1559, 29 => 1559,
30 => 1559, 31 => 1559, 32 => 1559, 33 => 1559,
36 => 1559, 43 => 1559, 44 => 1559, 45 => 1559,
48 => 1559, 49 => 1559, 51 => 1559, 53 => 1559,
54 => 1559, 55 => 1559, 57 => 1559, 58 => 1559,
60 => 1559, 63 => 1559, 64 => 1559, 69 => 1559,
75 => 1559, 77 => 1559, 78 => 1559, 83 => 1559,
85 => 1559, 87 => 1559, 89 => 1559, 96 => 1559,
99 => 1559, 100 => 1559, 101 => 1559, 103 => 1559,
104 => 1559, others => 0),
106 =>
(8 => 259, 9 => 259, 10 => 259, 12 => 259,
13 => 259, 14 => 259, 20 => 259, 21 => 259,
26 => 259, 27 => 259, 28 => 259, 29 => 259,
30 => 259, 31 => 259, 32 => 259, 33 => 259,
36 => 259, 43 => 259, 44 => 259, 45 => 259,
48 => 259, 49 => 259, 51 => 259, 53 => 259,
54 => 259, 55 => 259, 57 => 259, 58 => 259,
60 => 259, 63 => 259, 64 => 259, 69 => 259,
75 => 259, 77 => 259, 78 => 259, 83 => 259,
85 => 259, 87 => 259, 89 => 259, 96 => 259,
99 => 259, 100 => 259, 101 => 259, 103 => 259,
104 => 259, others => 0),
107 =>
(9 => 2134, 10 => 1694, 12 => 2134, 13 => 2134,
14 => 2134, 21 => 2134, 26 => 2134, 27 => 2134,
28 => 2134, 29 => 1694, 51 => 2134, 53 => 1694,
63 => 2134, 75 => 2134, 78 => 2134, 83 => 2134,
85 => 2134, 99 => 2134, 103 => 2134, others => 0),
108 =>
(8 => 260, 9 => 260, 10 => 260, 12 => 260,
13 => 260, 14 => 260, 20 => 260, 21 => 260,
26 => 260, 27 => 260, 28 => 260, 29 => 260,
30 => 260, 31 => 260, 32 => 260, 33 => 260,
36 => 260, 43 => 260, 44 => 260, 45 => 260,
48 => 260, 49 => 260, 51 => 260, 53 => 260,
54 => 260, 55 => 260, 57 => 260, 58 => 260,
60 => 260, 63 => 260, 64 => 260, 69 => 260,
75 => 260, 77 => 260, 78 => 260, 83 => 260,
85 => 260, 87 => 260, 89 => 260, 96 => 260,
99 => 260, 100 => 260, 101 => 260, 103 => 260,
104 => 260, others => 0),
109 =>
(10 => 32940, 29 => 32939, 53 => 32938, others => 0),
110 =>
(8 => 1561, 9 => 1561, 10 => 1561, 12 => 1561,
13 => 1561, 14 => 1561, 20 => 1561, 21 => 1561,
26 => 1561, 27 => 1561, 28 => 1561, 29 => 1561,
30 => 1561, 31 => 1561, 32 => 1561, 33 => 1561,
36 => 1561, 43 => 1561, 44 => 1561, 45 => 1561,
48 => 1561, 49 => 1561, 51 => 1561, 53 => 1561,
54 => 1561, 55 => 1561, 57 => 1561, 58 => 1561,
60 => 1561, 63 => 1561, 64 => 1561, 69 => 1561,
75 => 1561, 77 => 1561, 78 => 1561, 83 => 1561,
85 => 1561, 87 => 1561, 89 => 1561, 96 => 1561,
99 => 1561, 100 => 1561, 101 => 1561, 103 => 1561,
104 => 1561, others => 0),
111 =>
(8 => 1557, 9 => 1557, 10 => 1557, 12 => 1557,
13 => 1557, 14 => 1557, 20 => 1557, 21 => 1557,
26 => 1557, 27 => 1557, 28 => 1557, 29 => 1557,
30 => 1557, 31 => 1557, 32 => 1557, 33 => 1557,
36 => 1557, 43 => 1557, 44 => 1557, 45 => 1557,
48 => 1557, 49 => 1557, 51 => 1557, 53 => 1557,
54 => 1557, 55 => 1557, 57 => 1557, 58 => 1557,
60 => 1557, 63 => 1557, 64 => 1557, 69 => 1557,
75 => 1557, 77 => 1557, 78 => 1557, 83 => 1557,
85 => 1557, 87 => 1557, 89 => 1557, 96 => 1557,
99 => 1557, 100 => 1557, 101 => 1557, 103 => 1557,
104 => 1557, others => 0),
112 =>
(21 => 32943, 85 => 32942, others => 0),
113 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
114 =>
(0 => 2222, 15 => 2222, 34 => 2222, 39 => 2222,
40 => 2222, 41 => 2222, 46 => 2222, 56 => 2222,
60 => 2222, 67 => 2222, 68 => 2222, 70 => 2222,
71 => 2222, 72 => 2222, 73 => 2222, 86 => 2222,
91 => 2222, 94 => 2222, 97 => 2222, 99 => 2222,
103 => 2222, others => 0),
115 =>
(21 => 32937, 85 => 32946, others => 0),
116 =>
(29 => 32865, 83 => 32947, others => 0),
117 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
118 =>
(0 => 1958, 15 => 1958, 34 => 1958, 35 => 1958,
39 => 1958, 40 => 1958, 41 => 1958, 46 => 1958,
56 => 1958, 60 => 1958, 67 => 1958, 68 => 1958,
70 => 1958, 71 => 1958, 72 => 1958, 73 => 1958,
86 => 1958, 91 => 1958, 94 => 1958, 97 => 1958,
99 => 1958, 103 => 1958, others => 0),
119 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
120 =>
(46 => 32838, others => 0),
121 =>
(3 => 32964, 15 => 32963, 34 => 32962, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 59 => 32960,
60 => 32778, 61 => 32959, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 86 => 32956,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
122 =>
(51 => 33012, 85 => 33011, others => 0),
123 =>
(21 => 32866, 29 => 32865, 85 => 33013, others => 0),
124 =>
(51 => 33016, 53 => 33015, 78 => 32887, 85 => 32886,
103 => 32885, others => 0),
125 =>
(46 => 32815, others => 0),
126 =>
(46 => 32815, 90 => 32853, others => 0),
127 =>
(40 => 33021, 72 => 33020, others => 0),
128 =>
(51 => 32926, 53 => 33023, 80 => 33022, others => 0),
129 =>
(0 => 1689, 1 => 1689, 4 => 1689, 15 => 1689,
18 => 1689, 19 => 1689, 24 => 1689, 25 => 1689,
32 => 1689, 33 => 1689, 34 => 1689, 35 => 1689,
37 => 1689, 38 => 1689, 39 => 1689, 40 => 1689,
41 => 1689, 42 => 1689, 46 => 1689, 47 => 1689,
52 => 1689, 56 => 1689, 57 => 1689, 60 => 1689,
61 => 1689, 64 => 1689, 67 => 1689, 68 => 1689,
70 => 1689, 71 => 1689, 72 => 1689, 73 => 1689,
74 => 1689, 79 => 1689, 80 => 1689, 84 => 1689,
86 => 1689, 90 => 1689, 91 => 1689, 94 => 1689,
96 => 1689, 97 => 1689, 99 => 1689, 101 => 1689,
102 => 1689, 103 => 1689, others => 0),
130 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
131 =>
(51 => 33043, 103 => 32885, others => 0),
132 =>
(46 => 32807, others => 0),
133 =>
(34 => 33050, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 59 => 33049, 60 => 32823, 67 => 32822,
68 => 32821, 70 => 32775, 71 => 33048, 72 => 32820,
73 => 33047, 91 => 32955, 94 => 33046, 97 => 32953,
99 => 32771, others => 0),
134 =>
(51 => 33053, others => 0),
135 =>
(51 => 33057, 53 => 33056, 78 => 33055, 85 => 33054,
103 => 32885, others => 0),
136 =>
(51 => 33061, 53 => 33060, 80 => 33059, others => 0),
137 =>
(46 => 32815, others => 0),
138 =>
(46 => 32815, 90 => 32853, others => 0),
139 =>
(21 => 32866, 29 => 32865, 85 => 33064, others => 0),
140 =>
(46 => 32807, others => 0),
141 =>
(46 => 32815, others => 0),
142 =>
(46 => 32838, others => 0),
143 =>
(46 => 32815, 90 => 32853, others => 0),
144 =>
(51 => 33072, 53 => 33071, 85 => 33070, others => 0),
145 =>
(53 => 33078, 78 => 33077, 85 => 33076, 103 => 32885,
others => 0),
146 =>
(51 => 33081, 78 => 33080, 103 => 32885, others => 0),
147 =>
(53 => 33084, 80 => 33083, others => 0),
148 =>
(53 => 239, 78 => 33085, 80 => 239, others => 0),
149 =>
(46 => 32838, others => 0),
150 =>
(20 => 245, 21 => 33087, others => 0),
151 =>
(5 => 33091, 19 => 32869, 46 => 32807, 48 => 33090,
60 => 33089, 66 => 33088, 90 => 32868, others => 0),
152 =>
(46 => 32815, others => 0),
153 =>
(46 => 32815, others => 0),
154 =>
(46 => 32815, 90 => 32853, others => 0),
155 =>
(40 => 1348, 46 => 1348, 68 => 1348, 70 => 1348,
72 => 1348, 97 => 1348, 99 => 1348, 103 => 1348,
others => 0),
156 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33098,
90 => 32868, others => 0),
157 =>
(46 => 32838, others => 0),
158 =>
(59 => 33102, others => 0),
159 =>
(0 => 195, 40 => 195, 41 => 195, 56 => 195,
60 => 195, 67 => 195, 68 => 195, 70 => 195,
71 => 195, 72 => 195, 86 => 195, 99 => 195,
103 => 195, others => 0),
160 =>
(0 => 1, 40 => 32781, 41 => 32780, 56 => 32779,
60 => 32778, 67 => 32777, 68 => 32776, 70 => 32775,
71 => 32860, 72 => 32773, 86 => 32859, 99 => 32771,
103 => 32770, others => 0),
161 =>
(46 => 32807, others => 0),
162 =>
(0 => 1512, 40 => 1512, 41 => 1512, 56 => 1512,
60 => 1512, 67 => 1512, 68 => 1512, 70 => 1512,
71 => 1512, 72 => 1512, 86 => 1512, 99 => 1512,
103 => 1512, others => 0),
163 =>
(8 => 2084, 9 => 2084, 10 => 2084, 12 => 2084,
13 => 2084, 14 => 2084, 20 => 2084, 21 => 2084,
26 => 2084, 27 => 2084, 28 => 2084, 29 => 2084,
30 => 2084, 31 => 2084, 32 => 2084, 33 => 2084,
36 => 2084, 43 => 2084, 44 => 2084, 45 => 2084,
48 => 2084, 49 => 2084, 51 => 2084, 53 => 2084,
54 => 2084, 55 => 2084, 57 => 2084, 58 => 2084,
60 => 2084, 63 => 2084, 64 => 2084, 69 => 2084,
75 => 2084, 77 => 2084, 78 => 2084, 80 => 2084,
83 => 2084, 85 => 2084, 87 => 2084, 89 => 2084,
96 => 2084, 99 => 2084, 100 => 2084, 101 => 2084,
103 => 2084, 104 => 2084, others => 0),
164 =>
(8 => 2083, 9 => 2083, 10 => 2083, 12 => 2083,
13 => 2083, 14 => 2083, 20 => 2083, 21 => 2083,
26 => 2083, 27 => 2083, 28 => 2083, 29 => 2083,
30 => 2083, 31 => 2083, 32 => 2083, 33 => 2083,
36 => 2083, 43 => 2083, 44 => 2083, 45 => 2083,
48 => 2083, 49 => 2083, 51 => 2083, 53 => 2083,
54 => 2083, 55 => 2083, 57 => 2083, 58 => 2083,
60 => 2083, 63 => 2083, 64 => 2083, 69 => 2083,
75 => 2083, 77 => 2083, 78 => 2083, 80 => 2083,
83 => 2083, 85 => 2083, 87 => 2083, 89 => 2083,
96 => 2083, 99 => 2083, 100 => 2083, 101 => 2083,
103 => 2083, 104 => 2083, others => 0),
165 =>
(8 => 2085, 9 => 2085, 10 => 2085, 12 => 2085,
13 => 2085, 14 => 2085, 20 => 2085, 21 => 2085,
26 => 2085, 27 => 2085, 28 => 2085, 29 => 2085,
30 => 2085, 31 => 2085, 32 => 2085, 33 => 2085,
36 => 2085, 43 => 2085, 44 => 2085, 45 => 2085,
48 => 2085, 49 => 2085, 51 => 2085, 53 => 2085,
54 => 2085, 55 => 2085, 57 => 2085, 58 => 2085,
60 => 2085, 63 => 2085, 64 => 2085, 69 => 2085,
75 => 2085, 77 => 2085, 78 => 2085, 80 => 2085,
83 => 2085, 85 => 2085, 87 => 2085, 89 => 2085,
96 => 2085, 99 => 2085, 100 => 2085, 101 => 2085,
103 => 2085, 104 => 2085, others => 0),
166 =>
(12 => 2074, 21 => 2074, 29 => 2074, 51 => 2074,
53 => 2074, 78 => 2074, 80 => 2074, 83 => 2074,
85 => 2074, 100 => 2074, 103 => 2074, others => 0),
167 =>
(21 => 1962, 29 => 32865, 85 => 1962, others => 0),
168 =>
(0 => 2238, 40 => 2238, 41 => 2238, 56 => 2238,
60 => 2238, 67 => 2238, 68 => 2238, 70 => 2238,
71 => 2238, 72 => 2238, 86 => 2238, 99 => 2238,
103 => 2238, others => 0),
169 =>
(46 => 32807, others => 0),
170 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33106,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
171 =>
(7 => 33117, 19 => 32931, 46 => 32807, 90 => 32868,
others => 0),
172 =>
(46 => 32807, 53 => 33119, others => 0),
173 =>
(8 => 1160, 9 => 1160, 10 => 1160, 12 => 1160,
13 => 1160, 14 => 1160, 20 => 1160, 21 => 1160,
26 => 1160, 27 => 1160, 28 => 1160, 29 => 1160,
30 => 1160, 31 => 1160, 32 => 1160, 33 => 1160,
36 => 1160, 43 => 1160, 44 => 1160, 45 => 1160,
48 => 1160, 49 => 1160, 51 => 1160, 53 => 1160,
54 => 1160, 55 => 1160, 57 => 1160, 58 => 1160,
60 => 1160, 63 => 1160, 64 => 1160, 69 => 1160,
75 => 1160, 77 => 1160, 78 => 1160, 83 => 1160,
85 => 1160, 87 => 1160, 89 => 1160, 96 => 1160,
99 => 1160, 100 => 1160, 101 => 1160, 103 => 1160,
104 => 1160, others => 0),
174 =>
(0 => 2226, 15 => 2226, 34 => 2226, 39 => 2226,
40 => 2226, 41 => 2226, 46 => 2226, 56 => 2226,
60 => 2226, 67 => 2226, 68 => 2226, 70 => 2226,
71 => 2226, 72 => 2226, 73 => 2226, 86 => 2226,
91 => 2226, 94 => 2226, 97 => 2226, 99 => 2226,
103 => 2226, others => 0),
175 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
176 =>
(21 => 33124, 85 => 33123, others => 0),
177 =>
(21 => 32943, 85 => 33125, others => 0),
178 =>
(0 => 2221, 15 => 2221, 34 => 2221, 39 => 2221,
40 => 2221, 41 => 2221, 46 => 2221, 56 => 2221,
60 => 2221, 67 => 2221, 68 => 2221, 70 => 2221,
71 => 2221, 72 => 2221, 73 => 2221, 86 => 2221,
91 => 2221, 94 => 2221, 97 => 2221, 99 => 2221,
103 => 2221, others => 0),
179 =>
(40 => 33133, 60 => 33132, 67 => 33131, 68 => 33130,
72 => 33129, 73 => 33128, 94 => 33127, others => 0),
180 =>
(12 => 33136, 21 => 33135, 51 => 118, 85 => 118,
others => 0),
181 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33138,
103 => 32885, others => 0),
182 =>
(20 => 33140, others => 0),
183 =>
(83 => 33141, others => 0),
184 =>
(83 => 623, 85 => 33142, others => 0),
185 =>
(46 => 32838, others => 0),
186 =>
(16 => 33146, 46 => 32838, 97 => 33145, others => 0),
187 =>
(46 => 32838, others => 0),
188 =>
(85 => 33149, 103 => 32885, others => 0),
189 =>
(16 => 33152, 46 => 32838, 97 => 33151, others => 0),
190 =>
(16 => 33154, 46 => 32815, others => 0),
191 =>
(85 => 1564, 103 => 1564, others => 0),
192 =>
(46 => 32807, others => 0),
193 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
194 =>
(46 => 32807, 85 => 33157, others => 0),
195 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
196 =>
(85 => 1565, 103 => 1565, others => 0),
197 =>
(15 => 147, 34 => 147, 39 => 147, 40 => 147,
41 => 147, 46 => 147, 60 => 147, 67 => 147,
68 => 147, 70 => 147, 71 => 147, 72 => 147,
73 => 147, 91 => 147, 94 => 147, 97 => 147,
99 => 147, others => 0),
198 =>
(15 => 109, 18 => 109, 34 => 109, 35 => 109,
39 => 109, 40 => 109, 41 => 109, 46 => 109,
60 => 109, 67 => 109, 68 => 109, 70 => 109,
71 => 109, 72 => 109, 73 => 109, 91 => 109,
94 => 109, 97 => 109, 99 => 109, 101 => 109,
others => 0),
199 =>
(15 => 107, 18 => 107, 34 => 107, 35 => 107,
39 => 107, 40 => 107, 41 => 107, 46 => 107,
60 => 107, 67 => 107, 68 => 107, 70 => 107,
71 => 107, 72 => 107, 73 => 107, 91 => 107,
94 => 107, 97 => 107, 99 => 107, 101 => 107,
others => 0),
200 =>
(15 => 146, 34 => 146, 39 => 146, 40 => 146,
41 => 146, 46 => 146, 60 => 146, 67 => 146,
68 => 146, 70 => 146, 71 => 146, 72 => 146,
73 => 146, 91 => 146, 94 => 146, 97 => 146,
99 => 146, others => 0),
201 =>
(15 => 232, 34 => 232, 39 => 232, 40 => 232,
41 => 232, 46 => 232, 60 => 232, 67 => 232,
68 => 232, 70 => 232, 72 => 232, 73 => 232,
91 => 232, 94 => 232, 97 => 232, 99 => 232,
others => 0),
202 =>
(15 => 233, 34 => 233, 39 => 233, 40 => 233,
41 => 233, 46 => 233, 60 => 233, 67 => 233,
68 => 233, 70 => 233, 72 => 233, 73 => 233,
91 => 233, 94 => 233, 97 => 233, 99 => 233,
others => 0),
203 =>
(15 => 176, 34 => 176, 39 => 176, 40 => 176,
41 => 176, 46 => 176, 60 => 176, 67 => 176,
68 => 176, 70 => 176, 72 => 176, 73 => 176,
91 => 176, 94 => 176, 97 => 176, 99 => 176,
others => 0),
204 =>
(15 => 237, 34 => 237, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
205 =>
(15 => 33207, 34 => 33206, others => 0),
206 =>
(20 => 33208, others => 0),
207 =>
(15 => 141, 34 => 141, 39 => 141, 40 => 141,
41 => 141, 46 => 141, 60 => 141, 67 => 141,
68 => 141, 70 => 141, 71 => 141, 72 => 141,
73 => 141, 91 => 141, 94 => 141, 97 => 141,
99 => 141, others => 0),
208 =>
(15 => 138, 34 => 138, 39 => 138, 40 => 138,
41 => 138, 46 => 138, 60 => 138, 67 => 138,
68 => 138, 70 => 138, 71 => 138, 72 => 138,
73 => 138, 91 => 138, 94 => 138, 97 => 138,
99 => 138, others => 0),
209 =>
(15 => 125, 34 => 125, 39 => 125, 40 => 125,
41 => 125, 46 => 125, 60 => 125, 67 => 125,
68 => 125, 70 => 125, 71 => 125, 72 => 125,
73 => 125, 91 => 125, 94 => 125, 97 => 125,
99 => 125, others => 0),
210 =>
(0 => 1964, 15 => 1964, 34 => 1964, 39 => 1964,
40 => 1964, 41 => 1964, 46 => 1964, 56 => 1964,
60 => 1964, 67 => 1964, 68 => 1964, 70 => 1964,
71 => 1964, 72 => 1964, 73 => 1964, 86 => 1964,
91 => 1964, 94 => 1964, 97 => 1964, 99 => 1964,
103 => 1964, others => 0),
211 =>
(15 => 135, 34 => 135, 39 => 135, 40 => 135,
41 => 135, 46 => 135, 60 => 135, 67 => 135,
68 => 135, 70 => 135, 71 => 135, 72 => 135,
73 => 135, 91 => 135, 94 => 135, 97 => 135,
99 => 135, others => 0),
212 =>
(15 => 142, 34 => 142, 39 => 142, 40 => 142,
41 => 142, 46 => 142, 60 => 142, 67 => 142,
68 => 142, 70 => 142, 71 => 142, 72 => 142,
73 => 142, 91 => 142, 94 => 142, 97 => 142,
99 => 142, others => 0),
213 =>
(15 => 145, 34 => 145, 39 => 145, 40 => 145,
41 => 145, 46 => 145, 60 => 145, 67 => 145,
68 => 145, 70 => 145, 71 => 145, 72 => 145,
73 => 145, 91 => 145, 94 => 145, 97 => 145,
99 => 145, others => 0),
214 =>
(15 => 144, 34 => 144, 39 => 144, 40 => 144,
41 => 144, 46 => 144, 60 => 144, 67 => 144,
68 => 144, 70 => 144, 71 => 144, 72 => 144,
73 => 144, 91 => 144, 94 => 144, 97 => 144,
99 => 144, others => 0),
215 =>
(15 => 143, 34 => 143, 39 => 143, 40 => 143,
41 => 143, 46 => 143, 60 => 143, 67 => 143,
68 => 143, 70 => 143, 71 => 143, 72 => 143,
73 => 143, 91 => 143, 94 => 143, 97 => 143,
99 => 143, others => 0),
216 =>
(15 => 140, 34 => 140, 39 => 140, 40 => 140,
41 => 140, 46 => 140, 60 => 140, 67 => 140,
68 => 140, 70 => 140, 71 => 140, 72 => 140,
73 => 140, 91 => 140, 94 => 140, 97 => 140,
99 => 140, others => 0),
217 =>
(15 => 126, 34 => 126, 39 => 126, 40 => 126,
41 => 126, 46 => 126, 60 => 126, 67 => 126,
68 => 126, 70 => 126, 71 => 126, 72 => 126,
73 => 126, 91 => 126, 94 => 126, 97 => 126,
99 => 126, others => 0),
218 =>
(85 => 33209, 103 => 32885, others => 0),
219 =>
(15 => 133, 34 => 133, 39 => 133, 40 => 133,
41 => 133, 46 => 133, 60 => 133, 67 => 133,
68 => 133, 70 => 133, 71 => 133, 72 => 133,
73 => 133, 91 => 133, 94 => 133, 97 => 133,
99 => 133, others => 0),
220 =>
(15 => 132, 34 => 132, 39 => 132, 40 => 132,
41 => 132, 46 => 132, 60 => 132, 67 => 132,
68 => 132, 70 => 132, 71 => 132, 72 => 132,
73 => 132, 91 => 132, 94 => 132, 97 => 132,
99 => 132, others => 0),
221 =>
(15 => 137, 34 => 137, 39 => 137, 40 => 137,
41 => 137, 46 => 137, 60 => 137, 67 => 137,
68 => 137, 70 => 137, 71 => 137, 72 => 137,
73 => 137, 91 => 137, 94 => 137, 97 => 137,
99 => 137, others => 0),
222 =>
(0 => 1965, 15 => 1965, 34 => 1965, 39 => 1965,
40 => 1965, 41 => 1965, 46 => 1965, 56 => 1965,
60 => 1965, 67 => 1965, 68 => 1965, 70 => 1965,
71 => 1965, 72 => 1965, 73 => 1965, 86 => 1965,
91 => 1965, 94 => 1965, 97 => 1965, 99 => 1965,
103 => 1965, others => 0),
223 =>
(15 => 177, 34 => 177, 39 => 177, 40 => 177,
41 => 177, 46 => 177, 60 => 177, 67 => 177,
68 => 177, 70 => 177, 72 => 177, 73 => 177,
91 => 177, 94 => 177, 97 => 177, 99 => 177,
others => 0),
224 =>
(15 => 136, 34 => 136, 39 => 136, 40 => 136,
41 => 136, 46 => 136, 60 => 136, 67 => 136,
68 => 136, 70 => 136, 71 => 136, 72 => 136,
73 => 136, 91 => 136, 94 => 136, 97 => 136,
99 => 136, others => 0),
225 =>
(15 => 139, 34 => 139, 39 => 139, 40 => 139,
41 => 139, 46 => 139, 60 => 139, 67 => 139,
68 => 139, 70 => 139, 71 => 139, 72 => 139,
73 => 139, 91 => 139, 94 => 139, 97 => 139,
99 => 139, others => 0),
226 =>
(15 => 110, 18 => 110, 34 => 110, 35 => 110,
39 => 110, 40 => 110, 41 => 110, 46 => 110,
60 => 110, 67 => 110, 68 => 110, 70 => 110,
71 => 110, 72 => 110, 73 => 110, 91 => 110,
94 => 110, 97 => 110, 99 => 110, 101 => 110,
others => 0),
227 =>
(15 => 128, 34 => 128, 39 => 128, 40 => 128,
41 => 128, 46 => 128, 60 => 128, 67 => 128,
68 => 128, 70 => 128, 71 => 128, 72 => 128,
73 => 128, 91 => 128, 94 => 128, 97 => 128,
99 => 128, others => 0),
228 =>
(15 => 127, 34 => 127, 39 => 127, 40 => 127,
41 => 127, 46 => 127, 60 => 127, 67 => 127,
68 => 127, 70 => 127, 71 => 127, 72 => 127,
73 => 127, 91 => 127, 94 => 127, 97 => 127,
99 => 127, others => 0),
229 =>
(0 => 1963, 15 => 1963, 34 => 1963, 39 => 1963,
40 => 1963, 41 => 1963, 46 => 1963, 56 => 1963,
60 => 1963, 67 => 1963, 68 => 1963, 70 => 1963,
71 => 1963, 72 => 1963, 73 => 1963, 86 => 1963,
91 => 1963, 94 => 1963, 97 => 1963, 99 => 1963,
103 => 1963, others => 0),
230 =>
(15 => 134, 34 => 134, 39 => 134, 40 => 134,
41 => 134, 46 => 134, 60 => 134, 67 => 134,
68 => 134, 70 => 134, 71 => 134, 72 => 134,
73 => 134, 91 => 134, 94 => 134, 97 => 134,
99 => 134, others => 0),
231 =>
(15 => 175, 34 => 175, 39 => 175, 40 => 175,
41 => 175, 46 => 175, 60 => 175, 67 => 175,
68 => 175, 70 => 175, 72 => 175, 73 => 175,
91 => 175, 94 => 175, 97 => 175, 99 => 175,
others => 0),
232 =>
(0 => 1967, 15 => 1967, 34 => 1967, 39 => 1967,
40 => 1967, 41 => 1967, 46 => 1967, 56 => 1967,
60 => 1967, 67 => 1967, 68 => 1967, 70 => 1967,
71 => 1967, 72 => 1967, 73 => 1967, 86 => 1967,
91 => 1967, 94 => 1967, 97 => 1967, 99 => 1967,
103 => 1967, others => 0),
233 =>
(15 => 179, 34 => 179, 39 => 179, 40 => 179,
41 => 179, 46 => 179, 60 => 179, 67 => 179,
68 => 179, 70 => 179, 72 => 179, 73 => 179,
91 => 179, 94 => 179, 97 => 179, 99 => 179,
others => 0),
234 =>
(15 => 130, 34 => 130, 39 => 130, 40 => 130,
41 => 130, 46 => 130, 60 => 130, 67 => 130,
68 => 130, 70 => 130, 71 => 130, 72 => 130,
73 => 130, 91 => 130, 94 => 130, 97 => 130,
99 => 130, others => 0),
235 =>
(15 => 108, 18 => 108, 34 => 108, 35 => 108,
39 => 108, 40 => 108, 41 => 108, 46 => 108,
60 => 108, 67 => 108, 68 => 108, 70 => 108,
71 => 108, 72 => 108, 73 => 108, 91 => 108,
94 => 108, 97 => 108, 99 => 108, 101 => 108,
others => 0),
236 =>
(15 => 1585, 34 => 1585, 39 => 1585, 40 => 1585,
41 => 1585, 46 => 1585, 60 => 1585, 67 => 1585,
68 => 1585, 70 => 1585, 71 => 1585, 72 => 1585,
73 => 1585, 91 => 1585, 94 => 1585, 97 => 1585,
99 => 1585, others => 0),
237 =>
(15 => 1584, 34 => 1584, 39 => 1584, 40 => 1584,
41 => 1584, 46 => 1584, 60 => 1584, 67 => 1584,
68 => 1584, 70 => 1584, 71 => 1584, 72 => 1584,
73 => 1584, 91 => 1584, 94 => 1584, 97 => 1584,
99 => 1584, others => 0),
238 =>
(15 => 131, 34 => 131, 39 => 131, 40 => 131,
41 => 131, 46 => 131, 60 => 131, 67 => 131,
68 => 131, 70 => 131, 71 => 131, 72 => 131,
73 => 131, 91 => 131, 94 => 131, 97 => 131,
99 => 131, others => 0),
239 =>
(0 => 1966, 15 => 1966, 34 => 1966, 39 => 1966,
40 => 1966, 41 => 1966, 46 => 1966, 56 => 1966,
60 => 1966, 67 => 1966, 68 => 1966, 70 => 1966,
71 => 1966, 72 => 1966, 73 => 1966, 86 => 1966,
91 => 1966, 94 => 1966, 97 => 1966, 99 => 1966,
103 => 1966, others => 0),
240 =>
(15 => 178, 34 => 178, 39 => 178, 40 => 178,
41 => 178, 46 => 178, 60 => 178, 67 => 178,
68 => 178, 70 => 178, 72 => 178, 73 => 178,
91 => 178, 94 => 178, 97 => 178, 99 => 178,
others => 0),
241 =>
(15 => 129, 34 => 129, 39 => 129, 40 => 129,
41 => 129, 46 => 129, 60 => 129, 67 => 129,
68 => 129, 70 => 129, 71 => 129, 72 => 129,
73 => 129, 91 => 129, 94 => 129, 97 => 129,
99 => 129, others => 0),
242 =>
(15 => 148, 34 => 148, 39 => 148, 40 => 148,
41 => 148, 46 => 148, 60 => 148, 67 => 148,
68 => 148, 70 => 148, 71 => 148, 72 => 148,
73 => 148, 91 => 148, 94 => 148, 97 => 148,
99 => 148, others => 0),
243 =>
(0 => 1957, 15 => 1957, 34 => 1957, 35 => 1957,
39 => 1957, 40 => 1957, 41 => 1957, 46 => 1957,
56 => 1957, 60 => 1957, 67 => 1957, 68 => 1957,
70 => 1957, 71 => 1957, 72 => 1957, 73 => 1957,
86 => 1957, 91 => 1957, 94 => 1957, 97 => 1957,
99 => 1957, 103 => 1957, others => 0),
244 =>
(15 => 33212, 34 => 33211, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
245 =>
(0 => 2237, 40 => 2237, 41 => 2237, 56 => 2237,
60 => 2237, 67 => 2237, 68 => 2237, 70 => 2237,
71 => 2237, 72 => 2237, 86 => 2237, 99 => 2237,
103 => 2237, others => 0),
246 =>
(21 => 32937, 85 => 33214, others => 0),
247 =>
(46 => 32838, others => 0),
248 =>
(3 => 32964, 59 => 32960, 61 => 32959, 86 => 32956,
others => 0),
249 =>
(85 => 33011, others => 0),
250 =>
(51 => 33217, 53 => 33216, 78 => 33055, 85 => 33054,
103 => 32885, others => 0),
251 =>
(51 => 33061, 53 => 33220, 80 => 33219, others => 0),
252 =>
(46 => 32815, others => 0),
253 =>
(46 => 32815, 90 => 32853, others => 0),
254 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33223,
90 => 32868, others => 0),
255 =>
(46 => 32838, others => 0),
256 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
257 =>
(8 => 2093, 9 => 2093, 12 => 2093, 13 => 2093,
21 => 2093, 27 => 2093, 28 => 2093, 30 => 2093,
31 => 2093, 32 => 2093, 33 => 2093, 36 => 2093,
43 => 2093, 44 => 2093, 45 => 2093, 48 => 2093,
49 => 2093, 51 => 2093, 54 => 2093, 55 => 2093,
57 => 2093, 58 => 2093, 60 => 2093, 63 => 2093,
64 => 2093, 69 => 2093, 75 => 2093, 77 => 2093,
83 => 2093, 85 => 2093, 87 => 2093, 89 => 2093,
96 => 2093, 100 => 2093, 103 => 2093, 104 => 2093,
others => 0),
258 =>
(8 => 2094, 9 => 2094, 12 => 2094, 13 => 2094,
21 => 2094, 27 => 2094, 28 => 2094, 30 => 2094,
31 => 2094, 32 => 2094, 33 => 2094, 36 => 2094,
43 => 2094, 44 => 2094, 45 => 2094, 48 => 2094,
49 => 2094, 51 => 2094, 54 => 2094, 55 => 2094,
57 => 2094, 58 => 2094, 60 => 2094, 63 => 2094,
64 => 2094, 69 => 2094, 75 => 2094, 77 => 2094,
83 => 2094, 85 => 2094, 87 => 2094, 89 => 2094,
96 => 2094, 100 => 2094, 103 => 2094, 104 => 2094,
others => 0),
259 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
260 =>
(19 => 32869, 46 => 32807, 53 => 33229, 90 => 32868,
others => 0),
261 =>
(2 => 33031, 18 => 33233, 19 => 32869, 39 => 33232,
45 => 33030, 46 => 32807, 47 => 33231, 53 => 33029,
59 => 33028, 60 => 33027, 61 => 33106, 62 => 33025,
65 => 33105, 69 => 33024, 90 => 32868, others => 0),
262 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
263 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
264 =>
(8 => 2095, 9 => 2095, 12 => 2095, 13 => 2095,
21 => 2095, 27 => 2095, 28 => 2095, 30 => 2095,
31 => 2095, 32 => 2095, 33 => 2095, 36 => 2095,
43 => 2095, 44 => 2095, 45 => 2095, 48 => 2095,
49 => 2095, 51 => 2095, 54 => 2095, 55 => 2095,
57 => 2095, 58 => 2095, 60 => 2095, 63 => 2095,
64 => 2095, 69 => 2095, 75 => 2095, 77 => 2095,
83 => 2095, 85 => 2095, 87 => 2095, 89 => 2095,
96 => 2095, 100 => 2095, 103 => 2095, 104 => 2095,
others => 0),
265 =>
(8 => 2097, 9 => 2097, 12 => 2097, 13 => 2097,
21 => 2097, 27 => 2097, 28 => 2097, 30 => 2097,
31 => 2097, 32 => 2097, 33 => 2097, 36 => 2097,
43 => 2097, 44 => 2097, 45 => 2097, 48 => 2097,
49 => 2097, 51 => 2097, 54 => 2097, 55 => 2097,
57 => 2097, 58 => 2097, 60 => 2097, 63 => 2097,
64 => 2097, 69 => 2097, 75 => 2097, 77 => 2097,
83 => 2097, 85 => 2097, 87 => 2097, 89 => 2097,
96 => 2097, 100 => 2097, 103 => 2097, 104 => 2097,
others => 0),
266 =>
(8 => 2030, 9 => 2030, 10 => 2030, 12 => 2030,
13 => 2030, 14 => 2030, 20 => 2030, 21 => 2030,
26 => 2030, 27 => 2030, 28 => 2030, 29 => 2030,
30 => 2030, 31 => 2030, 32 => 2030, 33 => 2030,
36 => 2030, 43 => 2030, 44 => 2030, 45 => 2030,
48 => 2030, 49 => 2030, 51 => 2030, 53 => 2030,
54 => 2030, 55 => 2030, 57 => 2030, 58 => 2030,
60 => 2030, 63 => 2030, 64 => 2030, 69 => 2030,
75 => 2030, 77 => 2030, 78 => 2030, 83 => 2030,
85 => 2030, 87 => 2030, 89 => 2030, 96 => 2030,
99 => 2030, 100 => 2030, 101 => 2030, 103 => 2030,
104 => 2030, others => 0),
267 =>
(9 => 33243, 21 => 1691, 64 => 33242, 83 => 1691,
104 => 33241, others => 0),
268 =>
(8 => 102, 9 => 102, 10 => 102, 12 => 102,
13 => 102, 14 => 102, 20 => 102, 21 => 102,
26 => 102, 27 => 102, 28 => 102, 29 => 102,
30 => 102, 31 => 102, 32 => 102, 33 => 102,
36 => 102, 43 => 102, 44 => 102, 45 => 102,
48 => 102, 49 => 102, 51 => 102, 53 => 102,
54 => 102, 55 => 102, 57 => 102, 58 => 102,
60 => 102, 63 => 102, 64 => 102, 69 => 102,
75 => 102, 77 => 102, 78 => 102, 83 => 102,
85 => 102, 87 => 102, 89 => 102, 96 => 102,
99 => 102, 100 => 102, 101 => 102, 103 => 102,
104 => 102, others => 0),
269 =>
(8 => 259, 9 => 259, 10 => 259, 12 => 33244,
21 => 259, 29 => 259, 31 => 259, 36 => 259,
43 => 259, 44 => 259, 45 => 259, 48 => 259,
49 => 259, 53 => 259, 54 => 259, 55 => 259,
58 => 259, 60 => 259, 64 => 259, 69 => 259,
77 => 259, 83 => 259, 87 => 259, 89 => 259,
104 => 259, others => 0),
270 =>
(8 => 2096, 9 => 2096, 10 => 1694, 12 => 2096,
13 => 2096, 21 => 2096, 27 => 2096, 28 => 2096,
29 => 1694, 30 => 2096, 31 => 2096, 32 => 2096,
33 => 2096, 36 => 2096, 43 => 2096, 44 => 2096,
45 => 2096, 48 => 2096, 49 => 2096, 51 => 2096,
53 => 1694, 54 => 2096, 55 => 2096, 57 => 2096,
58 => 2096, 60 => 2096, 63 => 2096, 64 => 2096,
69 => 2096, 75 => 2096, 77 => 2096, 83 => 2096,
85 => 2096, 87 => 2096, 89 => 2096, 96 => 2096,
100 => 2096, 103 => 2096, 104 => 2096, others => 0),
271 =>
(21 => 33246, 83 => 33245, others => 0),
272 =>
(8 => 101, 9 => 101, 10 => 101, 12 => 101,
13 => 101, 14 => 101, 20 => 101, 21 => 101,
26 => 101, 27 => 101, 28 => 101, 29 => 101,
30 => 101, 31 => 101, 32 => 101, 33 => 101,
36 => 101, 43 => 101, 44 => 101, 45 => 101,
48 => 101, 49 => 101, 51 => 101, 53 => 101,
54 => 101, 55 => 101, 57 => 101, 58 => 101,
60 => 101, 63 => 101, 64 => 101, 69 => 101,
75 => 101, 77 => 101, 78 => 101, 83 => 101,
85 => 101, 87 => 101, 89 => 101, 96 => 101,
99 => 101, 100 => 101, 101 => 101, 103 => 101,
104 => 101, others => 0),
273 =>
(9 => 375, 12 => 375, 21 => 375, 28 => 375,
32 => 375, 33 => 375, 51 => 375, 57 => 375,
64 => 375, 83 => 375, 85 => 375, 96 => 375,
100 => 375, 103 => 375, 104 => 375, others => 0),
274 =>
(8 => 33263, 9 => 2051, 12 => 2051, 21 => 2051,
28 => 2051, 31 => 33262, 32 => 2051, 33 => 2051,
36 => 33261, 43 => 33260, 44 => 33259, 45 => 33258,
48 => 33257, 49 => 33256, 51 => 2051, 54 => 33255,
55 => 33254, 57 => 2051, 58 => 33253, 60 => 33252,
64 => 2051, 69 => 33251, 77 => 33250, 83 => 2051,
85 => 2051, 87 => 33249, 89 => 33248, 96 => 2051,
100 => 2051, 103 => 2051, 104 => 2051, others => 0),
275 =>
(15 => 33266, 34 => 33265, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
276 =>
(51 => 33268, others => 0),
277 =>
(29 => 32865, 85 => 33269, 103 => 32885, others => 0),
278 =>
(46 => 32838, 97 => 33145, others => 0),
279 =>
(46 => 32838, 97 => 33151, others => 0),
280 =>
(34 => 33271, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
281 =>
(46 => 32807, others => 0),
282 =>
(46 => 32807, 85 => 33274, others => 0),
283 =>
(34 => 150, 39 => 150, 40 => 150, 41 => 150,
46 => 150, 60 => 150, 67 => 150, 68 => 150,
70 => 150, 71 => 150, 72 => 150, 73 => 150,
91 => 150, 94 => 150, 97 => 150, 99 => 150,
others => 0),
284 =>
(34 => 33277, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33276, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
285 =>
(34 => 33280, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33279, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
286 =>
(0 => 1942, 15 => 1942, 34 => 1942, 35 => 1942,
39 => 1942, 40 => 1942, 41 => 1942, 46 => 1942,
56 => 1942, 60 => 1942, 67 => 1942, 68 => 1942,
70 => 1942, 71 => 1942, 72 => 1942, 73 => 1942,
86 => 1942, 91 => 1942, 94 => 1942, 97 => 1942,
99 => 1942, 103 => 1942, others => 0),
287 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
288 =>
(46 => 32838, others => 0),
289 =>
(3 => 32964, 15 => 33287, 34 => 33286, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 59 => 33285,
60 => 32778, 61 => 32959, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 86 => 33284,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
290 =>
(51 => 33291, 85 => 33290, others => 0),
291 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33292,
90 => 32868, others => 0),
292 =>
(46 => 32838, others => 0),
293 =>
(59 => 33296, others => 0),
294 =>
(51 => 33300, 53 => 33299, 78 => 33298, 85 => 33297,
103 => 32885, others => 0),
295 =>
(51 => 33304, 53 => 33303, 80 => 33302, others => 0),
296 =>
(0 => 2235, 40 => 2235, 41 => 2235, 56 => 2235,
60 => 2235, 67 => 2235, 68 => 2235, 70 => 2235,
71 => 2235, 72 => 2235, 86 => 2235, 99 => 2235,
103 => 2235, others => 0),
297 =>
(21 => 32937, 85 => 33305, others => 0),
298 =>
(21 => 32866, 29 => 32865, 85 => 33306, others => 0),
299 =>
(51 => 33310, 53 => 33309, 85 => 33308, 103 => 32885,
others => 0),
300 =>
(51 => 33312, others => 0),
301 =>
(53 => 33314, 80 => 33313, others => 0),
302 =>
(40 => 553, 46 => 553, 68 => 553, 70 => 553,
72 => 553, 97 => 553, 99 => 553, 103 => 553,
others => 0),
303 =>
(17 => 33315, 46 => 32838, others => 0),
304 =>
(3 => 33334, 5 => 33333, 11 => 33332, 26 => 33331,
27 => 33330, 50 => 33329, 53 => 33328, 56 => 33327,
58 => 33326, 59 => 33325, 60 => 33324, 71 => 33323,
73 => 33322, 75 => 33321, 92 => 33320, 93 => 33319,
94 => 33318, others => 0),
305 =>
(51 => 33350, 85 => 33349, others => 0),
306 =>
(51 => 277, 85 => 277, others => 0),
307 =>
(51 => 276, 85 => 276, others => 0),
308 =>
(0 => 1463, 15 => 1463, 34 => 1463, 39 => 1463,
40 => 1463, 41 => 1463, 46 => 1463, 56 => 1463,
60 => 1463, 67 => 1463, 68 => 1463, 70 => 1463,
71 => 1463, 72 => 1463, 73 => 1463, 86 => 1463,
91 => 1463, 94 => 1463, 97 => 1463, 99 => 1463,
103 => 1463, others => 0),
309 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
310 =>
(46 => 32838, others => 0),
311 =>
(85 => 33353, others => 0),
312 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
313 =>
(34 => 33356, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33355, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
314 =>
(51 => 33358, others => 0),
315 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33359,
90 => 32868, others => 0),
316 =>
(46 => 32838, others => 0),
317 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
318 =>
(20 => 243, 21 => 243, others => 0),
319 =>
(46 => 32838, others => 0),
320 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33365,
90 => 32868, others => 0),
321 =>
(61 => 33368, others => 0),
322 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33370,
66 => 33369, 90 => 32868, others => 0),
323 =>
(19 => 32869, 23 => 33376, 40 => 33375, 46 => 32807,
72 => 33374, 73 => 33373, 90 => 32868, others => 0),
324 =>
(13 => 33379, 85 => 33378, 103 => 32885, others => 0),
325 =>
(13 => 33382, 85 => 33381, 103 => 32885, others => 0),
326 =>
(53 => 33386, 78 => 33385, 85 => 33384, 103 => 32885,
others => 0),
327 =>
(51 => 33389, 78 => 33388, 103 => 32885, others => 0),
328 =>
(53 => 33392, 80 => 33391, others => 0),
329 =>
(53 => 239, 78 => 33393, 80 => 239, others => 0),
330 =>
(61 => 33394, others => 0),
331 =>
(51 => 33397, 78 => 33396, 85 => 33395, 103 => 32885,
others => 0),
332 =>
(51 => 33401, 78 => 33400, 85 => 33399, 103 => 32885,
others => 0),
333 =>
(83 => 33403, others => 0),
334 =>
(46 => 32807, others => 0),
335 =>
(29 => 32865, 83 => 33405, others => 0),
336 =>
(21 => 1961, 29 => 32865, 85 => 1961, others => 0),
337 =>
(12 => 1598, 100 => 1598, others => 0),
338 =>
(8 => 2094, 9 => 2094, 12 => 2094, 21 => 2094,
30 => 2094, 31 => 2094, 36 => 2094, 43 => 2094,
44 => 2094, 45 => 2094, 48 => 2094, 49 => 2094,
54 => 2094, 55 => 2094, 58 => 2094, 60 => 2094,
64 => 2094, 69 => 2094, 75 => 2094, 76 => 33406,
77 => 2094, 83 => 2094, 87 => 2094, 89 => 2094,
100 => 2094, 104 => 2094, others => 0),
339 =>
(12 => 265, 100 => 33407, others => 0),
340 =>
(12 => 33409, others => 0),
341 =>
(12 => 262, 21 => 2034, 83 => 2034, 100 => 262,
others => 0),
342 =>
(9 => 33243, 12 => 261, 21 => 2032, 64 => 33242,
83 => 2032, 100 => 261, 104 => 33241, others => 0),
343 =>
(12 => 263, 100 => 263, others => 0),
344 =>
(10 => 33410, 29 => 32939, 53 => 32938, others => 0),
345 =>
(12 => 267, 21 => 267, 83 => 267, 100 => 267,
others => 0),
346 =>
(21 => 33411, 83 => 2036, others => 0),
347 =>
(83 => 33413, others => 0),
348 =>
(8 => 33263, 9 => 2051, 12 => 2051, 21 => 2051,
30 => 33415, 31 => 33262, 36 => 33261, 43 => 33260,
44 => 33259, 45 => 33258, 48 => 33257, 49 => 33256,
54 => 33255, 55 => 33254, 58 => 33253, 60 => 33252,
64 => 2051, 69 => 33251, 75 => 33414, 77 => 33250,
83 => 2051, 87 => 33249, 89 => 33248, 100 => 2051,
104 => 2051, others => 0),
349 =>
(8 => 374, 9 => 374, 10 => 374, 12 => 374,
13 => 374, 14 => 374, 20 => 374, 21 => 374,
26 => 374, 27 => 374, 28 => 374, 29 => 374,
30 => 374, 31 => 374, 32 => 374, 33 => 374,
36 => 374, 43 => 374, 44 => 374, 45 => 374,
48 => 374, 49 => 374, 51 => 374, 53 => 374,
54 => 374, 55 => 374, 57 => 374, 58 => 374,
60 => 374, 63 => 374, 64 => 374, 69 => 374,
75 => 374, 77 => 374, 78 => 374, 83 => 374,
85 => 374, 87 => 374, 89 => 374, 96 => 374,
99 => 374, 100 => 374, 101 => 374, 103 => 374,
104 => 374, others => 0),
350 =>
(8 => 2073, 9 => 2073, 10 => 2073, 12 => 2073,
13 => 2073, 14 => 2073, 20 => 2073, 21 => 2073,
26 => 2073, 27 => 2073, 28 => 2073, 29 => 2073,
30 => 2073, 31 => 2073, 32 => 2073, 33 => 2073,
36 => 2073, 43 => 2073, 44 => 2073, 45 => 2073,
48 => 2073, 49 => 2073, 51 => 2073, 53 => 2073,
54 => 2073, 55 => 2073, 57 => 2073, 58 => 2073,
60 => 2073, 63 => 2073, 64 => 2073, 69 => 2073,
75 => 2073, 77 => 2073, 78 => 2073, 83 => 2073,
85 => 2073, 87 => 2073, 89 => 2073, 96 => 2073,
99 => 2073, 100 => 2073, 101 => 2073, 103 => 2073,
104 => 2073, others => 0),
351 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33106,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
352 =>
(8 => 2016, 9 => 2016, 10 => 2016, 12 => 2016,
13 => 2016, 14 => 2016, 20 => 2016, 21 => 2016,
26 => 2016, 27 => 2016, 28 => 2016, 29 => 2016,
30 => 2016, 31 => 2016, 32 => 2016, 33 => 2016,
36 => 2016, 43 => 2016, 44 => 2016, 45 => 2016,
48 => 2016, 49 => 2016, 51 => 2016, 53 => 2016,
54 => 2016, 55 => 2016, 57 => 2016, 58 => 2016,
60 => 2016, 63 => 2016, 64 => 2016, 69 => 2016,
75 => 2016, 77 => 2016, 78 => 2016, 83 => 2016,
85 => 2016, 87 => 2016, 89 => 2016, 96 => 2016,
99 => 2016, 100 => 2016, 101 => 2016, 103 => 2016,
104 => 2016, others => 0),
353 =>
(8 => 124, 9 => 124, 10 => 124, 12 => 124,
13 => 124, 14 => 124, 20 => 124, 21 => 124,
26 => 124, 27 => 124, 28 => 124, 29 => 124,
30 => 124, 31 => 124, 32 => 124, 33 => 124,
36 => 124, 43 => 124, 44 => 124, 45 => 124,
48 => 124, 49 => 124, 51 => 124, 53 => 124,
54 => 124, 55 => 124, 57 => 124, 58 => 124,
60 => 124, 63 => 124, 64 => 124, 69 => 124,
75 => 124, 77 => 124, 78 => 124, 83 => 124,
85 => 124, 87 => 124, 89 => 124, 96 => 124,
99 => 124, 100 => 124, 101 => 124, 103 => 124,
104 => 124, others => 0),
354 =>
(21 => 2136, 85 => 2136, others => 0),
355 =>
(0 => 2225, 15 => 2225, 34 => 2225, 39 => 2225,
40 => 2225, 41 => 2225, 46 => 2225, 56 => 2225,
60 => 2225, 67 => 2225, 68 => 2225, 70 => 2225,
71 => 2225, 72 => 2225, 73 => 2225, 86 => 2225,
91 => 2225, 94 => 2225, 97 => 2225, 99 => 2225,
103 => 2225, others => 0),
356 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
357 =>
(0 => 2224, 15 => 2224, 34 => 2224, 39 => 2224,
40 => 2224, 41 => 2224, 46 => 2224, 56 => 2224,
60 => 2224, 67 => 2224, 68 => 2224, 70 => 2224,
71 => 2224, 72 => 2224, 73 => 2224, 86 => 2224,
91 => 2224, 94 => 2224, 97 => 2224, 99 => 2224,
103 => 2224, others => 0),
358 =>
(21 => 33124, 85 => 33418, others => 0),
359 =>
(16 => 33419, others => 0),
360 =>
(16 => 33420, others => 0),
361 =>
(46 => 32815, others => 0),
362 =>
(16 => 32827, others => 0),
363 =>
(40 => 33423, 72 => 33422, others => 0),
364 =>
(67 => 33424, others => 0),
365 =>
(46 => 32815, 90 => 32853, others => 0),
366 =>
(0 => 2138, 40 => 2138, 41 => 2138, 56 => 2138,
60 => 2138, 67 => 2138, 68 => 2138, 70 => 2138,
71 => 2138, 72 => 2138, 86 => 2138, 99 => 2138,
103 => 2138, others => 0),
367 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
368 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
369 =>
(21 => 33428, 51 => 117, 85 => 117, others => 0),
370 =>
(0 => 1954, 15 => 1954, 34 => 1954, 35 => 1954,
39 => 1954, 40 => 1954, 41 => 1954, 46 => 1954,
56 => 1954, 60 => 1954, 67 => 1954, 68 => 1954,
70 => 1954, 71 => 1954, 72 => 1954, 73 => 1954,
86 => 1954, 91 => 1954, 94 => 1954, 97 => 1954,
99 => 1954, 103 => 1954, others => 0),
371 =>
(85 => 33429, others => 0),
372 =>
(5 => 33091, 6 => 33433, 19 => 32869, 46 => 32807,
48 => 33432, 60 => 33431, 66 => 33430, 90 => 32868,
others => 0),
373 =>
(51 => 33438, 78 => 33437, 85 => 33436, 103 => 32885,
others => 0),
374 =>
(46 => 32838, others => 0),
375 =>
(83 => 622, 85 => 33441, others => 0),
376 =>
(51 => 33443, 53 => 33071, 85 => 33442, others => 0),
377 =>
(46 => 32838, others => 0),
378 =>
(46 => 32838, others => 0),
379 =>
(51 => 33448, 85 => 33447, 103 => 32885, others => 0),
380 =>
(51 => 33450, others => 0),
381 =>
(0 => 1956, 15 => 1956, 34 => 1956, 35 => 1956,
39 => 1956, 40 => 1956, 41 => 1956, 46 => 1956,
56 => 1956, 60 => 1956, 67 => 1956, 68 => 1956,
70 => 1956, 71 => 1956, 72 => 1956, 73 => 1956,
86 => 1956, 91 => 1956, 94 => 1956, 97 => 1956,
99 => 1956, 103 => 1956, others => 0),
382 =>
(85 => 33451, others => 0),
383 =>
(46 => 32838, others => 0),
384 =>
(46 => 32838, others => 0),
385 =>
(51 => 33454, 103 => 32885, others => 0),
386 =>
(46 => 32815, others => 0),
387 =>
(29 => 32865, 53 => 33458, 85 => 33457, 103 => 32885,
others => 0),
388 =>
(99 => 33460, others => 0),
389 =>
(0 => 1910, 15 => 1910, 34 => 1910, 35 => 1910,
39 => 1910, 40 => 1910, 41 => 1910, 46 => 1910,
56 => 1910, 60 => 1910, 67 => 1910, 68 => 1910,
70 => 1910, 71 => 1910, 72 => 1910, 73 => 1910,
86 => 1910, 91 => 1910, 94 => 1910, 97 => 1910,
99 => 1910, 103 => 1910, others => 0),
390 =>
(29 => 32865, 85 => 33461, others => 0),
391 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
392 =>
(4 => 33176, 19 => 32869, 25 => 33172, 46 => 32807,
90 => 32868, 95 => 33464, 101 => 33463, others => 0),
393 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 33168,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 85 => 33474, 90 => 32868,
others => 0),
394 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
395 =>
(19 => 32869, 46 => 32807, 85 => 33479, 90 => 32868,
others => 0),
396 =>
(85 => 33481, others => 0),
397 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
398 =>
(46 => 32838, others => 0),
399 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
400 =>
(8 => 1477, 9 => 1477, 10 => 1477, 12 => 1477,
13 => 1477, 20 => 244, 21 => 244, 26 => 1477,
27 => 1477, 29 => 1477, 30 => 1477, 31 => 1477,
36 => 1477, 43 => 1477, 44 => 1477, 45 => 1477,
48 => 1477, 49 => 1477, 53 => 1477, 54 => 1477,
55 => 1477, 58 => 1477, 60 => 1477, 64 => 1477,
69 => 1477, 75 => 1477, 77 => 1477, 83 => 1477,
85 => 1477, 87 => 1477, 89 => 1477, 100 => 1477,
104 => 1477, others => 0),
401 =>
(46 => 32807, others => 0),
402 =>
(46 => 32838, others => 0),
403 =>
(19 => 32869, 46 => 32807, 85 => 33490, 90 => 32868,
101 => 33489, others => 0),
404 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, 98 => 33492,
others => 0),
405 =>
(15 => 33494, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
406 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
407 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
408 =>
(46 => 32807, others => 0),
409 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
410 =>
(1 => 2208, 4 => 2208, 15 => 2208, 18 => 2208,
19 => 2208, 24 => 2208, 25 => 2208, 32 => 2208,
33 => 2208, 34 => 2208, 37 => 2208, 38 => 2208,
39 => 2208, 42 => 2208, 46 => 2208, 47 => 2208,
52 => 2208, 57 => 2208, 61 => 2208, 64 => 2208,
70 => 2208, 74 => 2208, 79 => 2208, 80 => 2208,
84 => 2208, 90 => 2208, 96 => 2208, 101 => 2208,
102 => 2208, others => 0),
411 =>
(1 => 2216, 4 => 2216, 15 => 2216, 18 => 2216,
19 => 2216, 24 => 2216, 25 => 2216, 32 => 2216,
33 => 2216, 34 => 2216, 37 => 2216, 38 => 2216,
39 => 2216, 42 => 2216, 46 => 2216, 47 => 2216,
52 => 2216, 57 => 2216, 61 => 2216, 64 => 2216,
70 => 2216, 74 => 2216, 79 => 2216, 80 => 2216,
84 => 2216, 90 => 2216, 96 => 2216, 101 => 2216,
102 => 2216, others => 0),
412 =>
(1 => 2201, 4 => 2201, 15 => 2201, 18 => 2201,
19 => 2201, 24 => 2201, 25 => 2201, 32 => 2201,
33 => 2201, 34 => 2201, 37 => 2201, 38 => 2201,
39 => 2201, 42 => 2201, 46 => 2201, 47 => 2201,
52 => 2201, 57 => 2201, 61 => 2201, 64 => 2201,
70 => 2201, 74 => 2201, 79 => 2201, 80 => 2201,
84 => 2201, 90 => 2201, 96 => 2201, 101 => 2201,
102 => 2201, others => 0),
413 =>
(1 => 2218, 4 => 2218, 15 => 2218, 18 => 2218,
19 => 2218, 24 => 2218, 25 => 2218, 32 => 2218,
33 => 2218, 34 => 2218, 37 => 2218, 38 => 2218,
39 => 2218, 42 => 2218, 46 => 2218, 47 => 2218,
52 => 2218, 57 => 2218, 61 => 2218, 64 => 2218,
70 => 2218, 74 => 2218, 79 => 2218, 80 => 2218,
84 => 2218, 90 => 2218, 96 => 2218, 101 => 2218,
102 => 2218, others => 0),
414 =>
(1 => 2214, 4 => 2214, 15 => 2214, 18 => 2214,
19 => 2214, 24 => 2214, 25 => 2214, 32 => 2214,
33 => 2214, 34 => 2214, 37 => 2214, 38 => 2214,
39 => 2214, 42 => 2214, 46 => 2214, 47 => 2214,
52 => 2214, 57 => 2214, 61 => 2214, 64 => 2214,
70 => 2214, 74 => 2214, 79 => 2214, 80 => 2214,
84 => 2214, 90 => 2214, 96 => 2214, 101 => 2214,
102 => 2214, others => 0),
415 =>
(1 => 2212, 4 => 2212, 15 => 2212, 18 => 2212,
19 => 2212, 24 => 2212, 25 => 2212, 32 => 2212,
33 => 2212, 34 => 2212, 37 => 2212, 38 => 2212,
39 => 2212, 42 => 2212, 46 => 2212, 47 => 2212,
52 => 2212, 57 => 2212, 61 => 2212, 64 => 2212,
70 => 2212, 74 => 2212, 79 => 2212, 80 => 2212,
84 => 2212, 90 => 2212, 96 => 2212, 101 => 2212,
102 => 2212, others => 0),
416 =>
(20 => 33500, others => 0),
417 =>
(1 => 2207, 4 => 2207, 15 => 2207, 18 => 2207,
19 => 2207, 24 => 2207, 25 => 2207, 32 => 2207,
33 => 2207, 34 => 2207, 37 => 2207, 38 => 2207,
39 => 2207, 42 => 2207, 46 => 2207, 47 => 2207,
52 => 2207, 57 => 2207, 61 => 2207, 64 => 2207,
70 => 2207, 74 => 2207, 79 => 2207, 80 => 2207,
84 => 2207, 90 => 2207, 96 => 2207, 101 => 2207,
102 => 2207, others => 0),
418 =>
(1 => 2205, 4 => 2205, 15 => 2205, 18 => 2205,
19 => 2205, 24 => 2205, 25 => 2205, 32 => 2205,
33 => 2205, 34 => 2205, 37 => 2205, 38 => 2205,
39 => 2205, 42 => 2205, 46 => 2205, 47 => 2205,
52 => 2205, 57 => 2205, 61 => 2205, 64 => 2205,
70 => 2205, 74 => 2205, 79 => 2205, 80 => 2205,
84 => 2205, 90 => 2205, 96 => 2205, 101 => 2205,
102 => 2205, others => 0),
419 =>
(1 => 2202, 4 => 2202, 15 => 2202, 18 => 2202,
19 => 2202, 24 => 2202, 25 => 2202, 32 => 2202,
33 => 2202, 34 => 2202, 37 => 2202, 38 => 2202,
39 => 2202, 42 => 2202, 46 => 2202, 47 => 2202,
52 => 2202, 57 => 2202, 61 => 2202, 64 => 2202,
70 => 2202, 74 => 2202, 79 => 2202, 80 => 2202,
84 => 2202, 90 => 2202, 96 => 2202, 101 => 2202,
102 => 2202, others => 0),
420 =>
(1 => 2215, 4 => 2215, 15 => 2215, 18 => 2215,
19 => 2215, 24 => 2215, 25 => 2215, 32 => 2215,
33 => 2215, 34 => 2215, 37 => 2215, 38 => 2215,
39 => 2215, 42 => 2215, 46 => 2215, 47 => 2215,
52 => 2215, 57 => 2215, 61 => 2215, 64 => 2215,
70 => 2215, 74 => 2215, 79 => 2215, 80 => 2215,
84 => 2215, 90 => 2215, 96 => 2215, 101 => 2215,
102 => 2215, others => 0),
421 =>
(1 => 2203, 4 => 2203, 15 => 2203, 18 => 2203,
19 => 2203, 24 => 2203, 25 => 2203, 32 => 2203,
33 => 2203, 34 => 2203, 37 => 2203, 38 => 2203,
39 => 2203, 42 => 2203, 46 => 2203, 47 => 2203,
52 => 2203, 57 => 2203, 61 => 2203, 64 => 2203,
70 => 2203, 74 => 2203, 79 => 2203, 80 => 2203,
84 => 2203, 90 => 2203, 96 => 2203, 101 => 2203,
102 => 2203, others => 0),
422 =>
(1 => 2211, 4 => 2211, 15 => 2211, 18 => 2211,
19 => 2211, 24 => 2211, 25 => 2211, 32 => 2211,
33 => 2211, 34 => 2211, 37 => 2211, 38 => 2211,
39 => 2211, 42 => 2211, 46 => 2211, 47 => 2211,
52 => 2211, 57 => 2211, 61 => 2211, 64 => 2211,
70 => 2211, 74 => 2211, 79 => 2211, 80 => 2211,
84 => 2211, 90 => 2211, 96 => 2211, 101 => 2211,
102 => 2211, others => 0),
423 =>
(1 => 1511, 4 => 1511, 15 => 1511, 18 => 1511,
19 => 1511, 24 => 1511, 25 => 1511, 32 => 1511,
33 => 1511, 34 => 1511, 37 => 1511, 38 => 1511,
39 => 1511, 42 => 1511, 46 => 1511, 47 => 1511,
52 => 1511, 57 => 1511, 61 => 1511, 64 => 1511,
70 => 1511, 74 => 1511, 79 => 1511, 80 => 1511,
84 => 1511, 90 => 1511, 96 => 1511, 101 => 1511,
102 => 1511, others => 0),
424 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
425 =>
(1 => 2213, 4 => 2213, 15 => 2213, 18 => 2213,
19 => 2213, 24 => 2213, 25 => 2213, 32 => 2213,
33 => 2213, 34 => 2213, 37 => 2213, 38 => 2213,
39 => 2213, 42 => 2213, 46 => 2213, 47 => 2213,
52 => 2213, 57 => 2213, 61 => 2213, 64 => 2213,
70 => 2213, 74 => 2213, 79 => 2213, 80 => 2213,
84 => 2213, 90 => 2213, 96 => 2213, 101 => 2213,
102 => 2213, others => 0),
426 =>
(10 => 1694, 13 => 33504, 29 => 1694, 53 => 1694,
85 => 33503, others => 0),
427 =>
(1 => 2200, 4 => 2200, 15 => 2200, 18 => 2200,
19 => 2200, 24 => 2200, 25 => 2200, 32 => 2200,
33 => 2200, 34 => 2200, 37 => 2200, 38 => 2200,
39 => 2200, 42 => 2200, 46 => 2200, 47 => 2200,
52 => 2200, 57 => 2200, 61 => 2200, 64 => 2200,
70 => 2200, 74 => 2200, 79 => 2200, 80 => 2200,
84 => 2200, 90 => 2200, 96 => 2200, 101 => 2200,
102 => 2200, others => 0),
428 =>
(1 => 2210, 4 => 2210, 15 => 2210, 18 => 2210,
19 => 2210, 24 => 2210, 25 => 2210, 32 => 2210,
33 => 2210, 34 => 2210, 37 => 2210, 38 => 2210,
39 => 2210, 42 => 2210, 46 => 2210, 47 => 2210,
52 => 2210, 57 => 2210, 61 => 2210, 64 => 2210,
70 => 2210, 74 => 2210, 79 => 2210, 80 => 2210,
84 => 2210, 90 => 2210, 96 => 2210, 101 => 2210,
102 => 2210, others => 0),
429 =>
(1 => 2209, 4 => 2209, 15 => 2209, 18 => 2209,
19 => 2209, 24 => 2209, 25 => 2209, 32 => 2209,
33 => 2209, 34 => 2209, 37 => 2209, 38 => 2209,
39 => 2209, 42 => 2209, 46 => 2209, 47 => 2209,
52 => 2209, 57 => 2209, 61 => 2209, 64 => 2209,
70 => 2209, 74 => 2209, 79 => 2209, 80 => 2209,
84 => 2209, 90 => 2209, 96 => 2209, 101 => 2209,
102 => 2209, others => 0),
430 =>
(1 => 2206, 4 => 2206, 15 => 2206, 18 => 2206,
19 => 2206, 24 => 2206, 25 => 2206, 32 => 2206,
33 => 2206, 34 => 2206, 37 => 2206, 38 => 2206,
39 => 2206, 42 => 2206, 46 => 2206, 47 => 2206,
52 => 2206, 57 => 2206, 61 => 2206, 64 => 2206,
70 => 2206, 74 => 2206, 79 => 2206, 80 => 2206,
84 => 2206, 90 => 2206, 96 => 2206, 101 => 2206,
102 => 2206, others => 0),
431 =>
(1 => 2217, 4 => 2217, 15 => 2217, 18 => 2217,
19 => 2217, 24 => 2217, 25 => 2217, 32 => 2217,
33 => 2217, 34 => 2217, 37 => 2217, 38 => 2217,
39 => 2217, 42 => 2217, 46 => 2217, 47 => 2217,
52 => 2217, 57 => 2217, 61 => 2217, 64 => 2217,
70 => 2217, 74 => 2217, 79 => 2217, 80 => 2217,
84 => 2217, 90 => 2217, 96 => 2217, 101 => 2217,
102 => 2217, others => 0),
432 =>
(34 => 33506, 37 => 33505, others => 0),
433 =>
(1 => 2204, 4 => 2204, 15 => 2204, 18 => 2204,
19 => 2204, 24 => 2204, 25 => 2204, 32 => 2204,
33 => 2204, 34 => 2204, 37 => 2204, 38 => 2204,
39 => 2204, 42 => 2204, 46 => 2204, 47 => 2204,
52 => 2204, 57 => 2204, 61 => 2204, 64 => 2204,
70 => 2204, 74 => 2204, 79 => 2204, 80 => 2204,
84 => 2204, 90 => 2204, 96 => 2204, 101 => 2204,
102 => 2204, others => 0),
434 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 2091,
33 => 2091, 34 => 2091, 37 => 2091, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 64 => 2091,
70 => 32775, 74 => 33163, 79 => 33162, 80 => 33161,
84 => 33160, 90 => 32868, 96 => 2091, 101 => 2091,
102 => 33159, others => 0),
435 =>
(1 => 2125, 4 => 2125, 15 => 2125, 18 => 2125,
19 => 2125, 24 => 2125, 25 => 2125, 32 => 2125,
33 => 2125, 34 => 2125, 37 => 2125, 38 => 2125,
39 => 2125, 42 => 2125, 46 => 2125, 47 => 2125,
52 => 2125, 57 => 2125, 61 => 2125, 64 => 2125,
70 => 2125, 74 => 2125, 79 => 2125, 80 => 2125,
84 => 2125, 90 => 2125, 96 => 2125, 101 => 2125,
102 => 2125, others => 0),
436 =>
(15 => 235, 34 => 235, 39 => 235, 40 => 235,
41 => 235, 46 => 235, 60 => 235, 67 => 235,
68 => 235, 70 => 235, 72 => 235, 73 => 235,
91 => 235, 94 => 235, 97 => 235, 99 => 235,
others => 0),
437 =>
(15 => 236, 34 => 236, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
438 =>
(46 => 32807, 85 => 33511, others => 0),
439 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
440 =>
(5 => 33091, 6 => 33518, 11 => 33517, 19 => 32869,
23 => 33516, 37 => 33515, 46 => 32807, 60 => 33514,
90 => 32868, others => 0),
441 =>
(0 => 1952, 15 => 1952, 34 => 1952, 35 => 1952,
39 => 1952, 40 => 1952, 41 => 1952, 46 => 1952,
56 => 1952, 60 => 1952, 67 => 1952, 68 => 1952,
70 => 1952, 71 => 1952, 72 => 1952, 73 => 1952,
86 => 1952, 91 => 1952, 94 => 1952, 97 => 1952,
99 => 1952, 103 => 1952, others => 0),
442 =>
(85 => 33525, others => 0),
443 =>
(46 => 32807, 85 => 33526, others => 0),
444 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
445 =>
(15 => 33530, 34 => 33529, others => 0),
446 =>
(0 => 2236, 40 => 2236, 41 => 2236, 56 => 2236,
60 => 2236, 67 => 2236, 68 => 2236, 70 => 2236,
71 => 2236, 72 => 2236, 86 => 2236, 99 => 2236,
103 => 2236, others => 0),
447 =>
(83 => 33531, others => 0),
448 =>
(46 => 32838, others => 0),
449 =>
(3 => 32964, 59 => 33285, 61 => 32959, 86 => 33284,
others => 0),
450 =>
(85 => 33290, others => 0),
451 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33533,
90 => 32868, others => 0),
452 =>
(46 => 32838, others => 0),
453 =>
(51 => 33538, 53 => 33537, 78 => 33298, 85 => 33297,
103 => 32885, others => 0),
454 =>
(51 => 33304, 53 => 33541, 80 => 33540, others => 0),
455 =>
(61 => 33542, others => 0),
456 =>
(51 => 33543, 78 => 33396, 85 => 33395, 103 => 32885,
others => 0),
457 =>
(51 => 33545, 78 => 33400, 85 => 33399, 103 => 32885,
others => 0),
458 =>
(83 => 33547, others => 0),
459 =>
(8 => 2108, 9 => 2108, 12 => 2108, 13 => 2108,
21 => 2108, 27 => 2108, 28 => 2108, 30 => 2108,
31 => 33262, 32 => 2108, 33 => 2108, 36 => 2108,
43 => 2108, 44 => 2108, 45 => 2108, 48 => 2108,
49 => 2108, 51 => 2108, 54 => 2108, 55 => 2108,
57 => 2108, 58 => 33253, 60 => 2108, 63 => 2108,
64 => 2108, 69 => 2108, 75 => 2108, 77 => 33250,
83 => 2108, 85 => 2108, 87 => 33249, 89 => 33248,
96 => 2108, 100 => 2108, 103 => 2108, 104 => 2108,
others => 0),
460 =>
(8 => 2101, 9 => 2101, 12 => 2101, 13 => 2101,
21 => 2101, 27 => 2101, 28 => 2101, 30 => 2101,
32 => 2101, 33 => 2101, 36 => 2101, 43 => 2101,
44 => 2101, 45 => 2101, 48 => 2101, 49 => 2101,
51 => 2101, 54 => 2101, 55 => 2101, 57 => 2101,
58 => 2101, 60 => 2101, 63 => 2101, 64 => 2101,
69 => 2101, 75 => 2101, 77 => 2101, 83 => 2101,
85 => 2101, 87 => 2101, 89 => 2101, 96 => 2101,
100 => 2101, 103 => 2101, 104 => 2101, others => 0),
461 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
462 =>
(8 => 104, 9 => 104, 10 => 1694, 12 => 104,
13 => 104, 21 => 104, 27 => 104, 28 => 104,
29 => 1694, 30 => 104, 31 => 104, 32 => 104,
33 => 104, 36 => 104, 43 => 104, 44 => 104,
45 => 104, 48 => 104, 49 => 104, 51 => 104,
53 => 1694, 54 => 104, 55 => 104, 57 => 104,
58 => 104, 60 => 104, 63 => 104, 64 => 104,
69 => 104, 75 => 104, 77 => 104, 83 => 104,
85 => 104, 87 => 104, 89 => 104, 96 => 104,
100 => 104, 103 => 104, 104 => 104, others => 0),
463 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
464 =>
(7 => 33551, 88 => 33550, others => 0),
465 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
466 =>
(83 => 222, others => 0),
467 =>
(83 => 33554, others => 0),
468 =>
(83 => 221, others => 0),
469 =>
(8 => 2096, 9 => 2096, 10 => 1694, 12 => 2096,
21 => 2096, 29 => 1694, 30 => 2096, 31 => 2096,
36 => 2096, 43 => 2096, 44 => 2096, 45 => 2096,
48 => 2096, 49 => 2096, 53 => 1694, 54 => 2096,
55 => 2096, 58 => 2096, 60 => 2096, 64 => 2096,
69 => 2096, 75 => 2096, 77 => 2096, 83 => 2096,
87 => 2096, 89 => 2096, 100 => 2096, 103 => 33555,
104 => 2096, others => 0),
470 =>
(83 => 33556, others => 0),
471 =>
(8 => 2107, 9 => 2107, 12 => 2107, 13 => 2107,
21 => 2107, 27 => 2107, 28 => 2107, 30 => 2107,
31 => 33262, 32 => 2107, 33 => 2107, 36 => 2107,
43 => 2107, 44 => 2107, 45 => 2107, 48 => 2107,
49 => 2107, 51 => 2107, 54 => 2107, 55 => 2107,
57 => 2107, 58 => 33253, 60 => 2107, 63 => 2107,
64 => 2107, 69 => 2107, 75 => 2107, 77 => 33250,
83 => 2107, 85 => 2107, 87 => 33249, 89 => 33248,
96 => 2107, 100 => 2107, 103 => 2107, 104 => 2107,
others => 0),
472 =>
(8 => 2100, 9 => 2100, 12 => 2100, 13 => 2100,
21 => 2100, 27 => 2100, 28 => 2100, 30 => 2100,
32 => 2100, 33 => 2100, 36 => 2100, 43 => 2100,
44 => 2100, 45 => 2100, 48 => 2100, 49 => 2100,
51 => 2100, 54 => 2100, 55 => 2100, 57 => 2100,
58 => 2100, 60 => 2100, 63 => 2100, 64 => 2100,
69 => 2100, 75 => 2100, 77 => 2100, 83 => 2100,
85 => 2100, 87 => 2100, 89 => 2100, 96 => 2100,
100 => 2100, 103 => 2100, 104 => 2100, others => 0),
473 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
474 =>
(2 => 33031, 19 => 32869, 32 => 33558, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 69 => 33024, 90 => 32868,
others => 0),
475 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, 96 => 33560,
others => 0),
476 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
477 =>
(85 => 33563, others => 0),
478 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
479 =>
(21 => 33566, 83 => 33565, others => 0),
480 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
481 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
482 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
483 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
484 =>
(48 => 33571, others => 0),
485 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
486 =>
(2 => 2056, 19 => 2056, 45 => 2056, 46 => 2056,
53 => 2056, 59 => 2056, 60 => 2056, 61 => 2056,
62 => 2056, 69 => 2056, 90 => 2056, others => 0),
487 =>
(2 => 2057, 19 => 2057, 45 => 2057, 46 => 2057,
53 => 2057, 59 => 2057, 60 => 2057, 61 => 2057,
62 => 2057, 69 => 2057, 90 => 2057, others => 0),
488 =>
(2 => 2055, 19 => 2055, 45 => 2055, 46 => 2055,
53 => 2055, 59 => 2055, 60 => 2055, 61 => 2055,
62 => 2055, 69 => 2055, 90 => 2055, others => 0),
489 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
490 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
491 =>
(2 => 2058, 19 => 2058, 45 => 2058, 46 => 2058,
53 => 2058, 59 => 2058, 60 => 2058, 61 => 2058,
62 => 2058, 69 => 2058, 90 => 2058, others => 0),
492 =>
(2 => 2059, 19 => 2059, 45 => 2059, 46 => 2059,
53 => 2059, 59 => 2059, 60 => 2059, 61 => 2059,
62 => 2059, 69 => 2059, 90 => 2059, others => 0),
493 =>
(2 => 2054, 19 => 2054, 45 => 2054, 46 => 2054,
53 => 2054, 59 => 2054, 60 => 2054, 61 => 2054,
62 => 2054, 69 => 2054, 90 => 2054, others => 0),
494 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
495 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
496 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
497 =>
(46 => 32807, 85 => 33582, others => 0),
498 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
499 =>
(15 => 33586, 34 => 33585, others => 0),
500 =>
(15 => 33588, 34 => 33587, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
501 =>
(0 => 1650, 15 => 1650, 34 => 1650, 39 => 1650,
40 => 1650, 41 => 1650, 46 => 1650, 56 => 1650,
60 => 1650, 67 => 1650, 68 => 1650, 70 => 1650,
71 => 1650, 72 => 1650, 73 => 1650, 86 => 1650,
91 => 1650, 94 => 1650, 97 => 1650, 99 => 1650,
103 => 1650, others => 0),
502 =>
(85 => 33590, others => 0),
503 =>
(46 => 32807, 85 => 33591, others => 0),
504 =>
(34 => 33593, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
505 =>
(29 => 32865, 53 => 33595, 85 => 33594, 103 => 32885,
others => 0),
506 =>
(0 => 1648, 15 => 1648, 34 => 1648, 39 => 1648,
40 => 1648, 41 => 1648, 46 => 1648, 56 => 1648,
60 => 1648, 67 => 1648, 68 => 1648, 70 => 1648,
71 => 1648, 72 => 1648, 73 => 1648, 86 => 1648,
91 => 1648, 94 => 1648, 97 => 1648, 99 => 1648,
103 => 1648, others => 0),
507 =>
(29 => 32865, 85 => 33597, others => 0),
508 =>
(34 => 33598, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
509 =>
(46 => 32807, 85 => 33600, others => 0),
510 =>
(34 => 149, 39 => 149, 40 => 149, 41 => 149,
46 => 149, 60 => 149, 67 => 149, 68 => 149,
70 => 149, 71 => 149, 72 => 149, 73 => 149,
91 => 149, 94 => 149, 97 => 149, 99 => 149,
others => 0),
511 =>
(34 => 33602, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
512 =>
(46 => 32807, 85 => 33604, others => 0),
513 =>
(34 => 33607, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33606, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
514 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33608,
103 => 32885, others => 0),
515 =>
(83 => 33610, others => 0),
516 =>
(85 => 33611, 103 => 32885, others => 0),
517 =>
(46 => 32807, others => 0),
518 =>
(46 => 32807, 85 => 33614, others => 0),
519 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
520 =>
(15 => 33618, 34 => 33617, others => 0),
521 =>
(85 => 33619, 103 => 32885, others => 0),
522 =>
(0 => 1941, 15 => 1941, 34 => 1941, 35 => 1941,
39 => 1941, 40 => 1941, 41 => 1941, 46 => 1941,
56 => 1941, 60 => 1941, 67 => 1941, 68 => 1941,
70 => 1941, 71 => 1941, 72 => 1941, 73 => 1941,
86 => 1941, 91 => 1941, 94 => 1941, 97 => 1941,
99 => 1941, 103 => 1941, others => 0),
523 =>
(15 => 33622, 34 => 33621, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
524 =>
(61 => 33624, others => 0),
525 =>
(51 => 33627, 78 => 33626, 85 => 33625, 103 => 32885,
others => 0),
526 =>
(51 => 33631, 78 => 33630, 85 => 33629, 103 => 32885,
others => 0),
527 =>
(83 => 33633, others => 0),
528 =>
(46 => 32807, others => 0),
529 =>
(0 => 1926, 15 => 1926, 34 => 1926, 35 => 1926,
39 => 1926, 40 => 1926, 41 => 1926, 46 => 1926,
56 => 1926, 60 => 1926, 67 => 1926, 68 => 1926,
70 => 1926, 71 => 1926, 72 => 1926, 73 => 1926,
86 => 1926, 91 => 1926, 94 => 1926, 97 => 1926,
99 => 1926, 103 => 1926, others => 0),
530 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
531 =>
(46 => 32838, others => 0),
532 =>
(3 => 32964, 15 => 33640, 34 => 33639, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 59 => 33638,
60 => 32778, 61 => 32959, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 86 => 33637,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
533 =>
(51 => 33644, 85 => 33643, others => 0),
534 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33645,
90 => 32868, others => 0),
535 =>
(46 => 32838, others => 0),
536 =>
(59 => 33649, others => 0),
537 =>
(0 => 2234, 40 => 2234, 41 => 2234, 56 => 2234,
60 => 2234, 67 => 2234, 68 => 2234, 70 => 2234,
71 => 2234, 72 => 2234, 86 => 2234, 99 => 2234,
103 => 2234, others => 0),
538 =>
(0 => 2233, 40 => 2233, 41 => 2233, 56 => 2233,
60 => 2233, 67 => 2233, 68 => 2233, 70 => 2233,
71 => 2233, 72 => 2233, 86 => 2233, 99 => 2233,
103 => 2233, others => 0),
539 =>
(21 => 32937, 85 => 33650, others => 0),
540 =>
(40 => 661, 46 => 661, 68 => 661, 70 => 661,
72 => 661, 97 => 661, 99 => 661, 103 => 661,
others => 0),
541 =>
(46 => 32838, others => 0),
542 =>
(3 => 33654, 17 => 33653, 19 => 32869, 46 => 32807,
61 => 33652, 90 => 32868, others => 0),
543 =>
(85 => 33656, others => 0),
544 =>
(59 => 33657, others => 0),
545 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33658,
90 => 32868, others => 0),
546 =>
(46 => 32838, others => 0),
547 =>
(83 => 33662, others => 0),
548 =>
(20 => 33663, others => 0),
549 =>
(83 => 33665, 85 => 33664, others => 0),
550 =>
(50 => 1494, others => 0),
551 =>
(56 => 33669, 71 => 33668, 85 => 33667, others => 0),
552 =>
(50 => 1496, 59 => 33670, others => 0),
553 =>
(17 => 33671, others => 0),
554 =>
(50 => 1495, others => 0),
555 =>
(85 => 629, 103 => 629, others => 0),
556 =>
(61 => 33672, others => 0),
557 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
558 =>
(17 => 33674, others => 0),
559 =>
(50 => 1493, 59 => 33676, 71 => 33675, others => 0),
560 =>
(17 => 33677, others => 0),
561 =>
(9 => 33678, 85 => 557, 103 => 557, others => 0),
562 =>
(17 => 33680, others => 0),
563 =>
(17 => 33681, others => 0),
564 =>
(53 => 33682, others => 0),
565 =>
(7 => 33688, 19 => 32869, 23 => 33687, 40 => 33686,
46 => 32807, 60 => 33685, 72 => 33684, 73 => 33683,
90 => 32868, others => 0),
566 =>
(56 => 33695, 59 => 33694, 92 => 33693, 93 => 33692,
others => 0),
567 =>
(85 => 672, 103 => 672, others => 0),
568 =>
(85 => 670, 103 => 670, others => 0),
569 =>
(85 => 669, 103 => 669, others => 0),
570 =>
(85 => 33696, others => 0),
571 =>
(85 => 664, 103 => 664, others => 0),
572 =>
(85 => 667, 103 => 667, others => 0),
573 =>
(85 => 673, 103 => 673, others => 0),
574 =>
(85 => 666, 103 => 666, others => 0),
575 =>
(85 => 668, 103 => 668, others => 0),
576 =>
(85 => 663, 103 => 663, others => 0),
577 =>
(85 => 665, 103 => 665, others => 0),
578 =>
(85 => 33697, 103 => 32885, others => 0),
579 =>
(85 => 671, 103 => 671, others => 0),
580 =>
(50 => 33699, others => 0),
581 =>
(40 => 551, 46 => 551, 68 => 551, 70 => 551,
72 => 551, 97 => 551, 99 => 551, 103 => 551,
others => 0),
582 =>
(3 => 33334, 5 => 33333, 11 => 33332, 26 => 33331,
27 => 33330, 50 => 33329, 53 => 33328, 56 => 33327,
58 => 33326, 59 => 33325, 60 => 33324, 71 => 33323,
73 => 33322, 75 => 33321, 92 => 33320, 93 => 33700,
94 => 33318, others => 0),
583 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33703,
103 => 32885, others => 0),
584 =>
(83 => 33705, others => 0),
585 =>
(0 => 1462, 15 => 1462, 34 => 1462, 39 => 1462,
40 => 1462, 41 => 1462, 46 => 1462, 56 => 1462,
60 => 1462, 67 => 1462, 68 => 1462, 70 => 1462,
71 => 1462, 72 => 1462, 73 => 1462, 86 => 1462,
91 => 1462, 94 => 1462, 97 => 1462, 99 => 1462,
103 => 1462, others => 0),
586 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33706,
103 => 32885, others => 0),
587 =>
(34 => 33708, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
588 =>
(46 => 32807, 85 => 33710, others => 0),
589 =>
(34 => 33713, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33712, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
590 =>
(34 => 33715, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33714, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
591 =>
(61 => 33717, others => 0),
592 =>
(85 => 33718, 103 => 32885, others => 0),
593 =>
(85 => 33720, 103 => 32885, others => 0),
594 =>
(83 => 33722, others => 0),
595 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33723,
103 => 32885, others => 0),
596 =>
(20 => 242, 21 => 242, others => 0),
597 =>
(61 => 33725, others => 0),
598 =>
(13 => 33727, 85 => 33726, 103 => 32885, others => 0),
599 =>
(13 => 33730, 85 => 33729, 103 => 32885, others => 0),
600 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
601 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33734,
90 => 32868, others => 0),
602 =>
(61 => 33737, others => 0),
603 =>
(13 => 33739, 85 => 33738, 103 => 32885, others => 0),
604 =>
(13 => 33742, 85 => 33741, 103 => 32885, others => 0),
605 =>
(40 => 33745, 72 => 33744, others => 0),
606 =>
(13 => 40, 51 => 40, 53 => 33746, 78 => 40,
83 => 40, 85 => 40, 103 => 40, others => 0),
607 =>
(53 => 33748, 80 => 33747, others => 0),
608 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
609 =>
(13 => 32, 51 => 32, 78 => 32, 83 => 32,
85 => 32, 103 => 32, others => 0),
610 =>
(40 => 606, 46 => 606, 68 => 606, 70 => 606,
72 => 606, 97 => 606, 99 => 606, 103 => 606,
others => 0),
611 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
612 =>
(85 => 33751, others => 0),
613 =>
(40 => 590, 46 => 590, 68 => 590, 70 => 590,
72 => 590, 97 => 590, 99 => 590, 103 => 590,
others => 0),
614 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
615 =>
(85 => 33753, others => 0),
616 =>
(0 => 1459, 15 => 1459, 34 => 1459, 39 => 1459,
40 => 1459, 41 => 1459, 46 => 1459, 56 => 1459,
60 => 1459, 67 => 1459, 68 => 1459, 70 => 1459,
71 => 1459, 72 => 1459, 73 => 1459, 86 => 1459,
91 => 1459, 94 => 1459, 97 => 1459, 99 => 1459,
103 => 1459, others => 0),
617 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
618 =>
(46 => 32838, others => 0),
619 =>
(85 => 33756, others => 0),
620 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
621 =>
(34 => 33759, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 33758, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
622 =>
(51 => 33761, others => 0),
623 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33762,
90 => 32868, others => 0),
624 =>
(46 => 32838, others => 0),
625 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
626 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
627 =>
(0 => 1340, 15 => 1340, 34 => 1340, 35 => 1340,
39 => 1340, 40 => 1340, 41 => 1340, 46 => 1340,
56 => 1340, 60 => 1340, 67 => 1340, 68 => 1340,
70 => 1340, 71 => 1340, 72 => 1340, 73 => 1340,
86 => 1340, 91 => 1340, 94 => 1340, 97 => 1340,
99 => 1340, 103 => 1340, others => 0),
628 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
629 =>
(3 => 33772, 15 => 33771, 34 => 33770, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 33769, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
630 =>
(51 => 33776, 85 => 33775, others => 0),
631 =>
(0 => 1280, 15 => 1280, 34 => 1280, 35 => 1280,
39 => 1280, 40 => 1280, 41 => 1280, 46 => 1280,
56 => 1280, 60 => 1280, 67 => 1280, 68 => 1280,
70 => 1280, 71 => 1280, 72 => 1280, 73 => 1280,
86 => 1280, 91 => 1280, 94 => 1280, 97 => 1280,
99 => 1280, 103 => 1280, others => 0),
632 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
633 =>
(3 => 33781, 15 => 33780, 34 => 33779, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 33778, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
634 =>
(51 => 33785, 85 => 33784, others => 0),
635 =>
(80 => 33786, others => 0),
636 =>
(29 => 32865, 53 => 33788, 85 => 33787, 103 => 32885,
others => 0),
637 =>
(40 => 33133, 60 => 33132, 67 => 33131, 68 => 33130,
72 => 33129, 73 => 33128, 94 => 33127, others => 0),
638 =>
(83 => 2037, others => 0),
639 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
640 =>
(12 => 264, 100 => 33794, others => 0),
641 =>
(2 => 33031, 17 => 33795, 19 => 32869, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 69 => 33024, 90 => 32868,
others => 0),
642 =>
(46 => 32807, 53 => 33119, 75 => 33797, others => 0),
643 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
644 =>
(21 => 33799, 83 => 2035, others => 0),
645 =>
(8 => 120, 9 => 120, 10 => 120, 12 => 120,
13 => 120, 14 => 120, 20 => 120, 21 => 120,
26 => 120, 27 => 120, 28 => 120, 29 => 120,
30 => 120, 31 => 120, 32 => 120, 33 => 120,
36 => 120, 43 => 120, 44 => 120, 45 => 120,
48 => 120, 49 => 120, 51 => 120, 53 => 120,
54 => 120, 55 => 120, 57 => 120, 58 => 120,
60 => 120, 63 => 120, 64 => 120, 69 => 120,
75 => 120, 77 => 120, 78 => 120, 83 => 120,
85 => 120, 87 => 120, 89 => 120, 96 => 120,
99 => 120, 100 => 120, 101 => 120, 103 => 120,
104 => 120, others => 0),
646 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
647 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
648 =>
(12 => 266, 21 => 266, 83 => 266, 100 => 266,
others => 0),
649 =>
(21 => 2135, 85 => 2135, others => 0),
650 =>
(0 => 2223, 15 => 2223, 34 => 2223, 39 => 2223,
40 => 2223, 41 => 2223, 46 => 2223, 56 => 2223,
60 => 2223, 67 => 2223, 68 => 2223, 70 => 2223,
71 => 2223, 72 => 2223, 73 => 2223, 86 => 2223,
91 => 2223, 94 => 2223, 97 => 2223, 99 => 2223,
103 => 2223, others => 0),
651 =>
(46 => 32838, others => 0),
652 =>
(46 => 32838, others => 0),
653 =>
(51 => 33806, 53 => 33805, 103 => 32885, others => 0),
654 =>
(46 => 32815, others => 0),
655 =>
(46 => 32815, 90 => 32853, others => 0),
656 =>
(40 => 33811, 72 => 33810, others => 0),
657 =>
(53 => 33813, 80 => 33812, others => 0),
658 =>
(12 => 33814, 21 => 114, 51 => 114, 85 => 114,
others => 0),
659 =>
(9 => 33243, 21 => 33135, 51 => 116, 64 => 33242,
85 => 116, 104 => 33241, others => 0),
660 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
661 =>
(0 => 1953, 15 => 1953, 34 => 1953, 35 => 1953,
39 => 1953, 40 => 1953, 41 => 1953, 46 => 1953,
56 => 1953, 60 => 1953, 67 => 1953, 68 => 1953,
70 => 1953, 71 => 1953, 72 => 1953, 73 => 1953,
86 => 1953, 91 => 1953, 94 => 1953, 97 => 1953,
99 => 1953, 103 => 1953, others => 0),
662 =>
(19 => 32869, 46 => 32807, 60 => 33817, 90 => 32868,
others => 0),
663 =>
(61 => 33819, others => 0),
664 =>
(19 => 32869, 46 => 32807, 60 => 33821, 66 => 33820,
90 => 32868, others => 0),
665 =>
(19 => 32869, 46 => 32807, 48 => 33825, 60 => 33824,
66 => 33823, 90 => 32868, others => 0),
666 =>
(13 => 33827, 83 => 1684, 85 => 1684, others => 0),
667 =>
(13 => 33828, 83 => 1682, 85 => 1682, others => 0),
668 =>
(0 => 1950, 15 => 1950, 34 => 1950, 35 => 1950,
39 => 1950, 40 => 1950, 41 => 1950, 46 => 1950,
56 => 1950, 60 => 1950, 67 => 1950, 68 => 1950,
70 => 1950, 71 => 1950, 72 => 1950, 73 => 1950,
86 => 1950, 91 => 1950, 94 => 1950, 97 => 1950,
99 => 1950, 103 => 1950, others => 0),
669 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
670 =>
(3 => 32964, 15 => 33832, 34 => 33831, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 60 => 32778,
61 => 32959, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 33830, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
671 =>
(51 => 33836, 85 => 33835, others => 0),
672 =>
(83 => 1686, 85 => 1686, others => 0),
673 =>
(46 => 32838, others => 0),
674 =>
(15 => 1489, 34 => 1489, 39 => 1489, 40 => 1489,
41 => 1489, 46 => 1489, 60 => 1489, 67 => 1489,
68 => 1489, 70 => 1489, 71 => 1489, 72 => 1489,
73 => 1489, 91 => 1489, 94 => 1489, 97 => 1489,
99 => 1489, others => 0),
675 =>
(3 => 33853, 5 => 33852, 11 => 33517, 26 => 33851,
27 => 33850, 50 => 33849, 53 => 33848, 56 => 33847,
58 => 33846, 59 => 33845, 60 => 33844, 61 => 33843,
71 => 33842, 73 => 33322, 75 => 33841, 76 => 33840,
92 => 33839, 93 => 33838, 94 => 33318, others => 0),
676 =>
(51 => 33869, 85 => 33868, others => 0),
677 =>
(51 => 33872, 53 => 33871, 85 => 33870, 103 => 32885,
others => 0),
678 =>
(51 => 33875, 103 => 32885, others => 0),
679 =>
(15 => 2123, 34 => 2123, 39 => 2123, 40 => 2123,
41 => 2123, 46 => 2123, 60 => 2123, 67 => 2123,
68 => 2123, 70 => 2123, 71 => 2123, 72 => 2123,
73 => 2123, 91 => 2123, 94 => 2123, 97 => 2123,
99 => 2123, others => 0),
680 =>
(34 => 33882, 35 => 33881, 39 => 32961, 59 => 33880,
60 => 33879, 67 => 33878, 70 => 32775, 71 => 33877,
others => 0),
681 =>
(51 => 33889, 85 => 33888, others => 0),
682 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
683 =>
(0 => 1955, 15 => 1955, 34 => 1955, 35 => 1955,
39 => 1955, 40 => 1955, 41 => 1955, 46 => 1955,
56 => 1955, 60 => 1955, 67 => 1955, 68 => 1955,
70 => 1955, 71 => 1955, 72 => 1955, 73 => 1955,
86 => 1955, 91 => 1955, 94 => 1955, 97 => 1955,
99 => 1955, 103 => 1955, others => 0),
684 =>
(51 => 33891, 53 => 33871, 103 => 32885, others => 0),
685 =>
(51 => 33894, 103 => 32885, others => 0),
686 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
59 => 33900, 60 => 33899, 67 => 33898, 70 => 32775,
71 => 33897, 72 => 33896, others => 0),
687 =>
(51 => 33910, others => 0),
688 =>
(51 => 33911, 103 => 32885, others => 0),
689 =>
(0 => 1407, 15 => 1407, 34 => 1407, 39 => 1407,
40 => 1407, 41 => 1407, 46 => 1407, 56 => 1407,
60 => 1407, 67 => 1407, 68 => 1407, 70 => 1407,
71 => 1407, 72 => 1407, 73 => 1407, 86 => 1407,
91 => 1407, 94 => 1407, 97 => 1407, 99 => 1407,
103 => 1407, others => 0),
690 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
691 =>
(85 => 33922, others => 0),
692 =>
(2 => 33031, 14 => 33924, 19 => 32869, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 69 => 33024, 76 => 33923,
90 => 32868, others => 0),
693 =>
(0 => 1909, 15 => 1909, 34 => 1909, 35 => 1909,
39 => 1909, 40 => 1909, 41 => 1909, 46 => 1909,
56 => 1909, 60 => 1909, 67 => 1909, 68 => 1909,
70 => 1909, 71 => 1909, 72 => 1909, 73 => 1909,
86 => 1909, 91 => 1909, 94 => 1909, 97 => 1909,
99 => 1909, 103 => 1909, others => 0),
694 =>
(9 => 33243, 57 => 33926, 64 => 33242, 104 => 33241,
others => 0),
695 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
696 =>
(85 => 33928, others => 0),
697 =>
(32 => 2065, 34 => 2065, 64 => 2065, 96 => 2065,
others => 0),
698 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 8,
34 => 8, 38 => 33171, 39 => 33170, 42 => 33169,
46 => 33168, 47 => 33167, 52 => 33166, 57 => 33165,
61 => 33164, 64 => 8, 70 => 32775, 74 => 33163,
79 => 33162, 80 => 33161, 84 => 33160, 90 => 32868,
96 => 8, 102 => 33159, others => 0),
699 =>
(32 => 2066, 34 => 2066, 64 => 2066, 96 => 2066,
others => 0),
700 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 250,
34 => 250, 38 => 33171, 39 => 33170, 42 => 33169,
46 => 33168, 47 => 33167, 52 => 33166, 57 => 33165,
61 => 33164, 64 => 250, 70 => 32775, 74 => 33163,
79 => 33162, 80 => 33161, 84 => 33160, 90 => 32868,
96 => 250, 102 => 33159, others => 0),
701 =>
(32 => 2068, 34 => 2068, 64 => 2068, 96 => 2068,
others => 0),
702 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 323,
34 => 323, 38 => 33171, 39 => 33170, 42 => 33169,
46 => 33168, 47 => 33167, 52 => 33166, 57 => 33165,
61 => 33164, 64 => 323, 70 => 32775, 74 => 33163,
79 => 33162, 80 => 33161, 84 => 33160, 90 => 32868,
96 => 323, 102 => 33159, others => 0),
703 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33503,
others => 0),
704 =>
(32 => 33935, 34 => 33934, 64 => 33933, 96 => 33932,
others => 0),
705 =>
(32 => 2067, 34 => 2067, 64 => 2067, 96 => 2067,
others => 0),
706 =>
(1 => 2113, 4 => 2113, 15 => 2113, 18 => 2113,
19 => 2113, 24 => 2113, 25 => 2113, 32 => 2113,
33 => 2113, 34 => 2113, 37 => 2113, 38 => 2113,
39 => 2113, 42 => 2113, 46 => 2113, 47 => 2113,
52 => 2113, 57 => 2113, 61 => 2113, 64 => 2113,
70 => 2113, 74 => 2113, 79 => 2113, 80 => 2113,
84 => 2113, 90 => 2113, 96 => 2113, 101 => 2113,
102 => 2113, others => 0),
707 =>
(20 => 33937, others => 0),
708 =>
(9 => 33243, 64 => 33242, 85 => 33938, 104 => 33241,
others => 0),
709 =>
(28 => 33940, 85 => 33939, others => 0),
710 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33942,
103 => 33941, others => 0),
711 =>
(1 => 2023, 4 => 2023, 15 => 2023, 18 => 2023,
19 => 2023, 24 => 2023, 25 => 2023, 32 => 2023,
33 => 2023, 34 => 2023, 37 => 2023, 38 => 2023,
39 => 2023, 42 => 2023, 46 => 2023, 47 => 2023,
52 => 2023, 57 => 2023, 61 => 2023, 64 => 2023,
70 => 2023, 74 => 2023, 79 => 2023, 80 => 2023,
84 => 2023, 90 => 2023, 96 => 2023, 101 => 2023,
102 => 2023, others => 0),
712 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33944,
103 => 33943, others => 0),
713 =>
(1 => 1566, 4 => 1566, 15 => 1566, 18 => 1566,
19 => 1566, 24 => 1566, 25 => 1566, 32 => 1566,
33 => 1566, 34 => 1566, 37 => 1566, 38 => 1566,
39 => 1566, 42 => 1566, 46 => 1566, 47 => 1566,
52 => 1566, 57 => 1566, 61 => 1566, 64 => 1566,
70 => 1566, 74 => 1566, 79 => 1566, 80 => 1566,
84 => 1566, 90 => 1566, 96 => 1566, 101 => 1566,
102 => 1566, others => 0),
714 =>
(34 => 33945, others => 0),
715 =>
(82 => 33946, others => 0),
716 =>
(9 => 33243, 64 => 33242, 96 => 33947, 104 => 33241,
others => 0),
717 =>
(29 => 32865, 85 => 33948, others => 0),
718 =>
(20 => 33951, 48 => 33950, 63 => 33949, others => 0),
719 =>
(57 => 33952, others => 0),
720 =>
(57 => 33953, others => 0),
721 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
722 =>
(1 => 373, 4 => 373, 15 => 373, 18 => 373,
19 => 373, 24 => 373, 25 => 373, 32 => 373,
33 => 373, 34 => 373, 37 => 373, 38 => 373,
39 => 373, 42 => 373, 46 => 373, 47 => 373,
52 => 373, 57 => 373, 61 => 373, 64 => 373,
70 => 373, 74 => 373, 79 => 373, 80 => 373,
84 => 373, 90 => 373, 96 => 373, 101 => 373,
102 => 373, others => 0),
723 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 33956,
101 => 33955, others => 0),
724 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
725 =>
(9 => 33243, 64 => 33242, 85 => 33958, 104 => 33241,
others => 0),
726 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
727 =>
(15 => 33960, others => 0),
728 =>
(9 => 33243, 51 => 33961, 64 => 33242, 104 => 33241,
others => 0),
729 =>
(34 => 33963, 37 => 33962, others => 0),
730 =>
(28 => 33966, 53 => 33965, 85 => 33964, others => 0),
731 =>
(10 => 1694, 20 => 33968, 29 => 1694, 53 => 1694,
85 => 33967, others => 0),
732 =>
(15 => 33974, 24 => 33973, 39 => 33972, 57 => 33971,
102 => 33970, others => 0),
733 =>
(1 => 1510, 4 => 1510, 15 => 1510, 18 => 1510,
19 => 1510, 24 => 1510, 25 => 1510, 32 => 1510,
33 => 1510, 34 => 1510, 37 => 1510, 38 => 1510,
39 => 1510, 42 => 1510, 46 => 1510, 47 => 1510,
52 => 1510, 57 => 1510, 61 => 1510, 64 => 1510,
70 => 1510, 74 => 1510, 79 => 1510, 80 => 1510,
84 => 1510, 90 => 1510, 96 => 1510, 101 => 1510,
102 => 1510, others => 0),
734 =>
(1 => 2124, 4 => 2124, 15 => 2124, 18 => 2124,
19 => 2124, 24 => 2124, 25 => 2124, 32 => 2124,
33 => 2124, 34 => 2124, 37 => 2124, 38 => 2124,
39 => 2124, 42 => 2124, 46 => 2124, 47 => 2124,
52 => 2124, 57 => 2124, 61 => 2124, 64 => 2124,
70 => 2124, 74 => 2124, 79 => 2124, 80 => 2124,
84 => 2124, 90 => 2124, 96 => 2124, 101 => 2124,
102 => 2124, others => 0),
735 =>
(1 => 324, 4 => 324, 15 => 324, 18 => 324,
19 => 324, 24 => 324, 25 => 324, 32 => 324,
33 => 324, 34 => 324, 37 => 324, 38 => 324,
39 => 324, 42 => 324, 46 => 324, 47 => 324,
52 => 324, 57 => 324, 61 => 324, 64 => 324,
70 => 324, 74 => 324, 79 => 324, 80 => 324,
84 => 324, 90 => 324, 96 => 324, 101 => 324,
102 => 324, others => 0),
736 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
737 =>
(101 => 33976, others => 0),
738 =>
(46 => 32807, 85 => 33979, others => 0),
739 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 2090,
33 => 2090, 34 => 2090, 37 => 2090, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 64 => 2090,
70 => 32775, 74 => 33163, 79 => 33162, 80 => 33161,
84 => 33160, 90 => 32868, 96 => 2090, 101 => 2090,
102 => 33159, others => 0),
740 =>
(1 => 2127, 4 => 2127, 15 => 2127, 18 => 2127,
19 => 2127, 24 => 2127, 25 => 2127, 32 => 2127,
33 => 2127, 34 => 2127, 37 => 2127, 38 => 2127,
39 => 2127, 42 => 2127, 46 => 2127, 47 => 2127,
52 => 2127, 57 => 2127, 61 => 2127, 64 => 2127,
70 => 2127, 74 => 2127, 79 => 2127, 80 => 2127,
84 => 2127, 90 => 2127, 96 => 2127, 101 => 2127,
102 => 2127, others => 0),
741 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 2089,
33 => 2089, 34 => 2089, 37 => 2089, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 64 => 2089,
70 => 32775, 74 => 33163, 79 => 33162, 80 => 33161,
84 => 33160, 90 => 32868, 96 => 2089, 101 => 2089,
102 => 33159, others => 0),
742 =>
(15 => 234, 34 => 234, 39 => 234, 40 => 234,
41 => 234, 46 => 234, 60 => 234, 67 => 234,
68 => 234, 70 => 234, 72 => 234, 73 => 234,
91 => 234, 94 => 234, 97 => 234, 99 => 234,
others => 0),
743 =>
(0 => 1904, 15 => 1904, 34 => 1904, 35 => 1904,
39 => 1904, 40 => 1904, 41 => 1904, 46 => 1904,
56 => 1904, 60 => 1904, 67 => 1904, 68 => 1904,
70 => 1904, 71 => 1904, 72 => 1904, 73 => 1904,
86 => 1904, 91 => 1904, 94 => 1904, 97 => 1904,
99 => 1904, 103 => 1904, others => 0),
744 =>
(29 => 32865, 85 => 33983, others => 0),
745 =>
(34 => 33985, 37 => 33984, others => 0),
746 =>
(61 => 33986, others => 0),
747 =>
(78 => 33988, 85 => 33987, 103 => 32885, others => 0),
748 =>
(5 => 33091, 11 => 33517, 13 => 33991, 19 => 32869,
46 => 32807, 60 => 33990, 90 => 32868, others => 0),
749 =>
(53 => 33994, others => 0),
750 =>
(5 => 33091, 11 => 33517, 19 => 32869, 23 => 33995,
46 => 32807, 60 => 33990, 90 => 32868, others => 0),
751 =>
(13 => 1587, 78 => 33997, 85 => 1587, 103 => 1587,
others => 0),
752 =>
(13 => 1589, 85 => 1589, 103 => 1589, others => 0),
753 =>
(13 => 33999, 85 => 33998, 103 => 32885, others => 0),
754 =>
(13 => 1586, 85 => 1586, 103 => 1586, others => 0),
755 =>
(13 => 2133, 26 => 34003, 27 => 34002, 75 => 33414,
78 => 34001, 85 => 2133, 103 => 2133, others => 0),
756 =>
(13 => 1588, 85 => 1588, 103 => 1588, others => 0),
757 =>
(0 => 1951, 15 => 1951, 34 => 1951, 35 => 1951,
39 => 1951, 40 => 1951, 41 => 1951, 46 => 1951,
56 => 1951, 60 => 1951, 67 => 1951, 68 => 1951,
70 => 1951, 71 => 1951, 72 => 1951, 73 => 1951,
86 => 1951, 91 => 1951, 94 => 1951, 97 => 1951,
99 => 1951, 103 => 1951, others => 0),
758 =>
(0 => 1898, 15 => 1898, 34 => 1898, 35 => 1898,
39 => 1898, 40 => 1898, 41 => 1898, 46 => 1898,
56 => 1898, 60 => 1898, 67 => 1898, 68 => 1898,
70 => 1898, 71 => 1898, 72 => 1898, 73 => 1898,
86 => 1898, 91 => 1898, 94 => 1898, 97 => 1898,
99 => 1898, 103 => 1898, others => 0),
759 =>
(29 => 32865, 85 => 34008, others => 0),
760 =>
(34 => 34010, 37 => 34009, others => 0),
761 =>
(46 => 32807, 85 => 34011, others => 0),
762 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
763 =>
(51 => 34014, 78 => 33437, 85 => 33436, 103 => 32885,
others => 0),
764 =>
(83 => 34016, others => 0),
765 =>
(61 => 34017, others => 0),
766 =>
(51 => 34018, 78 => 33626, 85 => 33625, 103 => 32885,
others => 0),
767 =>
(51 => 34020, 78 => 33630, 85 => 33629, 103 => 32885,
others => 0),
768 =>
(83 => 34022, others => 0),
769 =>
(46 => 32838, others => 0),
770 =>
(3 => 32964, 59 => 33638, 61 => 32959, 86 => 33637,
others => 0),
771 =>
(85 => 33643, others => 0),
772 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34024,
90 => 32868, others => 0),
773 =>
(46 => 32838, others => 0),
774 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
775 =>
(3 => 33772, 53 => 32938, 86 => 33769, others => 0),
776 =>
(85 => 33775, others => 0),
777 =>
(3 => 33781, 53 => 32938, 86 => 33778, others => 0),
778 =>
(85 => 33784, others => 0),
779 =>
(80 => 34029, others => 0),
780 =>
(10 => 1694, 29 => 1694, 53 => 1694, 83 => 34030,
others => 0),
781 =>
(9 => 33243, 64 => 33242, 96 => 34031, 104 => 33241,
others => 0),
782 =>
(46 => 2020, others => 0),
783 =>
(46 => 2019, others => 0),
784 =>
(46 => 32838, others => 0),
785 =>
(9 => 33243, 51 => 34034, 64 => 33242, 104 => 33241,
others => 0),
786 =>
(8 => 2098, 9 => 2098, 12 => 2098, 13 => 2098,
21 => 2098, 27 => 2098, 28 => 2098, 30 => 2098,
31 => 2098, 32 => 2098, 33 => 2098, 36 => 2098,
43 => 2098, 44 => 2098, 45 => 2098, 48 => 2098,
49 => 2098, 51 => 2098, 54 => 2098, 55 => 2098,
57 => 2098, 58 => 2098, 60 => 2098, 63 => 2098,
64 => 2098, 69 => 2098, 75 => 2098, 77 => 2098,
83 => 2098, 85 => 2098, 87 => 2098, 89 => 2098,
96 => 2098, 100 => 2098, 103 => 2098, 104 => 2098,
others => 0),
787 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33106,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
788 =>
(8 => 2099, 9 => 2099, 12 => 2099, 13 => 2099,
21 => 2099, 27 => 2099, 28 => 2099, 30 => 2099,
31 => 2099, 32 => 2099, 33 => 2099, 36 => 2099,
43 => 2099, 44 => 2099, 45 => 2099, 48 => 2099,
49 => 2099, 51 => 2099, 54 => 2099, 55 => 2099,
57 => 2099, 58 => 2099, 60 => 2099, 63 => 2099,
64 => 2099, 69 => 2099, 75 => 2099, 77 => 2099,
83 => 2099, 85 => 2099, 87 => 2099, 89 => 2099,
96 => 2099, 100 => 2099, 103 => 2099, 104 => 2099,
others => 0),
789 =>
(9 => 380, 12 => 380, 21 => 380, 28 => 380,
32 => 380, 33 => 380, 51 => 380, 57 => 380,
64 => 380, 83 => 380, 85 => 380, 96 => 380,
100 => 380, 103 => 380, 104 => 380, others => 0),
790 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
791 =>
(9 => 378, 12 => 378, 21 => 378, 28 => 378,
32 => 378, 33 => 378, 51 => 378, 57 => 378,
64 => 378, 83 => 378, 85 => 378, 96 => 378,
100 => 378, 103 => 378, 104 => 378, others => 0),
792 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
793 =>
(9 => 376, 12 => 376, 21 => 376, 28 => 376,
32 => 376, 33 => 376, 51 => 376, 57 => 376,
64 => 376, 83 => 376, 85 => 376, 96 => 376,
100 => 376, 103 => 376, 104 => 376, others => 0),
794 =>
(9 => 33243, 21 => 1690, 64 => 33242, 83 => 1690,
104 => 33241, others => 0),
795 =>
(0 => 1688, 1 => 1688, 4 => 1688, 15 => 1688,
18 => 1688, 19 => 1688, 24 => 1688, 25 => 1688,
32 => 1688, 33 => 1688, 34 => 1688, 35 => 1688,
37 => 1688, 38 => 1688, 39 => 1688, 40 => 1688,
41 => 1688, 42 => 1688, 46 => 1688, 47 => 1688,
52 => 1688, 56 => 1688, 57 => 1688, 60 => 1688,
61 => 1688, 64 => 1688, 67 => 1688, 68 => 1688,
70 => 1688, 71 => 1688, 72 => 1688, 73 => 1688,
74 => 1688, 79 => 1688, 80 => 1688, 84 => 1688,
86 => 1688, 90 => 1688, 91 => 1688, 94 => 1688,
96 => 1688, 97 => 1688, 99 => 1688, 101 => 1688,
102 => 1688, 103 => 1688, others => 0),
796 =>
(21 => 1693, 83 => 1693, others => 0),
797 =>
(85 => 34038, others => 0),
798 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
799 =>
(8 => 2103, 9 => 2103, 12 => 2103, 13 => 2103,
21 => 2103, 27 => 2103, 28 => 2103, 30 => 2103,
31 => 33262, 32 => 2103, 33 => 2103, 36 => 2103,
43 => 2103, 44 => 2103, 45 => 2103, 48 => 2103,
49 => 2103, 51 => 2103, 54 => 2103, 55 => 2103,
57 => 2103, 58 => 2103, 60 => 2103, 63 => 2103,
64 => 2103, 69 => 2103, 75 => 2103, 77 => 2103,
83 => 2103, 85 => 2103, 87 => 2103, 89 => 2103,
96 => 2103, 100 => 2103, 103 => 2103, 104 => 2103,
others => 0),
800 =>
(8 => 2104, 9 => 2104, 12 => 2104, 13 => 2104,
21 => 2104, 27 => 2104, 28 => 2104, 30 => 2104,
31 => 33262, 32 => 2104, 33 => 2104, 36 => 2104,
43 => 2104, 44 => 2104, 45 => 2104, 48 => 2104,
49 => 2104, 51 => 2104, 54 => 2104, 55 => 2104,
57 => 2104, 58 => 2104, 60 => 2104, 63 => 2104,
64 => 2104, 69 => 2104, 75 => 2104, 77 => 2104,
83 => 2104, 85 => 2104, 87 => 2104, 89 => 2104,
96 => 2104, 100 => 2104, 103 => 2104, 104 => 2104,
others => 0),
801 =>
(8 => 2106, 9 => 2106, 12 => 2106, 13 => 2106,
21 => 2106, 27 => 2106, 28 => 2106, 30 => 2106,
31 => 33262, 32 => 2106, 33 => 2106, 36 => 2106,
43 => 2106, 44 => 2106, 45 => 2106, 48 => 2106,
49 => 2106, 51 => 2106, 54 => 2106, 55 => 2106,
57 => 2106, 58 => 2106, 60 => 2106, 63 => 2106,
64 => 2106, 69 => 2106, 75 => 2106, 77 => 2106,
83 => 2106, 85 => 2106, 87 => 2106, 89 => 2106,
96 => 2106, 100 => 2106, 103 => 2106, 104 => 2106,
others => 0),
802 =>
(8 => 2109, 9 => 2109, 12 => 2109, 13 => 2109,
21 => 2109, 27 => 2109, 28 => 2109, 30 => 2109,
31 => 33262, 32 => 2109, 33 => 2109, 36 => 2109,
43 => 2109, 44 => 2109, 45 => 2109, 48 => 2109,
49 => 2109, 51 => 2109, 54 => 2109, 55 => 2109,
57 => 2109, 58 => 33253, 60 => 2109, 63 => 2109,
64 => 2109, 69 => 2109, 75 => 2109, 77 => 33250,
83 => 2109, 85 => 2109, 87 => 33249, 89 => 33248,
96 => 2109, 100 => 2109, 103 => 2109, 104 => 2109,
others => 0),
803 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
804 =>
(8 => 2105, 9 => 2105, 12 => 2105, 13 => 2105,
21 => 2105, 27 => 2105, 28 => 2105, 30 => 2105,
31 => 33262, 32 => 2105, 33 => 2105, 36 => 2105,
43 => 2105, 44 => 2105, 45 => 2105, 48 => 2105,
49 => 2105, 51 => 2105, 54 => 2105, 55 => 2105,
57 => 2105, 58 => 2105, 60 => 2105, 63 => 2105,
64 => 2105, 69 => 2105, 75 => 2105, 77 => 2105,
83 => 2105, 85 => 2105, 87 => 2105, 89 => 2105,
96 => 2105, 100 => 2105, 103 => 2105, 104 => 2105,
others => 0),
805 =>
(9 => 1553, 12 => 1553, 21 => 1553, 28 => 1553,
32 => 1553, 33 => 1553, 51 => 1553, 57 => 1553,
64 => 1553, 83 => 1553, 85 => 1553, 96 => 1553,
100 => 34041, 103 => 1553, 104 => 1553, others => 0),
806 =>
(9 => 2053, 12 => 2053, 21 => 2053, 28 => 2053,
32 => 2053, 33 => 2053, 51 => 2053, 57 => 2053,
64 => 2053, 83 => 2053, 85 => 2053, 96 => 2053,
100 => 2053, 103 => 2053, 104 => 2053, others => 0),
807 =>
(9 => 1551, 12 => 1551, 21 => 1551, 28 => 1551,
32 => 1551, 33 => 1551, 51 => 1551, 57 => 1551,
64 => 1551, 83 => 1551, 85 => 1551, 96 => 1551,
100 => 1551, 103 => 1551, 104 => 1551, others => 0),
808 =>
(9 => 2024, 12 => 2024, 13 => 2024, 21 => 2024,
28 => 2024, 32 => 2024, 33 => 2024, 51 => 2024,
57 => 2024, 63 => 2024, 64 => 2024, 83 => 2024,
85 => 2024, 96 => 2024, 100 => 2024, 103 => 2024,
104 => 2024, others => 0),
809 =>
(8 => 33263, 9 => 1550, 12 => 1550, 21 => 1550,
28 => 1550, 30 => 34043, 31 => 33262, 32 => 1550,
33 => 1550, 45 => 33258, 51 => 1550, 57 => 1550,
58 => 33253, 64 => 1550, 69 => 33251, 77 => 33250,
83 => 1550, 85 => 1550, 87 => 33249, 89 => 33248,
96 => 1550, 100 => 1550, 103 => 1550, 104 => 1550,
others => 0),
810 =>
(8 => 2110, 9 => 2110, 12 => 2110, 13 => 2110,
21 => 2110, 27 => 2110, 28 => 2110, 30 => 2110,
31 => 33262, 32 => 2110, 33 => 2110, 36 => 2110,
43 => 2110, 44 => 2110, 45 => 2110, 48 => 2110,
49 => 2110, 51 => 2110, 54 => 2110, 55 => 2110,
57 => 2110, 58 => 33253, 60 => 2110, 63 => 2110,
64 => 2110, 69 => 2110, 75 => 2110, 77 => 33250,
83 => 2110, 85 => 2110, 87 => 33249, 89 => 33248,
96 => 2110, 100 => 2110, 103 => 2110, 104 => 2110,
others => 0),
811 =>
(8 => 2102, 9 => 2102, 12 => 2102, 13 => 2102,
21 => 2102, 27 => 2102, 28 => 2102, 30 => 2102,
32 => 2102, 33 => 2102, 36 => 2102, 43 => 2102,
44 => 2102, 45 => 2102, 48 => 2102, 49 => 2102,
51 => 2102, 54 => 2102, 55 => 2102, 57 => 2102,
58 => 2102, 60 => 2102, 63 => 2102, 64 => 2102,
69 => 2102, 75 => 2102, 77 => 2102, 83 => 2102,
85 => 2102, 87 => 2102, 89 => 2102, 96 => 2102,
100 => 2102, 103 => 2102, 104 => 2102, others => 0),
812 =>
(8 => 2111, 9 => 2111, 12 => 2111, 13 => 2111,
21 => 2111, 27 => 2111, 28 => 2111, 30 => 2111,
31 => 33262, 32 => 2111, 33 => 2111, 36 => 2111,
43 => 2111, 44 => 2111, 45 => 2111, 48 => 2111,
49 => 2111, 51 => 2111, 54 => 2111, 55 => 2111,
57 => 2111, 58 => 33253, 60 => 2111, 63 => 2111,
64 => 2111, 69 => 2111, 75 => 2111, 77 => 33250,
83 => 2111, 85 => 2111, 87 => 33249, 89 => 33248,
96 => 2111, 100 => 2111, 103 => 2111, 104 => 2111,
others => 0),
813 =>
(8 => 33263, 9 => 2050, 12 => 2050, 21 => 2050,
28 => 2050, 31 => 33262, 32 => 2050, 33 => 2050,
45 => 33258, 51 => 2050, 57 => 2050, 58 => 33253,
64 => 2050, 69 => 33251, 77 => 33250, 83 => 2050,
85 => 2050, 87 => 33249, 89 => 33248, 96 => 2050,
100 => 2050, 103 => 2050, 104 => 2050, others => 0),
814 =>
(0 => 1622, 15 => 1622, 34 => 1622, 39 => 1622,
40 => 1622, 41 => 1622, 46 => 1622, 56 => 1622,
60 => 1622, 67 => 1622, 68 => 1622, 70 => 1622,
71 => 1622, 72 => 1622, 73 => 1622, 86 => 1622,
91 => 1622, 94 => 1622, 97 => 1622, 99 => 1622,
103 => 1622, others => 0),
815 =>
(29 => 32865, 85 => 34044, others => 0),
816 =>
(34 => 34046, 37 => 34045, others => 0),
817 =>
(46 => 32807, 85 => 34047, others => 0),
818 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
819 =>
(46 => 32807, 85 => 34050, others => 0),
820 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
821 =>
(15 => 34054, 34 => 34053, others => 0),
822 =>
(0 => 1649, 15 => 1649, 34 => 1649, 39 => 1649,
40 => 1649, 41 => 1649, 46 => 1649, 56 => 1649,
60 => 1649, 67 => 1649, 68 => 1649, 70 => 1649,
71 => 1649, 72 => 1649, 73 => 1649, 86 => 1649,
91 => 1649, 94 => 1649, 97 => 1649, 99 => 1649,
103 => 1649, others => 0),
823 =>
(0 => 1646, 15 => 1646, 34 => 1646, 39 => 1646,
40 => 1646, 41 => 1646, 46 => 1646, 56 => 1646,
60 => 1646, 67 => 1646, 68 => 1646, 70 => 1646,
71 => 1646, 72 => 1646, 73 => 1646, 86 => 1646,
91 => 1646, 94 => 1646, 97 => 1646, 99 => 1646,
103 => 1646, others => 0),
824 =>
(29 => 32865, 85 => 34055, others => 0),
825 =>
(46 => 32807, 85 => 34056, others => 0),
826 =>
(0 => 1383, 15 => 1383, 34 => 1383, 39 => 1383,
40 => 1383, 41 => 1383, 46 => 1383, 56 => 1383,
60 => 1383, 67 => 1383, 68 => 1383, 70 => 1383,
71 => 1383, 72 => 1383, 73 => 1383, 86 => 1383,
91 => 1383, 94 => 1383, 97 => 1383, 99 => 1383,
103 => 1383, others => 0),
827 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
828 =>
(85 => 34059, others => 0),
829 =>
(0 => 1647, 15 => 1647, 34 => 1647, 39 => 1647,
40 => 1647, 41 => 1647, 46 => 1647, 56 => 1647,
60 => 1647, 67 => 1647, 68 => 1647, 70 => 1647,
71 => 1647, 72 => 1647, 73 => 1647, 86 => 1647,
91 => 1647, 94 => 1647, 97 => 1647, 99 => 1647,
103 => 1647, others => 0),
830 =>
(46 => 32807, 85 => 34060, others => 0),
831 =>
(34 => 34062, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
832 =>
(0 => 1642, 15 => 1642, 34 => 1642, 39 => 1642,
40 => 1642, 41 => 1642, 46 => 1642, 56 => 1642,
60 => 1642, 67 => 1642, 68 => 1642, 70 => 1642,
71 => 1642, 72 => 1642, 73 => 1642, 86 => 1642,
91 => 1642, 94 => 1642, 97 => 1642, 99 => 1642,
103 => 1642, others => 0),
833 =>
(29 => 32865, 85 => 34063, others => 0),
834 =>
(46 => 32807, 85 => 34064, others => 0),
835 =>
(34 => 34066, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
836 =>
(0 => 1636, 15 => 1636, 34 => 1636, 39 => 1636,
40 => 1636, 41 => 1636, 46 => 1636, 56 => 1636,
60 => 1636, 67 => 1636, 68 => 1636, 70 => 1636,
71 => 1636, 72 => 1636, 73 => 1636, 86 => 1636,
91 => 1636, 94 => 1636, 97 => 1636, 99 => 1636,
103 => 1636, others => 0),
837 =>
(29 => 32865, 85 => 34067, others => 0),
838 =>
(34 => 34068, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
839 =>
(46 => 32807, 85 => 34070, others => 0),
840 =>
(0 => 1938, 15 => 1938, 34 => 1938, 35 => 1938,
39 => 1938, 40 => 1938, 41 => 1938, 46 => 1938,
56 => 1938, 60 => 1938, 67 => 1938, 68 => 1938,
70 => 1938, 71 => 1938, 72 => 1938, 73 => 1938,
86 => 1938, 91 => 1938, 94 => 1938, 97 => 1938,
99 => 1938, 103 => 1938, others => 0),
841 =>
(85 => 34072, others => 0),
842 =>
(51 => 34075, 78 => 34074, 85 => 34073, 103 => 32885,
others => 0),
843 =>
(0 => 1940, 15 => 1940, 34 => 1940, 35 => 1940,
39 => 1940, 40 => 1940, 41 => 1940, 46 => 1940,
56 => 1940, 60 => 1940, 67 => 1940, 68 => 1940,
70 => 1940, 71 => 1940, 72 => 1940, 73 => 1940,
86 => 1940, 91 => 1940, 94 => 1940, 97 => 1940,
99 => 1940, 103 => 1940, others => 0),
844 =>
(85 => 34077, others => 0),
845 =>
(29 => 32865, 53 => 34079, 85 => 34078, 103 => 32885,
others => 0),
846 =>
(0 => 1862, 15 => 1862, 34 => 1862, 35 => 1862,
39 => 1862, 40 => 1862, 41 => 1862, 46 => 1862,
56 => 1862, 60 => 1862, 67 => 1862, 68 => 1862,
70 => 1862, 71 => 1862, 72 => 1862, 73 => 1862,
86 => 1862, 91 => 1862, 94 => 1862, 97 => 1862,
99 => 1862, 103 => 1862, others => 0),
847 =>
(29 => 32865, 85 => 34081, others => 0),
848 =>
(34 => 34083, 37 => 34082, others => 0),
849 =>
(46 => 32807, 85 => 34084, others => 0),
850 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
851 =>
(0 => 1936, 15 => 1936, 34 => 1936, 35 => 1936,
39 => 1936, 40 => 1936, 41 => 1936, 46 => 1936,
56 => 1936, 60 => 1936, 67 => 1936, 68 => 1936,
70 => 1936, 71 => 1936, 72 => 1936, 73 => 1936,
86 => 1936, 91 => 1936, 94 => 1936, 97 => 1936,
99 => 1936, 103 => 1936, others => 0),
852 =>
(85 => 34087, others => 0),
853 =>
(46 => 32807, 85 => 34088, others => 0),
854 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
855 =>
(15 => 34092, 34 => 34091, others => 0),
856 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
857 =>
(0 => 1320, 15 => 1320, 34 => 1320, 35 => 1320,
39 => 1320, 40 => 1320, 41 => 1320, 46 => 1320,
56 => 1320, 60 => 1320, 67 => 1320, 68 => 1320,
70 => 1320, 71 => 1320, 72 => 1320, 73 => 1320,
86 => 1320, 91 => 1320, 94 => 1320, 97 => 1320,
99 => 1320, 103 => 1320, others => 0),
858 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
859 =>
(3 => 34098, 15 => 34097, 34 => 34096, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 34095, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
860 =>
(51 => 34102, 85 => 34101, others => 0),
861 =>
(0 => 1240, 15 => 1240, 34 => 1240, 35 => 1240,
39 => 1240, 40 => 1240, 41 => 1240, 46 => 1240,
56 => 1240, 60 => 1240, 67 => 1240, 68 => 1240,
70 => 1240, 71 => 1240, 72 => 1240, 73 => 1240,
86 => 1240, 91 => 1240, 94 => 1240, 97 => 1240,
99 => 1240, 103 => 1240, others => 0),
862 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
863 =>
(3 => 34107, 15 => 34106, 34 => 34105, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 34104, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
864 =>
(51 => 34111, 85 => 34110, others => 0),
865 =>
(80 => 34112, others => 0),
866 =>
(29 => 32865, 53 => 34114, 85 => 34113, 103 => 32885,
others => 0),
867 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34116,
103 => 32885, others => 0),
868 =>
(83 => 34118, others => 0),
869 =>
(85 => 34119, 103 => 32885, others => 0),
870 =>
(46 => 32807, others => 0),
871 =>
(46 => 32807, 85 => 34122, others => 0),
872 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
873 =>
(15 => 34126, 34 => 34125, others => 0),
874 =>
(85 => 34127, 103 => 32885, others => 0),
875 =>
(0 => 1925, 15 => 1925, 34 => 1925, 35 => 1925,
39 => 1925, 40 => 1925, 41 => 1925, 46 => 1925,
56 => 1925, 60 => 1925, 67 => 1925, 68 => 1925,
70 => 1925, 71 => 1925, 72 => 1925, 73 => 1925,
86 => 1925, 91 => 1925, 94 => 1925, 97 => 1925,
99 => 1925, 103 => 1925, others => 0),
876 =>
(15 => 34130, 34 => 34129, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
877 =>
(61 => 34132, others => 0),
878 =>
(51 => 34135, 78 => 34134, 85 => 34133, 103 => 32885,
others => 0),
879 =>
(51 => 34139, 78 => 34138, 85 => 34137, 103 => 32885,
others => 0),
880 =>
(83 => 34141, others => 0),
881 =>
(46 => 32807, others => 0),
882 =>
(0 => 2232, 40 => 2232, 41 => 2232, 56 => 2232,
60 => 2232, 67 => 2232, 68 => 2232, 70 => 2232,
71 => 2232, 72 => 2232, 86 => 2232, 99 => 2232,
103 => 2232, others => 0),
883 =>
(83 => 34143, others => 0),
884 =>
(85 => 34144, 103 => 32885, others => 0),
885 =>
(85 => 34146, 103 => 32885, others => 0),
886 =>
(17 => 34150, 19 => 32869, 46 => 32807, 61 => 34149,
85 => 34148, 90 => 32868, 103 => 32885, others => 0),
887 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34153,
103 => 32885, others => 0),
888 =>
(40 => 660, 46 => 660, 68 => 660, 70 => 660,
72 => 660, 97 => 660, 99 => 660, 103 => 660,
others => 0),
889 =>
(46 => 32807, others => 0),
890 =>
(61 => 34156, others => 0),
891 =>
(51 => 34158, 85 => 34157, 103 => 32885, others => 0),
892 =>
(51 => 34161, 85 => 34160, 103 => 32885, others => 0),
893 =>
(83 => 34163, others => 0),
894 =>
(51 => 2199, 85 => 2199, others => 0),
895 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34164,
90 => 32868, others => 0),
896 =>
(46 => 32838, others => 0),
897 =>
(51 => 1508, 85 => 1508, 103 => 1508, others => 0),
898 =>
(83 => 34169, 85 => 34168, others => 0),
899 =>
(40 => 552, 46 => 552, 68 => 552, 70 => 552,
72 => 552, 97 => 552, 99 => 552, 103 => 552,
others => 0),
900 =>
(85 => 627, 103 => 627, others => 0),
901 =>
(71 => 34170, others => 0),
902 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
903 =>
(85 => 662, 103 => 662, others => 0),
904 =>
(5 => 34172, others => 0),
905 =>
(9 => 34174, 85 => 475, 103 => 34173, others => 0),
906 =>
(85 => 558, 103 => 558, others => 0),
907 =>
(85 => 628, 103 => 628, others => 0),
908 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
909 =>
(83 => 34177, others => 0),
910 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
911 =>
(9 => 34179, 85 => 556, 103 => 556, others => 0),
912 =>
(85 => 477, 103 => 477, others => 0),
913 =>
(27 => 34180, 85 => 607, 103 => 607, others => 0),
914 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
915 =>
(40 => 34189, 72 => 34188, others => 0),
916 =>
(53 => 34190, 85 => 406, 103 => 406, others => 0),
917 =>
(61 => 34191, others => 0),
918 =>
(53 => 34193, 80 => 34192, others => 0),
919 =>
(19 => 1342, 46 => 1342, 60 => 1342, 90 => 1342,
others => 0),
920 =>
(19 => 1341, 46 => 1341, 60 => 1341, 90 => 1341,
others => 0),
921 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
922 =>
(85 => 398, 103 => 398, others => 0),
923 =>
(9 => 2133, 13 => 2133, 26 => 34003, 27 => 34002,
28 => 2133, 63 => 2133, 75 => 33414, 85 => 2133,
103 => 2133, others => 0),
924 =>
(56 => 34196, 71 => 34195, others => 0),
925 =>
(59 => 34197, others => 0),
926 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
927 =>
(59 => 34199, others => 0),
928 =>
(40 => 436, 46 => 436, 68 => 436, 70 => 436,
72 => 436, 97 => 436, 99 => 436, 103 => 436,
others => 0),
929 =>
(40 => 434, 46 => 434, 68 => 434, 70 => 434,
72 => 434, 97 => 434, 99 => 434, 103 => 434,
others => 0),
930 =>
(85 => 34200, others => 0),
931 =>
(9 => 33678, 85 => 555, 103 => 555, others => 0),
932 =>
(56 => 33669, 71 => 33668, 85 => 34202, others => 0),
933 =>
(85 => 34203, others => 0),
934 =>
(85 => 34204, 103 => 32885, others => 0),
935 =>
(0 => 1471, 15 => 1471, 34 => 1471, 39 => 1471,
40 => 1471, 41 => 1471, 46 => 1471, 56 => 1471,
60 => 1471, 67 => 1471, 68 => 1471, 70 => 1471,
71 => 1471, 72 => 1471, 73 => 1471, 86 => 1471,
91 => 1471, 94 => 1471, 97 => 1471, 99 => 1471,
103 => 1471, others => 0),
936 =>
(85 => 34206, others => 0),
937 =>
(85 => 34207, 103 => 32885, others => 0),
938 =>
(0 => 1467, 15 => 1467, 34 => 1467, 39 => 1467,
40 => 1467, 41 => 1467, 46 => 1467, 56 => 1467,
60 => 1467, 67 => 1467, 68 => 1467, 70 => 1467,
71 => 1467, 72 => 1467, 73 => 1467, 86 => 1467,
91 => 1467, 94 => 1467, 97 => 1467, 99 => 1467,
103 => 1467, others => 0),
939 =>
(85 => 34209, others => 0),
940 =>
(46 => 32807, 85 => 34210, others => 0),
941 =>
(34 => 34212, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
942 =>
(0 => 1455, 15 => 1455, 34 => 1455, 39 => 1455,
40 => 1455, 41 => 1455, 46 => 1455, 56 => 1455,
60 => 1455, 67 => 1455, 68 => 1455, 70 => 1455,
71 => 1455, 72 => 1455, 73 => 1455, 86 => 1455,
91 => 1455, 94 => 1455, 97 => 1455, 99 => 1455,
103 => 1455, others => 0),
943 =>
(29 => 32865, 85 => 34213, others => 0),
944 =>
(34 => 34214, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
945 =>
(46 => 32807, 85 => 34216, others => 0),
946 =>
(34 => 34218, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
947 =>
(46 => 32807, 85 => 34220, others => 0),
948 =>
(34 => 34223, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 34222, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
949 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
950 =>
(0 => 1379, 15 => 1379, 34 => 1379, 39 => 1379,
40 => 1379, 41 => 1379, 46 => 1379, 56 => 1379,
60 => 1379, 67 => 1379, 68 => 1379, 70 => 1379,
71 => 1379, 72 => 1379, 73 => 1379, 86 => 1379,
91 => 1379, 94 => 1379, 97 => 1379, 99 => 1379,
103 => 1379, others => 0),
951 =>
(85 => 34225, others => 0),
952 =>
(0 => 1371, 15 => 1371, 34 => 1371, 39 => 1371,
40 => 1371, 41 => 1371, 46 => 1371, 56 => 1371,
60 => 1371, 67 => 1371, 68 => 1371, 70 => 1371,
71 => 1371, 72 => 1371, 73 => 1371, 86 => 1371,
91 => 1371, 94 => 1371, 97 => 1371, 99 => 1371,
103 => 1371, others => 0),
953 =>
(85 => 34226, others => 0),
954 =>
(80 => 34227, others => 0),
955 =>
(0 => 1475, 15 => 1475, 34 => 1475, 39 => 1475,
40 => 1475, 41 => 1475, 46 => 1475, 56 => 1475,
60 => 1475, 67 => 1475, 68 => 1475, 70 => 1475,
71 => 1475, 72 => 1475, 73 => 1475, 86 => 1475,
91 => 1475, 94 => 1475, 97 => 1475, 99 => 1475,
103 => 1475, others => 0),
956 =>
(85 => 34228, others => 0),
957 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
958 =>
(40 => 602, 46 => 602, 68 => 602, 70 => 602,
72 => 602, 97 => 602, 99 => 602, 103 => 602,
others => 0),
959 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
960 =>
(85 => 34231, others => 0),
961 =>
(40 => 582, 46 => 582, 68 => 582, 70 => 582,
72 => 582, 97 => 582, 99 => 582, 103 => 582,
others => 0),
962 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
963 =>
(85 => 34233, others => 0),
964 =>
(19 => 32869, 23 => 34237, 40 => 34236, 46 => 32807,
72 => 34235, 73 => 34234, 90 => 32868, others => 0),
965 =>
(13 => 34240, 85 => 34239, 103 => 32885, others => 0),
966 =>
(61 => 34242, others => 0),
967 =>
(13 => 34244, 85 => 34243, 103 => 32885, others => 0),
968 =>
(13 => 34247, 85 => 34246, 103 => 32885, others => 0),
969 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
970 =>
(40 => 598, 46 => 598, 68 => 598, 70 => 598,
72 => 598, 97 => 598, 99 => 598, 103 => 598,
others => 0),
971 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
972 =>
(85 => 34251, others => 0),
973 =>
(40 => 574, 46 => 574, 68 => 574, 70 => 574,
72 => 574, 97 => 574, 99 => 574, 103 => 574,
others => 0),
974 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
975 =>
(85 => 34253, others => 0),
976 =>
(13 => 38, 51 => 38, 53 => 34254, 78 => 38,
83 => 38, 85 => 38, 103 => 38, others => 0),
977 =>
(53 => 34256, 80 => 34255, others => 0),
978 =>
(46 => 32838, others => 0),
979 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34258,
90 => 32868, others => 0),
980 =>
(46 => 32838, others => 0),
981 =>
(13 => 31, 51 => 31, 78 => 31, 83 => 31,
85 => 31, 103 => 31, others => 0),
982 =>
(9 => 33243, 64 => 33242, 85 => 34262, 103 => 32885,
104 => 33241, others => 0),
983 =>
(40 => 605, 46 => 605, 68 => 605, 70 => 605,
72 => 605, 97 => 605, 99 => 605, 103 => 605,
others => 0),
984 =>
(9 => 33243, 64 => 33242, 85 => 34264, 103 => 32885,
104 => 33241, others => 0),
985 =>
(40 => 589, 46 => 589, 68 => 589, 70 => 589,
72 => 589, 97 => 589, 99 => 589, 103 => 589,
others => 0),
986 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34266,
103 => 32885, others => 0),
987 =>
(83 => 34268, others => 0),
988 =>
(0 => 1458, 15 => 1458, 34 => 1458, 39 => 1458,
40 => 1458, 41 => 1458, 46 => 1458, 56 => 1458,
60 => 1458, 67 => 1458, 68 => 1458, 70 => 1458,
71 => 1458, 72 => 1458, 73 => 1458, 86 => 1458,
91 => 1458, 94 => 1458, 97 => 1458, 99 => 1458,
103 => 1458, others => 0),
989 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34269,
103 => 32885, others => 0),
990 =>
(34 => 34271, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
991 =>
(46 => 32807, 85 => 34273, others => 0),
992 =>
(34 => 34276, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 34275, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
993 =>
(34 => 34278, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 34277, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
994 =>
(61 => 34280, others => 0),
995 =>
(85 => 34281, 103 => 32885, others => 0),
996 =>
(85 => 34283, 103 => 32885, others => 0),
997 =>
(83 => 34285, others => 0),
998 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34286,
103 => 32885, others => 0),
999 =>
(51 => 34290, 78 => 34289, 85 => 34288, 103 => 32885,
others => 0),
1000 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34292,
103 => 32885, others => 0),
1001 =>
(85 => 34294, 103 => 32885, others => 0),
1002 =>
(46 => 32807, 85 => 34296, 90 => 32868, others => 0),
1003 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1004 =>
(85 => 34301, 103 => 32885, others => 0),
1005 =>
(85 => 34303, 103 => 32885, others => 0),
1006 =>
(15 => 34306, 34 => 34305, others => 0),
1007 =>
(0 => 1339, 15 => 1339, 34 => 1339, 35 => 1339,
39 => 1339, 40 => 1339, 41 => 1339, 46 => 1339,
56 => 1339, 60 => 1339, 67 => 1339, 68 => 1339,
70 => 1339, 71 => 1339, 72 => 1339, 73 => 1339,
86 => 1339, 91 => 1339, 94 => 1339, 97 => 1339,
99 => 1339, 103 => 1339, others => 0),
1008 =>
(15 => 34308, 34 => 34307, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1009 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34310,
103 => 32885, others => 0),
1010 =>
(85 => 34312, 103 => 32885, others => 0),
1011 =>
(46 => 32807, 85 => 34314, 90 => 32868, others => 0),
1012 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1013 =>
(85 => 34317, 103 => 32885, others => 0),
1014 =>
(85 => 34319, 103 => 32885, others => 0),
1015 =>
(15 => 34322, 34 => 34321, others => 0),
1016 =>
(0 => 1279, 15 => 1279, 34 => 1279, 35 => 1279,
39 => 1279, 40 => 1279, 41 => 1279, 46 => 1279,
56 => 1279, 60 => 1279, 67 => 1279, 68 => 1279,
70 => 1279, 71 => 1279, 72 => 1279, 73 => 1279,
86 => 1279, 91 => 1279, 94 => 1279, 97 => 1279,
99 => 1279, 103 => 1279, others => 0),
1017 =>
(15 => 34324, 34 => 34323, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1018 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34326,
90 => 32868, others => 0),
1019 =>
(0 => 1395, 15 => 1395, 34 => 1395, 39 => 1395,
40 => 1395, 41 => 1395, 46 => 1395, 56 => 1395,
60 => 1395, 67 => 1395, 68 => 1395, 70 => 1395,
71 => 1395, 72 => 1395, 73 => 1395, 86 => 1395,
91 => 1395, 94 => 1395, 97 => 1395, 99 => 1395,
103 => 1395, others => 0),
1020 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
1021 =>
(85 => 34330, others => 0),
1022 =>
(0 => 2137, 40 => 2137, 41 => 2137, 56 => 2137,
60 => 2137, 67 => 2137, 68 => 2137, 70 => 2137,
71 => 2137, 72 => 2137, 86 => 2137, 99 => 2137,
103 => 2137, others => 0),
1023 =>
(12 => 191, 100 => 191, others => 0),
1024 =>
(12 => 262, 100 => 262, others => 0),
1025 =>
(9 => 33243, 12 => 261, 64 => 33242, 100 => 261,
104 => 33241, others => 0),
1026 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
1027 =>
(21 => 2033, 83 => 2033, others => 0),
1028 =>
(9 => 33243, 21 => 2031, 64 => 33242, 83 => 2031,
104 => 33241, others => 0),
1029 =>
(9 => 2027, 12 => 2027, 13 => 2027, 21 => 2027,
28 => 2027, 32 => 2027, 33 => 2027, 51 => 2027,
53 => 34332, 57 => 2027, 63 => 2027, 64 => 2027,
83 => 2027, 85 => 2027, 96 => 2027, 100 => 2027,
103 => 2027, 104 => 2027, others => 0),
1030 =>
(21 => 198, 83 => 198, others => 0),
1031 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
1032 =>
(9 => 2028, 12 => 2028, 13 => 2028, 21 => 2028,
28 => 2028, 57 => 2028, 63 => 2028, 83 => 2028,
85 => 2028, 100 => 2028, 103 => 2028, others => 0),
1033 =>
(8 => 33263, 30 => 34043, 31 => 33262, 45 => 33258,
58 => 33253, 69 => 33251, 77 => 33250, 87 => 33249,
89 => 33248, others => 0),
1034 =>
(8 => 33263, 12 => 268, 21 => 268, 31 => 33262,
45 => 33258, 58 => 33253, 69 => 33251, 77 => 33250,
83 => 268, 87 => 33249, 89 => 33248, 100 => 268,
others => 0),
1035 =>
(51 => 34334, 103 => 32885, others => 0),
1036 =>
(51 => 34335, 103 => 32885, others => 0),
1037 =>
(46 => 32838, others => 0),
1038 =>
(15 => 32963, 34 => 32962, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1039 =>
(51 => 33012, others => 0),
1040 =>
(51 => 34338, 53 => 34337, 103 => 32885, others => 0),
1041 =>
(53 => 34341, 80 => 34340, others => 0),
1042 =>
(46 => 32815, others => 0),
1043 =>
(46 => 32815, 90 => 32853, others => 0),
1044 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34344,
90 => 32868, others => 0),
1045 =>
(46 => 32838, others => 0),
1046 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1047 =>
(21 => 33428, 51 => 115, 85 => 115, others => 0),
1048 =>
(12 => 34349, 21 => 112, 51 => 112, 85 => 112,
others => 0),
1049 =>
(61 => 34350, others => 0),
1050 =>
(13 => 34351, 83 => 1678, 85 => 1678, others => 0),
1051 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1052 =>
(19 => 32869, 46 => 32807, 60 => 34353, 90 => 32868,
others => 0),
1053 =>
(61 => 34355, others => 0),
1054 =>
(13 => 34356, 83 => 1674, 85 => 1674, others => 0),
1055 =>
(19 => 32869, 46 => 32807, 60 => 34357, 90 => 32868,
others => 0),
1056 =>
(61 => 34359, others => 0),
1057 =>
(19 => 32869, 46 => 32807, 60 => 34361, 66 => 34360,
90 => 32868, others => 0),
1058 =>
(13 => 34363, 83 => 1666, 85 => 1666, others => 0),
1059 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1060 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1061 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34366,
103 => 32885, others => 0),
1062 =>
(85 => 34368, 103 => 32885, others => 0),
1063 =>
(46 => 32807, 85 => 34370, others => 0),
1064 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1065 =>
(15 => 34374, 34 => 34373, others => 0),
1066 =>
(85 => 34375, 103 => 32885, others => 0),
1067 =>
(0 => 1949, 15 => 1949, 34 => 1949, 35 => 1949,
39 => 1949, 40 => 1949, 41 => 1949, 46 => 1949,
56 => 1949, 60 => 1949, 67 => 1949, 68 => 1949,
70 => 1949, 71 => 1949, 72 => 1949, 73 => 1949,
86 => 1949, 91 => 1949, 94 => 1949, 97 => 1949,
99 => 1949, 103 => 1949, others => 0),
1068 =>
(15 => 34378, 34 => 34377, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1069 =>
(83 => 1685, 85 => 1685, others => 0),
1070 =>
(56 => 34382, 61 => 33843, 71 => 34381, 76 => 33840,
85 => 34380, others => 0),
1071 =>
(50 => 1496, 59 => 34384, others => 0),
1072 =>
(18 => 34386, 39 => 32961, 46 => 32838, 61 => 34385,
70 => 32775, others => 0),
1073 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1074 =>
(85 => 34394, 103 => 32885, others => 0),
1075 =>
(76 => 34396, others => 0),
1076 =>
(61 => 34397, others => 0),
1077 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1078 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1079 =>
(50 => 1493, 59 => 34401, 61 => 33843, 71 => 34400,
76 => 33840, others => 0),
1080 =>
(19 => 34404, 46 => 34403, others => 0),
1081 =>
(9 => 33678, 85 => 1502, 103 => 1502, others => 0),
1082 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1083 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1084 =>
(7 => 33688, 19 => 32869, 23 => 33687, 40 => 34413,
46 => 32807, 60 => 33685, 72 => 34412, 73 => 34411,
90 => 32868, others => 0),
1085 =>
(56 => 34419, 59 => 34418, 92 => 34417, 93 => 34416,
others => 0),
1086 =>
(85 => 2195, 103 => 2195, others => 0),
1087 =>
(85 => 2193, 103 => 2193, others => 0),
1088 =>
(85 => 2191, 103 => 2191, others => 0),
1089 =>
(85 => 2186, 103 => 2186, others => 0),
1090 =>
(85 => 2189, 103 => 2189, others => 0),
1091 =>
(50 => 34420, others => 0),
1092 =>
(85 => 2196, 103 => 2196, others => 0),
1093 =>
(85 => 2188, 103 => 2188, others => 0),
1094 =>
(85 => 2190, 103 => 2190, others => 0),
1095 =>
(85 => 2049, 103 => 2049, others => 0),
1096 =>
(85 => 2194, 103 => 2194, others => 0),
1097 =>
(85 => 2187, 103 => 2187, others => 0),
1098 =>
(85 => 34421, 103 => 32885, others => 0),
1099 =>
(85 => 2192, 103 => 2192, others => 0),
1100 =>
(15 => 1487, 34 => 1487, 39 => 1487, 40 => 1487,
41 => 1487, 46 => 1487, 60 => 1487, 67 => 1487,
68 => 1487, 70 => 1487, 71 => 1487, 72 => 1487,
73 => 1487, 91 => 1487, 94 => 1487, 97 => 1487,
99 => 1487, others => 0),
1101 =>
(3 => 34428, 5 => 33852, 11 => 33517, 26 => 33851,
27 => 33850, 50 => 33849, 53 => 33848, 56 => 34427,
58 => 33846, 59 => 34426, 60 => 33844, 61 => 33843,
71 => 34425, 73 => 33322, 75 => 33841, 76 => 33840,
92 => 34424, 93 => 34423, 94 => 33318, others => 0),
1102 =>
(15 => 2184, 34 => 2184, 39 => 2184, 40 => 2184,
41 => 2184, 46 => 2184, 60 => 2184, 67 => 2184,
68 => 2184, 70 => 2184, 71 => 2184, 72 => 2184,
73 => 2184, 91 => 2184, 94 => 2184, 97 => 2184,
99 => 2184, others => 0),
1103 =>
(46 => 32838, others => 0),
1104 =>
(34 => 33882, 35 => 33881, 39 => 32961, 59 => 34430,
60 => 33879, 67 => 33878, 70 => 32775, 71 => 33877,
others => 0),
1105 =>
(51 => 34433, 85 => 34432, others => 0),
1106 =>
(51 => 34435, 85 => 34434, 103 => 32885, others => 0),
1107 =>
(15 => 34438, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 86 => 34437,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1108 =>
(51 => 34440, others => 0),
1109 =>
(34 => 34441, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, others => 0),
1110 =>
(35 => 34443, others => 0),
1111 =>
(67 => 34444, others => 0),
1112 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1113 =>
(46 => 32838, others => 0),
1114 =>
(46 => 34448, 85 => 2168, others => 0),
1115 =>
(34 => 2170, 35 => 2170, 39 => 2170, 60 => 2170,
67 => 2170, 70 => 2170, 71 => 2170, others => 0),
1116 =>
(34 => 2169, 35 => 2169, 39 => 2169, 60 => 2169,
67 => 2169, 70 => 2169, 71 => 2169, others => 0),
1117 =>
(85 => 34449, others => 0),
1118 =>
(34 => 2172, 35 => 2172, 39 => 2172, 60 => 2172,
67 => 2172, 70 => 2172, 71 => 2172, others => 0),
1119 =>
(34 => 34451, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 34450, others => 0),
1120 =>
(15 => 2120, 34 => 2120, 39 => 2120, 40 => 2120,
41 => 2120, 46 => 2120, 60 => 2120, 67 => 2120,
68 => 2120, 70 => 2120, 71 => 2120, 72 => 2120,
73 => 2120, 91 => 2120, 94 => 2120, 97 => 2120,
99 => 2120, others => 0),
1121 =>
(34 => 33882, 35 => 33881, 39 => 32961, 59 => 34453,
60 => 33879, 67 => 33878, 70 => 32775, 71 => 33877,
others => 0),
1122 =>
(85 => 34455, 103 => 32885, others => 0),
1123 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
59 => 34457, 60 => 33899, 67 => 33898, 70 => 32775,
71 => 33897, 72 => 33896, others => 0),
1124 =>
(51 => 34459, others => 0),
1125 =>
(51 => 34460, 103 => 32885, others => 0),
1126 =>
(34 => 34468, 35 => 34467, 39 => 32961, 40 => 34466,
60 => 34465, 67 => 34464, 70 => 32775, 72 => 34463,
86 => 34462, others => 0),
1127 =>
(51 => 34477, others => 0),
1128 =>
(46 => 32815, others => 0),
1129 =>
(34 => 34479, 35 => 33881, 39 => 32961, 40 => 33901,
46 => 32838, 60 => 33899, 67 => 33898, 70 => 32775,
72 => 33896, others => 0),
1130 =>
(35 => 34443, 40 => 34485, 72 => 34484, others => 0),
1131 =>
(67 => 34486, others => 0),
1132 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1133 =>
(46 => 32815, 90 => 32853, others => 0),
1134 =>
(46 => 34489, 85 => 1989, others => 0),
1135 =>
(34 => 1997, 35 => 1997, 39 => 1997, 40 => 1997,
46 => 1997, 60 => 1997, 67 => 1997, 70 => 1997,
71 => 1997, 72 => 1997, others => 0),
1136 =>
(34 => 1996, 35 => 1996, 39 => 1996, 40 => 1996,
46 => 1996, 60 => 1996, 67 => 1996, 70 => 1996,
71 => 1996, 72 => 1996, others => 0),
1137 =>
(34 => 1995, 35 => 1995, 39 => 1995, 40 => 1995,
46 => 1995, 60 => 1995, 67 => 1995, 70 => 1995,
71 => 1995, 72 => 1995, others => 0),
1138 =>
(34 => 1994, 35 => 1994, 39 => 1994, 40 => 1994,
46 => 1994, 60 => 1994, 67 => 1994, 70 => 1994,
71 => 1994, 72 => 1994, others => 0),
1139 =>
(85 => 34490, others => 0),
1140 =>
(34 => 1999, 35 => 1999, 39 => 1999, 40 => 1999,
60 => 1999, 67 => 1999, 70 => 1999, 71 => 1999,
72 => 1999, others => 0),
1141 =>
(34 => 34492, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 34491,
72 => 33896, others => 0),
1142 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
59 => 34494, 60 => 33899, 67 => 33898, 70 => 32775,
71 => 33897, 72 => 33896, others => 0),
1143 =>
(15 => 33266, 34 => 33265, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
86 => 34496, 91 => 32955, 94 => 32954, 97 => 32953,
99 => 32771, others => 0),
1144 =>
(8 => 1560, 9 => 1560, 10 => 1560, 12 => 2084,
21 => 1560, 29 => 1560, 31 => 1560, 36 => 1560,
43 => 1560, 44 => 1560, 45 => 1560, 48 => 1560,
49 => 1560, 53 => 1560, 54 => 1560, 55 => 1560,
58 => 1560, 60 => 1560, 64 => 1560, 69 => 1560,
77 => 1560, 83 => 1560, 87 => 1560, 89 => 1560,
104 => 1560, others => 0),
1145 =>
(83 => 609, others => 0),
1146 =>
(9 => 33243, 21 => 1344, 64 => 33242, 83 => 1344,
104 => 33241, others => 0),
1147 =>
(83 => 34497, others => 0),
1148 =>
(21 => 34498, 83 => 613, others => 0),
1149 =>
(21 => 614, 83 => 614, others => 0),
1150 =>
(8 => 259, 9 => 259, 10 => 259, 12 => 2083,
21 => 259, 29 => 259, 31 => 259, 36 => 259,
43 => 259, 44 => 259, 45 => 259, 48 => 259,
49 => 259, 53 => 259, 54 => 259, 55 => 259,
58 => 259, 60 => 259, 64 => 259, 69 => 259,
77 => 259, 83 => 259, 87 => 259, 89 => 259,
104 => 259, others => 0),
1151 =>
(8 => 260, 9 => 260, 10 => 260, 12 => 2085,
21 => 260, 29 => 260, 31 => 260, 36 => 260,
43 => 260, 44 => 260, 45 => 260, 48 => 260,
49 => 260, 53 => 260, 54 => 260, 55 => 260,
58 => 260, 60 => 260, 64 => 260, 69 => 260,
77 => 260, 83 => 260, 87 => 260, 89 => 260,
104 => 260, others => 0),
1152 =>
(12 => 34500, others => 0),
1153 =>
(12 => 34501, others => 0),
1154 =>
(0 => 1406, 15 => 1406, 34 => 1406, 39 => 1406,
40 => 1406, 41 => 1406, 46 => 1406, 56 => 1406,
60 => 1406, 67 => 1406, 68 => 1406, 70 => 1406,
71 => 1406, 72 => 1406, 73 => 1406, 86 => 1406,
91 => 1406, 94 => 1406, 97 => 1406, 99 => 1406,
103 => 1406, others => 0),
1155 =>
(14 => 34503, 19 => 32869, 34 => 34502, 46 => 32807,
70 => 32775, 90 => 32868, others => 0),
1156 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1157 =>
(9 => 33243, 64 => 33242, 85 => 34509, 104 => 33241,
others => 0),
1158 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1159 =>
(9 => 33243, 12 => 34511, 64 => 33242, 104 => 33241,
others => 0),
1160 =>
(32 => 2185, 34 => 2185, 64 => 2185, 96 => 2185,
others => 0),
1161 =>
(32 => 7, 34 => 7, 64 => 7, 96 => 7,
others => 0),
1162 =>
(32 => 249, 34 => 249, 64 => 249, 96 => 249,
others => 0),
1163 =>
(32 => 322, 34 => 322, 64 => 322, 96 => 322,
others => 0),
1164 =>
(1 => 34512, others => 0),
1165 =>
(4 => 33176, 19 => 32869, 25 => 33172, 46 => 32807,
90 => 32868, 95 => 33464, 101 => 34513, others => 0),
1166 =>
(84 => 34515, others => 0),
1167 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1168 =>
(32 => 34519, 34 => 34518, 64 => 34517, others => 0),
1169 =>
(6 => 34521, 19 => 32869, 23 => 34520, 46 => 32807,
60 => 33685, 90 => 32868, others => 0),
1170 =>
(1 => 2112, 4 => 2112, 15 => 2112, 18 => 2112,
19 => 2112, 24 => 2112, 25 => 2112, 32 => 2112,
33 => 2112, 34 => 2112, 37 => 2112, 38 => 2112,
39 => 2112, 42 => 2112, 46 => 2112, 47 => 2112,
52 => 2112, 57 => 2112, 61 => 2112, 64 => 2112,
70 => 2112, 74 => 2112, 79 => 2112, 80 => 2112,
84 => 2112, 90 => 2112, 96 => 2112, 101 => 2112,
102 => 2112, others => 0),
1171 =>
(1 => 391, 4 => 391, 15 => 391, 18 => 391,
19 => 391, 24 => 391, 25 => 391, 32 => 391,
33 => 391, 34 => 391, 37 => 391, 38 => 391,
39 => 391, 42 => 391, 46 => 391, 47 => 391,
52 => 391, 57 => 391, 61 => 391, 64 => 391,
70 => 391, 74 => 391, 79 => 391, 80 => 391,
84 => 391, 90 => 391, 96 => 391, 101 => 391,
102 => 391, others => 0),
1172 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1173 =>
(1 => 34524, others => 0),
1174 =>
(1 => 2061, 4 => 2061, 15 => 2061, 18 => 2061,
19 => 2061, 24 => 2061, 25 => 2061, 32 => 2061,
33 => 2061, 34 => 2061, 37 => 2061, 38 => 2061,
39 => 2061, 42 => 2061, 46 => 2061, 47 => 2061,
52 => 2061, 57 => 2061, 61 => 2061, 64 => 2061,
70 => 2061, 74 => 2061, 79 => 2061, 80 => 2061,
84 => 2061, 90 => 2061, 96 => 2061, 101 => 2061,
102 => 2061, others => 0),
1175 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1176 =>
(1 => 2022, 4 => 2022, 15 => 2022, 18 => 2022,
19 => 2022, 24 => 2022, 25 => 2022, 32 => 2022,
33 => 2022, 34 => 2022, 37 => 2022, 38 => 2022,
39 => 2022, 42 => 2022, 46 => 2022, 47 => 2022,
52 => 2022, 57 => 2022, 61 => 2022, 64 => 2022,
70 => 2022, 74 => 2022, 79 => 2022, 80 => 2022,
84 => 2022, 90 => 2022, 96 => 2022, 101 => 2022,
102 => 2022, others => 0),
1177 =>
(57 => 34526, others => 0),
1178 =>
(1 => 1509, 4 => 1509, 15 => 1509, 18 => 1509,
19 => 1509, 24 => 1509, 25 => 1509, 32 => 1509,
33 => 1509, 34 => 1509, 37 => 1509, 38 => 1509,
39 => 1509, 42 => 1509, 46 => 1509, 47 => 1509,
52 => 1509, 57 => 1509, 61 => 1509, 64 => 1509,
70 => 1509, 74 => 1509, 79 => 1509, 80 => 1509,
84 => 1509, 90 => 1509, 96 => 1509, 101 => 1509,
102 => 1509, others => 0),
1179 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1180 =>
(1 => 1476, 4 => 1476, 15 => 1476, 18 => 1476,
19 => 1476, 24 => 1476, 25 => 1476, 32 => 1476,
33 => 1476, 34 => 1476, 37 => 1476, 38 => 1476,
39 => 1476, 42 => 1476, 46 => 1476, 47 => 1476,
52 => 1476, 57 => 1476, 61 => 1476, 64 => 1476,
70 => 1476, 74 => 1476, 79 => 1476, 80 => 1476,
84 => 1476, 90 => 1476, 96 => 1476, 101 => 1476,
102 => 1476, others => 0),
1181 =>
(19 => 32869, 46 => 32807, 81 => 34528, 90 => 32868,
others => 0),
1182 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 81 => 34530, 90 => 32868,
others => 0),
1183 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1184 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1185 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1186 =>
(9 => 33243, 64 => 33242, 85 => 34536, 104 => 33241,
others => 0),
1187 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1188 =>
(1 => 371, 4 => 371, 15 => 371, 18 => 371,
19 => 371, 24 => 371, 25 => 371, 32 => 371,
33 => 371, 34 => 371, 37 => 371, 38 => 371,
39 => 371, 42 => 371, 46 => 371, 47 => 371,
52 => 371, 57 => 371, 61 => 371, 64 => 371,
70 => 371, 74 => 371, 79 => 371, 80 => 371,
84 => 371, 90 => 371, 96 => 371, 101 => 371,
102 => 371, others => 0),
1189 =>
(9 => 33243, 64 => 33242, 85 => 34538, 104 => 33241,
others => 0),
1190 =>
(1 => 252, 4 => 252, 15 => 252, 18 => 252,
19 => 252, 24 => 252, 25 => 252, 32 => 252,
33 => 252, 34 => 252, 37 => 252, 38 => 252,
39 => 252, 42 => 252, 46 => 252, 47 => 252,
52 => 252, 57 => 252, 61 => 252, 64 => 252,
70 => 252, 74 => 252, 79 => 252, 80 => 252,
84 => 252, 90 => 252, 96 => 252, 101 => 252,
102 => 252, others => 0),
1191 =>
(34 => 34540, 37 => 34539, others => 0),
1192 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1193 =>
(101 => 34542, others => 0),
1194 =>
(101 => 33976, others => 0),
1195 =>
(46 => 34546, 85 => 34545, others => 0),
1196 =>
(1 => 28, 4 => 28, 15 => 28, 18 => 28,
19 => 28, 24 => 28, 25 => 28, 32 => 28,
33 => 28, 34 => 28, 37 => 28, 38 => 28,
39 => 28, 42 => 28, 46 => 28, 47 => 28,
52 => 28, 57 => 28, 61 => 28, 64 => 28,
70 => 28, 74 => 28, 79 => 28, 80 => 28,
84 => 28, 90 => 28, 96 => 28, 101 => 28,
102 => 28, others => 0),
1197 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 33168,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1198 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1199 =>
(1 => 6, 4 => 6, 15 => 6, 18 => 6,
19 => 6, 24 => 6, 25 => 6, 32 => 6,
33 => 6, 34 => 6, 37 => 6, 38 => 6,
39 => 6, 42 => 6, 46 => 6, 47 => 6,
52 => 6, 57 => 6, 61 => 6, 64 => 6,
70 => 6, 74 => 6, 79 => 6, 80 => 6,
84 => 6, 90 => 6, 96 => 6, 101 => 6,
102 => 6, others => 0),
1200 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1201 =>
(20 => 34552, 85 => 34551, others => 0),
1202 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1203 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1204 =>
(46 => 32838, others => 0),
1205 =>
(15 => 34557, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1206 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1207 =>
(9 => 33243, 64 => 33242, 85 => 34560, 104 => 33241,
others => 0),
1208 =>
(46 => 33168, 65 => 33105, others => 0),
1209 =>
(34 => 2087, 101 => 33976, others => 0),
1210 =>
(34 => 34568, others => 0),
1211 =>
(0 => 1908, 15 => 1908, 34 => 1908, 35 => 1908,
39 => 1908, 40 => 1908, 41 => 1908, 46 => 1908,
56 => 1908, 60 => 1908, 67 => 1908, 68 => 1908,
70 => 1908, 71 => 1908, 72 => 1908, 73 => 1908,
86 => 1908, 91 => 1908, 94 => 1908, 97 => 1908,
99 => 1908, 103 => 1908, others => 0),
1212 =>
(29 => 32865, 85 => 34569, others => 0),
1213 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 32 => 2088,
33 => 2088, 34 => 2088, 37 => 2088, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 64 => 2088,
70 => 32775, 74 => 33163, 79 => 33162, 80 => 33161,
84 => 33160, 90 => 32868, 96 => 2088, 101 => 2088,
102 => 33159, others => 0),
1214 =>
(1 => 2126, 4 => 2126, 15 => 2126, 18 => 2126,
19 => 2126, 24 => 2126, 25 => 2126, 32 => 2126,
33 => 2126, 34 => 2126, 37 => 2126, 38 => 2126,
39 => 2126, 42 => 2126, 46 => 2126, 47 => 2126,
52 => 2126, 57 => 2126, 61 => 2126, 64 => 2126,
70 => 2126, 74 => 2126, 79 => 2126, 80 => 2126,
84 => 2126, 90 => 2126, 96 => 2126, 101 => 2126,
102 => 2126, others => 0),
1215 =>
(0 => 1903, 15 => 1903, 34 => 1903, 35 => 1903,
39 => 1903, 40 => 1903, 41 => 1903, 46 => 1903,
56 => 1903, 60 => 1903, 67 => 1903, 68 => 1903,
70 => 1903, 71 => 1903, 72 => 1903, 73 => 1903,
86 => 1903, 91 => 1903, 94 => 1903, 97 => 1903,
99 => 1903, 103 => 1903, others => 0),
1216 =>
(101 => 33976, others => 0),
1217 =>
(46 => 32807, 85 => 34571, others => 0),
1218 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1219 =>
(15 => 361, 34 => 361, 39 => 361, 40 => 361,
41 => 361, 46 => 361, 60 => 361, 67 => 361,
68 => 361, 70 => 361, 71 => 361, 72 => 361,
73 => 361, 91 => 361, 94 => 361, 97 => 361,
99 => 361, others => 0),
1220 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1221 =>
(85 => 34575, others => 0),
1222 =>
(61 => 34576, others => 0),
1223 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1224 =>
(13 => 1587, 85 => 1587, 103 => 1587, others => 0),
1225 =>
(13 => 34579, 85 => 34578, 103 => 32885, others => 0),
1226 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1227 =>
(5 => 33091, 11 => 33517, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
1228 =>
(13 => 34585, 85 => 34584, 103 => 32885, others => 0),
1229 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1230 =>
(15 => 1583, 34 => 1583, 39 => 1583, 40 => 1583,
41 => 1583, 46 => 1583, 60 => 1583, 67 => 1583,
68 => 1583, 70 => 1583, 71 => 1583, 72 => 1583,
73 => 1583, 91 => 1583, 94 => 1583, 97 => 1583,
99 => 1583, others => 0),
1231 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1232 =>
(85 => 34589, others => 0),
1233 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1234 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1235 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1236 =>
(9 => 2064, 12 => 2064, 13 => 2064, 21 => 2064,
28 => 2064, 57 => 2064, 63 => 2064, 83 => 2064,
85 => 2064, 103 => 2064, others => 0),
1237 =>
(9 => 2063, 12 => 2063, 13 => 2063, 21 => 2063,
28 => 2063, 57 => 2063, 63 => 2063, 83 => 2063,
85 => 2063, 103 => 2063, others => 0),
1238 =>
(9 => 2062, 12 => 2062, 13 => 2062, 21 => 2062,
28 => 2062, 57 => 2062, 63 => 2062, 83 => 2062,
85 => 2062, 103 => 2062, others => 0),
1239 =>
(9 => 2132, 13 => 2132, 28 => 2132, 63 => 2132,
85 => 2132, 103 => 2132, others => 0),
1240 =>
(0 => 1897, 15 => 1897, 34 => 1897, 35 => 1897,
39 => 1897, 40 => 1897, 41 => 1897, 46 => 1897,
56 => 1897, 60 => 1897, 67 => 1897, 68 => 1897,
70 => 1897, 71 => 1897, 72 => 1897, 73 => 1897,
86 => 1897, 91 => 1897, 94 => 1897, 97 => 1897,
99 => 1897, 103 => 1897, others => 0),
1241 =>
(101 => 33976, others => 0),
1242 =>
(46 => 32807, 85 => 34594, others => 0),
1243 =>
(0 => 1892, 15 => 1892, 34 => 1892, 35 => 1892,
39 => 1892, 40 => 1892, 41 => 1892, 46 => 1892,
56 => 1892, 60 => 1892, 67 => 1892, 68 => 1892,
70 => 1892, 71 => 1892, 72 => 1892, 73 => 1892,
86 => 1892, 91 => 1892, 94 => 1892, 97 => 1892,
99 => 1892, 103 => 1892, others => 0),
1244 =>
(29 => 32865, 85 => 34596, others => 0),
1245 =>
(34 => 34598, 37 => 34597, others => 0),
1246 =>
(3 => 32964, 61 => 32959, 86 => 33830, others => 0),
1247 =>
(85 => 33835, others => 0),
1248 =>
(51 => 34599, 78 => 34074, 85 => 34073, 103 => 32885,
others => 0),
1249 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1250 =>
(3 => 34098, 53 => 32938, 86 => 34095, others => 0),
1251 =>
(85 => 34101, others => 0),
1252 =>
(3 => 34107, 53 => 32938, 86 => 34104, others => 0),
1253 =>
(85 => 34110, others => 0),
1254 =>
(80 => 34602, others => 0),
1255 =>
(83 => 34603, others => 0),
1256 =>
(61 => 34604, others => 0),
1257 =>
(51 => 34605, 78 => 34134, 85 => 34133, 103 => 32885,
others => 0),
1258 =>
(51 => 34607, 78 => 34138, 85 => 34137, 103 => 32885,
others => 0),
1259 =>
(83 => 34609, others => 0),
1260 =>
(51 => 34610, 78 => 34289, 85 => 34288, 103 => 32885,
others => 0),
1261 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34612,
90 => 32868, others => 0),
1262 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1263 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1264 =>
(12 => 34617, others => 0),
1265 =>
(12 => 34618, others => 0),
1266 =>
(101 => 34619, others => 0),
1267 =>
(83 => 34621, others => 0),
1268 =>
(9 => 379, 12 => 379, 21 => 379, 28 => 379,
32 => 379, 33 => 379, 51 => 379, 57 => 379,
64 => 379, 83 => 379, 85 => 379, 96 => 379,
100 => 379, 103 => 379, 104 => 379, others => 0),
1269 =>
(9 => 377, 12 => 377, 21 => 377, 28 => 377,
32 => 377, 33 => 377, 51 => 377, 57 => 377,
64 => 377, 83 => 377, 85 => 377, 96 => 377,
100 => 377, 103 => 377, 104 => 377, others => 0),
1270 =>
(0 => 1687, 1 => 1687, 4 => 1687, 15 => 1687,
18 => 1687, 19 => 1687, 24 => 1687, 25 => 1687,
32 => 1687, 33 => 1687, 34 => 1687, 35 => 1687,
37 => 1687, 38 => 1687, 39 => 1687, 40 => 1687,
41 => 1687, 42 => 1687, 46 => 1687, 47 => 1687,
52 => 1687, 56 => 1687, 57 => 1687, 60 => 1687,
61 => 1687, 64 => 1687, 67 => 1687, 68 => 1687,
70 => 1687, 71 => 1687, 72 => 1687, 73 => 1687,
74 => 1687, 79 => 1687, 80 => 1687, 84 => 1687,
86 => 1687, 90 => 1687, 91 => 1687, 94 => 1687,
96 => 1687, 97 => 1687, 99 => 1687, 101 => 1687,
102 => 1687, 103 => 1687, others => 0),
1271 =>
(21 => 1692, 83 => 1692, others => 0),
1272 =>
(9 => 2052, 12 => 2052, 21 => 2052, 28 => 2052,
32 => 2052, 33 => 2052, 51 => 2052, 57 => 2052,
64 => 2052, 83 => 2052, 85 => 2052, 96 => 2052,
100 => 2052, 103 => 2052, 104 => 2052, others => 0),
1273 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1274 =>
(9 => 1552, 12 => 1552, 21 => 1552, 28 => 1552,
32 => 1552, 33 => 1552, 51 => 1552, 57 => 1552,
64 => 1552, 83 => 1552, 85 => 1552, 96 => 1552,
100 => 34623, 103 => 1552, 104 => 1552, others => 0),
1275 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1276 =>
(0 => 1621, 15 => 1621, 34 => 1621, 39 => 1621,
40 => 1621, 41 => 1621, 46 => 1621, 56 => 1621,
60 => 1621, 67 => 1621, 68 => 1621, 70 => 1621,
71 => 1621, 72 => 1621, 73 => 1621, 86 => 1621,
91 => 1621, 94 => 1621, 97 => 1621, 99 => 1621,
103 => 1621, others => 0),
1277 =>
(101 => 33976, others => 0),
1278 =>
(46 => 32807, 85 => 34626, others => 0),
1279 =>
(0 => 1616, 15 => 1616, 34 => 1616, 39 => 1616,
40 => 1616, 41 => 1616, 46 => 1616, 56 => 1616,
60 => 1616, 67 => 1616, 68 => 1616, 70 => 1616,
71 => 1616, 72 => 1616, 73 => 1616, 86 => 1616,
91 => 1616, 94 => 1616, 97 => 1616, 99 => 1616,
103 => 1616, others => 0),
1280 =>
(29 => 32865, 85 => 34628, others => 0),
1281 =>
(34 => 34630, 37 => 34629, others => 0),
1282 =>
(0 => 1610, 15 => 1610, 34 => 1610, 39 => 1610,
40 => 1610, 41 => 1610, 46 => 1610, 56 => 1610,
60 => 1610, 67 => 1610, 68 => 1610, 70 => 1610,
71 => 1610, 72 => 1610, 73 => 1610, 86 => 1610,
91 => 1610, 94 => 1610, 97 => 1610, 99 => 1610,
103 => 1610, others => 0),
1283 =>
(29 => 32865, 85 => 34631, others => 0),
1284 =>
(34 => 34633, 37 => 34632, others => 0),
1285 =>
(46 => 32807, 85 => 34634, others => 0),
1286 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1287 =>
(0 => 1645, 15 => 1645, 34 => 1645, 39 => 1645,
40 => 1645, 41 => 1645, 46 => 1645, 56 => 1645,
60 => 1645, 67 => 1645, 68 => 1645, 70 => 1645,
71 => 1645, 72 => 1645, 73 => 1645, 86 => 1645,
91 => 1645, 94 => 1645, 97 => 1645, 99 => 1645,
103 => 1645, others => 0),
1288 =>
(0 => 1644, 15 => 1644, 34 => 1644, 39 => 1644,
40 => 1644, 41 => 1644, 46 => 1644, 56 => 1644,
60 => 1644, 67 => 1644, 68 => 1644, 70 => 1644,
71 => 1644, 72 => 1644, 73 => 1644, 86 => 1644,
91 => 1644, 94 => 1644, 97 => 1644, 99 => 1644,
103 => 1644, others => 0),
1289 =>
(29 => 32865, 85 => 34637, others => 0),
1290 =>
(83 => 34638, others => 0),
1291 =>
(0 => 1382, 15 => 1382, 34 => 1382, 39 => 1382,
40 => 1382, 41 => 1382, 46 => 1382, 56 => 1382,
60 => 1382, 67 => 1382, 68 => 1382, 70 => 1382,
71 => 1382, 72 => 1382, 73 => 1382, 86 => 1382,
91 => 1382, 94 => 1382, 97 => 1382, 99 => 1382,
103 => 1382, others => 0),
1292 =>
(0 => 1640, 15 => 1640, 34 => 1640, 39 => 1640,
40 => 1640, 41 => 1640, 46 => 1640, 56 => 1640,
60 => 1640, 67 => 1640, 68 => 1640, 70 => 1640,
71 => 1640, 72 => 1640, 73 => 1640, 86 => 1640,
91 => 1640, 94 => 1640, 97 => 1640, 99 => 1640,
103 => 1640, others => 0),
1293 =>
(29 => 32865, 85 => 34639, others => 0),
1294 =>
(46 => 32807, 85 => 34640, others => 0),
1295 =>
(0 => 1641, 15 => 1641, 34 => 1641, 39 => 1641,
40 => 1641, 41 => 1641, 46 => 1641, 56 => 1641,
60 => 1641, 67 => 1641, 68 => 1641, 70 => 1641,
71 => 1641, 72 => 1641, 73 => 1641, 86 => 1641,
91 => 1641, 94 => 1641, 97 => 1641, 99 => 1641,
103 => 1641, others => 0),
1296 =>
(0 => 1634, 15 => 1634, 34 => 1634, 39 => 1634,
40 => 1634, 41 => 1634, 46 => 1634, 56 => 1634,
60 => 1634, 67 => 1634, 68 => 1634, 70 => 1634,
71 => 1634, 72 => 1634, 73 => 1634, 86 => 1634,
91 => 1634, 94 => 1634, 97 => 1634, 99 => 1634,
103 => 1634, others => 0),
1297 =>
(29 => 32865, 85 => 34642, others => 0),
1298 =>
(46 => 32807, 85 => 34643, others => 0),
1299 =>
(0 => 1635, 15 => 1635, 34 => 1635, 39 => 1635,
40 => 1635, 41 => 1635, 46 => 1635, 56 => 1635,
60 => 1635, 67 => 1635, 68 => 1635, 70 => 1635,
71 => 1635, 72 => 1635, 73 => 1635, 86 => 1635,
91 => 1635, 94 => 1635, 97 => 1635, 99 => 1635,
103 => 1635, others => 0),
1300 =>
(46 => 32807, 85 => 34645, others => 0),
1301 =>
(34 => 34647, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1302 =>
(0 => 1630, 15 => 1630, 34 => 1630, 39 => 1630,
40 => 1630, 41 => 1630, 46 => 1630, 56 => 1630,
60 => 1630, 67 => 1630, 68 => 1630, 70 => 1630,
71 => 1630, 72 => 1630, 73 => 1630, 86 => 1630,
91 => 1630, 94 => 1630, 97 => 1630, 99 => 1630,
103 => 1630, others => 0),
1303 =>
(29 => 32865, 85 => 34648, others => 0),
1304 =>
(0 => 1937, 15 => 1937, 34 => 1937, 35 => 1937,
39 => 1937, 40 => 1937, 41 => 1937, 46 => 1937,
56 => 1937, 60 => 1937, 67 => 1937, 68 => 1937,
70 => 1937, 71 => 1937, 72 => 1937, 73 => 1937,
86 => 1937, 91 => 1937, 94 => 1937, 97 => 1937,
99 => 1937, 103 => 1937, others => 0),
1305 =>
(0 => 1934, 15 => 1934, 34 => 1934, 35 => 1934,
39 => 1934, 40 => 1934, 41 => 1934, 46 => 1934,
56 => 1934, 60 => 1934, 67 => 1934, 68 => 1934,
70 => 1934, 71 => 1934, 72 => 1934, 73 => 1934,
86 => 1934, 91 => 1934, 94 => 1934, 97 => 1934,
99 => 1934, 103 => 1934, others => 0),
1306 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1307 =>
(3 => 32964, 15 => 34652, 34 => 34651, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 60 => 32778,
61 => 32959, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 34650, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1308 =>
(51 => 34656, 85 => 34655, others => 0),
1309 =>
(0 => 1939, 15 => 1939, 34 => 1939, 35 => 1939,
39 => 1939, 40 => 1939, 41 => 1939, 46 => 1939,
56 => 1939, 60 => 1939, 67 => 1939, 68 => 1939,
70 => 1939, 71 => 1939, 72 => 1939, 73 => 1939,
86 => 1939, 91 => 1939, 94 => 1939, 97 => 1939,
99 => 1939, 103 => 1939, others => 0),
1310 =>
(0 => 1403, 15 => 1403, 34 => 1403, 39 => 1403,
40 => 1403, 41 => 1403, 46 => 1403, 56 => 1403,
60 => 1403, 67 => 1403, 68 => 1403, 70 => 1403,
71 => 1403, 72 => 1403, 73 => 1403, 86 => 1403,
91 => 1403, 94 => 1403, 97 => 1403, 99 => 1403,
103 => 1403, others => 0),
1311 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
1312 =>
(85 => 34658, others => 0),
1313 =>
(0 => 1861, 15 => 1861, 34 => 1861, 35 => 1861,
39 => 1861, 40 => 1861, 41 => 1861, 46 => 1861,
56 => 1861, 60 => 1861, 67 => 1861, 68 => 1861,
70 => 1861, 71 => 1861, 72 => 1861, 73 => 1861,
86 => 1861, 91 => 1861, 94 => 1861, 97 => 1861,
99 => 1861, 103 => 1861, others => 0),
1314 =>
(101 => 33976, others => 0),
1315 =>
(46 => 32807, 85 => 34660, others => 0),
1316 =>
(0 => 1856, 15 => 1856, 34 => 1856, 35 => 1856,
39 => 1856, 40 => 1856, 41 => 1856, 46 => 1856,
56 => 1856, 60 => 1856, 67 => 1856, 68 => 1856,
70 => 1856, 71 => 1856, 72 => 1856, 73 => 1856,
86 => 1856, 91 => 1856, 94 => 1856, 97 => 1856,
99 => 1856, 103 => 1856, others => 0),
1317 =>
(29 => 32865, 85 => 34662, others => 0),
1318 =>
(34 => 34664, 37 => 34663, others => 0),
1319 =>
(0 => 1935, 15 => 1935, 34 => 1935, 35 => 1935,
39 => 1935, 40 => 1935, 41 => 1935, 46 => 1935,
56 => 1935, 60 => 1935, 67 => 1935, 68 => 1935,
70 => 1935, 71 => 1935, 72 => 1935, 73 => 1935,
86 => 1935, 91 => 1935, 94 => 1935, 97 => 1935,
99 => 1935, 103 => 1935, others => 0),
1320 =>
(0 => 1850, 15 => 1850, 34 => 1850, 35 => 1850,
39 => 1850, 40 => 1850, 41 => 1850, 46 => 1850,
56 => 1850, 60 => 1850, 67 => 1850, 68 => 1850,
70 => 1850, 71 => 1850, 72 => 1850, 73 => 1850,
86 => 1850, 91 => 1850, 94 => 1850, 97 => 1850,
99 => 1850, 103 => 1850, others => 0),
1321 =>
(29 => 32865, 85 => 34665, others => 0),
1322 =>
(34 => 34667, 37 => 34666, others => 0),
1323 =>
(46 => 32807, 85 => 34668, others => 0),
1324 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1325 =>
(51 => 34673, 78 => 34672, 85 => 34671, 103 => 32885,
others => 0),
1326 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34675,
103 => 32885, others => 0),
1327 =>
(85 => 34677, 103 => 32885, others => 0),
1328 =>
(46 => 32807, 85 => 34679, 90 => 32868, others => 0),
1329 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1330 =>
(85 => 34682, 103 => 32885, others => 0),
1331 =>
(85 => 34684, 103 => 32885, others => 0),
1332 =>
(15 => 34687, 34 => 34686, others => 0),
1333 =>
(0 => 1319, 15 => 1319, 34 => 1319, 35 => 1319,
39 => 1319, 40 => 1319, 41 => 1319, 46 => 1319,
56 => 1319, 60 => 1319, 67 => 1319, 68 => 1319,
70 => 1319, 71 => 1319, 72 => 1319, 73 => 1319,
86 => 1319, 91 => 1319, 94 => 1319, 97 => 1319,
99 => 1319, 103 => 1319, others => 0),
1334 =>
(15 => 34689, 34 => 34688, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1335 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34691,
103 => 32885, others => 0),
1336 =>
(85 => 34693, 103 => 32885, others => 0),
1337 =>
(46 => 32807, 85 => 34695, 90 => 32868, others => 0),
1338 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1339 =>
(85 => 34698, 103 => 32885, others => 0),
1340 =>
(85 => 34700, 103 => 32885, others => 0),
1341 =>
(15 => 34703, 34 => 34702, others => 0),
1342 =>
(0 => 1239, 15 => 1239, 34 => 1239, 35 => 1239,
39 => 1239, 40 => 1239, 41 => 1239, 46 => 1239,
56 => 1239, 60 => 1239, 67 => 1239, 68 => 1239,
70 => 1239, 71 => 1239, 72 => 1239, 73 => 1239,
86 => 1239, 91 => 1239, 94 => 1239, 97 => 1239,
99 => 1239, 103 => 1239, others => 0),
1343 =>
(15 => 34705, 34 => 34704, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1344 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34707,
90 => 32868, others => 0),
1345 =>
(0 => 1391, 15 => 1391, 34 => 1391, 39 => 1391,
40 => 1391, 41 => 1391, 46 => 1391, 56 => 1391,
60 => 1391, 67 => 1391, 68 => 1391, 70 => 1391,
71 => 1391, 72 => 1391, 73 => 1391, 86 => 1391,
91 => 1391, 94 => 1391, 97 => 1391, 99 => 1391,
103 => 1391, others => 0),
1346 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
1347 =>
(85 => 34711, others => 0),
1348 =>
(0 => 1922, 15 => 1922, 34 => 1922, 35 => 1922,
39 => 1922, 40 => 1922, 41 => 1922, 46 => 1922,
56 => 1922, 60 => 1922, 67 => 1922, 68 => 1922,
70 => 1922, 71 => 1922, 72 => 1922, 73 => 1922,
86 => 1922, 91 => 1922, 94 => 1922, 97 => 1922,
99 => 1922, 103 => 1922, others => 0),
1349 =>
(85 => 34712, others => 0),
1350 =>
(51 => 34715, 78 => 34714, 85 => 34713, 103 => 32885,
others => 0),
1351 =>
(0 => 1924, 15 => 1924, 34 => 1924, 35 => 1924,
39 => 1924, 40 => 1924, 41 => 1924, 46 => 1924,
56 => 1924, 60 => 1924, 67 => 1924, 68 => 1924,
70 => 1924, 71 => 1924, 72 => 1924, 73 => 1924,
86 => 1924, 91 => 1924, 94 => 1924, 97 => 1924,
99 => 1924, 103 => 1924, others => 0),
1352 =>
(85 => 34717, others => 0),
1353 =>
(29 => 32865, 53 => 34719, 85 => 34718, 103 => 32885,
others => 0),
1354 =>
(0 => 1814, 15 => 1814, 34 => 1814, 35 => 1814,
39 => 1814, 40 => 1814, 41 => 1814, 46 => 1814,
56 => 1814, 60 => 1814, 67 => 1814, 68 => 1814,
70 => 1814, 71 => 1814, 72 => 1814, 73 => 1814,
86 => 1814, 91 => 1814, 94 => 1814, 97 => 1814,
99 => 1814, 103 => 1814, others => 0),
1355 =>
(29 => 32865, 85 => 34721, others => 0),
1356 =>
(34 => 34723, 37 => 34722, others => 0),
1357 =>
(46 => 32807, 85 => 34724, others => 0),
1358 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1359 =>
(0 => 1920, 15 => 1920, 34 => 1920, 35 => 1920,
39 => 1920, 40 => 1920, 41 => 1920, 46 => 1920,
56 => 1920, 60 => 1920, 67 => 1920, 68 => 1920,
70 => 1920, 71 => 1920, 72 => 1920, 73 => 1920,
86 => 1920, 91 => 1920, 94 => 1920, 97 => 1920,
99 => 1920, 103 => 1920, others => 0),
1360 =>
(85 => 34727, others => 0),
1361 =>
(46 => 32807, 85 => 34728, others => 0),
1362 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1363 =>
(15 => 34732, 34 => 34731, others => 0),
1364 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1365 =>
(0 => 1300, 15 => 1300, 34 => 1300, 35 => 1300,
39 => 1300, 40 => 1300, 41 => 1300, 46 => 1300,
56 => 1300, 60 => 1300, 67 => 1300, 68 => 1300,
70 => 1300, 71 => 1300, 72 => 1300, 73 => 1300,
86 => 1300, 91 => 1300, 94 => 1300, 97 => 1300,
99 => 1300, 103 => 1300, others => 0),
1366 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1367 =>
(3 => 34738, 15 => 34737, 34 => 34736, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 34735, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1368 =>
(51 => 34742, 85 => 34741, others => 0),
1369 =>
(0 => 1200, 15 => 1200, 34 => 1200, 35 => 1200,
39 => 1200, 40 => 1200, 41 => 1200, 46 => 1200,
56 => 1200, 60 => 1200, 67 => 1200, 68 => 1200,
70 => 1200, 71 => 1200, 72 => 1200, 73 => 1200,
86 => 1200, 91 => 1200, 94 => 1200, 97 => 1200,
99 => 1200, 103 => 1200, others => 0),
1370 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1371 =>
(3 => 34747, 15 => 34746, 34 => 34745, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 34744, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1372 =>
(51 => 34751, 85 => 34750, others => 0),
1373 =>
(80 => 34752, others => 0),
1374 =>
(29 => 32865, 53 => 34754, 85 => 34753, 103 => 32885,
others => 0),
1375 =>
(51 => 34757, 85 => 34756, 103 => 32885, others => 0),
1376 =>
(40 => 659, 46 => 659, 68 => 659, 70 => 659,
72 => 659, 97 => 659, 99 => 659, 103 => 659,
others => 0),
1377 =>
(85 => 34759, others => 0),
1378 =>
(40 => 657, 46 => 657, 68 => 657, 70 => 657,
72 => 657, 97 => 657, 99 => 657, 103 => 657,
others => 0),
1379 =>
(85 => 34760, others => 0),
1380 =>
(40 => 653, 46 => 653, 68 => 653, 70 => 653,
72 => 653, 97 => 653, 99 => 653, 103 => 653,
others => 0),
1381 =>
(85 => 34761, 103 => 32885, others => 0),
1382 =>
(85 => 34763, 103 => 32885, others => 0),
1383 =>
(85 => 34765, others => 0),
1384 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 34766,
103 => 32885, others => 0),
1385 =>
(40 => 655, 46 => 655, 68 => 655, 70 => 655,
72 => 655, 97 => 655, 99 => 655, 103 => 655,
others => 0),
1386 =>
(85 => 34768, others => 0),
1387 =>
(29 => 32865, 53 => 34770, 85 => 34769, 103 => 32885,
others => 0),
1388 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1389 =>
(40 => 549, 46 => 549, 68 => 549, 70 => 549,
72 => 549, 97 => 549, 99 => 549, 103 => 549,
others => 0),
1390 =>
(3 => 34774, 17 => 34773, 19 => 32869, 46 => 32807,
90 => 32868, others => 0),
1391 =>
(85 => 34776, others => 0),
1392 =>
(40 => 525, 46 => 525, 68 => 525, 70 => 525,
72 => 525, 97 => 525, 99 => 525, 103 => 525,
others => 0),
1393 =>
(3 => 34778, 17 => 34777, 19 => 32869, 46 => 32807,
90 => 32868, others => 0),
1394 =>
(85 => 34780, others => 0),
1395 =>
(80 => 34781, others => 0),
1396 =>
(61 => 34782, others => 0),
1397 =>
(13 => 34783, 83 => 285, 85 => 285, others => 0),
1398 =>
(13 => 34784, 83 => 283, 85 => 283, others => 0),
1399 =>
(83 => 279, 85 => 279, others => 0),
1400 =>
(46 => 32838, others => 0),
1401 =>
(51 => 1507, 85 => 1507, 103 => 1507, others => 0),
1402 =>
(85 => 626, 103 => 626, others => 0),
1403 =>
(9 => 34787, 85 => 469, 103 => 34786, others => 0),
1404 =>
(7 => 33688, 19 => 32869, 23 => 33687, 40 => 34791,
46 => 32807, 60 => 33685, 72 => 34790, 73 => 34789,
90 => 32868, others => 0),
1405 =>
(19 => 32869, 46 => 32807, 71 => 34794, 90 => 32868,
others => 0),
1406 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1407 =>
(85 => 474, others => 0),
1408 =>
(9 => 34797, 85 => 463, 103 => 34796, others => 0),
1409 =>
(85 => 476, 103 => 476, others => 0),
1410 =>
(9 => 106, 85 => 106, 103 => 106, others => 0),
1411 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1412 =>
(17 => 34800, others => 0),
1413 =>
(12 => 273, 21 => 273, 57 => 273, 83 => 273,
others => 0),
1414 =>
(21 => 34802, 83 => 34801, others => 0),
1415 =>
(21 => 34805, 83 => 34804, others => 0),
1416 =>
(8 => 2096, 10 => 1694, 12 => 2134, 21 => 2134,
26 => 2134, 27 => 2134, 29 => 1694, 30 => 2096,
31 => 2096, 45 => 2096, 53 => 1694, 57 => 2134,
58 => 2096, 69 => 2096, 75 => 2134, 77 => 2096,
83 => 2134, 87 => 2096, 89 => 2096, others => 0),
1417 =>
(12 => 272, 21 => 272, 57 => 272, 83 => 272,
others => 0),
1418 =>
(8 => 33263, 30 => 34807, 31 => 33262, 45 => 33258,
58 => 33253, 69 => 33251, 77 => 33250, 87 => 33249,
89 => 33248, others => 0),
1419 =>
(21 => 271, 26 => 34003, 27 => 34002, 75 => 34808,
83 => 271, others => 0),
1420 =>
(53 => 34810, 85 => 404, 103 => 404, others => 0),
1421 =>
(53 => 34812, 80 => 34811, others => 0),
1422 =>
(46 => 32838, others => 0),
1423 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1424 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34815,
90 => 32868, others => 0),
1425 =>
(46 => 32838, others => 0),
1426 =>
(85 => 397, 103 => 397, others => 0),
1427 =>
(85 => 625, 103 => 625, others => 0),
1428 =>
(71 => 34819, others => 0),
1429 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1430 =>
(9 => 34822, 85 => 457, 103 => 34821, others => 0),
1431 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1432 =>
(40 => 433, 46 => 433, 68 => 433, 70 => 433,
72 => 433, 97 => 433, 99 => 433, 103 => 433,
others => 0),
1433 =>
(9 => 34179, 85 => 554, 103 => 554, others => 0),
1434 =>
(40 => 550, 46 => 550, 68 => 550, 70 => 550,
72 => 550, 97 => 550, 99 => 550, 103 => 550,
others => 0),
1435 =>
(40 => 435, 46 => 435, 68 => 435, 70 => 435,
72 => 435, 97 => 435, 99 => 435, 103 => 435,
others => 0),
1436 =>
(40 => 432, 46 => 432, 68 => 432, 70 => 432,
72 => 432, 97 => 432, 99 => 432, 103 => 432,
others => 0),
1437 =>
(85 => 34825, others => 0),
1438 =>
(0 => 1470, 15 => 1470, 34 => 1470, 39 => 1470,
40 => 1470, 41 => 1470, 46 => 1470, 56 => 1470,
60 => 1470, 67 => 1470, 68 => 1470, 70 => 1470,
71 => 1470, 72 => 1470, 73 => 1470, 86 => 1470,
91 => 1470, 94 => 1470, 97 => 1470, 99 => 1470,
103 => 1470, others => 0),
1439 =>
(0 => 1461, 15 => 1461, 34 => 1461, 39 => 1461,
40 => 1461, 41 => 1461, 46 => 1461, 56 => 1461,
60 => 1461, 67 => 1461, 68 => 1461, 70 => 1461,
71 => 1461, 72 => 1461, 73 => 1461, 86 => 1461,
91 => 1461, 94 => 1461, 97 => 1461, 99 => 1461,
103 => 1461, others => 0),
1440 =>
(85 => 34826, others => 0),
1441 =>
(0 => 1466, 15 => 1466, 34 => 1466, 39 => 1466,
40 => 1466, 41 => 1466, 46 => 1466, 56 => 1466,
60 => 1466, 67 => 1466, 68 => 1466, 70 => 1466,
71 => 1466, 72 => 1466, 73 => 1466, 86 => 1466,
91 => 1466, 94 => 1466, 97 => 1466, 99 => 1466,
103 => 1466, others => 0),
1442 =>
(0 => 1453, 15 => 1453, 34 => 1453, 39 => 1453,
40 => 1453, 41 => 1453, 46 => 1453, 56 => 1453,
60 => 1453, 67 => 1453, 68 => 1453, 70 => 1453,
71 => 1453, 72 => 1453, 73 => 1453, 86 => 1453,
91 => 1453, 94 => 1453, 97 => 1453, 99 => 1453,
103 => 1453, others => 0),
1443 =>
(29 => 32865, 85 => 34827, others => 0),
1444 =>
(46 => 32807, 85 => 34828, others => 0),
1445 =>
(0 => 1454, 15 => 1454, 34 => 1454, 39 => 1454,
40 => 1454, 41 => 1454, 46 => 1454, 56 => 1454,
60 => 1454, 67 => 1454, 68 => 1454, 70 => 1454,
71 => 1454, 72 => 1454, 73 => 1454, 86 => 1454,
91 => 1454, 94 => 1454, 97 => 1454, 99 => 1454,
103 => 1454, others => 0),
1446 =>
(46 => 32807, 85 => 34830, others => 0),
1447 =>
(34 => 34832, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1448 =>
(0 => 1449, 15 => 1449, 34 => 1449, 39 => 1449,
40 => 1449, 41 => 1449, 46 => 1449, 56 => 1449,
60 => 1449, 67 => 1449, 68 => 1449, 70 => 1449,
71 => 1449, 72 => 1449, 73 => 1449, 86 => 1449,
91 => 1449, 94 => 1449, 97 => 1449, 99 => 1449,
103 => 1449, others => 0),
1449 =>
(29 => 32865, 85 => 34833, others => 0),
1450 =>
(46 => 32807, 85 => 34834, others => 0),
1451 =>
(34 => 34836, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1452 =>
(0 => 1443, 15 => 1443, 34 => 1443, 39 => 1443,
40 => 1443, 41 => 1443, 46 => 1443, 56 => 1443,
60 => 1443, 67 => 1443, 68 => 1443, 70 => 1443,
71 => 1443, 72 => 1443, 73 => 1443, 86 => 1443,
91 => 1443, 94 => 1443, 97 => 1443, 99 => 1443,
103 => 1443, others => 0),
1453 =>
(29 => 32865, 85 => 34837, others => 0),
1454 =>
(34 => 34838, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1455 =>
(46 => 32807, 85 => 34840, others => 0),
1456 =>
(85 => 34842, 103 => 32885, others => 0),
1457 =>
(0 => 1378, 15 => 1378, 34 => 1378, 39 => 1378,
40 => 1378, 41 => 1378, 46 => 1378, 56 => 1378,
60 => 1378, 67 => 1378, 68 => 1378, 70 => 1378,
71 => 1378, 72 => 1378, 73 => 1378, 86 => 1378,
91 => 1378, 94 => 1378, 97 => 1378, 99 => 1378,
103 => 1378, others => 0),
1458 =>
(0 => 1370, 15 => 1370, 34 => 1370, 39 => 1370,
40 => 1370, 41 => 1370, 46 => 1370, 56 => 1370,
60 => 1370, 67 => 1370, 68 => 1370, 70 => 1370,
71 => 1370, 72 => 1370, 73 => 1370, 86 => 1370,
91 => 1370, 94 => 1370, 97 => 1370, 99 => 1370,
103 => 1370, others => 0),
1459 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34844,
90 => 32868, others => 0),
1460 =>
(0 => 1474, 15 => 1474, 34 => 1474, 39 => 1474,
40 => 1474, 41 => 1474, 46 => 1474, 56 => 1474,
60 => 1474, 67 => 1474, 68 => 1474, 70 => 1474,
71 => 1474, 72 => 1474, 73 => 1474, 86 => 1474,
91 => 1474, 94 => 1474, 97 => 1474, 99 => 1474,
103 => 1474, others => 0),
1461 =>
(13 => 34848, 85 => 34847, 103 => 32885, others => 0),
1462 =>
(9 => 33243, 64 => 33242, 85 => 34850, 103 => 32885,
104 => 33241, others => 0),
1463 =>
(40 => 601, 46 => 601, 68 => 601, 70 => 601,
72 => 601, 97 => 601, 99 => 601, 103 => 601,
others => 0),
1464 =>
(9 => 33243, 64 => 33242, 85 => 34852, 103 => 32885,
104 => 33241, others => 0),
1465 =>
(40 => 581, 46 => 581, 68 => 581, 70 => 581,
72 => 581, 97 => 581, 99 => 581, 103 => 581,
others => 0),
1466 =>
(40 => 34855, 72 => 34854, others => 0),
1467 =>
(13 => 36, 51 => 36, 53 => 34856, 78 => 36,
83 => 36, 85 => 36, 103 => 36, others => 0),
1468 =>
(53 => 34858, 80 => 34857, others => 0),
1469 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1470 =>
(13 => 30, 51 => 30, 78 => 30, 83 => 30,
85 => 30, 103 => 30, others => 0),
1471 =>
(40 => 586, 46 => 586, 68 => 586, 70 => 586,
72 => 586, 97 => 586, 99 => 586, 103 => 586,
others => 0),
1472 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1473 =>
(85 => 34861, others => 0),
1474 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1475 =>
(40 => 594, 46 => 594, 68 => 594, 70 => 594,
72 => 594, 97 => 594, 99 => 594, 103 => 594,
others => 0),
1476 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1477 =>
(85 => 34864, others => 0),
1478 =>
(40 => 566, 46 => 566, 68 => 566, 70 => 566,
72 => 566, 97 => 566, 99 => 566, 103 => 566,
others => 0),
1479 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1480 =>
(85 => 34866, others => 0),
1481 =>
(13 => 34868, 85 => 34867, 103 => 32885, others => 0),
1482 =>
(9 => 33243, 64 => 33242, 85 => 34870, 103 => 32885,
104 => 33241, others => 0),
1483 =>
(40 => 597, 46 => 597, 68 => 597, 70 => 597,
72 => 597, 97 => 597, 99 => 597, 103 => 597,
others => 0),
1484 =>
(9 => 33243, 64 => 33242, 85 => 34872, 103 => 32885,
104 => 33241, others => 0),
1485 =>
(40 => 573, 46 => 573, 68 => 573, 70 => 573,
72 => 573, 97 => 573, 99 => 573, 103 => 573,
others => 0),
1486 =>
(46 => 32838, others => 0),
1487 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34875,
90 => 32868, others => 0),
1488 =>
(46 => 32838, others => 0),
1489 =>
(83 => 34879, others => 0),
1490 =>
(61 => 34880, others => 0),
1491 =>
(13 => 64, 51 => 64, 78 => 64, 83 => 64,
85 => 64, 103 => 64, others => 0),
1492 =>
(13 => 56, 51 => 56, 78 => 56, 83 => 56,
85 => 56, 103 => 56, others => 0),
1493 =>
(83 => 34881, others => 0),
1494 =>
(40 => 604, 46 => 604, 68 => 604, 70 => 604,
72 => 604, 97 => 604, 99 => 604, 103 => 604,
others => 0),
1495 =>
(85 => 34882, others => 0),
1496 =>
(40 => 588, 46 => 588, 68 => 588, 70 => 588,
72 => 588, 97 => 588, 99 => 588, 103 => 588,
others => 0),
1497 =>
(85 => 34883, others => 0),
1498 =>
(0 => 1469, 15 => 1469, 34 => 1469, 39 => 1469,
40 => 1469, 41 => 1469, 46 => 1469, 56 => 1469,
60 => 1469, 67 => 1469, 68 => 1469, 70 => 1469,
71 => 1469, 72 => 1469, 73 => 1469, 86 => 1469,
91 => 1469, 94 => 1469, 97 => 1469, 99 => 1469,
103 => 1469, others => 0),
1499 =>
(85 => 34884, others => 0),
1500 =>
(85 => 34885, 103 => 32885, others => 0),
1501 =>
(0 => 1465, 15 => 1465, 34 => 1465, 39 => 1465,
40 => 1465, 41 => 1465, 46 => 1465, 56 => 1465,
60 => 1465, 67 => 1465, 68 => 1465, 70 => 1465,
71 => 1465, 72 => 1465, 73 => 1465, 86 => 1465,
91 => 1465, 94 => 1465, 97 => 1465, 99 => 1465,
103 => 1465, others => 0),
1502 =>
(85 => 34887, others => 0),
1503 =>
(46 => 32807, 85 => 34888, others => 0),
1504 =>
(34 => 34890, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1505 =>
(0 => 1431, 15 => 1431, 34 => 1431, 39 => 1431,
40 => 1431, 41 => 1431, 46 => 1431, 56 => 1431,
60 => 1431, 67 => 1431, 68 => 1431, 70 => 1431,
71 => 1431, 72 => 1431, 73 => 1431, 86 => 1431,
91 => 1431, 94 => 1431, 97 => 1431, 99 => 1431,
103 => 1431, others => 0),
1506 =>
(29 => 32865, 85 => 34891, others => 0),
1507 =>
(34 => 34892, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1508 =>
(46 => 32807, 85 => 34894, others => 0),
1509 =>
(34 => 34896, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
1510 =>
(46 => 32807, 85 => 34898, others => 0),
1511 =>
(34 => 34901, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 71 => 34900, 72 => 32820, 73 => 33047,
91 => 32955, 94 => 33046, 97 => 32953, 99 => 32771,
others => 0),
1512 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1513 =>
(0 => 1375, 15 => 1375, 34 => 1375, 39 => 1375,
40 => 1375, 41 => 1375, 46 => 1375, 56 => 1375,
60 => 1375, 67 => 1375, 68 => 1375, 70 => 1375,
71 => 1375, 72 => 1375, 73 => 1375, 86 => 1375,
91 => 1375, 94 => 1375, 97 => 1375, 99 => 1375,
103 => 1375, others => 0),
1514 =>
(85 => 34903, others => 0),
1515 =>
(0 => 1363, 15 => 1363, 34 => 1363, 39 => 1363,
40 => 1363, 41 => 1363, 46 => 1363, 56 => 1363,
60 => 1363, 67 => 1363, 68 => 1363, 70 => 1363,
71 => 1363, 72 => 1363, 73 => 1363, 86 => 1363,
91 => 1363, 94 => 1363, 97 => 1363, 99 => 1363,
103 => 1363, others => 0),
1516 =>
(85 => 34904, others => 0),
1517 =>
(80 => 34905, others => 0),
1518 =>
(0 => 1473, 15 => 1473, 34 => 1473, 39 => 1473,
40 => 1473, 41 => 1473, 46 => 1473, 56 => 1473,
60 => 1473, 67 => 1473, 68 => 1473, 70 => 1473,
71 => 1473, 72 => 1473, 73 => 1473, 86 => 1473,
91 => 1473, 94 => 1473, 97 => 1473, 99 => 1473,
103 => 1473, others => 0),
1519 =>
(85 => 34906, others => 0),
1520 =>
(0 => 1270, 15 => 1270, 34 => 1270, 35 => 1270,
39 => 1270, 40 => 1270, 41 => 1270, 46 => 1270,
56 => 1270, 60 => 1270, 67 => 1270, 68 => 1270,
70 => 1270, 71 => 1270, 72 => 1270, 73 => 1270,
86 => 1270, 91 => 1270, 94 => 1270, 97 => 1270,
99 => 1270, 103 => 1270, others => 0),
1521 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1522 =>
(3 => 34911, 15 => 34910, 34 => 34909, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 34908, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1523 =>
(51 => 34915, 85 => 34914, others => 0),
1524 =>
(0 => 1336, 15 => 1336, 34 => 1336, 35 => 1336,
39 => 1336, 40 => 1336, 41 => 1336, 46 => 1336,
56 => 1336, 60 => 1336, 67 => 1336, 68 => 1336,
70 => 1336, 71 => 1336, 72 => 1336, 73 => 1336,
86 => 1336, 91 => 1336, 94 => 1336, 97 => 1336,
99 => 1336, 103 => 1336, others => 0),
1525 =>
(85 => 34916, others => 0),
1526 =>
(0 => 1338, 15 => 1338, 34 => 1338, 35 => 1338,
39 => 1338, 40 => 1338, 41 => 1338, 46 => 1338,
56 => 1338, 60 => 1338, 67 => 1338, 68 => 1338,
70 => 1338, 71 => 1338, 72 => 1338, 73 => 1338,
86 => 1338, 91 => 1338, 94 => 1338, 97 => 1338,
99 => 1338, 103 => 1338, others => 0),
1527 =>
(85 => 34917, others => 0),
1528 =>
(0 => 1159, 15 => 1159, 34 => 1159, 35 => 1159,
39 => 1159, 40 => 1159, 41 => 1159, 46 => 1159,
56 => 1159, 60 => 1159, 67 => 1159, 68 => 1159,
70 => 1159, 71 => 1159, 72 => 1159, 73 => 1159,
86 => 1159, 91 => 1159, 94 => 1159, 97 => 1159,
99 => 1159, 103 => 1159, others => 0),
1529 =>
(85 => 34918, others => 0),
1530 =>
(85 => 256, others => 0),
1531 =>
(29 => 32865, 85 => 255, others => 0),
1532 =>
(34 => 34920, 37 => 34919, others => 0),
1533 =>
(0 => 1332, 15 => 1332, 34 => 1332, 35 => 1332,
39 => 1332, 40 => 1332, 41 => 1332, 46 => 1332,
56 => 1332, 60 => 1332, 67 => 1332, 68 => 1332,
70 => 1332, 71 => 1332, 72 => 1332, 73 => 1332,
86 => 1332, 91 => 1332, 94 => 1332, 97 => 1332,
99 => 1332, 103 => 1332, others => 0),
1534 =>
(85 => 34921, others => 0),
1535 =>
(0 => 1334, 15 => 1334, 34 => 1334, 35 => 1334,
39 => 1334, 40 => 1334, 41 => 1334, 46 => 1334,
56 => 1334, 60 => 1334, 67 => 1334, 68 => 1334,
70 => 1334, 71 => 1334, 72 => 1334, 73 => 1334,
86 => 1334, 91 => 1334, 94 => 1334, 97 => 1334,
99 => 1334, 103 => 1334, others => 0),
1536 =>
(85 => 34922, others => 0),
1537 =>
(46 => 32807, 85 => 34923, 90 => 32868, others => 0),
1538 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1539 =>
(46 => 32807, 85 => 34926, 90 => 32868, others => 0),
1540 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1541 =>
(15 => 34930, 34 => 34929, others => 0),
1542 =>
(0 => 1276, 15 => 1276, 34 => 1276, 35 => 1276,
39 => 1276, 40 => 1276, 41 => 1276, 46 => 1276,
56 => 1276, 60 => 1276, 67 => 1276, 68 => 1276,
70 => 1276, 71 => 1276, 72 => 1276, 73 => 1276,
86 => 1276, 91 => 1276, 94 => 1276, 97 => 1276,
99 => 1276, 103 => 1276, others => 0),
1543 =>
(85 => 34931, others => 0),
1544 =>
(0 => 1278, 15 => 1278, 34 => 1278, 35 => 1278,
39 => 1278, 40 => 1278, 41 => 1278, 46 => 1278,
56 => 1278, 60 => 1278, 67 => 1278, 68 => 1278,
70 => 1278, 71 => 1278, 72 => 1278, 73 => 1278,
86 => 1278, 91 => 1278, 94 => 1278, 97 => 1278,
99 => 1278, 103 => 1278, others => 0),
1545 =>
(85 => 34932, others => 0),
1546 =>
(0 => 1015, 15 => 1015, 34 => 1015, 35 => 1015,
39 => 1015, 40 => 1015, 41 => 1015, 46 => 1015,
56 => 1015, 60 => 1015, 67 => 1015, 68 => 1015,
70 => 1015, 71 => 1015, 72 => 1015, 73 => 1015,
86 => 1015, 91 => 1015, 94 => 1015, 97 => 1015,
99 => 1015, 103 => 1015, others => 0),
1547 =>
(85 => 34933, others => 0),
1548 =>
(34 => 34935, 37 => 34934, others => 0),
1549 =>
(0 => 1272, 15 => 1272, 34 => 1272, 35 => 1272,
39 => 1272, 40 => 1272, 41 => 1272, 46 => 1272,
56 => 1272, 60 => 1272, 67 => 1272, 68 => 1272,
70 => 1272, 71 => 1272, 72 => 1272, 73 => 1272,
86 => 1272, 91 => 1272, 94 => 1272, 97 => 1272,
99 => 1272, 103 => 1272, others => 0),
1550 =>
(85 => 34936, others => 0),
1551 =>
(0 => 1274, 15 => 1274, 34 => 1274, 35 => 1274,
39 => 1274, 40 => 1274, 41 => 1274, 46 => 1274,
56 => 1274, 60 => 1274, 67 => 1274, 68 => 1274,
70 => 1274, 71 => 1274, 72 => 1274, 73 => 1274,
86 => 1274, 91 => 1274, 94 => 1274, 97 => 1274,
99 => 1274, 103 => 1274, others => 0),
1552 =>
(85 => 34937, others => 0),
1553 =>
(46 => 32807, 85 => 34938, 90 => 32868, others => 0),
1554 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1555 =>
(46 => 32807, 85 => 34941, 90 => 32868, others => 0),
1556 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1557 =>
(15 => 34945, 34 => 34944, others => 0),
1558 =>
(61 => 34946, others => 0),
1559 =>
(51 => 34949, 78 => 34948, 85 => 34947, 103 => 32885,
others => 0),
1560 =>
(51 => 34953, 78 => 34952, 85 => 34951, 103 => 32885,
others => 0),
1561 =>
(83 => 34955, others => 0),
1562 =>
(0 => 1394, 15 => 1394, 34 => 1394, 39 => 1394,
40 => 1394, 41 => 1394, 46 => 1394, 56 => 1394,
60 => 1394, 67 => 1394, 68 => 1394, 70 => 1394,
71 => 1394, 72 => 1394, 73 => 1394, 86 => 1394,
91 => 1394, 94 => 1394, 97 => 1394, 99 => 1394,
103 => 1394, others => 0),
1563 =>
(12 => 190, 100 => 190, others => 0),
1564 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1565 =>
(21 => 197, 83 => 197, others => 0),
1566 =>
(15 => 34438, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1567 =>
(34 => 34468, 35 => 34467, 39 => 32961, 40 => 34466,
60 => 34465, 67 => 34464, 70 => 32775, 72 => 34463,
others => 0),
1568 =>
(83 => 34957, others => 0),
1569 =>
(46 => 32838, others => 0),
1570 =>
(15 => 33287, 34 => 33286, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1571 =>
(51 => 33291, others => 0),
1572 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 34959,
90 => 32868, others => 0),
1573 =>
(46 => 32838, others => 0),
1574 =>
(51 => 34964, 53 => 34963, 103 => 32885, others => 0),
1575 =>
(53 => 34967, 80 => 34966, others => 0),
1576 =>
(61 => 34968, others => 0),
1577 =>
(51 => 34969, 103 => 32885, others => 0),
1578 =>
(51 => 34971, 103 => 32885, others => 0),
1579 =>
(83 => 34973, others => 0),
1580 =>
(9 => 33243, 21 => 113, 51 => 113, 64 => 33242,
85 => 113, 104 => 33241, others => 0),
1581 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1582 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1583 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1584 =>
(13 => 34977, 83 => 1680, 85 => 1680, others => 0),
1585 =>
(61 => 34978, others => 0),
1586 =>
(13 => 34979, 83 => 1670, 85 => 1670, others => 0),
1587 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1588 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1589 =>
(61 => 34982, others => 0),
1590 =>
(13 => 34983, 83 => 1662, 85 => 1662, others => 0),
1591 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1592 =>
(19 => 32869, 46 => 32807, 60 => 34985, 90 => 32868,
others => 0),
1593 =>
(61 => 34987, others => 0),
1594 =>
(13 => 34988, 83 => 1658, 85 => 1658, others => 0),
1595 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1596 =>
(9 => 33243, 64 => 33242, 83 => 1683, 85 => 1683,
104 => 33241, others => 0),
1597 =>
(9 => 33243, 64 => 33242, 83 => 1681, 85 => 1681,
104 => 33241, others => 0),
1598 =>
(0 => 1946, 15 => 1946, 34 => 1946, 35 => 1946,
39 => 1946, 40 => 1946, 41 => 1946, 46 => 1946,
56 => 1946, 60 => 1946, 67 => 1946, 68 => 1946,
70 => 1946, 71 => 1946, 72 => 1946, 73 => 1946,
86 => 1946, 91 => 1946, 94 => 1946, 97 => 1946,
99 => 1946, 103 => 1946, others => 0),
1599 =>
(85 => 34990, others => 0),
1600 =>
(0 => 1948, 15 => 1948, 34 => 1948, 35 => 1948,
39 => 1948, 40 => 1948, 41 => 1948, 46 => 1948,
56 => 1948, 60 => 1948, 67 => 1948, 68 => 1948,
70 => 1948, 71 => 1948, 72 => 1948, 73 => 1948,
86 => 1948, 91 => 1948, 94 => 1948, 97 => 1948,
99 => 1948, 103 => 1948, others => 0),
1601 =>
(85 => 34991, others => 0),
1602 =>
(0 => 1886, 15 => 1886, 34 => 1886, 35 => 1886,
39 => 1886, 40 => 1886, 41 => 1886, 46 => 1886,
56 => 1886, 60 => 1886, 67 => 1886, 68 => 1886,
70 => 1886, 71 => 1886, 72 => 1886, 73 => 1886,
86 => 1886, 91 => 1886, 94 => 1886, 97 => 1886,
99 => 1886, 103 => 1886, others => 0),
1603 =>
(29 => 32865, 85 => 34992, others => 0),
1604 =>
(34 => 34994, 37 => 34993, others => 0),
1605 =>
(46 => 32807, 85 => 34995, others => 0),
1606 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1607 =>
(0 => 1944, 15 => 1944, 34 => 1944, 35 => 1944,
39 => 1944, 40 => 1944, 41 => 1944, 46 => 1944,
56 => 1944, 60 => 1944, 67 => 1944, 68 => 1944,
70 => 1944, 71 => 1944, 72 => 1944, 73 => 1944,
86 => 1944, 91 => 1944, 94 => 1944, 97 => 1944,
99 => 1944, 103 => 1944, others => 0),
1608 =>
(85 => 34998, others => 0),
1609 =>
(46 => 32807, 85 => 34999, others => 0),
1610 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1611 =>
(15 => 35003, 34 => 35002, others => 0),
1612 =>
(15 => 1488, 34 => 1488, 39 => 1488, 40 => 1488,
41 => 1488, 46 => 1488, 60 => 1488, 67 => 1488,
68 => 1488, 70 => 1488, 71 => 1488, 72 => 1488,
73 => 1488, 91 => 1488, 94 => 1488, 97 => 1488,
99 => 1488, others => 0),
1613 =>
(85 => 35004, 103 => 32885, others => 0),
1614 =>
(61 => 33843, 71 => 35006, 76 => 33840, others => 0),
1615 =>
(85 => 2047, 103 => 2047, others => 0),
1616 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1617 =>
(85 => 35009, others => 0),
1618 =>
(46 => 32807, 90 => 32868, others => 0),
1619 =>
(18 => 212, 34 => 212, 39 => 212, 46 => 212,
70 => 212, 101 => 212, others => 0),
1620 =>
(18 => 211, 34 => 211, 39 => 211, 46 => 211,
70 => 211, 101 => 211, others => 0),
1621 =>
(18 => 34386, 34 => 218, 39 => 32961, 46 => 32838,
70 => 32775, 101 => 218, others => 0),
1622 =>
(34 => 35014, others => 0),
1623 =>
(20 => 35015, others => 0),
1624 =>
(34 => 219, 101 => 219, others => 0),
1625 =>
(8 => 33263, 30 => 35016, 31 => 33262, 45 => 33258,
58 => 33253, 69 => 33251, 77 => 33250, 87 => 33249,
89 => 33248, others => 0),
1626 =>
(15 => 1766, 34 => 1766, 39 => 1766, 40 => 1766,
41 => 1766, 46 => 1766, 60 => 1766, 67 => 1766,
68 => 1766, 70 => 1766, 71 => 1766, 72 => 1766,
73 => 1766, 91 => 1766, 94 => 1766, 97 => 1766,
99 => 1766, others => 0),
1627 =>
(85 => 35017, others => 0),
1628 =>
(85 => 2039, 103 => 2039, others => 0),
1629 =>
(5 => 35018, others => 0),
1630 =>
(9 => 33678, 85 => 35020, 103 => 35019, others => 0),
1631 =>
(9 => 33243, 64 => 33242, 85 => 1554, 103 => 1554,
104 => 33241, others => 0),
1632 =>
(85 => 35023, 103 => 32885, others => 0),
1633 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1634 =>
(85 => 2048, 103 => 2048, others => 0),
1635 =>
(21 => 241, 83 => 241, others => 0),
1636 =>
(21 => 238, 83 => 238, others => 0),
1637 =>
(21 => 353, 83 => 353, others => 0),
1638 =>
(21 => 352, 83 => 352, others => 0),
1639 =>
(21 => 35027, 83 => 35026, others => 0),
1640 =>
(9 => 34179, 85 => 1501, 103 => 1501, others => 0),
1641 =>
(8 => 33263, 31 => 33262, 45 => 33258, 58 => 33253,
69 => 33251, 75 => 35029, 77 => 33250, 85 => 394,
87 => 33249, 89 => 33248, 103 => 394, others => 0),
1642 =>
(8 => 33263, 27 => 35031, 31 => 33262, 45 => 33258,
58 => 33253, 69 => 33251, 75 => 35029, 77 => 33250,
87 => 33249, 89 => 33248, others => 0),
1643 =>
(40 => 35034, 72 => 35033, others => 0),
1644 =>
(53 => 35035, 85 => 76, 103 => 76, others => 0),
1645 =>
(53 => 35037, 80 => 35036, others => 0),
1646 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1647 =>
(85 => 68, 103 => 68, others => 0),
1648 =>
(56 => 35040, 61 => 33843, 71 => 35039, 76 => 33840,
others => 0),
1649 =>
(59 => 35042, others => 0),
1650 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1651 =>
(59 => 35044, others => 0),
1652 =>
(9 => 33678, 85 => 1500, 103 => 1500, others => 0),
1653 =>
(15 => 679, 34 => 679, 39 => 679, 40 => 679,
41 => 679, 46 => 679, 60 => 679, 67 => 679,
68 => 679, 70 => 679, 71 => 679, 72 => 679,
73 => 679, 91 => 679, 94 => 679, 97 => 679,
99 => 679, others => 0),
1654 =>
(85 => 35046, others => 0),
1655 =>
(56 => 35049, 61 => 33843, 71 => 35048, 76 => 33840,
85 => 35047, others => 0),
1656 =>
(50 => 1496, 59 => 35050, others => 0),
1657 =>
(85 => 35051, 103 => 32885, others => 0),
1658 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1659 =>
(50 => 1493, 59 => 35055, 61 => 33843, 71 => 35054,
76 => 33840, others => 0),
1660 =>
(56 => 35059, 59 => 35058, 92 => 35057, 93 => 35056,
others => 0),
1661 =>
(85 => 35060, 103 => 32885, others => 0),
1662 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1663 =>
(85 => 35063, others => 0),
1664 =>
(15 => 2181, 34 => 2181, 39 => 2181, 40 => 2181,
41 => 2181, 46 => 2181, 60 => 2181, 67 => 2181,
68 => 2181, 70 => 2181, 71 => 2181, 72 => 2181,
73 => 2181, 91 => 2181, 94 => 2181, 97 => 2181,
99 => 2181, others => 0),
1665 =>
(34 => 33882, 35 => 33881, 39 => 32961, 59 => 35064,
60 => 33879, 67 => 33878, 70 => 32775, 71 => 33877,
others => 0),
1666 =>
(15 => 2178, 34 => 2178, 39 => 2178, 40 => 2178,
41 => 2178, 46 => 2178, 60 => 2178, 67 => 2178,
68 => 2178, 70 => 2178, 71 => 2178, 72 => 2178,
73 => 2178, 91 => 2178, 94 => 2178, 97 => 2178,
99 => 2178, others => 0),
1667 =>
(34 => 33882, 35 => 33881, 39 => 32961, 59 => 35066,
60 => 33879, 67 => 33878, 70 => 32775, 71 => 33877,
others => 0),
1668 =>
(51 => 35069, 85 => 35068, others => 0),
1669 =>
(85 => 35070, 103 => 32885, others => 0),
1670 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1671 =>
(15 => 35073, others => 0),
1672 =>
(15 => 35074, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1673 =>
(46 => 35076, 85 => 2166, others => 0),
1674 =>
(34 => 35077, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, others => 0),
1675 =>
(46 => 32838, others => 0),
1676 =>
(35 => 35079, others => 0),
1677 =>
(103 => 35080, others => 0),
1678 =>
(9 => 33678, 103 => 1498, others => 0),
1679 =>
(53 => 35083, 85 => 35082, 103 => 32885, others => 0),
1680 =>
(85 => 2167, others => 0),
1681 =>
(15 => 2122, 34 => 2122, 39 => 2122, 40 => 2122,
41 => 2122, 46 => 2122, 60 => 2122, 67 => 2122,
68 => 2122, 70 => 2122, 71 => 2122, 72 => 2122,
73 => 2122, 91 => 2122, 94 => 2122, 97 => 2122,
99 => 2122, others => 0),
1682 =>
(34 => 35085, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, others => 0),
1683 =>
(46 => 35087, 85 => 2162, others => 0),
1684 =>
(34 => 2171, 35 => 2171, 39 => 2171, 60 => 2171,
67 => 2171, 70 => 2171, 71 => 2171, others => 0),
1685 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1686 =>
(85 => 35089, others => 0),
1687 =>
(15 => 2129, 34 => 2129, 39 => 2129, 40 => 2129,
41 => 2129, 46 => 2129, 60 => 2129, 67 => 2129,
68 => 2129, 70 => 2129, 71 => 2129, 72 => 2129,
73 => 2129, 91 => 2129, 94 => 2129, 97 => 2129,
99 => 2129, others => 0),
1688 =>
(85 => 35090, others => 0),
1689 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1690 =>
(85 => 35092, others => 0),
1691 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
59 => 35093, 60 => 33899, 67 => 33898, 70 => 32775,
71 => 33897, 72 => 33896, others => 0),
1692 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
59 => 35095, 60 => 33899, 67 => 33898, 70 => 32775,
71 => 33897, 72 => 33896, others => 0),
1693 =>
(51 => 35097, others => 0),
1694 =>
(85 => 35098, 103 => 32885, others => 0),
1695 =>
(46 => 32815, others => 0),
1696 =>
(40 => 35102, 72 => 35101, others => 0),
1697 =>
(67 => 35103, others => 0),
1698 =>
(46 => 32815, 90 => 32853, others => 0),
1699 =>
(46 => 32838, others => 0),
1700 =>
(46 => 35107, 85 => 35106, others => 0),
1701 =>
(34 => 2005, 35 => 2005, 39 => 2005, 40 => 2005,
60 => 2005, 67 => 2005, 70 => 2005, 72 => 2005,
others => 0),
1702 =>
(34 => 2004, 35 => 2004, 39 => 2004, 40 => 2004,
60 => 2004, 67 => 2004, 70 => 2004, 72 => 2004,
others => 0),
1703 =>
(34 => 2003, 35 => 2003, 39 => 2003, 40 => 2003,
60 => 2003, 67 => 2003, 70 => 2003, 72 => 2003,
others => 0),
1704 =>
(34 => 2001, 35 => 2001, 39 => 2001, 40 => 2001,
60 => 2001, 67 => 2001, 70 => 2001, 72 => 2001,
others => 0),
1705 =>
(34 => 2002, 35 => 2002, 39 => 2002, 40 => 2002,
60 => 2002, 67 => 2002, 70 => 2002, 72 => 2002,
others => 0),
1706 =>
(34 => 2000, 35 => 2000, 39 => 2000, 40 => 2000,
60 => 2000, 67 => 2000, 70 => 2000, 72 => 2000,
others => 0),
1707 =>
(34 => 2007, 35 => 2007, 39 => 2007, 40 => 2007,
60 => 2007, 67 => 2007, 70 => 2007, 72 => 2007,
others => 0),
1708 =>
(34 => 35108, 35 => 34467, 39 => 32961, 40 => 34466,
60 => 34465, 67 => 34464, 70 => 32775, 72 => 34463,
others => 0),
1709 =>
(34 => 35110, 35 => 34467, 39 => 32961, 40 => 34466,
60 => 34465, 67 => 34464, 70 => 32775, 72 => 34463,
others => 0),
1710 =>
(51 => 35112, 53 => 33015, 78 => 32887, 85 => 32886,
103 => 32885, others => 0),
1711 =>
(46 => 35113, 85 => 1987, others => 0),
1712 =>
(34 => 1991, 35 => 1991, 39 => 1991, 40 => 1991,
46 => 1991, 60 => 1991, 67 => 1991, 70 => 1991,
72 => 1991, others => 0),
1713 =>
(34 => 1993, 35 => 1993, 39 => 1993, 40 => 1993,
46 => 1993, 60 => 1993, 67 => 1993, 70 => 1993,
72 => 1993, others => 0),
1714 =>
(34 => 35114, 35 => 33881, 39 => 32961, 40 => 33901,
46 => 32838, 60 => 33899, 67 => 33898, 70 => 32775,
72 => 33896, others => 0),
1715 =>
(34 => 1990, 35 => 1990, 39 => 1990, 40 => 1990,
46 => 1990, 60 => 1990, 67 => 1990, 70 => 1990,
72 => 1990, others => 0),
1716 =>
(46 => 32815, others => 0),
1717 =>
(46 => 32815, 90 => 32853, others => 0),
1718 =>
(35 => 35079, 40 => 35119, 72 => 35118, others => 0),
1719 =>
(103 => 35120, others => 0),
1720 =>
(53 => 33023, 80 => 33022, others => 0),
1721 =>
(85 => 1988, others => 0),
1722 =>
(15 => 2117, 34 => 2117, 39 => 2117, 40 => 2117,
41 => 2117, 46 => 2117, 60 => 2117, 67 => 2117,
68 => 2117, 70 => 2117, 71 => 2117, 72 => 2117,
73 => 2117, 91 => 2117, 94 => 2117, 97 => 2117,
99 => 2117, others => 0),
1723 =>
(34 => 35121, 35 => 33881, 39 => 32961, 40 => 33901,
46 => 32838, 60 => 33899, 67 => 33898, 70 => 32775,
72 => 33896, others => 0),
1724 =>
(46 => 35123, 85 => 1983, others => 0),
1725 =>
(34 => 1998, 35 => 1998, 39 => 1998, 40 => 1998,
60 => 1998, 67 => 1998, 70 => 1998, 71 => 1998,
72 => 1998, others => 0),
1726 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1727 =>
(85 => 35125, others => 0),
1728 =>
(85 => 35126, 103 => 32885, others => 0),
1729 =>
(85 => 35128, 103 => 32885, others => 0),
1730 =>
(2 => 33031, 19 => 33912, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
1731 =>
(21 => 35132, 83 => 611, others => 0),
1732 =>
(17 => 35133, others => 0),
1733 =>
(2 => 33031, 17 => 35134, 19 => 32869, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 69 => 33024, 90 => 32868,
others => 0),
1734 =>
(76 => 35136, others => 0),
1735 =>
(58 => 35137, others => 0),
1736 =>
(19 => 202, 34 => 202, 46 => 202, 70 => 202,
90 => 202, others => 0),
1737 =>
(19 => 32869, 34 => 35138, 46 => 32807, 70 => 32775,
90 => 32868, others => 0),
1738 =>
(19 => 200, 34 => 200, 46 => 200, 70 => 200,
90 => 200, others => 0),
1739 =>
(14 => 35140, others => 0),
1740 =>
(9 => 33243, 64 => 33242, 85 => 35141, 104 => 33241,
others => 0),
1741 =>
(15 => 123, 18 => 123, 34 => 123, 35 => 123,
39 => 123, 40 => 123, 41 => 123, 46 => 123,
60 => 123, 67 => 123, 68 => 123, 70 => 123,
71 => 123, 72 => 123, 73 => 123, 91 => 123,
94 => 123, 97 => 123, 99 => 123, 101 => 123,
others => 0),
1742 =>
(34 => 35142, others => 0),
1743 =>
(4 => 33176, 19 => 32869, 25 => 33172, 46 => 32807,
90 => 32868, 95 => 33464, others => 0),
1744 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1745 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1746 =>
(32 => 2072, 34 => 2072, 64 => 2072, others => 0),
1747 =>
(85 => 35146, others => 0),
1748 =>
(34 => 35147, others => 0),
1749 =>
(4 => 33176, 19 => 32869, 25 => 33172, 46 => 32807,
90 => 32868, 95 => 33464, 101 => 35148, others => 0),
1750 =>
(84 => 35150, others => 0),
1751 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1752 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
1753 =>
(19 => 32869, 23 => 35153, 46 => 32807, 60 => 33685,
90 => 32868, others => 0),
1754 =>
(13 => 35155, 28 => 388, 85 => 388, others => 0),
1755 =>
(34 => 35157, 37 => 35156, others => 0),
1756 =>
(85 => 35158, others => 0),
1757 =>
(9 => 33243, 64 => 33242, 85 => 35159, 104 => 33241,
others => 0),
1758 =>
(46 => 35161, 85 => 35160, others => 0),
1759 =>
(32 => 35164, 33 => 35163, 34 => 35162, others => 0),
1760 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1761 =>
(10 => 1694, 12 => 1506, 29 => 1694, 53 => 1694,
57 => 1506, others => 0),
1762 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1763 =>
(12 => 1531, 57 => 1531, others => 0),
1764 =>
(12 => 271, 21 => 271, 26 => 34003, 27 => 34002,
57 => 271, 75 => 33414, 83 => 271, others => 0),
1765 =>
(63 => 35168, others => 0),
1766 =>
(34 => 35169, others => 0),
1767 =>
(34 => 35170, others => 0),
1768 =>
(1 => 372, 4 => 372, 15 => 372, 18 => 372,
19 => 372, 24 => 372, 25 => 372, 32 => 372,
33 => 372, 34 => 372, 37 => 372, 38 => 372,
39 => 372, 42 => 372, 46 => 372, 47 => 372,
52 => 372, 57 => 372, 61 => 372, 64 => 372,
70 => 372, 74 => 372, 79 => 372, 80 => 372,
84 => 372, 90 => 372, 96 => 372, 101 => 372,
102 => 372, others => 0),
1769 =>
(9 => 33243, 64 => 33242, 85 => 35171, 104 => 33241,
others => 0),
1770 =>
(1 => 251, 4 => 251, 15 => 251, 18 => 251,
19 => 251, 24 => 251, 25 => 251, 32 => 251,
33 => 251, 34 => 251, 37 => 251, 38 => 251,
39 => 251, 42 => 251, 46 => 251, 47 => 251,
52 => 251, 57 => 251, 61 => 251, 64 => 251,
70 => 251, 74 => 251, 79 => 251, 80 => 251,
84 => 251, 90 => 251, 96 => 251, 101 => 251,
102 => 251, others => 0),
1771 =>
(101 => 33976, others => 0),
1772 =>
(46 => 35174, 85 => 35173, others => 0),
1773 =>
(34 => 35176, 37 => 35175, others => 0),
1774 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
1775 =>
(34 => 35178, 101 => 34542, others => 0),
1776 =>
(34 => 35181, others => 0),
1777 =>
(1 => 174, 4 => 174, 15 => 174, 18 => 174,
19 => 174, 24 => 174, 25 => 174, 32 => 174,
33 => 174, 34 => 174, 37 => 174, 38 => 174,
39 => 174, 42 => 174, 46 => 174, 47 => 174,
52 => 174, 57 => 174, 61 => 174, 64 => 174,
70 => 174, 74 => 174, 79 => 174, 80 => 174,
84 => 174, 90 => 174, 96 => 174, 101 => 174,
102 => 174, others => 0),
1778 =>
(85 => 35182, others => 0),
1779 =>
(9 => 33243, 64 => 33242, 83 => 35183, 104 => 33241,
others => 0),
1780 =>
(83 => 35184, others => 0),
1781 =>
(34 => 35186, 37 => 35185, others => 0),
1782 =>
(10 => 1694, 20 => 1563, 29 => 1694, 53 => 1694,
85 => 1563, others => 0),
1783 =>
(1 => 5, 4 => 5, 15 => 5, 18 => 5,
19 => 5, 24 => 5, 25 => 5, 32 => 5,
33 => 5, 34 => 5, 37 => 5, 38 => 5,
39 => 5, 42 => 5, 46 => 5, 47 => 5,
52 => 5, 57 => 5, 61 => 5, 64 => 5,
70 => 5, 74 => 5, 79 => 5, 80 => 5,
84 => 5, 90 => 5, 96 => 5, 101 => 5,
102 => 5, others => 0),
1784 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1785 =>
(9 => 33243, 57 => 35188, 64 => 33242, 104 => 33241,
others => 0),
1786 =>
(34 => 35189, others => 0),
1787 =>
(57 => 35190, others => 0),
1788 =>
(57 => 35191, others => 0),
1789 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1790 =>
(15 => 35193, others => 0),
1791 =>
(34 => 35195, 37 => 35194, others => 0),
1792 =>
(1 => 119, 4 => 119, 15 => 119, 18 => 119,
19 => 119, 24 => 119, 25 => 119, 32 => 119,
33 => 119, 34 => 119, 37 => 119, 38 => 119,
39 => 119, 42 => 119, 46 => 119, 47 => 119,
52 => 119, 57 => 119, 61 => 119, 64 => 119,
70 => 119, 74 => 119, 79 => 119, 80 => 119,
84 => 119, 90 => 119, 96 => 119, 101 => 119,
102 => 119, others => 0),
1793 =>
(20 => 35196, others => 0),
1794 =>
(20 => 192, others => 0),
1795 =>
(12 => 35198, 100 => 35197, others => 0),
1796 =>
(12 => 357, 100 => 357, others => 0),
1797 =>
(12 => 356, 29 => 32865, 100 => 356, others => 0),
1798 =>
(34 => 367, 101 => 367, others => 0),
1799 =>
(34 => 2086, 101 => 33976, others => 0),
1800 =>
(46 => 32807, 85 => 35201, others => 0),
1801 =>
(0 => 1907, 15 => 1907, 34 => 1907, 35 => 1907,
39 => 1907, 40 => 1907, 41 => 1907, 46 => 1907,
56 => 1907, 60 => 1907, 67 => 1907, 68 => 1907,
70 => 1907, 71 => 1907, 72 => 1907, 73 => 1907,
86 => 1907, 91 => 1907, 94 => 1907, 97 => 1907,
99 => 1907, 103 => 1907, others => 0),
1802 =>
(34 => 35203, others => 0),
1803 =>
(0 => 1902, 15 => 1902, 34 => 1902, 35 => 1902,
39 => 1902, 40 => 1902, 41 => 1902, 46 => 1902,
56 => 1902, 60 => 1902, 67 => 1902, 68 => 1902,
70 => 1902, 71 => 1902, 72 => 1902, 73 => 1902,
86 => 1902, 91 => 1902, 94 => 1902, 97 => 1902,
99 => 1902, 103 => 1902, others => 0),
1804 =>
(29 => 32865, 85 => 35204, others => 0),
1805 =>
(13 => 2131, 26 => 34003, 27 => 34002, 75 => 33414,
78 => 35205, 85 => 2131, 103 => 2131, others => 0),
1806 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35207,
103 => 32885, others => 0),
1807 =>
(15 => 360, 34 => 360, 39 => 360, 40 => 360,
41 => 360, 46 => 360, 60 => 360, 67 => 360,
68 => 360, 70 => 360, 71 => 360, 72 => 360,
73 => 360, 91 => 360, 94 => 360, 97 => 360,
99 => 360, others => 0),
1808 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1809 =>
(9 => 33243, 64 => 33242, 85 => 35209, 104 => 33241,
others => 0),
1810 =>
(15 => 1579, 34 => 1579, 39 => 1579, 40 => 1579,
41 => 1579, 46 => 1579, 60 => 1579, 67 => 1579,
68 => 1579, 70 => 1579, 71 => 1579, 72 => 1579,
73 => 1579, 91 => 1579, 94 => 1579, 97 => 1579,
99 => 1579, others => 0),
1811 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1812 =>
(85 => 35211, others => 0),
1813 =>
(21 => 34802, 83 => 35212, others => 0),
1814 =>
(21 => 34805, 83 => 35214, others => 0),
1815 =>
(13 => 35217, 85 => 35216, 103 => 32885, others => 0),
1816 =>
(15 => 1575, 34 => 1575, 39 => 1575, 40 => 1575,
41 => 1575, 46 => 1575, 60 => 1575, 67 => 1575,
68 => 1575, 70 => 1575, 71 => 1575, 72 => 1575,
73 => 1575, 91 => 1575, 94 => 1575, 97 => 1575,
99 => 1575, others => 0),
1817 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1818 =>
(85 => 35220, others => 0),
1819 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35221,
103 => 32885, others => 0),
1820 =>
(9 => 33243, 64 => 33242, 85 => 35223, 103 => 32885,
104 => 33241, others => 0),
1821 =>
(15 => 1582, 34 => 1582, 39 => 1582, 40 => 1582,
41 => 1582, 46 => 1582, 60 => 1582, 67 => 1582,
68 => 1582, 70 => 1582, 71 => 1582, 72 => 1582,
73 => 1582, 91 => 1582, 94 => 1582, 97 => 1582,
99 => 1582, others => 0),
1822 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35225,
103 => 32885, others => 0),
1823 =>
(8 => 33263, 9 => 258, 12 => 258, 13 => 258,
21 => 258, 28 => 258, 31 => 33262, 45 => 33258,
57 => 258, 58 => 33253, 63 => 258, 69 => 33251,
75 => 33414, 77 => 33250, 83 => 258, 85 => 258,
87 => 33249, 89 => 33248, 103 => 258, others => 0),
1824 =>
(8 => 33263, 9 => 254, 12 => 254, 13 => 254,
21 => 254, 28 => 254, 31 => 33262, 45 => 33258,
57 => 254, 58 => 33253, 63 => 254, 69 => 33251,
75 => 33414, 77 => 33250, 83 => 254, 85 => 254,
87 => 33249, 89 => 33248, 103 => 254, others => 0),
1825 =>
(34 => 35229, others => 0),
1826 =>
(0 => 1896, 15 => 1896, 34 => 1896, 35 => 1896,
39 => 1896, 40 => 1896, 41 => 1896, 46 => 1896,
56 => 1896, 60 => 1896, 67 => 1896, 68 => 1896,
70 => 1896, 71 => 1896, 72 => 1896, 73 => 1896,
86 => 1896, 91 => 1896, 94 => 1896, 97 => 1896,
99 => 1896, 103 => 1896, others => 0),
1827 =>
(29 => 32865, 85 => 35230, others => 0),
1828 =>
(0 => 1891, 15 => 1891, 34 => 1891, 35 => 1891,
39 => 1891, 40 => 1891, 41 => 1891, 46 => 1891,
56 => 1891, 60 => 1891, 67 => 1891, 68 => 1891,
70 => 1891, 71 => 1891, 72 => 1891, 73 => 1891,
86 => 1891, 91 => 1891, 94 => 1891, 97 => 1891,
99 => 1891, 103 => 1891, others => 0),
1829 =>
(101 => 33976, others => 0),
1830 =>
(46 => 32807, 85 => 35232, others => 0),
1831 =>
(3 => 32964, 61 => 32959, 86 => 34650, others => 0),
1832 =>
(85 => 34655, others => 0),
1833 =>
(51 => 35234, 78 => 34672, 85 => 34671, 103 => 32885,
others => 0),
1834 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35236,
90 => 32868, others => 0),
1835 =>
(51 => 35239, 78 => 34714, 85 => 34713, 103 => 32885,
others => 0),
1836 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
1837 =>
(3 => 34738, 53 => 32938, 86 => 34735, others => 0),
1838 =>
(85 => 34741, others => 0),
1839 =>
(3 => 34747, 53 => 32938, 86 => 34744, others => 0),
1840 =>
(85 => 34750, others => 0),
1841 =>
(80 => 35242, others => 0),
1842 =>
(3 => 34911, 53 => 32938, 86 => 34908, others => 0),
1843 =>
(85 => 34914, others => 0),
1844 =>
(61 => 35243, others => 0),
1845 =>
(51 => 35244, 78 => 34948, 85 => 34947, 103 => 32885,
others => 0),
1846 =>
(51 => 35246, 78 => 34952, 85 => 34951, 103 => 32885,
others => 0),
1847 =>
(8 => 103, 9 => 103, 10 => 1694, 12 => 103,
13 => 103, 21 => 103, 27 => 103, 28 => 103,
29 => 1694, 30 => 103, 31 => 103, 32 => 103,
33 => 103, 36 => 103, 43 => 103, 44 => 103,
45 => 103, 48 => 103, 49 => 103, 51 => 103,
53 => 1694, 54 => 103, 55 => 103, 57 => 103,
58 => 103, 60 => 103, 63 => 103, 64 => 103,
69 => 103, 75 => 103, 77 => 103, 83 => 103,
85 => 103, 87 => 103, 89 => 103, 96 => 103,
100 => 103, 103 => 103, 104 => 103, others => 0),
1848 =>
(9 => 33243, 32 => 35249, 33 => 35248, 64 => 33242,
83 => 1481, 104 => 33241, others => 0),
1849 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1850 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1851 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
1852 =>
(21 => 35254, 83 => 183, others => 0),
1853 =>
(8 => 392, 9 => 392, 10 => 392, 12 => 392,
13 => 392, 14 => 392, 20 => 392, 21 => 392,
26 => 392, 27 => 392, 28 => 392, 29 => 392,
30 => 392, 31 => 392, 32 => 392, 33 => 392,
36 => 392, 43 => 392, 44 => 392, 45 => 392,
48 => 392, 49 => 392, 51 => 392, 53 => 392,
54 => 392, 55 => 392, 57 => 392, 58 => 392,
60 => 392, 63 => 392, 64 => 392, 69 => 392,
75 => 392, 77 => 392, 78 => 392, 83 => 392,
85 => 392, 87 => 392, 89 => 392, 96 => 392,
99 => 392, 100 => 392, 101 => 392, 103 => 392,
104 => 392, others => 0),
1854 =>
(9 => 1549, 12 => 1549, 21 => 1549, 28 => 1549,
32 => 1549, 33 => 1549, 51 => 1549, 57 => 1549,
64 => 1549, 83 => 1549, 85 => 1549, 96 => 1549,
100 => 1549, 103 => 1549, 104 => 1549, others => 0),
1855 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
1856 =>
(8 => 33263, 9 => 2025, 12 => 2025, 13 => 2025,
21 => 2025, 28 => 2025, 31 => 33262, 32 => 2025,
33 => 2025, 45 => 33258, 51 => 2025, 57 => 2025,
58 => 33253, 63 => 2025, 64 => 2025, 69 => 33251,
77 => 33250, 83 => 2025, 85 => 2025, 87 => 33249,
89 => 33248, 96 => 2025, 100 => 2025, 103 => 2025,
104 => 2025, others => 0),
1857 =>
(34 => 35257, others => 0),
1858 =>
(0 => 1620, 15 => 1620, 34 => 1620, 39 => 1620,
40 => 1620, 41 => 1620, 46 => 1620, 56 => 1620,
60 => 1620, 67 => 1620, 68 => 1620, 70 => 1620,
71 => 1620, 72 => 1620, 73 => 1620, 86 => 1620,
91 => 1620, 94 => 1620, 97 => 1620, 99 => 1620,
103 => 1620, others => 0),
1859 =>
(29 => 32865, 85 => 35258, others => 0),
1860 =>
(0 => 1615, 15 => 1615, 34 => 1615, 39 => 1615,
40 => 1615, 41 => 1615, 46 => 1615, 56 => 1615,
60 => 1615, 67 => 1615, 68 => 1615, 70 => 1615,
71 => 1615, 72 => 1615, 73 => 1615, 86 => 1615,
91 => 1615, 94 => 1615, 97 => 1615, 99 => 1615,
103 => 1615, others => 0),
1861 =>
(101 => 33976, others => 0),
1862 =>
(46 => 32807, 85 => 35260, others => 0),
1863 =>
(0 => 1609, 15 => 1609, 34 => 1609, 39 => 1609,
40 => 1609, 41 => 1609, 46 => 1609, 56 => 1609,
60 => 1609, 67 => 1609, 68 => 1609, 70 => 1609,
71 => 1609, 72 => 1609, 73 => 1609, 86 => 1609,
91 => 1609, 94 => 1609, 97 => 1609, 99 => 1609,
103 => 1609, others => 0),
1864 =>
(101 => 33976, others => 0),
1865 =>
(46 => 32807, 85 => 35263, others => 0),
1866 =>
(0 => 1604, 15 => 1604, 34 => 1604, 39 => 1604,
40 => 1604, 41 => 1604, 46 => 1604, 56 => 1604,
60 => 1604, 67 => 1604, 68 => 1604, 70 => 1604,
71 => 1604, 72 => 1604, 73 => 1604, 86 => 1604,
91 => 1604, 94 => 1604, 97 => 1604, 99 => 1604,
103 => 1604, others => 0),
1867 =>
(29 => 32865, 85 => 35265, others => 0),
1868 =>
(34 => 35267, 37 => 35266, others => 0),
1869 =>
(0 => 1643, 15 => 1643, 34 => 1643, 39 => 1643,
40 => 1643, 41 => 1643, 46 => 1643, 56 => 1643,
60 => 1643, 67 => 1643, 68 => 1643, 70 => 1643,
71 => 1643, 72 => 1643, 73 => 1643, 86 => 1643,
91 => 1643, 94 => 1643, 97 => 1643, 99 => 1643,
103 => 1643, others => 0),
1870 =>
(85 => 35268, 103 => 32885, others => 0),
1871 =>
(0 => 1639, 15 => 1639, 34 => 1639, 39 => 1639,
40 => 1639, 41 => 1639, 46 => 1639, 56 => 1639,
60 => 1639, 67 => 1639, 68 => 1639, 70 => 1639,
71 => 1639, 72 => 1639, 73 => 1639, 86 => 1639,
91 => 1639, 94 => 1639, 97 => 1639, 99 => 1639,
103 => 1639, others => 0),
1872 =>
(0 => 1638, 15 => 1638, 34 => 1638, 39 => 1638,
40 => 1638, 41 => 1638, 46 => 1638, 56 => 1638,
60 => 1638, 67 => 1638, 68 => 1638, 70 => 1638,
71 => 1638, 72 => 1638, 73 => 1638, 86 => 1638,
91 => 1638, 94 => 1638, 97 => 1638, 99 => 1638,
103 => 1638, others => 0),
1873 =>
(29 => 32865, 85 => 35270, others => 0),
1874 =>
(0 => 1633, 15 => 1633, 34 => 1633, 39 => 1633,
40 => 1633, 41 => 1633, 46 => 1633, 56 => 1633,
60 => 1633, 67 => 1633, 68 => 1633, 70 => 1633,
71 => 1633, 72 => 1633, 73 => 1633, 86 => 1633,
91 => 1633, 94 => 1633, 97 => 1633, 99 => 1633,
103 => 1633, others => 0),
1875 =>
(0 => 1632, 15 => 1632, 34 => 1632, 39 => 1632,
40 => 1632, 41 => 1632, 46 => 1632, 56 => 1632,
60 => 1632, 67 => 1632, 68 => 1632, 70 => 1632,
71 => 1632, 72 => 1632, 73 => 1632, 86 => 1632,
91 => 1632, 94 => 1632, 97 => 1632, 99 => 1632,
103 => 1632, others => 0),
1876 =>
(29 => 32865, 85 => 35271, others => 0),
1877 =>
(0 => 1628, 15 => 1628, 34 => 1628, 39 => 1628,
40 => 1628, 41 => 1628, 46 => 1628, 56 => 1628,
60 => 1628, 67 => 1628, 68 => 1628, 70 => 1628,
71 => 1628, 72 => 1628, 73 => 1628, 86 => 1628,
91 => 1628, 94 => 1628, 97 => 1628, 99 => 1628,
103 => 1628, others => 0),
1878 =>
(29 => 32865, 85 => 35272, others => 0),
1879 =>
(46 => 32807, 85 => 35273, others => 0),
1880 =>
(0 => 1629, 15 => 1629, 34 => 1629, 39 => 1629,
40 => 1629, 41 => 1629, 46 => 1629, 56 => 1629,
60 => 1629, 67 => 1629, 68 => 1629, 70 => 1629,
71 => 1629, 72 => 1629, 73 => 1629, 86 => 1629,
91 => 1629, 94 => 1629, 97 => 1629, 99 => 1629,
103 => 1629, others => 0),
1881 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35275,
103 => 32885, others => 0),
1882 =>
(85 => 35277, 103 => 32885, others => 0),
1883 =>
(46 => 32807, 85 => 35279, others => 0),
1884 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1885 =>
(15 => 35283, 34 => 35282, others => 0),
1886 =>
(85 => 35284, 103 => 32885, others => 0),
1887 =>
(0 => 1933, 15 => 1933, 34 => 1933, 35 => 1933,
39 => 1933, 40 => 1933, 41 => 1933, 46 => 1933,
56 => 1933, 60 => 1933, 67 => 1933, 68 => 1933,
70 => 1933, 71 => 1933, 72 => 1933, 73 => 1933,
86 => 1933, 91 => 1933, 94 => 1933, 97 => 1933,
99 => 1933, 103 => 1933, others => 0),
1888 =>
(15 => 35287, 34 => 35286, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1889 =>
(83 => 35289, others => 0),
1890 =>
(0 => 1402, 15 => 1402, 34 => 1402, 39 => 1402,
40 => 1402, 41 => 1402, 46 => 1402, 56 => 1402,
60 => 1402, 67 => 1402, 68 => 1402, 70 => 1402,
71 => 1402, 72 => 1402, 73 => 1402, 86 => 1402,
91 => 1402, 94 => 1402, 97 => 1402, 99 => 1402,
103 => 1402, others => 0),
1891 =>
(34 => 35290, others => 0),
1892 =>
(0 => 1860, 15 => 1860, 34 => 1860, 35 => 1860,
39 => 1860, 40 => 1860, 41 => 1860, 46 => 1860,
56 => 1860, 60 => 1860, 67 => 1860, 68 => 1860,
70 => 1860, 71 => 1860, 72 => 1860, 73 => 1860,
86 => 1860, 91 => 1860, 94 => 1860, 97 => 1860,
99 => 1860, 103 => 1860, others => 0),
1893 =>
(29 => 32865, 85 => 35291, others => 0),
1894 =>
(0 => 1855, 15 => 1855, 34 => 1855, 35 => 1855,
39 => 1855, 40 => 1855, 41 => 1855, 46 => 1855,
56 => 1855, 60 => 1855, 67 => 1855, 68 => 1855,
70 => 1855, 71 => 1855, 72 => 1855, 73 => 1855,
86 => 1855, 91 => 1855, 94 => 1855, 97 => 1855,
99 => 1855, 103 => 1855, others => 0),
1895 =>
(101 => 33976, others => 0),
1896 =>
(46 => 32807, 85 => 35293, others => 0),
1897 =>
(0 => 1849, 15 => 1849, 34 => 1849, 35 => 1849,
39 => 1849, 40 => 1849, 41 => 1849, 46 => 1849,
56 => 1849, 60 => 1849, 67 => 1849, 68 => 1849,
70 => 1849, 71 => 1849, 72 => 1849, 73 => 1849,
86 => 1849, 91 => 1849, 94 => 1849, 97 => 1849,
99 => 1849, 103 => 1849, others => 0),
1898 =>
(101 => 33976, others => 0),
1899 =>
(46 => 32807, 85 => 35296, others => 0),
1900 =>
(0 => 1844, 15 => 1844, 34 => 1844, 35 => 1844,
39 => 1844, 40 => 1844, 41 => 1844, 46 => 1844,
56 => 1844, 60 => 1844, 67 => 1844, 68 => 1844,
70 => 1844, 71 => 1844, 72 => 1844, 73 => 1844,
86 => 1844, 91 => 1844, 94 => 1844, 97 => 1844,
99 => 1844, 103 => 1844, others => 0),
1901 =>
(29 => 32865, 85 => 35298, others => 0),
1902 =>
(34 => 35300, 37 => 35299, others => 0),
1903 =>
(0 => 1230, 15 => 1230, 34 => 1230, 35 => 1230,
39 => 1230, 40 => 1230, 41 => 1230, 46 => 1230,
56 => 1230, 60 => 1230, 67 => 1230, 68 => 1230,
70 => 1230, 71 => 1230, 72 => 1230, 73 => 1230,
86 => 1230, 91 => 1230, 94 => 1230, 97 => 1230,
99 => 1230, 103 => 1230, others => 0),
1904 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1905 =>
(3 => 35305, 15 => 35304, 34 => 35303, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 35302, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1906 =>
(51 => 35309, 85 => 35308, others => 0),
1907 =>
(0 => 1316, 15 => 1316, 34 => 1316, 35 => 1316,
39 => 1316, 40 => 1316, 41 => 1316, 46 => 1316,
56 => 1316, 60 => 1316, 67 => 1316, 68 => 1316,
70 => 1316, 71 => 1316, 72 => 1316, 73 => 1316,
86 => 1316, 91 => 1316, 94 => 1316, 97 => 1316,
99 => 1316, 103 => 1316, others => 0),
1908 =>
(85 => 35310, others => 0),
1909 =>
(0 => 1318, 15 => 1318, 34 => 1318, 35 => 1318,
39 => 1318, 40 => 1318, 41 => 1318, 46 => 1318,
56 => 1318, 60 => 1318, 67 => 1318, 68 => 1318,
70 => 1318, 71 => 1318, 72 => 1318, 73 => 1318,
86 => 1318, 91 => 1318, 94 => 1318, 97 => 1318,
99 => 1318, 103 => 1318, others => 0),
1910 =>
(85 => 35311, others => 0),
1911 =>
(0 => 1111, 15 => 1111, 34 => 1111, 35 => 1111,
39 => 1111, 40 => 1111, 41 => 1111, 46 => 1111,
56 => 1111, 60 => 1111, 67 => 1111, 68 => 1111,
70 => 1111, 71 => 1111, 72 => 1111, 73 => 1111,
86 => 1111, 91 => 1111, 94 => 1111, 97 => 1111,
99 => 1111, 103 => 1111, others => 0),
1912 =>
(85 => 35312, others => 0),
1913 =>
(34 => 35314, 37 => 35313, others => 0),
1914 =>
(0 => 1312, 15 => 1312, 34 => 1312, 35 => 1312,
39 => 1312, 40 => 1312, 41 => 1312, 46 => 1312,
56 => 1312, 60 => 1312, 67 => 1312, 68 => 1312,
70 => 1312, 71 => 1312, 72 => 1312, 73 => 1312,
86 => 1312, 91 => 1312, 94 => 1312, 97 => 1312,
99 => 1312, 103 => 1312, others => 0),
1915 =>
(85 => 35315, others => 0),
1916 =>
(0 => 1314, 15 => 1314, 34 => 1314, 35 => 1314,
39 => 1314, 40 => 1314, 41 => 1314, 46 => 1314,
56 => 1314, 60 => 1314, 67 => 1314, 68 => 1314,
70 => 1314, 71 => 1314, 72 => 1314, 73 => 1314,
86 => 1314, 91 => 1314, 94 => 1314, 97 => 1314,
99 => 1314, 103 => 1314, others => 0),
1917 =>
(85 => 35316, others => 0),
1918 =>
(46 => 32807, 85 => 35317, 90 => 32868, others => 0),
1919 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1920 =>
(46 => 32807, 85 => 35320, 90 => 32868, others => 0),
1921 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1922 =>
(15 => 35324, 34 => 35323, others => 0),
1923 =>
(0 => 1236, 15 => 1236, 34 => 1236, 35 => 1236,
39 => 1236, 40 => 1236, 41 => 1236, 46 => 1236,
56 => 1236, 60 => 1236, 67 => 1236, 68 => 1236,
70 => 1236, 71 => 1236, 72 => 1236, 73 => 1236,
86 => 1236, 91 => 1236, 94 => 1236, 97 => 1236,
99 => 1236, 103 => 1236, others => 0),
1924 =>
(85 => 35325, others => 0),
1925 =>
(0 => 1238, 15 => 1238, 34 => 1238, 35 => 1238,
39 => 1238, 40 => 1238, 41 => 1238, 46 => 1238,
56 => 1238, 60 => 1238, 67 => 1238, 68 => 1238,
70 => 1238, 71 => 1238, 72 => 1238, 73 => 1238,
86 => 1238, 91 => 1238, 94 => 1238, 97 => 1238,
99 => 1238, 103 => 1238, others => 0),
1926 =>
(85 => 35326, others => 0),
1927 =>
(0 => 919, 15 => 919, 34 => 919, 35 => 919,
39 => 919, 40 => 919, 41 => 919, 46 => 919,
56 => 919, 60 => 919, 67 => 919, 68 => 919,
70 => 919, 71 => 919, 72 => 919, 73 => 919,
86 => 919, 91 => 919, 94 => 919, 97 => 919,
99 => 919, 103 => 919, others => 0),
1928 =>
(85 => 35327, others => 0),
1929 =>
(34 => 35329, 37 => 35328, others => 0),
1930 =>
(0 => 1232, 15 => 1232, 34 => 1232, 35 => 1232,
39 => 1232, 40 => 1232, 41 => 1232, 46 => 1232,
56 => 1232, 60 => 1232, 67 => 1232, 68 => 1232,
70 => 1232, 71 => 1232, 72 => 1232, 73 => 1232,
86 => 1232, 91 => 1232, 94 => 1232, 97 => 1232,
99 => 1232, 103 => 1232, others => 0),
1931 =>
(85 => 35330, others => 0),
1932 =>
(0 => 1234, 15 => 1234, 34 => 1234, 35 => 1234,
39 => 1234, 40 => 1234, 41 => 1234, 46 => 1234,
56 => 1234, 60 => 1234, 67 => 1234, 68 => 1234,
70 => 1234, 71 => 1234, 72 => 1234, 73 => 1234,
86 => 1234, 91 => 1234, 94 => 1234, 97 => 1234,
99 => 1234, 103 => 1234, others => 0),
1933 =>
(85 => 35331, others => 0),
1934 =>
(46 => 32807, 85 => 35332, 90 => 32868, others => 0),
1935 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1936 =>
(46 => 32807, 85 => 35335, 90 => 32868, others => 0),
1937 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1938 =>
(15 => 35339, 34 => 35338, others => 0),
1939 =>
(61 => 35340, others => 0),
1940 =>
(51 => 35343, 78 => 35342, 85 => 35341, 103 => 32885,
others => 0),
1941 =>
(51 => 35347, 78 => 35346, 85 => 35345, 103 => 32885,
others => 0),
1942 =>
(83 => 35349, others => 0),
1943 =>
(0 => 1390, 15 => 1390, 34 => 1390, 39 => 1390,
40 => 1390, 41 => 1390, 46 => 1390, 56 => 1390,
60 => 1390, 67 => 1390, 68 => 1390, 70 => 1390,
71 => 1390, 72 => 1390, 73 => 1390, 86 => 1390,
91 => 1390, 94 => 1390, 97 => 1390, 99 => 1390,
103 => 1390, others => 0),
1944 =>
(0 => 1921, 15 => 1921, 34 => 1921, 35 => 1921,
39 => 1921, 40 => 1921, 41 => 1921, 46 => 1921,
56 => 1921, 60 => 1921, 67 => 1921, 68 => 1921,
70 => 1921, 71 => 1921, 72 => 1921, 73 => 1921,
86 => 1921, 91 => 1921, 94 => 1921, 97 => 1921,
99 => 1921, 103 => 1921, others => 0),
1945 =>
(0 => 1918, 15 => 1918, 34 => 1918, 35 => 1918,
39 => 1918, 40 => 1918, 41 => 1918, 46 => 1918,
56 => 1918, 60 => 1918, 67 => 1918, 68 => 1918,
70 => 1918, 71 => 1918, 72 => 1918, 73 => 1918,
86 => 1918, 91 => 1918, 94 => 1918, 97 => 1918,
99 => 1918, 103 => 1918, others => 0),
1946 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
1947 =>
(3 => 32964, 15 => 35353, 34 => 35352, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 60 => 32778,
61 => 32959, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 35351, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
1948 =>
(51 => 35357, 85 => 35356, others => 0),
1949 =>
(0 => 1923, 15 => 1923, 34 => 1923, 35 => 1923,
39 => 1923, 40 => 1923, 41 => 1923, 46 => 1923,
56 => 1923, 60 => 1923, 67 => 1923, 68 => 1923,
70 => 1923, 71 => 1923, 72 => 1923, 73 => 1923,
86 => 1923, 91 => 1923, 94 => 1923, 97 => 1923,
99 => 1923, 103 => 1923, others => 0),
1950 =>
(0 => 1399, 15 => 1399, 34 => 1399, 39 => 1399,
40 => 1399, 41 => 1399, 46 => 1399, 56 => 1399,
60 => 1399, 67 => 1399, 68 => 1399, 70 => 1399,
71 => 1399, 72 => 1399, 73 => 1399, 86 => 1399,
91 => 1399, 94 => 1399, 97 => 1399, 99 => 1399,
103 => 1399, others => 0),
1951 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
1952 =>
(85 => 35359, others => 0),
1953 =>
(0 => 1813, 15 => 1813, 34 => 1813, 35 => 1813,
39 => 1813, 40 => 1813, 41 => 1813, 46 => 1813,
56 => 1813, 60 => 1813, 67 => 1813, 68 => 1813,
70 => 1813, 71 => 1813, 72 => 1813, 73 => 1813,
86 => 1813, 91 => 1813, 94 => 1813, 97 => 1813,
99 => 1813, 103 => 1813, others => 0),
1954 =>
(101 => 33976, others => 0),
1955 =>
(46 => 32807, 85 => 35361, others => 0),
1956 =>
(0 => 1808, 15 => 1808, 34 => 1808, 35 => 1808,
39 => 1808, 40 => 1808, 41 => 1808, 46 => 1808,
56 => 1808, 60 => 1808, 67 => 1808, 68 => 1808,
70 => 1808, 71 => 1808, 72 => 1808, 73 => 1808,
86 => 1808, 91 => 1808, 94 => 1808, 97 => 1808,
99 => 1808, 103 => 1808, others => 0),
1957 =>
(29 => 32865, 85 => 35363, others => 0),
1958 =>
(34 => 35365, 37 => 35364, others => 0),
1959 =>
(0 => 1919, 15 => 1919, 34 => 1919, 35 => 1919,
39 => 1919, 40 => 1919, 41 => 1919, 46 => 1919,
56 => 1919, 60 => 1919, 67 => 1919, 68 => 1919,
70 => 1919, 71 => 1919, 72 => 1919, 73 => 1919,
86 => 1919, 91 => 1919, 94 => 1919, 97 => 1919,
99 => 1919, 103 => 1919, others => 0),
1960 =>
(0 => 1802, 15 => 1802, 34 => 1802, 35 => 1802,
39 => 1802, 40 => 1802, 41 => 1802, 46 => 1802,
56 => 1802, 60 => 1802, 67 => 1802, 68 => 1802,
70 => 1802, 71 => 1802, 72 => 1802, 73 => 1802,
86 => 1802, 91 => 1802, 94 => 1802, 97 => 1802,
99 => 1802, 103 => 1802, others => 0),
1961 =>
(29 => 32865, 85 => 35366, others => 0),
1962 =>
(34 => 35368, 37 => 35367, others => 0),
1963 =>
(46 => 32807, 85 => 35369, others => 0),
1964 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1965 =>
(51 => 35374, 78 => 35373, 85 => 35372, 103 => 32885,
others => 0),
1966 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35376,
103 => 32885, others => 0),
1967 =>
(85 => 35378, 103 => 32885, others => 0),
1968 =>
(46 => 32807, 85 => 35380, 90 => 32868, others => 0),
1969 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1970 =>
(85 => 35383, 103 => 32885, others => 0),
1971 =>
(85 => 35385, 103 => 32885, others => 0),
1972 =>
(15 => 35388, 34 => 35387, others => 0),
1973 =>
(0 => 1299, 15 => 1299, 34 => 1299, 35 => 1299,
39 => 1299, 40 => 1299, 41 => 1299, 46 => 1299,
56 => 1299, 60 => 1299, 67 => 1299, 68 => 1299,
70 => 1299, 71 => 1299, 72 => 1299, 73 => 1299,
86 => 1299, 91 => 1299, 94 => 1299, 97 => 1299,
99 => 1299, 103 => 1299, others => 0),
1974 =>
(15 => 35390, 34 => 35389, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1975 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35392,
103 => 32885, others => 0),
1976 =>
(85 => 35394, 103 => 32885, others => 0),
1977 =>
(46 => 32807, 85 => 35396, 90 => 32868, others => 0),
1978 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
1979 =>
(85 => 35399, 103 => 32885, others => 0),
1980 =>
(85 => 35401, 103 => 32885, others => 0),
1981 =>
(15 => 35404, 34 => 35403, others => 0),
1982 =>
(0 => 1199, 15 => 1199, 34 => 1199, 35 => 1199,
39 => 1199, 40 => 1199, 41 => 1199, 46 => 1199,
56 => 1199, 60 => 1199, 67 => 1199, 68 => 1199,
70 => 1199, 71 => 1199, 72 => 1199, 73 => 1199,
86 => 1199, 91 => 1199, 94 => 1199, 97 => 1199,
99 => 1199, 103 => 1199, others => 0),
1983 =>
(15 => 35406, 34 => 35405, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
1984 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35408,
90 => 32868, others => 0),
1985 =>
(0 => 1387, 15 => 1387, 34 => 1387, 39 => 1387,
40 => 1387, 41 => 1387, 46 => 1387, 56 => 1387,
60 => 1387, 67 => 1387, 68 => 1387, 70 => 1387,
71 => 1387, 72 => 1387, 73 => 1387, 86 => 1387,
91 => 1387, 94 => 1387, 97 => 1387, 99 => 1387,
103 => 1387, others => 0),
1986 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
1987 =>
(85 => 35412, others => 0),
1988 =>
(40 => 645, 46 => 645, 68 => 645, 70 => 645,
72 => 645, 97 => 645, 99 => 645, 103 => 645,
others => 0),
1989 =>
(3 => 35415, 17 => 35414, 19 => 32869, 46 => 32807,
61 => 35413, 90 => 32868, others => 0),
1990 =>
(85 => 35417, others => 0),
1991 =>
(40 => 658, 46 => 658, 68 => 658, 70 => 658,
72 => 658, 97 => 658, 99 => 658, 103 => 658,
others => 0),
1992 =>
(40 => 656, 46 => 656, 68 => 656, 70 => 656,
72 => 656, 97 => 656, 99 => 656, 103 => 656,
others => 0),
1993 =>
(40 => 651, 46 => 651, 68 => 651, 70 => 651,
72 => 651, 97 => 651, 99 => 651, 103 => 651,
others => 0),
1994 =>
(85 => 35418, others => 0),
1995 =>
(40 => 649, 46 => 649, 68 => 649, 70 => 649,
72 => 649, 97 => 649, 99 => 649, 103 => 649,
others => 0),
1996 =>
(85 => 35419, others => 0),
1997 =>
(40 => 652, 46 => 652, 68 => 652, 70 => 652,
72 => 652, 97 => 652, 99 => 652, 103 => 652,
others => 0),
1998 =>
(40 => 647, 46 => 647, 68 => 647, 70 => 647,
72 => 647, 97 => 647, 99 => 647, 103 => 647,
others => 0),
1999 =>
(85 => 35420, others => 0),
2000 =>
(40 => 654, 46 => 654, 68 => 654, 70 => 654,
72 => 654, 97 => 654, 99 => 654, 103 => 654,
others => 0),
2001 =>
(40 => 621, 46 => 621, 68 => 621, 70 => 621,
72 => 621, 97 => 621, 99 => 621, 103 => 621,
others => 0),
2002 =>
(2 => 33031, 17 => 33913, 19 => 33912, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 65 => 33105, 69 => 33024,
90 => 32868, others => 0),
2003 =>
(85 => 35422, others => 0),
2004 =>
(51 => 35424, 85 => 35423, 103 => 32885, others => 0),
2005 =>
(85 => 35426, 103 => 32885, others => 0),
2006 =>
(17 => 35429, 19 => 32869, 46 => 32807, 85 => 35428,
90 => 32868, 103 => 32885, others => 0),
2007 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35432,
103 => 32885, others => 0),
2008 =>
(40 => 548, 46 => 548, 68 => 548, 70 => 548,
72 => 548, 97 => 548, 99 => 548, 103 => 548,
others => 0),
2009 =>
(85 => 35434, 103 => 32885, others => 0),
2010 =>
(17 => 35437, 19 => 32869, 46 => 32807, 85 => 35436,
90 => 32868, 103 => 32885, others => 0),
2011 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35440,
103 => 32885, others => 0),
2012 =>
(40 => 524, 46 => 524, 68 => 524, 70 => 524,
72 => 524, 97 => 524, 99 => 524, 103 => 524,
others => 0),
2013 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35442,
90 => 32868, others => 0),
2014 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2015 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2016 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2017 =>
(83 => 278, 85 => 278, others => 0),
2018 =>
(19 => 32869, 46 => 32807, 71 => 35448, 90 => 32868,
others => 0),
2019 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2020 =>
(85 => 468, others => 0),
2021 =>
(40 => 35451, 72 => 35450, others => 0),
2022 =>
(53 => 35452, 85 => 402, 103 => 402, others => 0),
2023 =>
(53 => 35454, 80 => 35453, others => 0),
2024 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2025 =>
(85 => 396, 103 => 396, others => 0),
2026 =>
(85 => 473, 103 => 32885, others => 0),
2027 =>
(103 => 35457, others => 0),
2028 =>
(19 => 32869, 46 => 32807, 71 => 35458, 90 => 32868,
others => 0),
2029 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2030 =>
(85 => 462, others => 0),
2031 =>
(9 => 105, 85 => 105, 103 => 105, others => 0),
2032 =>
(85 => 439, 103 => 439, others => 0),
2033 =>
(63 => 35460, others => 0),
2034 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2035 =>
(21 => 35463, 83 => 35462, others => 0),
2036 =>
(63 => 35464, others => 0),
2037 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2038 =>
(21 => 35468, 83 => 35467, others => 0),
2039 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2040 =>
(2 => 33031, 17 => 35470, 19 => 32869, 45 => 33030,
46 => 32807, 53 => 33029, 59 => 33028, 60 => 33027,
61 => 33026, 62 => 33025, 69 => 33024, 90 => 32868,
others => 0),
2041 =>
(12 => 270, 21 => 270, 57 => 270, 83 => 270,
others => 0),
2042 =>
(46 => 32838, others => 0),
2043 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35472,
90 => 32868, others => 0),
2044 =>
(46 => 32838, others => 0),
2045 =>
(83 => 35476, others => 0),
2046 =>
(9 => 2131, 13 => 2131, 26 => 34003, 27 => 34002,
28 => 2131, 63 => 2131, 75 => 33414, 85 => 2131,
103 => 2131, others => 0),
2047 =>
(61 => 35477, others => 0),
2048 =>
(85 => 430, 103 => 430, others => 0),
2049 =>
(85 => 422, 103 => 422, others => 0),
2050 =>
(83 => 35478, others => 0),
2051 =>
(85 => 624, 103 => 624, others => 0),
2052 =>
(9 => 35480, 85 => 451, 103 => 35479, others => 0),
2053 =>
(19 => 32869, 46 => 32807, 71 => 35482, 90 => 32868,
others => 0),
2054 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2055 =>
(85 => 456, others => 0),
2056 =>
(9 => 35485, 85 => 445, 103 => 35484, others => 0),
2057 =>
(40 => 431, 46 => 431, 68 => 431, 70 => 431,
72 => 431, 97 => 431, 99 => 431, 103 => 431,
others => 0),
2058 =>
(0 => 1460, 15 => 1460, 34 => 1460, 39 => 1460,
40 => 1460, 41 => 1460, 46 => 1460, 56 => 1460,
60 => 1460, 67 => 1460, 68 => 1460, 70 => 1460,
71 => 1460, 72 => 1460, 73 => 1460, 86 => 1460,
91 => 1460, 94 => 1460, 97 => 1460, 99 => 1460,
103 => 1460, others => 0),
2059 =>
(0 => 1452, 15 => 1452, 34 => 1452, 39 => 1452,
40 => 1452, 41 => 1452, 46 => 1452, 56 => 1452,
60 => 1452, 67 => 1452, 68 => 1452, 70 => 1452,
71 => 1452, 72 => 1452, 73 => 1452, 86 => 1452,
91 => 1452, 94 => 1452, 97 => 1452, 99 => 1452,
103 => 1452, others => 0),
2060 =>
(0 => 1451, 15 => 1451, 34 => 1451, 39 => 1451,
40 => 1451, 41 => 1451, 46 => 1451, 56 => 1451,
60 => 1451, 67 => 1451, 68 => 1451, 70 => 1451,
71 => 1451, 72 => 1451, 73 => 1451, 86 => 1451,
91 => 1451, 94 => 1451, 97 => 1451, 99 => 1451,
103 => 1451, others => 0),
2061 =>
(29 => 32865, 85 => 35487, others => 0),
2062 =>
(0 => 1447, 15 => 1447, 34 => 1447, 39 => 1447,
40 => 1447, 41 => 1447, 46 => 1447, 56 => 1447,
60 => 1447, 67 => 1447, 68 => 1447, 70 => 1447,
71 => 1447, 72 => 1447, 73 => 1447, 86 => 1447,
91 => 1447, 94 => 1447, 97 => 1447, 99 => 1447,
103 => 1447, others => 0),
2063 =>
(29 => 32865, 85 => 35488, others => 0),
2064 =>
(46 => 32807, 85 => 35489, others => 0),
2065 =>
(0 => 1448, 15 => 1448, 34 => 1448, 39 => 1448,
40 => 1448, 41 => 1448, 46 => 1448, 56 => 1448,
60 => 1448, 67 => 1448, 68 => 1448, 70 => 1448,
71 => 1448, 72 => 1448, 73 => 1448, 86 => 1448,
91 => 1448, 94 => 1448, 97 => 1448, 99 => 1448,
103 => 1448, others => 0),
2066 =>
(0 => 1441, 15 => 1441, 34 => 1441, 39 => 1441,
40 => 1441, 41 => 1441, 46 => 1441, 56 => 1441,
60 => 1441, 67 => 1441, 68 => 1441, 70 => 1441,
71 => 1441, 72 => 1441, 73 => 1441, 86 => 1441,
91 => 1441, 94 => 1441, 97 => 1441, 99 => 1441,
103 => 1441, others => 0),
2067 =>
(29 => 32865, 85 => 35491, others => 0),
2068 =>
(46 => 32807, 85 => 35492, others => 0),
2069 =>
(0 => 1442, 15 => 1442, 34 => 1442, 39 => 1442,
40 => 1442, 41 => 1442, 46 => 1442, 56 => 1442,
60 => 1442, 67 => 1442, 68 => 1442, 70 => 1442,
71 => 1442, 72 => 1442, 73 => 1442, 86 => 1442,
91 => 1442, 94 => 1442, 97 => 1442, 99 => 1442,
103 => 1442, others => 0),
2070 =>
(46 => 32807, 85 => 35494, others => 0),
2071 =>
(34 => 35496, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
2072 =>
(0 => 1437, 15 => 1437, 34 => 1437, 39 => 1437,
40 => 1437, 41 => 1437, 46 => 1437, 56 => 1437,
60 => 1437, 67 => 1437, 68 => 1437, 70 => 1437,
71 => 1437, 72 => 1437, 73 => 1437, 86 => 1437,
91 => 1437, 94 => 1437, 97 => 1437, 99 => 1437,
103 => 1437, others => 0),
2073 =>
(29 => 32865, 85 => 35497, others => 0),
2074 =>
(0 => 1369, 15 => 1369, 34 => 1369, 39 => 1369,
40 => 1369, 41 => 1369, 46 => 1369, 56 => 1369,
60 => 1369, 67 => 1369, 68 => 1369, 70 => 1369,
71 => 1369, 72 => 1369, 73 => 1369, 86 => 1369,
91 => 1369, 94 => 1369, 97 => 1369, 99 => 1369,
103 => 1369, others => 0),
2075 =>
(85 => 35498, others => 0),
2076 =>
(61 => 35499, others => 0),
2077 =>
(85 => 35500, 103 => 32885, others => 0),
2078 =>
(85 => 35502, 103 => 32885, others => 0),
2079 =>
(40 => 578, 46 => 578, 68 => 578, 70 => 578,
72 => 578, 97 => 578, 99 => 578, 103 => 578,
others => 0),
2080 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2081 =>
(85 => 35505, others => 0),
2082 =>
(40 => 600, 46 => 600, 68 => 600, 70 => 600,
72 => 600, 97 => 600, 99 => 600, 103 => 600,
others => 0),
2083 =>
(85 => 35506, others => 0),
2084 =>
(40 => 580, 46 => 580, 68 => 580, 70 => 580,
72 => 580, 97 => 580, 99 => 580, 103 => 580,
others => 0),
2085 =>
(85 => 35507, others => 0),
2086 =>
(13 => 34, 51 => 34, 53 => 35508, 78 => 34,
83 => 34, 85 => 34, 103 => 34, others => 0),
2087 =>
(53 => 35510, 80 => 35509, others => 0),
2088 =>
(46 => 32838, others => 0),
2089 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35512,
90 => 32868, others => 0),
2090 =>
(46 => 32838, others => 0),
2091 =>
(13 => 29, 51 => 29, 78 => 29, 83 => 29,
85 => 29, 103 => 29, others => 0),
2092 =>
(9 => 33243, 64 => 33242, 85 => 35516, 103 => 32885,
104 => 33241, others => 0),
2093 =>
(40 => 585, 46 => 585, 68 => 585, 70 => 585,
72 => 585, 97 => 585, 99 => 585, 103 => 585,
others => 0),
2094 =>
(13 => 35519, 85 => 35518, 103 => 32885, others => 0),
2095 =>
(9 => 33243, 64 => 33242, 85 => 35521, 103 => 32885,
104 => 33241, others => 0),
2096 =>
(40 => 593, 46 => 593, 68 => 593, 70 => 593,
72 => 593, 97 => 593, 99 => 593, 103 => 593,
others => 0),
2097 =>
(9 => 33243, 64 => 33242, 85 => 35523, 103 => 32885,
104 => 33241, others => 0),
2098 =>
(40 => 565, 46 => 565, 68 => 565, 70 => 565,
72 => 565, 97 => 565, 99 => 565, 103 => 565,
others => 0),
2099 =>
(40 => 570, 46 => 570, 68 => 570, 70 => 570,
72 => 570, 97 => 570, 99 => 570, 103 => 570,
others => 0),
2100 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2101 =>
(85 => 35526, others => 0),
2102 =>
(40 => 596, 46 => 596, 68 => 596, 70 => 596,
72 => 596, 97 => 596, 99 => 596, 103 => 596,
others => 0),
2103 =>
(85 => 35527, others => 0),
2104 =>
(40 => 572, 46 => 572, 68 => 572, 70 => 572,
72 => 572, 97 => 572, 99 => 572, 103 => 572,
others => 0),
2105 =>
(85 => 35528, others => 0),
2106 =>
(83 => 35529, others => 0),
2107 =>
(61 => 35530, others => 0),
2108 =>
(13 => 62, 51 => 62, 78 => 62, 83 => 62,
85 => 62, 103 => 62, others => 0),
2109 =>
(13 => 52, 51 => 52, 78 => 52, 83 => 52,
85 => 52, 103 => 52, others => 0),
2110 =>
(83 => 35531, others => 0),
2111 =>
(13 => 39, 51 => 39, 78 => 39, 83 => 39,
85 => 39, 103 => 39, others => 0),
2112 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2113 =>
(80 => 35533, others => 0),
2114 =>
(40 => 603, 46 => 603, 68 => 603, 70 => 603,
72 => 603, 97 => 603, 99 => 603, 103 => 603,
others => 0),
2115 =>
(40 => 587, 46 => 587, 68 => 587, 70 => 587,
72 => 587, 97 => 587, 99 => 587, 103 => 587,
others => 0),
2116 =>
(0 => 1468, 15 => 1468, 34 => 1468, 39 => 1468,
40 => 1468, 41 => 1468, 46 => 1468, 56 => 1468,
60 => 1468, 67 => 1468, 68 => 1468, 70 => 1468,
71 => 1468, 72 => 1468, 73 => 1468, 86 => 1468,
91 => 1468, 94 => 1468, 97 => 1468, 99 => 1468,
103 => 1468, others => 0),
2117 =>
(0 => 1457, 15 => 1457, 34 => 1457, 39 => 1457,
40 => 1457, 41 => 1457, 46 => 1457, 56 => 1457,
60 => 1457, 67 => 1457, 68 => 1457, 70 => 1457,
71 => 1457, 72 => 1457, 73 => 1457, 86 => 1457,
91 => 1457, 94 => 1457, 97 => 1457, 99 => 1457,
103 => 1457, others => 0),
2118 =>
(85 => 35534, others => 0),
2119 =>
(0 => 1464, 15 => 1464, 34 => 1464, 39 => 1464,
40 => 1464, 41 => 1464, 46 => 1464, 56 => 1464,
60 => 1464, 67 => 1464, 68 => 1464, 70 => 1464,
71 => 1464, 72 => 1464, 73 => 1464, 86 => 1464,
91 => 1464, 94 => 1464, 97 => 1464, 99 => 1464,
103 => 1464, others => 0),
2120 =>
(0 => 1429, 15 => 1429, 34 => 1429, 39 => 1429,
40 => 1429, 41 => 1429, 46 => 1429, 56 => 1429,
60 => 1429, 67 => 1429, 68 => 1429, 70 => 1429,
71 => 1429, 72 => 1429, 73 => 1429, 86 => 1429,
91 => 1429, 94 => 1429, 97 => 1429, 99 => 1429,
103 => 1429, others => 0),
2121 =>
(29 => 32865, 85 => 35535, others => 0),
2122 =>
(46 => 32807, 85 => 35536, others => 0),
2123 =>
(0 => 1430, 15 => 1430, 34 => 1430, 39 => 1430,
40 => 1430, 41 => 1430, 46 => 1430, 56 => 1430,
60 => 1430, 67 => 1430, 68 => 1430, 70 => 1430,
71 => 1430, 72 => 1430, 73 => 1430, 86 => 1430,
91 => 1430, 94 => 1430, 97 => 1430, 99 => 1430,
103 => 1430, others => 0),
2124 =>
(46 => 32807, 85 => 35538, others => 0),
2125 =>
(34 => 35540, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
2126 =>
(0 => 1425, 15 => 1425, 34 => 1425, 39 => 1425,
40 => 1425, 41 => 1425, 46 => 1425, 56 => 1425,
60 => 1425, 67 => 1425, 68 => 1425, 70 => 1425,
71 => 1425, 72 => 1425, 73 => 1425, 86 => 1425,
91 => 1425, 94 => 1425, 97 => 1425, 99 => 1425,
103 => 1425, others => 0),
2127 =>
(29 => 32865, 85 => 35541, others => 0),
2128 =>
(46 => 32807, 85 => 35542, others => 0),
2129 =>
(34 => 35544, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
2130 =>
(0 => 1419, 15 => 1419, 34 => 1419, 39 => 1419,
40 => 1419, 41 => 1419, 46 => 1419, 56 => 1419,
60 => 1419, 67 => 1419, 68 => 1419, 70 => 1419,
71 => 1419, 72 => 1419, 73 => 1419, 86 => 1419,
91 => 1419, 94 => 1419, 97 => 1419, 99 => 1419,
103 => 1419, others => 0),
2131 =>
(29 => 32865, 85 => 35545, others => 0),
2132 =>
(34 => 35546, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
2133 =>
(46 => 32807, 85 => 35548, others => 0),
2134 =>
(85 => 35550, 103 => 32885, others => 0),
2135 =>
(0 => 1374, 15 => 1374, 34 => 1374, 39 => 1374,
40 => 1374, 41 => 1374, 46 => 1374, 56 => 1374,
60 => 1374, 67 => 1374, 68 => 1374, 70 => 1374,
71 => 1374, 72 => 1374, 73 => 1374, 86 => 1374,
91 => 1374, 94 => 1374, 97 => 1374, 99 => 1374,
103 => 1374, others => 0),
2136 =>
(0 => 1362, 15 => 1362, 34 => 1362, 39 => 1362,
40 => 1362, 41 => 1362, 46 => 1362, 56 => 1362,
60 => 1362, 67 => 1362, 68 => 1362, 70 => 1362,
71 => 1362, 72 => 1362, 73 => 1362, 86 => 1362,
91 => 1362, 94 => 1362, 97 => 1362, 99 => 1362,
103 => 1362, others => 0),
2137 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35552,
90 => 32868, others => 0),
2138 =>
(0 => 1472, 15 => 1472, 34 => 1472, 39 => 1472,
40 => 1472, 41 => 1472, 46 => 1472, 56 => 1472,
60 => 1472, 67 => 1472, 68 => 1472, 70 => 1472,
71 => 1472, 72 => 1472, 73 => 1472, 86 => 1472,
91 => 1472, 94 => 1472, 97 => 1472, 99 => 1472,
103 => 1472, others => 0),
2139 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35555,
103 => 32885, others => 0),
2140 =>
(85 => 35557, 103 => 32885, others => 0),
2141 =>
(46 => 32807, 85 => 35559, 90 => 32868, others => 0),
2142 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2143 =>
(85 => 35562, 103 => 32885, others => 0),
2144 =>
(85 => 35564, 103 => 32885, others => 0),
2145 =>
(15 => 35567, 34 => 35566, others => 0),
2146 =>
(0 => 1269, 15 => 1269, 34 => 1269, 35 => 1269,
39 => 1269, 40 => 1269, 41 => 1269, 46 => 1269,
56 => 1269, 60 => 1269, 67 => 1269, 68 => 1269,
70 => 1269, 71 => 1269, 72 => 1269, 73 => 1269,
86 => 1269, 91 => 1269, 94 => 1269, 97 => 1269,
99 => 1269, 103 => 1269, others => 0),
2147 =>
(15 => 35569, 34 => 35568, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2148 =>
(0 => 1335, 15 => 1335, 34 => 1335, 35 => 1335,
39 => 1335, 40 => 1335, 41 => 1335, 46 => 1335,
56 => 1335, 60 => 1335, 67 => 1335, 68 => 1335,
70 => 1335, 71 => 1335, 72 => 1335, 73 => 1335,
86 => 1335, 91 => 1335, 94 => 1335, 97 => 1335,
99 => 1335, 103 => 1335, others => 0),
2149 =>
(0 => 1337, 15 => 1337, 34 => 1337, 35 => 1337,
39 => 1337, 40 => 1337, 41 => 1337, 46 => 1337,
56 => 1337, 60 => 1337, 67 => 1337, 68 => 1337,
70 => 1337, 71 => 1337, 72 => 1337, 73 => 1337,
86 => 1337, 91 => 1337, 94 => 1337, 97 => 1337,
99 => 1337, 103 => 1337, others => 0),
2150 =>
(0 => 1158, 15 => 1158, 34 => 1158, 35 => 1158,
39 => 1158, 40 => 1158, 41 => 1158, 46 => 1158,
56 => 1158, 60 => 1158, 67 => 1158, 68 => 1158,
70 => 1158, 71 => 1158, 72 => 1158, 73 => 1158,
86 => 1158, 91 => 1158, 94 => 1158, 97 => 1158,
99 => 1158, 103 => 1158, others => 0),
2151 =>
(101 => 33976, others => 0),
2152 =>
(46 => 32807, 85 => 35572, 90 => 32868, others => 0),
2153 =>
(0 => 1331, 15 => 1331, 34 => 1331, 35 => 1331,
39 => 1331, 40 => 1331, 41 => 1331, 46 => 1331,
56 => 1331, 60 => 1331, 67 => 1331, 68 => 1331,
70 => 1331, 71 => 1331, 72 => 1331, 73 => 1331,
86 => 1331, 91 => 1331, 94 => 1331, 97 => 1331,
99 => 1331, 103 => 1331, others => 0),
2154 =>
(0 => 1333, 15 => 1333, 34 => 1333, 35 => 1333,
39 => 1333, 40 => 1333, 41 => 1333, 46 => 1333,
56 => 1333, 60 => 1333, 67 => 1333, 68 => 1333,
70 => 1333, 71 => 1333, 72 => 1333, 73 => 1333,
86 => 1333, 91 => 1333, 94 => 1333, 97 => 1333,
99 => 1333, 103 => 1333, others => 0),
2155 =>
(0 => 1153, 15 => 1153, 34 => 1153, 35 => 1153,
39 => 1153, 40 => 1153, 41 => 1153, 46 => 1153,
56 => 1153, 60 => 1153, 67 => 1153, 68 => 1153,
70 => 1153, 71 => 1153, 72 => 1153, 73 => 1153,
86 => 1153, 91 => 1153, 94 => 1153, 97 => 1153,
99 => 1153, 103 => 1153, others => 0),
2156 =>
(85 => 35574, others => 0),
2157 =>
(34 => 35576, 37 => 35575, others => 0),
2158 =>
(0 => 1147, 15 => 1147, 34 => 1147, 35 => 1147,
39 => 1147, 40 => 1147, 41 => 1147, 46 => 1147,
56 => 1147, 60 => 1147, 67 => 1147, 68 => 1147,
70 => 1147, 71 => 1147, 72 => 1147, 73 => 1147,
86 => 1147, 91 => 1147, 94 => 1147, 97 => 1147,
99 => 1147, 103 => 1147, others => 0),
2159 =>
(85 => 35577, others => 0),
2160 =>
(34 => 35579, 37 => 35578, others => 0),
2161 =>
(46 => 32807, 85 => 35580, 90 => 32868, others => 0),
2162 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2163 =>
(0 => 1275, 15 => 1275, 34 => 1275, 35 => 1275,
39 => 1275, 40 => 1275, 41 => 1275, 46 => 1275,
56 => 1275, 60 => 1275, 67 => 1275, 68 => 1275,
70 => 1275, 71 => 1275, 72 => 1275, 73 => 1275,
86 => 1275, 91 => 1275, 94 => 1275, 97 => 1275,
99 => 1275, 103 => 1275, others => 0),
2164 =>
(0 => 1277, 15 => 1277, 34 => 1277, 35 => 1277,
39 => 1277, 40 => 1277, 41 => 1277, 46 => 1277,
56 => 1277, 60 => 1277, 67 => 1277, 68 => 1277,
70 => 1277, 71 => 1277, 72 => 1277, 73 => 1277,
86 => 1277, 91 => 1277, 94 => 1277, 97 => 1277,
99 => 1277, 103 => 1277, others => 0),
2165 =>
(0 => 1014, 15 => 1014, 34 => 1014, 35 => 1014,
39 => 1014, 40 => 1014, 41 => 1014, 46 => 1014,
56 => 1014, 60 => 1014, 67 => 1014, 68 => 1014,
70 => 1014, 71 => 1014, 72 => 1014, 73 => 1014,
86 => 1014, 91 => 1014, 94 => 1014, 97 => 1014,
99 => 1014, 103 => 1014, others => 0),
2166 =>
(101 => 33976, others => 0),
2167 =>
(46 => 32807, 85 => 35584, 90 => 32868, others => 0),
2168 =>
(0 => 1271, 15 => 1271, 34 => 1271, 35 => 1271,
39 => 1271, 40 => 1271, 41 => 1271, 46 => 1271,
56 => 1271, 60 => 1271, 67 => 1271, 68 => 1271,
70 => 1271, 71 => 1271, 72 => 1271, 73 => 1271,
86 => 1271, 91 => 1271, 94 => 1271, 97 => 1271,
99 => 1271, 103 => 1271, others => 0),
2169 =>
(0 => 1273, 15 => 1273, 34 => 1273, 35 => 1273,
39 => 1273, 40 => 1273, 41 => 1273, 46 => 1273,
56 => 1273, 60 => 1273, 67 => 1273, 68 => 1273,
70 => 1273, 71 => 1273, 72 => 1273, 73 => 1273,
86 => 1273, 91 => 1273, 94 => 1273, 97 => 1273,
99 => 1273, 103 => 1273, others => 0),
2170 =>
(0 => 1009, 15 => 1009, 34 => 1009, 35 => 1009,
39 => 1009, 40 => 1009, 41 => 1009, 46 => 1009,
56 => 1009, 60 => 1009, 67 => 1009, 68 => 1009,
70 => 1009, 71 => 1009, 72 => 1009, 73 => 1009,
86 => 1009, 91 => 1009, 94 => 1009, 97 => 1009,
99 => 1009, 103 => 1009, others => 0),
2171 =>
(85 => 35586, others => 0),
2172 =>
(34 => 35588, 37 => 35587, others => 0),
2173 =>
(0 => 1003, 15 => 1003, 34 => 1003, 35 => 1003,
39 => 1003, 40 => 1003, 41 => 1003, 46 => 1003,
56 => 1003, 60 => 1003, 67 => 1003, 68 => 1003,
70 => 1003, 71 => 1003, 72 => 1003, 73 => 1003,
86 => 1003, 91 => 1003, 94 => 1003, 97 => 1003,
99 => 1003, 103 => 1003, others => 0),
2174 =>
(85 => 35589, others => 0),
2175 =>
(34 => 35591, 37 => 35590, others => 0),
2176 =>
(46 => 32807, 85 => 35592, 90 => 32868, others => 0),
2177 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2178 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2179 =>
(0 => 1330, 15 => 1330, 34 => 1330, 35 => 1330,
39 => 1330, 40 => 1330, 41 => 1330, 46 => 1330,
56 => 1330, 60 => 1330, 67 => 1330, 68 => 1330,
70 => 1330, 71 => 1330, 72 => 1330, 73 => 1330,
86 => 1330, 91 => 1330, 94 => 1330, 97 => 1330,
99 => 1330, 103 => 1330, others => 0),
2180 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2181 =>
(3 => 35600, 15 => 35599, 34 => 35598, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 35597, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
2182 =>
(51 => 35604, 85 => 35603, others => 0),
2183 =>
(0 => 1260, 15 => 1260, 34 => 1260, 35 => 1260,
39 => 1260, 40 => 1260, 41 => 1260, 46 => 1260,
56 => 1260, 60 => 1260, 67 => 1260, 68 => 1260,
70 => 1260, 71 => 1260, 72 => 1260, 73 => 1260,
86 => 1260, 91 => 1260, 94 => 1260, 97 => 1260,
99 => 1260, 103 => 1260, others => 0),
2184 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2185 =>
(3 => 35609, 15 => 35608, 34 => 35607, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 35606, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
2186 =>
(51 => 35613, 85 => 35612, others => 0),
2187 =>
(85 => 35614, 103 => 32885, others => 0),
2188 =>
(9 => 33243, 64 => 33242, 83 => 35616, 104 => 33241,
others => 0),
2189 =>
(51 => 35617, 103 => 32885, others => 0),
2190 =>
(83 => 35619, others => 0),
2191 =>
(61 => 35620, others => 0),
2192 =>
(51 => 35621, 103 => 32885, others => 0),
2193 =>
(51 => 35623, 103 => 32885, others => 0),
2194 =>
(83 => 35625, others => 0),
2195 =>
(46 => 32838, others => 0),
2196 =>
(15 => 33640, 34 => 33639, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2197 =>
(51 => 33644, others => 0),
2198 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35627,
90 => 32868, others => 0),
2199 =>
(46 => 32838, others => 0),
2200 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2201 =>
(15 => 33771, 34 => 33770, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2202 =>
(51 => 33776, others => 0),
2203 =>
(15 => 33780, 34 => 33779, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2204 =>
(51 => 33785, others => 0),
2205 =>
(80 => 35632, others => 0),
2206 =>
(9 => 33243, 21 => 111, 51 => 111, 64 => 33242,
85 => 111, 104 => 33241, others => 0),
2207 =>
(13 => 35633, 83 => 1676, 85 => 1676, others => 0),
2208 =>
(9 => 33243, 64 => 33242, 83 => 1677, 85 => 1677,
104 => 33241, others => 0),
2209 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2210 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2211 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2212 =>
(13 => 35637, 83 => 1672, 85 => 1672, others => 0),
2213 =>
(9 => 33243, 64 => 33242, 83 => 1673, 85 => 1673,
104 => 33241, others => 0),
2214 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2215 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2216 =>
(13 => 35640, 83 => 1664, 85 => 1664, others => 0),
2217 =>
(61 => 35641, others => 0),
2218 =>
(13 => 35642, 83 => 1654, 85 => 1654, others => 0),
2219 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2220 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2221 =>
(9 => 33243, 64 => 33242, 83 => 1665, 85 => 1665,
104 => 33241, others => 0),
2222 =>
(0 => 1945, 15 => 1945, 34 => 1945, 35 => 1945,
39 => 1945, 40 => 1945, 41 => 1945, 46 => 1945,
56 => 1945, 60 => 1945, 67 => 1945, 68 => 1945,
70 => 1945, 71 => 1945, 72 => 1945, 73 => 1945,
86 => 1945, 91 => 1945, 94 => 1945, 97 => 1945,
99 => 1945, 103 => 1945, others => 0),
2223 =>
(0 => 1947, 15 => 1947, 34 => 1947, 35 => 1947,
39 => 1947, 40 => 1947, 41 => 1947, 46 => 1947,
56 => 1947, 60 => 1947, 67 => 1947, 68 => 1947,
70 => 1947, 71 => 1947, 72 => 1947, 73 => 1947,
86 => 1947, 91 => 1947, 94 => 1947, 97 => 1947,
99 => 1947, 103 => 1947, others => 0),
2224 =>
(0 => 1885, 15 => 1885, 34 => 1885, 35 => 1885,
39 => 1885, 40 => 1885, 41 => 1885, 46 => 1885,
56 => 1885, 60 => 1885, 67 => 1885, 68 => 1885,
70 => 1885, 71 => 1885, 72 => 1885, 73 => 1885,
86 => 1885, 91 => 1885, 94 => 1885, 97 => 1885,
99 => 1885, 103 => 1885, others => 0),
2225 =>
(101 => 33976, others => 0),
2226 =>
(46 => 32807, 85 => 35646, others => 0),
2227 =>
(0 => 1880, 15 => 1880, 34 => 1880, 35 => 1880,
39 => 1880, 40 => 1880, 41 => 1880, 46 => 1880,
56 => 1880, 60 => 1880, 67 => 1880, 68 => 1880,
70 => 1880, 71 => 1880, 72 => 1880, 73 => 1880,
86 => 1880, 91 => 1880, 94 => 1880, 97 => 1880,
99 => 1880, 103 => 1880, others => 0),
2228 =>
(29 => 32865, 85 => 35648, others => 0),
2229 =>
(34 => 35650, 37 => 35649, others => 0),
2230 =>
(0 => 1943, 15 => 1943, 34 => 1943, 35 => 1943,
39 => 1943, 40 => 1943, 41 => 1943, 46 => 1943,
56 => 1943, 60 => 1943, 67 => 1943, 68 => 1943,
70 => 1943, 71 => 1943, 72 => 1943, 73 => 1943,
86 => 1943, 91 => 1943, 94 => 1943, 97 => 1943,
99 => 1943, 103 => 1943, others => 0),
2231 =>
(0 => 1874, 15 => 1874, 34 => 1874, 35 => 1874,
39 => 1874, 40 => 1874, 41 => 1874, 46 => 1874,
56 => 1874, 60 => 1874, 67 => 1874, 68 => 1874,
70 => 1874, 71 => 1874, 72 => 1874, 73 => 1874,
86 => 1874, 91 => 1874, 94 => 1874, 97 => 1874,
99 => 1874, 103 => 1874, others => 0),
2232 =>
(29 => 32865, 85 => 35651, others => 0),
2233 =>
(34 => 35653, 37 => 35652, others => 0),
2234 =>
(46 => 32807, 85 => 35654, others => 0),
2235 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2236 =>
(15 => 1762, 34 => 1762, 39 => 1762, 40 => 1762,
41 => 1762, 46 => 1762, 60 => 1762, 67 => 1762,
68 => 1762, 70 => 1762, 71 => 1762, 72 => 1762,
73 => 1762, 91 => 1762, 94 => 1762, 97 => 1762,
99 => 1762, others => 0),
2237 =>
(85 => 35657, others => 0),
2238 =>
(85 => 35658, 103 => 32885, others => 0),
2239 =>
(85 => 2046, 103 => 2046, others => 0),
2240 =>
(9 => 33678, 103 => 35660, others => 0),
2241 =>
(34 => 220, 101 => 220, others => 0),
2242 =>
(51 => 35662, others => 0),
2243 =>
(18 => 214, 34 => 214, 39 => 214, 46 => 214,
70 => 214, 101 => 214, others => 0),
2244 =>
(18 => 34386, 34 => 216, 39 => 32961, 46 => 32838,
70 => 32775, 101 => 216, others => 0),
2245 =>
(34 => 217, 101 => 217, others => 0),
2246 =>
(76 => 35665, others => 0),
2247 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
2248 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2249 =>
(15 => 1765, 34 => 1765, 39 => 1765, 40 => 1765,
41 => 1765, 46 => 1765, 60 => 1765, 67 => 1765,
68 => 1765, 70 => 1765, 71 => 1765, 72 => 1765,
73 => 1765, 91 => 1765, 94 => 1765, 97 => 1765,
99 => 1765, others => 0),
2250 =>
(7 => 33688, 19 => 32869, 23 => 33687, 40 => 35673,
46 => 32807, 60 => 33685, 72 => 35672, 73 => 35671,
90 => 32868, others => 0),
2251 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 35676,
76 => 33840, 90 => 32868, others => 0),
2252 =>
(15 => 727, 34 => 727, 39 => 727, 40 => 727,
41 => 727, 46 => 727, 60 => 727, 67 => 727,
68 => 727, 70 => 727, 71 => 727, 72 => 727,
73 => 727, 91 => 727, 94 => 727, 97 => 727,
99 => 727, others => 0),
2253 =>
(9 => 34179, 103 => 35678, others => 0),
2254 =>
(85 => 35679, others => 0),
2255 =>
(15 => 1764, 34 => 1764, 39 => 1764, 40 => 1764,
41 => 1764, 46 => 1764, 60 => 1764, 67 => 1764,
68 => 1764, 70 => 1764, 71 => 1764, 72 => 1764,
73 => 1764, 91 => 1764, 94 => 1764, 97 => 1764,
99 => 1764, others => 0),
2256 =>
(85 => 35680, others => 0),
2257 =>
(9 => 33678, 85 => 35682, 103 => 35681, others => 0),
2258 =>
(85 => 355, 103 => 355, others => 0),
2259 =>
(19 => 34404, 46 => 34403, others => 0),
2260 =>
(21 => 35687, 83 => 35686, others => 0),
2261 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2262 =>
(85 => 393, 103 => 393, others => 0),
2263 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2264 =>
(85 => 1597, 103 => 1597, others => 0),
2265 =>
(53 => 35690, 85 => 74, 103 => 74, others => 0),
2266 =>
(53 => 35692, 80 => 35691, others => 0),
2267 =>
(46 => 32838, others => 0),
2268 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35694,
90 => 32868, others => 0),
2269 =>
(46 => 32838, others => 0),
2270 =>
(85 => 67, 103 => 67, others => 0),
2271 =>
(85 => 35698, 103 => 32885, others => 0),
2272 =>
(61 => 33843, 71 => 35700, 76 => 33840, others => 0),
2273 =>
(85 => 2045, 103 => 2045, others => 0),
2274 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2275 =>
(9 => 33678, 85 => 35704, 103 => 35703, others => 0),
2276 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2277 =>
(9 => 34179, 85 => 1499, 103 => 1499, others => 0),
2278 =>
(15 => 678, 34 => 678, 39 => 678, 40 => 678,
41 => 678, 46 => 678, 60 => 678, 67 => 678,
68 => 678, 70 => 678, 71 => 678, 72 => 678,
73 => 678, 91 => 678, 94 => 678, 97 => 678,
99 => 678, others => 0),
2279 =>
(15 => 1486, 34 => 1486, 39 => 1486, 40 => 1486,
41 => 1486, 46 => 1486, 60 => 1486, 67 => 1486,
68 => 1486, 70 => 1486, 71 => 1486, 72 => 1486,
73 => 1486, 91 => 1486, 94 => 1486, 97 => 1486,
99 => 1486, others => 0),
2280 =>
(85 => 35708, 103 => 32885, others => 0),
2281 =>
(61 => 33843, 71 => 35710, 76 => 33840, others => 0),
2282 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2283 =>
(15 => 1754, 34 => 1754, 39 => 1754, 40 => 1754,
41 => 1754, 46 => 1754, 60 => 1754, 67 => 1754,
68 => 1754, 70 => 1754, 71 => 1754, 72 => 1754,
73 => 1754, 91 => 1754, 94 => 1754, 97 => 1754,
99 => 1754, others => 0),
2284 =>
(85 => 35712, others => 0),
2285 =>
(9 => 33678, 85 => 35714, 103 => 35713, others => 0),
2286 =>
(85 => 35717, 103 => 32885, others => 0),
2287 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2288 =>
(56 => 35721, 61 => 33843, 71 => 35720, 76 => 33840,
others => 0),
2289 =>
(59 => 35722, others => 0),
2290 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2291 =>
(59 => 35724, others => 0),
2292 =>
(15 => 677, 34 => 677, 39 => 677, 40 => 677,
41 => 677, 46 => 677, 60 => 677, 67 => 677,
68 => 677, 70 => 677, 71 => 677, 72 => 677,
73 => 677, 91 => 677, 94 => 677, 97 => 677,
99 => 677, others => 0),
2293 =>
(85 => 35725, others => 0),
2294 =>
(103 => 35726, others => 0),
2295 =>
(15 => 2183, 34 => 2183, 39 => 2183, 40 => 2183,
41 => 2183, 46 => 2183, 60 => 2183, 67 => 2183,
68 => 2183, 70 => 2183, 71 => 2183, 72 => 2183,
73 => 2183, 91 => 2183, 94 => 2183, 97 => 2183,
99 => 2183, others => 0),
2296 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2297 =>
(85 => 35728, others => 0),
2298 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2299 =>
(85 => 35730, others => 0),
2300 =>
(15 => 2175, 34 => 2175, 39 => 2175, 40 => 2175,
41 => 2175, 46 => 2175, 60 => 2175, 67 => 2175,
68 => 2175, 70 => 2175, 71 => 2175, 72 => 2175,
73 => 2175, 91 => 2175, 94 => 2175, 97 => 2175,
99 => 2175, others => 0),
2301 =>
(34 => 33882, 35 => 33881, 39 => 32961, 59 => 35731,
60 => 33879, 67 => 33878, 70 => 32775, 71 => 33877,
others => 0),
2302 =>
(15 => 2156, 34 => 2156, 39 => 2156, 40 => 2156,
41 => 2156, 46 => 2156, 60 => 2156, 67 => 2156,
68 => 2156, 70 => 2156, 72 => 2156, 73 => 2156,
91 => 2156, 94 => 2156, 97 => 2156, 99 => 2156,
others => 0),
2303 =>
(85 => 35733, others => 0),
2304 =>
(34 => 35735, 37 => 35734, others => 0),
2305 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2306 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2307 =>
(15 => 35738, others => 0),
2308 =>
(85 => 2165, others => 0),
2309 =>
(46 => 35739, 85 => 2164, others => 0),
2310 =>
(53 => 35741, 85 => 35740, 103 => 32885, others => 0),
2311 =>
(46 => 32838, others => 0),
2312 =>
(34 => 33882, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 33877, others => 0),
2313 =>
(9 => 34179, 103 => 1497, others => 0),
2314 =>
(34 => 348, 35 => 348, 39 => 348, 40 => 348,
46 => 348, 60 => 348, 67 => 348, 70 => 348,
71 => 348, 72 => 348, others => 0),
2315 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 33168,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2316 =>
(85 => 35747, others => 0),
2317 =>
(46 => 35748, 85 => 2160, others => 0),
2318 =>
(34 => 35749, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, others => 0),
2319 =>
(85 => 2161, others => 0),
2320 =>
(103 => 35750, others => 0),
2321 =>
(15 => 2119, 34 => 2119, 39 => 2119, 40 => 2119,
41 => 2119, 46 => 2119, 60 => 2119, 67 => 2119,
68 => 2119, 70 => 2119, 71 => 2119, 72 => 2119,
73 => 2119, 91 => 2119, 94 => 2119, 97 => 2119,
99 => 2119, others => 0),
2322 =>
(15 => 2128, 34 => 2128, 39 => 2128, 40 => 2128,
41 => 2128, 46 => 2128, 60 => 2128, 67 => 2128,
68 => 2128, 70 => 2128, 71 => 2128, 72 => 2128,
73 => 2128, 91 => 2128, 94 => 2128, 97 => 2128,
99 => 2128, others => 0),
2323 =>
(103 => 35751, others => 0),
2324 =>
(15 => 2015, 34 => 2015, 39 => 2015, 40 => 2015,
41 => 2015, 46 => 2015, 60 => 2015, 67 => 2015,
68 => 2015, 70 => 2015, 71 => 2015, 72 => 2015,
73 => 2015, 91 => 2015, 94 => 2015, 97 => 2015,
99 => 2015, others => 0),
2325 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2326 =>
(85 => 35753, others => 0),
2327 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2328 =>
(85 => 35755, others => 0),
2329 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
59 => 35756, 60 => 33899, 67 => 33898, 70 => 32775,
71 => 33897, 72 => 33896, others => 0),
2330 =>
(15 => 1977, 34 => 1977, 39 => 1977, 40 => 1977,
41 => 1977, 46 => 1977, 60 => 1977, 67 => 1977,
68 => 1977, 70 => 1977, 72 => 1977, 73 => 1977,
91 => 1977, 94 => 1977, 97 => 1977, 99 => 1977,
others => 0),
2331 =>
(85 => 35758, others => 0),
2332 =>
(51 => 35759, 53 => 32888, 78 => 32887, 85 => 32886,
103 => 32885, others => 0),
2333 =>
(46 => 32815, others => 0),
2334 =>
(46 => 32815, 90 => 32853, others => 0),
2335 =>
(40 => 35763, 72 => 35762, others => 0),
2336 =>
(53 => 32925, 80 => 32924, others => 0),
2337 =>
(53 => 35765, 101 => 35764, others => 0),
2338 =>
(0 => 1975, 15 => 1975, 34 => 1975, 39 => 1975,
40 => 1975, 41 => 1975, 46 => 1975, 56 => 1975,
60 => 1975, 67 => 1975, 68 => 1975, 70 => 1975,
71 => 1975, 72 => 1975, 73 => 1975, 86 => 1975,
91 => 1975, 94 => 1975, 97 => 1975, 99 => 1975,
103 => 1975, others => 0),
2339 =>
(85 => 35766, others => 0),
2340 =>
(46 => 35768, 85 => 35767, others => 0),
2341 =>
(34 => 2006, 35 => 2006, 39 => 2006, 40 => 2006,
60 => 2006, 67 => 2006, 70 => 2006, 72 => 2006,
others => 0),
2342 =>
(46 => 35770, 85 => 35769, others => 0),
2343 =>
(34 => 35771, 35 => 34467, 39 => 32961, 40 => 34466,
60 => 34465, 67 => 34464, 70 => 32775, 72 => 34463,
others => 0),
2344 =>
(3 => 32964, 61 => 32959, 86 => 32956, others => 0),
2345 =>
(85 => 1986, others => 0),
2346 =>
(46 => 35772, 85 => 1985, others => 0),
2347 =>
(34 => 1992, 35 => 1992, 39 => 1992, 40 => 1992,
46 => 1992, 60 => 1992, 67 => 1992, 70 => 1992,
72 => 1992, others => 0),
2348 =>
(51 => 35773, 53 => 33216, 78 => 33055, 85 => 33054,
103 => 32885, others => 0),
2349 =>
(53 => 33220, 80 => 33219, others => 0),
2350 =>
(46 => 32815, others => 0),
2351 =>
(46 => 32815, 90 => 32853, others => 0),
2352 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 33897,
72 => 33896, others => 0),
2353 =>
(46 => 35777, 85 => 1981, others => 0),
2354 =>
(34 => 35778, 35 => 33881, 39 => 32961, 40 => 33901,
46 => 32838, 60 => 33899, 67 => 33898, 70 => 32775,
72 => 33896, others => 0),
2355 =>
(85 => 1982, others => 0),
2356 =>
(103 => 35779, others => 0),
2357 =>
(15 => 2115, 34 => 2115, 39 => 2115, 40 => 2115,
41 => 2115, 46 => 2115, 60 => 2115, 67 => 2115,
68 => 2115, 70 => 2115, 71 => 2115, 72 => 2115,
73 => 2115, 91 => 2115, 94 => 2115, 97 => 2115,
99 => 2115, others => 0),
2358 =>
(15 => 1624, 34 => 1624, 39 => 1624, 40 => 1624,
41 => 1624, 46 => 1624, 60 => 1624, 67 => 1624,
68 => 1624, 70 => 1624, 72 => 1624, 73 => 1624,
91 => 1624, 94 => 1624, 97 => 1624, 99 => 1624,
others => 0),
2359 =>
(85 => 35780, others => 0),
2360 =>
(0 => 1405, 15 => 1405, 34 => 1405, 39 => 1405,
40 => 1405, 41 => 1405, 46 => 1405, 56 => 1405,
60 => 1405, 67 => 1405, 68 => 1405, 70 => 1405,
71 => 1405, 72 => 1405, 73 => 1405, 86 => 1405,
91 => 1405, 94 => 1405, 97 => 1405, 99 => 1405,
103 => 1405, others => 0),
2361 =>
(85 => 35781, others => 0),
2362 =>
(21 => 617, 83 => 617, others => 0),
2363 =>
(12 => 35782, others => 0),
2364 =>
(2 => 33031, 19 => 33912, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
2365 =>
(83 => 608, others => 0),
2366 =>
(21 => 615, 83 => 615, others => 0),
2367 =>
(9 => 33243, 21 => 1343, 64 => 33242, 83 => 1343,
104 => 33241, others => 0),
2368 =>
(85 => 35785, others => 0),
2369 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2370 =>
(76 => 35787, others => 0),
2371 =>
(19 => 201, 34 => 201, 46 => 201, 70 => 201,
90 => 201, others => 0),
2372 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2373 =>
(15 => 122, 18 => 122, 34 => 122, 35 => 122,
39 => 122, 40 => 122, 41 => 122, 46 => 122,
60 => 122, 67 => 122, 68 => 122, 70 => 122,
71 => 122, 72 => 122, 73 => 122, 91 => 122,
94 => 122, 97 => 122, 99 => 122, 101 => 122,
others => 0),
2374 =>
(57 => 35789, others => 0),
2375 =>
(32 => 35791, 34 => 35790, 64 => 33933, others => 0),
2376 =>
(34 => 35793, others => 0),
2377 =>
(9 => 33243, 12 => 35794, 64 => 33242, 104 => 33241,
others => 0),
2378 =>
(1 => 2082, 4 => 2082, 15 => 2082, 18 => 2082,
19 => 2082, 24 => 2082, 25 => 2082, 32 => 2082,
33 => 2082, 34 => 2082, 37 => 2082, 38 => 2082,
39 => 2082, 42 => 2082, 46 => 2082, 47 => 2082,
52 => 2082, 57 => 2082, 61 => 2082, 64 => 2082,
70 => 2082, 74 => 2082, 79 => 2082, 80 => 2082,
84 => 2082, 90 => 2082, 96 => 2082, 101 => 2082,
102 => 2082, others => 0),
2379 =>
(84 => 35795, others => 0),
2380 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2381 =>
(32 => 2070, 34 => 2070, 64 => 2070, others => 0),
2382 =>
(85 => 35797, others => 0),
2383 =>
(34 => 35798, others => 0),
2384 =>
(13 => 35799, 28 => 386, 85 => 386, others => 0),
2385 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2386 =>
(13 => 35801, 28 => 384, 85 => 384, others => 0),
2387 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2388 =>
(101 => 33976, others => 0),
2389 =>
(80 => 35804, others => 0),
2390 =>
(1 => 2060, 4 => 2060, 15 => 2060, 18 => 2060,
19 => 2060, 24 => 2060, 25 => 2060, 32 => 2060,
33 => 2060, 34 => 2060, 37 => 2060, 38 => 2060,
39 => 2060, 42 => 2060, 46 => 2060, 47 => 2060,
52 => 2060, 57 => 2060, 61 => 2060, 64 => 2060,
70 => 2060, 74 => 2060, 79 => 2060, 80 => 2060,
84 => 2060, 90 => 2060, 96 => 2060, 101 => 2060,
102 => 2060, others => 0),
2391 =>
(1 => 2021, 4 => 2021, 15 => 2021, 18 => 2021,
19 => 2021, 24 => 2021, 25 => 2021, 32 => 2021,
33 => 2021, 34 => 2021, 37 => 2021, 38 => 2021,
39 => 2021, 42 => 2021, 46 => 2021, 47 => 2021,
52 => 2021, 57 => 2021, 61 => 2021, 64 => 2021,
70 => 2021, 74 => 2021, 79 => 2021, 80 => 2021,
84 => 2021, 90 => 2021, 96 => 2021, 101 => 2021,
102 => 2021, others => 0),
2392 =>
(1 => 1547, 4 => 1547, 15 => 1547, 18 => 1547,
19 => 1547, 24 => 1547, 25 => 1547, 32 => 1547,
33 => 1547, 34 => 1547, 37 => 1547, 38 => 1547,
39 => 1547, 42 => 1547, 46 => 1547, 47 => 1547,
52 => 1547, 57 => 1547, 61 => 1547, 64 => 1547,
70 => 1547, 74 => 1547, 79 => 1547, 80 => 1547,
84 => 1547, 90 => 1547, 96 => 1547, 101 => 1547,
102 => 1547, others => 0),
2393 =>
(85 => 35805, others => 0),
2394 =>
(47 => 35806, others => 0),
2395 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2396 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2397 =>
(32 => 35811, 33 => 35810, 34 => 35809, others => 0),
2398 =>
(10 => 1694, 12 => 1505, 29 => 1694, 53 => 1694,
57 => 1505, others => 0),
2399 =>
(12 => 1530, 57 => 1530, others => 0),
2400 =>
(19 => 32869, 46 => 32807, 81 => 35812, 90 => 32868,
others => 0),
2401 =>
(57 => 35814, others => 0),
2402 =>
(57 => 35815, others => 0),
2403 =>
(1 => 370, 4 => 370, 15 => 370, 18 => 370,
19 => 370, 24 => 370, 25 => 370, 32 => 370,
33 => 370, 34 => 370, 37 => 370, 38 => 370,
39 => 370, 42 => 370, 46 => 370, 47 => 370,
52 => 370, 57 => 370, 61 => 370, 64 => 370,
70 => 370, 74 => 370, 79 => 370, 80 => 370,
84 => 370, 90 => 370, 96 => 370, 101 => 370,
102 => 370, others => 0),
2404 =>
(34 => 35816, others => 0),
2405 =>
(1 => 170, 4 => 170, 15 => 170, 18 => 170,
19 => 170, 24 => 170, 25 => 170, 32 => 170,
33 => 170, 34 => 170, 37 => 170, 38 => 170,
39 => 170, 42 => 170, 46 => 170, 47 => 170,
52 => 170, 57 => 170, 61 => 170, 64 => 170,
70 => 170, 74 => 170, 79 => 170, 80 => 170,
84 => 170, 90 => 170, 96 => 170, 101 => 170,
102 => 170, others => 0),
2406 =>
(85 => 35817, others => 0),
2407 =>
(101 => 33976, others => 0),
2408 =>
(46 => 35820, 85 => 35819, others => 0),
2409 =>
(12 => 35821, others => 0),
2410 =>
(18 => 35822, others => 0),
2411 =>
(34 => 189, 101 => 189, others => 0),
2412 =>
(34 => 35823, 101 => 34542, others => 0),
2413 =>
(46 => 35826, 85 => 35825, others => 0),
2414 =>
(1 => 173, 4 => 173, 15 => 173, 18 => 173,
19 => 173, 24 => 173, 25 => 173, 32 => 173,
33 => 173, 34 => 173, 37 => 173, 38 => 173,
39 => 173, 42 => 173, 46 => 173, 47 => 173,
52 => 173, 57 => 173, 61 => 173, 64 => 173,
70 => 173, 74 => 173, 79 => 173, 80 => 173,
84 => 173, 90 => 173, 96 => 173, 101 => 173,
102 => 173, others => 0),
2415 =>
(28 => 35829, 53 => 35828, 85 => 35827, others => 0),
2416 =>
(28 => 35831, 85 => 35830, others => 0),
2417 =>
(101 => 33976, others => 0),
2418 =>
(46 => 35834, 85 => 35833, others => 0),
2419 =>
(10 => 1694, 20 => 1562, 29 => 1694, 53 => 1694,
85 => 1562, others => 0),
2420 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2421 =>
(57 => 35836, others => 0),
2422 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2423 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2424 =>
(34 => 35840, 37 => 35839, others => 0),
2425 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2426 =>
(101 => 33976, others => 0),
2427 =>
(46 => 35844, 85 => 35843, others => 0),
2428 =>
(46 => 32807, 65 => 33105, others => 0),
2429 =>
(46 => 32807, 65 => 33105, others => 0),
2430 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2431 =>
(12 => 35849, 100 => 35848, others => 0),
2432 =>
(34 => 366, 101 => 366, others => 0),
2433 =>
(0 => 1906, 15 => 1906, 34 => 1906, 35 => 1906,
39 => 1906, 40 => 1906, 41 => 1906, 46 => 1906,
56 => 1906, 60 => 1906, 67 => 1906, 68 => 1906,
70 => 1906, 71 => 1906, 72 => 1906, 73 => 1906,
86 => 1906, 91 => 1906, 94 => 1906, 97 => 1906,
99 => 1906, 103 => 1906, others => 0),
2434 =>
(29 => 32865, 85 => 35850, others => 0),
2435 =>
(46 => 32807, 85 => 35851, others => 0),
2436 =>
(0 => 1901, 15 => 1901, 34 => 1901, 35 => 1901,
39 => 1901, 40 => 1901, 41 => 1901, 46 => 1901,
56 => 1901, 60 => 1901, 67 => 1901, 68 => 1901,
70 => 1901, 71 => 1901, 72 => 1901, 73 => 1901,
86 => 1901, 91 => 1901, 94 => 1901, 97 => 1901,
99 => 1901, 103 => 1901, others => 0),
2437 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2438 =>
(9 => 2130, 13 => 2130, 28 => 2130, 63 => 2130,
85 => 2130, 103 => 2130, others => 0),
2439 =>
(15 => 369, 34 => 369, 39 => 369, 40 => 369,
41 => 369, 46 => 369, 60 => 369, 67 => 369,
68 => 369, 70 => 369, 71 => 369, 72 => 369,
73 => 369, 91 => 369, 94 => 369, 97 => 369,
99 => 369, others => 0),
2440 =>
(85 => 35854, others => 0),
2441 =>
(15 => 1567, 34 => 1567, 39 => 1567, 40 => 1567,
41 => 1567, 46 => 1567, 60 => 1567, 67 => 1567,
68 => 1567, 70 => 1567, 71 => 1567, 72 => 1567,
73 => 1567, 91 => 1567, 94 => 1567, 97 => 1567,
99 => 1567, others => 0),
2442 =>
(9 => 33243, 64 => 33242, 85 => 35855, 103 => 32885,
104 => 33241, others => 0),
2443 =>
(15 => 1578, 34 => 1578, 39 => 1578, 40 => 1578,
41 => 1578, 46 => 1578, 60 => 1578, 67 => 1578,
68 => 1578, 70 => 1578, 71 => 1578, 72 => 1578,
73 => 1578, 91 => 1578, 94 => 1578, 97 => 1578,
99 => 1578, others => 0),
2444 =>
(63 => 35857, others => 0),
2445 =>
(21 => 35463, 83 => 35858, others => 0),
2446 =>
(63 => 35859, others => 0),
2447 =>
(21 => 35468, 83 => 35860, others => 0),
2448 =>
(15 => 1571, 34 => 1571, 39 => 1571, 40 => 1571,
41 => 1571, 46 => 1571, 60 => 1571, 67 => 1571,
68 => 1571, 70 => 1571, 71 => 1571, 72 => 1571,
73 => 1571, 91 => 1571, 94 => 1571, 97 => 1571,
99 => 1571, others => 0),
2449 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2450 =>
(85 => 35862, others => 0),
2451 =>
(9 => 33243, 64 => 33242, 85 => 35863, 103 => 32885,
104 => 33241, others => 0),
2452 =>
(15 => 1574, 34 => 1574, 39 => 1574, 40 => 1574,
41 => 1574, 46 => 1574, 60 => 1574, 67 => 1574,
68 => 1574, 70 => 1574, 71 => 1574, 72 => 1574,
73 => 1574, 91 => 1574, 94 => 1574, 97 => 1574,
99 => 1574, others => 0),
2453 =>
(15 => 1595, 34 => 1595, 39 => 1595, 40 => 1595,
41 => 1595, 46 => 1595, 60 => 1595, 67 => 1595,
68 => 1595, 70 => 1595, 71 => 1595, 72 => 1595,
73 => 1595, 91 => 1595, 94 => 1595, 97 => 1595,
99 => 1595, others => 0),
2454 =>
(85 => 35865, others => 0),
2455 =>
(15 => 1581, 34 => 1581, 39 => 1581, 40 => 1581,
41 => 1581, 46 => 1581, 60 => 1581, 67 => 1581,
68 => 1581, 70 => 1581, 71 => 1581, 72 => 1581,
73 => 1581, 91 => 1581, 94 => 1581, 97 => 1581,
99 => 1581, others => 0),
2456 =>
(85 => 35866, others => 0),
2457 =>
(15 => 1593, 34 => 1593, 39 => 1593, 40 => 1593,
41 => 1593, 46 => 1593, 60 => 1593, 67 => 1593,
68 => 1593, 70 => 1593, 71 => 1593, 72 => 1593,
73 => 1593, 91 => 1593, 94 => 1593, 97 => 1593,
99 => 1593, others => 0),
2458 =>
(85 => 35867, others => 0),
2459 =>
(9 => 257, 12 => 257, 13 => 257, 21 => 257,
28 => 257, 57 => 257, 63 => 257, 83 => 257,
85 => 257, 103 => 257, others => 0),
2460 =>
(9 => 253, 12 => 253, 13 => 253, 21 => 253,
28 => 253, 57 => 253, 63 => 253, 83 => 253,
85 => 253, 103 => 253, others => 0),
2461 =>
(46 => 32807, 85 => 35868, others => 0),
2462 =>
(0 => 1895, 15 => 1895, 34 => 1895, 35 => 1895,
39 => 1895, 40 => 1895, 41 => 1895, 46 => 1895,
56 => 1895, 60 => 1895, 67 => 1895, 68 => 1895,
70 => 1895, 71 => 1895, 72 => 1895, 73 => 1895,
86 => 1895, 91 => 1895, 94 => 1895, 97 => 1895,
99 => 1895, 103 => 1895, others => 0),
2463 =>
(34 => 35870, others => 0),
2464 =>
(0 => 1890, 15 => 1890, 34 => 1890, 35 => 1890,
39 => 1890, 40 => 1890, 41 => 1890, 46 => 1890,
56 => 1890, 60 => 1890, 67 => 1890, 68 => 1890,
70 => 1890, 71 => 1890, 72 => 1890, 73 => 1890,
86 => 1890, 91 => 1890, 94 => 1890, 97 => 1890,
99 => 1890, 103 => 1890, others => 0),
2465 =>
(29 => 32865, 85 => 35871, others => 0),
2466 =>
(3 => 35305, 53 => 32938, 86 => 35302, others => 0),
2467 =>
(85 => 35308, others => 0),
2468 =>
(61 => 35872, others => 0),
2469 =>
(51 => 35873, 78 => 35342, 85 => 35341, 103 => 32885,
others => 0),
2470 =>
(51 => 35875, 78 => 35346, 85 => 35345, 103 => 32885,
others => 0),
2471 =>
(3 => 32964, 61 => 32959, 86 => 35351, others => 0),
2472 =>
(85 => 35356, others => 0),
2473 =>
(51 => 35877, 78 => 35373, 85 => 35372, 103 => 32885,
others => 0),
2474 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 35879,
90 => 32868, others => 0),
2475 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2476 =>
(3 => 35600, 53 => 32938, 86 => 35597, others => 0),
2477 =>
(85 => 35603, others => 0),
2478 =>
(3 => 35609, 53 => 32938, 86 => 35606, others => 0),
2479 =>
(85 => 35612, others => 0),
2480 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2481 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2482 =>
(32 => 35886, 33 => 35885, 83 => 1479, others => 0),
2483 =>
(9 => 33243, 64 => 33242, 83 => 2018, 104 => 33241,
others => 0),
2484 =>
(9 => 33243, 64 => 33242, 83 => 2017, 104 => 33241,
others => 0),
2485 =>
(12 => 35887, others => 0),
2486 =>
(101 => 34619, others => 0),
2487 =>
(21 => 35889, 83 => 182, others => 0),
2488 =>
(9 => 1548, 12 => 1548, 21 => 1548, 28 => 1548,
32 => 1548, 33 => 1548, 51 => 1548, 57 => 1548,
64 => 1548, 83 => 1548, 85 => 1548, 96 => 1548,
100 => 1548, 103 => 1548, 104 => 1548, others => 0),
2489 =>
(46 => 32807, 85 => 35890, others => 0),
2490 =>
(0 => 1619, 15 => 1619, 34 => 1619, 39 => 1619,
40 => 1619, 41 => 1619, 46 => 1619, 56 => 1619,
60 => 1619, 67 => 1619, 68 => 1619, 70 => 1619,
71 => 1619, 72 => 1619, 73 => 1619, 86 => 1619,
91 => 1619, 94 => 1619, 97 => 1619, 99 => 1619,
103 => 1619, others => 0),
2491 =>
(34 => 35892, others => 0),
2492 =>
(0 => 1614, 15 => 1614, 34 => 1614, 39 => 1614,
40 => 1614, 41 => 1614, 46 => 1614, 56 => 1614,
60 => 1614, 67 => 1614, 68 => 1614, 70 => 1614,
71 => 1614, 72 => 1614, 73 => 1614, 86 => 1614,
91 => 1614, 94 => 1614, 97 => 1614, 99 => 1614,
103 => 1614, others => 0),
2493 =>
(29 => 32865, 85 => 35893, others => 0),
2494 =>
(34 => 35894, others => 0),
2495 =>
(0 => 1608, 15 => 1608, 34 => 1608, 39 => 1608,
40 => 1608, 41 => 1608, 46 => 1608, 56 => 1608,
60 => 1608, 67 => 1608, 68 => 1608, 70 => 1608,
71 => 1608, 72 => 1608, 73 => 1608, 86 => 1608,
91 => 1608, 94 => 1608, 97 => 1608, 99 => 1608,
103 => 1608, others => 0),
2496 =>
(29 => 32865, 85 => 35895, others => 0),
2497 =>
(0 => 1603, 15 => 1603, 34 => 1603, 39 => 1603,
40 => 1603, 41 => 1603, 46 => 1603, 56 => 1603,
60 => 1603, 67 => 1603, 68 => 1603, 70 => 1603,
71 => 1603, 72 => 1603, 73 => 1603, 86 => 1603,
91 => 1603, 94 => 1603, 97 => 1603, 99 => 1603,
103 => 1603, others => 0),
2498 =>
(101 => 33976, others => 0),
2499 =>
(46 => 32807, 85 => 35897, others => 0),
2500 =>
(0 => 1381, 15 => 1381, 34 => 1381, 39 => 1381,
40 => 1381, 41 => 1381, 46 => 1381, 56 => 1381,
60 => 1381, 67 => 1381, 68 => 1381, 70 => 1381,
71 => 1381, 72 => 1381, 73 => 1381, 86 => 1381,
91 => 1381, 94 => 1381, 97 => 1381, 99 => 1381,
103 => 1381, others => 0),
2501 =>
(85 => 35899, others => 0),
2502 =>
(0 => 1637, 15 => 1637, 34 => 1637, 39 => 1637,
40 => 1637, 41 => 1637, 46 => 1637, 56 => 1637,
60 => 1637, 67 => 1637, 68 => 1637, 70 => 1637,
71 => 1637, 72 => 1637, 73 => 1637, 86 => 1637,
91 => 1637, 94 => 1637, 97 => 1637, 99 => 1637,
103 => 1637, others => 0),
2503 =>
(0 => 1631, 15 => 1631, 34 => 1631, 39 => 1631,
40 => 1631, 41 => 1631, 46 => 1631, 56 => 1631,
60 => 1631, 67 => 1631, 68 => 1631, 70 => 1631,
71 => 1631, 72 => 1631, 73 => 1631, 86 => 1631,
91 => 1631, 94 => 1631, 97 => 1631, 99 => 1631,
103 => 1631, others => 0),
2504 =>
(0 => 1627, 15 => 1627, 34 => 1627, 39 => 1627,
40 => 1627, 41 => 1627, 46 => 1627, 56 => 1627,
60 => 1627, 67 => 1627, 68 => 1627, 70 => 1627,
71 => 1627, 72 => 1627, 73 => 1627, 86 => 1627,
91 => 1627, 94 => 1627, 97 => 1627, 99 => 1627,
103 => 1627, others => 0),
2505 =>
(0 => 1626, 15 => 1626, 34 => 1626, 39 => 1626,
40 => 1626, 41 => 1626, 46 => 1626, 56 => 1626,
60 => 1626, 67 => 1626, 68 => 1626, 70 => 1626,
71 => 1626, 72 => 1626, 73 => 1626, 86 => 1626,
91 => 1626, 94 => 1626, 97 => 1626, 99 => 1626,
103 => 1626, others => 0),
2506 =>
(29 => 32865, 85 => 35900, others => 0),
2507 =>
(0 => 1930, 15 => 1930, 34 => 1930, 35 => 1930,
39 => 1930, 40 => 1930, 41 => 1930, 46 => 1930,
56 => 1930, 60 => 1930, 67 => 1930, 68 => 1930,
70 => 1930, 71 => 1930, 72 => 1930, 73 => 1930,
86 => 1930, 91 => 1930, 94 => 1930, 97 => 1930,
99 => 1930, 103 => 1930, others => 0),
2508 =>
(85 => 35901, others => 0),
2509 =>
(0 => 1932, 15 => 1932, 34 => 1932, 35 => 1932,
39 => 1932, 40 => 1932, 41 => 1932, 46 => 1932,
56 => 1932, 60 => 1932, 67 => 1932, 68 => 1932,
70 => 1932, 71 => 1932, 72 => 1932, 73 => 1932,
86 => 1932, 91 => 1932, 94 => 1932, 97 => 1932,
99 => 1932, 103 => 1932, others => 0),
2510 =>
(85 => 35902, others => 0),
2511 =>
(0 => 1838, 15 => 1838, 34 => 1838, 35 => 1838,
39 => 1838, 40 => 1838, 41 => 1838, 46 => 1838,
56 => 1838, 60 => 1838, 67 => 1838, 68 => 1838,
70 => 1838, 71 => 1838, 72 => 1838, 73 => 1838,
86 => 1838, 91 => 1838, 94 => 1838, 97 => 1838,
99 => 1838, 103 => 1838, others => 0),
2512 =>
(29 => 32865, 85 => 35903, others => 0),
2513 =>
(34 => 35905, 37 => 35904, others => 0),
2514 =>
(46 => 32807, 85 => 35906, others => 0),
2515 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2516 =>
(0 => 1928, 15 => 1928, 34 => 1928, 35 => 1928,
39 => 1928, 40 => 1928, 41 => 1928, 46 => 1928,
56 => 1928, 60 => 1928, 67 => 1928, 68 => 1928,
70 => 1928, 71 => 1928, 72 => 1928, 73 => 1928,
86 => 1928, 91 => 1928, 94 => 1928, 97 => 1928,
99 => 1928, 103 => 1928, others => 0),
2517 =>
(85 => 35909, others => 0),
2518 =>
(46 => 32807, 85 => 35910, others => 0),
2519 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2520 =>
(15 => 35914, 34 => 35913, others => 0),
2521 =>
(85 => 35915, 103 => 32885, others => 0),
2522 =>
(46 => 32807, 85 => 35917, others => 0),
2523 =>
(0 => 1859, 15 => 1859, 34 => 1859, 35 => 1859,
39 => 1859, 40 => 1859, 41 => 1859, 46 => 1859,
56 => 1859, 60 => 1859, 67 => 1859, 68 => 1859,
70 => 1859, 71 => 1859, 72 => 1859, 73 => 1859,
86 => 1859, 91 => 1859, 94 => 1859, 97 => 1859,
99 => 1859, 103 => 1859, others => 0),
2524 =>
(34 => 35919, others => 0),
2525 =>
(0 => 1854, 15 => 1854, 34 => 1854, 35 => 1854,
39 => 1854, 40 => 1854, 41 => 1854, 46 => 1854,
56 => 1854, 60 => 1854, 67 => 1854, 68 => 1854,
70 => 1854, 71 => 1854, 72 => 1854, 73 => 1854,
86 => 1854, 91 => 1854, 94 => 1854, 97 => 1854,
99 => 1854, 103 => 1854, others => 0),
2526 =>
(29 => 32865, 85 => 35920, others => 0),
2527 =>
(34 => 35921, others => 0),
2528 =>
(0 => 1848, 15 => 1848, 34 => 1848, 35 => 1848,
39 => 1848, 40 => 1848, 41 => 1848, 46 => 1848,
56 => 1848, 60 => 1848, 67 => 1848, 68 => 1848,
70 => 1848, 71 => 1848, 72 => 1848, 73 => 1848,
86 => 1848, 91 => 1848, 94 => 1848, 97 => 1848,
99 => 1848, 103 => 1848, others => 0),
2529 =>
(29 => 32865, 85 => 35922, others => 0),
2530 =>
(0 => 1843, 15 => 1843, 34 => 1843, 35 => 1843,
39 => 1843, 40 => 1843, 41 => 1843, 46 => 1843,
56 => 1843, 60 => 1843, 67 => 1843, 68 => 1843,
70 => 1843, 71 => 1843, 72 => 1843, 73 => 1843,
86 => 1843, 91 => 1843, 94 => 1843, 97 => 1843,
99 => 1843, 103 => 1843, others => 0),
2531 =>
(101 => 33976, others => 0),
2532 =>
(46 => 32807, 85 => 35924, others => 0),
2533 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35926,
103 => 32885, others => 0),
2534 =>
(85 => 35928, 103 => 32885, others => 0),
2535 =>
(46 => 32807, 85 => 35930, 90 => 32868, others => 0),
2536 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2537 =>
(85 => 35933, 103 => 32885, others => 0),
2538 =>
(85 => 35935, 103 => 32885, others => 0),
2539 =>
(15 => 35938, 34 => 35937, others => 0),
2540 =>
(0 => 1229, 15 => 1229, 34 => 1229, 35 => 1229,
39 => 1229, 40 => 1229, 41 => 1229, 46 => 1229,
56 => 1229, 60 => 1229, 67 => 1229, 68 => 1229,
70 => 1229, 71 => 1229, 72 => 1229, 73 => 1229,
86 => 1229, 91 => 1229, 94 => 1229, 97 => 1229,
99 => 1229, 103 => 1229, others => 0),
2541 =>
(15 => 35940, 34 => 35939, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2542 =>
(0 => 1315, 15 => 1315, 34 => 1315, 35 => 1315,
39 => 1315, 40 => 1315, 41 => 1315, 46 => 1315,
56 => 1315, 60 => 1315, 67 => 1315, 68 => 1315,
70 => 1315, 71 => 1315, 72 => 1315, 73 => 1315,
86 => 1315, 91 => 1315, 94 => 1315, 97 => 1315,
99 => 1315, 103 => 1315, others => 0),
2543 =>
(0 => 1317, 15 => 1317, 34 => 1317, 35 => 1317,
39 => 1317, 40 => 1317, 41 => 1317, 46 => 1317,
56 => 1317, 60 => 1317, 67 => 1317, 68 => 1317,
70 => 1317, 71 => 1317, 72 => 1317, 73 => 1317,
86 => 1317, 91 => 1317, 94 => 1317, 97 => 1317,
99 => 1317, 103 => 1317, others => 0),
2544 =>
(0 => 1110, 15 => 1110, 34 => 1110, 35 => 1110,
39 => 1110, 40 => 1110, 41 => 1110, 46 => 1110,
56 => 1110, 60 => 1110, 67 => 1110, 68 => 1110,
70 => 1110, 71 => 1110, 72 => 1110, 73 => 1110,
86 => 1110, 91 => 1110, 94 => 1110, 97 => 1110,
99 => 1110, 103 => 1110, others => 0),
2545 =>
(101 => 33976, others => 0),
2546 =>
(46 => 32807, 85 => 35943, 90 => 32868, others => 0),
2547 =>
(0 => 1311, 15 => 1311, 34 => 1311, 35 => 1311,
39 => 1311, 40 => 1311, 41 => 1311, 46 => 1311,
56 => 1311, 60 => 1311, 67 => 1311, 68 => 1311,
70 => 1311, 71 => 1311, 72 => 1311, 73 => 1311,
86 => 1311, 91 => 1311, 94 => 1311, 97 => 1311,
99 => 1311, 103 => 1311, others => 0),
2548 =>
(0 => 1313, 15 => 1313, 34 => 1313, 35 => 1313,
39 => 1313, 40 => 1313, 41 => 1313, 46 => 1313,
56 => 1313, 60 => 1313, 67 => 1313, 68 => 1313,
70 => 1313, 71 => 1313, 72 => 1313, 73 => 1313,
86 => 1313, 91 => 1313, 94 => 1313, 97 => 1313,
99 => 1313, 103 => 1313, others => 0),
2549 =>
(0 => 1105, 15 => 1105, 34 => 1105, 35 => 1105,
39 => 1105, 40 => 1105, 41 => 1105, 46 => 1105,
56 => 1105, 60 => 1105, 67 => 1105, 68 => 1105,
70 => 1105, 71 => 1105, 72 => 1105, 73 => 1105,
86 => 1105, 91 => 1105, 94 => 1105, 97 => 1105,
99 => 1105, 103 => 1105, others => 0),
2550 =>
(85 => 35945, others => 0),
2551 =>
(34 => 35947, 37 => 35946, others => 0),
2552 =>
(0 => 1099, 15 => 1099, 34 => 1099, 35 => 1099,
39 => 1099, 40 => 1099, 41 => 1099, 46 => 1099,
56 => 1099, 60 => 1099, 67 => 1099, 68 => 1099,
70 => 1099, 71 => 1099, 72 => 1099, 73 => 1099,
86 => 1099, 91 => 1099, 94 => 1099, 97 => 1099,
99 => 1099, 103 => 1099, others => 0),
2553 =>
(85 => 35948, others => 0),
2554 =>
(34 => 35950, 37 => 35949, others => 0),
2555 =>
(46 => 32807, 85 => 35951, 90 => 32868, others => 0),
2556 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2557 =>
(0 => 1235, 15 => 1235, 34 => 1235, 35 => 1235,
39 => 1235, 40 => 1235, 41 => 1235, 46 => 1235,
56 => 1235, 60 => 1235, 67 => 1235, 68 => 1235,
70 => 1235, 71 => 1235, 72 => 1235, 73 => 1235,
86 => 1235, 91 => 1235, 94 => 1235, 97 => 1235,
99 => 1235, 103 => 1235, others => 0),
2558 =>
(0 => 1237, 15 => 1237, 34 => 1237, 35 => 1237,
39 => 1237, 40 => 1237, 41 => 1237, 46 => 1237,
56 => 1237, 60 => 1237, 67 => 1237, 68 => 1237,
70 => 1237, 71 => 1237, 72 => 1237, 73 => 1237,
86 => 1237, 91 => 1237, 94 => 1237, 97 => 1237,
99 => 1237, 103 => 1237, others => 0),
2559 =>
(0 => 918, 15 => 918, 34 => 918, 35 => 918,
39 => 918, 40 => 918, 41 => 918, 46 => 918,
56 => 918, 60 => 918, 67 => 918, 68 => 918,
70 => 918, 71 => 918, 72 => 918, 73 => 918,
86 => 918, 91 => 918, 94 => 918, 97 => 918,
99 => 918, 103 => 918, others => 0),
2560 =>
(101 => 33976, others => 0),
2561 =>
(46 => 32807, 85 => 35955, 90 => 32868, others => 0),
2562 =>
(0 => 1231, 15 => 1231, 34 => 1231, 35 => 1231,
39 => 1231, 40 => 1231, 41 => 1231, 46 => 1231,
56 => 1231, 60 => 1231, 67 => 1231, 68 => 1231,
70 => 1231, 71 => 1231, 72 => 1231, 73 => 1231,
86 => 1231, 91 => 1231, 94 => 1231, 97 => 1231,
99 => 1231, 103 => 1231, others => 0),
2563 =>
(0 => 1233, 15 => 1233, 34 => 1233, 35 => 1233,
39 => 1233, 40 => 1233, 41 => 1233, 46 => 1233,
56 => 1233, 60 => 1233, 67 => 1233, 68 => 1233,
70 => 1233, 71 => 1233, 72 => 1233, 73 => 1233,
86 => 1233, 91 => 1233, 94 => 1233, 97 => 1233,
99 => 1233, 103 => 1233, others => 0),
2564 =>
(0 => 913, 15 => 913, 34 => 913, 35 => 913,
39 => 913, 40 => 913, 41 => 913, 46 => 913,
56 => 913, 60 => 913, 67 => 913, 68 => 913,
70 => 913, 71 => 913, 72 => 913, 73 => 913,
86 => 913, 91 => 913, 94 => 913, 97 => 913,
99 => 913, 103 => 913, others => 0),
2565 =>
(85 => 35957, others => 0),
2566 =>
(34 => 35959, 37 => 35958, others => 0),
2567 =>
(0 => 907, 15 => 907, 34 => 907, 35 => 907,
39 => 907, 40 => 907, 41 => 907, 46 => 907,
56 => 907, 60 => 907, 67 => 907, 68 => 907,
70 => 907, 71 => 907, 72 => 907, 73 => 907,
86 => 907, 91 => 907, 94 => 907, 97 => 907,
99 => 907, 103 => 907, others => 0),
2568 =>
(85 => 35960, others => 0),
2569 =>
(34 => 35962, 37 => 35961, others => 0),
2570 =>
(46 => 32807, 85 => 35963, 90 => 32868, others => 0),
2571 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2572 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2573 =>
(0 => 1310, 15 => 1310, 34 => 1310, 35 => 1310,
39 => 1310, 40 => 1310, 41 => 1310, 46 => 1310,
56 => 1310, 60 => 1310, 67 => 1310, 68 => 1310,
70 => 1310, 71 => 1310, 72 => 1310, 73 => 1310,
86 => 1310, 91 => 1310, 94 => 1310, 97 => 1310,
99 => 1310, 103 => 1310, others => 0),
2574 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2575 =>
(3 => 35971, 15 => 35970, 34 => 35969, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 35968, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
2576 =>
(51 => 35975, 85 => 35974, others => 0),
2577 =>
(0 => 1220, 15 => 1220, 34 => 1220, 35 => 1220,
39 => 1220, 40 => 1220, 41 => 1220, 46 => 1220,
56 => 1220, 60 => 1220, 67 => 1220, 68 => 1220,
70 => 1220, 71 => 1220, 72 => 1220, 73 => 1220,
86 => 1220, 91 => 1220, 94 => 1220, 97 => 1220,
99 => 1220, 103 => 1220, others => 0),
2578 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2579 =>
(3 => 35980, 15 => 35979, 34 => 35978, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 35977, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
2580 =>
(51 => 35984, 85 => 35983, others => 0),
2581 =>
(85 => 35985, 103 => 32885, others => 0),
2582 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 35987,
103 => 32885, others => 0),
2583 =>
(85 => 35989, 103 => 32885, others => 0),
2584 =>
(46 => 32807, 85 => 35991, others => 0),
2585 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2586 =>
(15 => 35995, 34 => 35994, others => 0),
2587 =>
(85 => 35996, 103 => 32885, others => 0),
2588 =>
(0 => 1917, 15 => 1917, 34 => 1917, 35 => 1917,
39 => 1917, 40 => 1917, 41 => 1917, 46 => 1917,
56 => 1917, 60 => 1917, 67 => 1917, 68 => 1917,
70 => 1917, 71 => 1917, 72 => 1917, 73 => 1917,
86 => 1917, 91 => 1917, 94 => 1917, 97 => 1917,
99 => 1917, 103 => 1917, others => 0),
2589 =>
(15 => 35999, 34 => 35998, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2590 =>
(83 => 36001, others => 0),
2591 =>
(0 => 1398, 15 => 1398, 34 => 1398, 39 => 1398,
40 => 1398, 41 => 1398, 46 => 1398, 56 => 1398,
60 => 1398, 67 => 1398, 68 => 1398, 70 => 1398,
71 => 1398, 72 => 1398, 73 => 1398, 86 => 1398,
91 => 1398, 94 => 1398, 97 => 1398, 99 => 1398,
103 => 1398, others => 0),
2592 =>
(34 => 36002, others => 0),
2593 =>
(0 => 1812, 15 => 1812, 34 => 1812, 35 => 1812,
39 => 1812, 40 => 1812, 41 => 1812, 46 => 1812,
56 => 1812, 60 => 1812, 67 => 1812, 68 => 1812,
70 => 1812, 71 => 1812, 72 => 1812, 73 => 1812,
86 => 1812, 91 => 1812, 94 => 1812, 97 => 1812,
99 => 1812, 103 => 1812, others => 0),
2594 =>
(29 => 32865, 85 => 36003, others => 0),
2595 =>
(0 => 1807, 15 => 1807, 34 => 1807, 35 => 1807,
39 => 1807, 40 => 1807, 41 => 1807, 46 => 1807,
56 => 1807, 60 => 1807, 67 => 1807, 68 => 1807,
70 => 1807, 71 => 1807, 72 => 1807, 73 => 1807,
86 => 1807, 91 => 1807, 94 => 1807, 97 => 1807,
99 => 1807, 103 => 1807, others => 0),
2596 =>
(101 => 33976, others => 0),
2597 =>
(46 => 32807, 85 => 36005, others => 0),
2598 =>
(0 => 1801, 15 => 1801, 34 => 1801, 35 => 1801,
39 => 1801, 40 => 1801, 41 => 1801, 46 => 1801,
56 => 1801, 60 => 1801, 67 => 1801, 68 => 1801,
70 => 1801, 71 => 1801, 72 => 1801, 73 => 1801,
86 => 1801, 91 => 1801, 94 => 1801, 97 => 1801,
99 => 1801, 103 => 1801, others => 0),
2599 =>
(101 => 33976, others => 0),
2600 =>
(46 => 32807, 85 => 36008, others => 0),
2601 =>
(0 => 1796, 15 => 1796, 34 => 1796, 35 => 1796,
39 => 1796, 40 => 1796, 41 => 1796, 46 => 1796,
56 => 1796, 60 => 1796, 67 => 1796, 68 => 1796,
70 => 1796, 71 => 1796, 72 => 1796, 73 => 1796,
86 => 1796, 91 => 1796, 94 => 1796, 97 => 1796,
99 => 1796, 103 => 1796, others => 0),
2602 =>
(29 => 32865, 85 => 36010, others => 0),
2603 =>
(34 => 36012, 37 => 36011, others => 0),
2604 =>
(0 => 1190, 15 => 1190, 34 => 1190, 35 => 1190,
39 => 1190, 40 => 1190, 41 => 1190, 46 => 1190,
56 => 1190, 60 => 1190, 67 => 1190, 68 => 1190,
70 => 1190, 71 => 1190, 72 => 1190, 73 => 1190,
86 => 1190, 91 => 1190, 94 => 1190, 97 => 1190,
99 => 1190, 103 => 1190, others => 0),
2605 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2606 =>
(3 => 36017, 15 => 36016, 34 => 36015, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 36014, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
2607 =>
(51 => 36021, 85 => 36020, others => 0),
2608 =>
(0 => 1296, 15 => 1296, 34 => 1296, 35 => 1296,
39 => 1296, 40 => 1296, 41 => 1296, 46 => 1296,
56 => 1296, 60 => 1296, 67 => 1296, 68 => 1296,
70 => 1296, 71 => 1296, 72 => 1296, 73 => 1296,
86 => 1296, 91 => 1296, 94 => 1296, 97 => 1296,
99 => 1296, 103 => 1296, others => 0),
2609 =>
(85 => 36022, others => 0),
2610 =>
(0 => 1298, 15 => 1298, 34 => 1298, 35 => 1298,
39 => 1298, 40 => 1298, 41 => 1298, 46 => 1298,
56 => 1298, 60 => 1298, 67 => 1298, 68 => 1298,
70 => 1298, 71 => 1298, 72 => 1298, 73 => 1298,
86 => 1298, 91 => 1298, 94 => 1298, 97 => 1298,
99 => 1298, 103 => 1298, others => 0),
2611 =>
(85 => 36023, others => 0),
2612 =>
(0 => 1063, 15 => 1063, 34 => 1063, 35 => 1063,
39 => 1063, 40 => 1063, 41 => 1063, 46 => 1063,
56 => 1063, 60 => 1063, 67 => 1063, 68 => 1063,
70 => 1063, 71 => 1063, 72 => 1063, 73 => 1063,
86 => 1063, 91 => 1063, 94 => 1063, 97 => 1063,
99 => 1063, 103 => 1063, others => 0),
2613 =>
(85 => 36024, others => 0),
2614 =>
(34 => 36026, 37 => 36025, others => 0),
2615 =>
(0 => 1292, 15 => 1292, 34 => 1292, 35 => 1292,
39 => 1292, 40 => 1292, 41 => 1292, 46 => 1292,
56 => 1292, 60 => 1292, 67 => 1292, 68 => 1292,
70 => 1292, 71 => 1292, 72 => 1292, 73 => 1292,
86 => 1292, 91 => 1292, 94 => 1292, 97 => 1292,
99 => 1292, 103 => 1292, others => 0),
2616 =>
(85 => 36027, others => 0),
2617 =>
(0 => 1294, 15 => 1294, 34 => 1294, 35 => 1294,
39 => 1294, 40 => 1294, 41 => 1294, 46 => 1294,
56 => 1294, 60 => 1294, 67 => 1294, 68 => 1294,
70 => 1294, 71 => 1294, 72 => 1294, 73 => 1294,
86 => 1294, 91 => 1294, 94 => 1294, 97 => 1294,
99 => 1294, 103 => 1294, others => 0),
2618 =>
(85 => 36028, others => 0),
2619 =>
(46 => 32807, 85 => 36029, 90 => 32868, others => 0),
2620 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2621 =>
(46 => 32807, 85 => 36032, 90 => 32868, others => 0),
2622 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2623 =>
(15 => 36036, 34 => 36035, others => 0),
2624 =>
(0 => 1196, 15 => 1196, 34 => 1196, 35 => 1196,
39 => 1196, 40 => 1196, 41 => 1196, 46 => 1196,
56 => 1196, 60 => 1196, 67 => 1196, 68 => 1196,
70 => 1196, 71 => 1196, 72 => 1196, 73 => 1196,
86 => 1196, 91 => 1196, 94 => 1196, 97 => 1196,
99 => 1196, 103 => 1196, others => 0),
2625 =>
(85 => 36037, others => 0),
2626 =>
(0 => 1198, 15 => 1198, 34 => 1198, 35 => 1198,
39 => 1198, 40 => 1198, 41 => 1198, 46 => 1198,
56 => 1198, 60 => 1198, 67 => 1198, 68 => 1198,
70 => 1198, 71 => 1198, 72 => 1198, 73 => 1198,
86 => 1198, 91 => 1198, 94 => 1198, 97 => 1198,
99 => 1198, 103 => 1198, others => 0),
2627 =>
(85 => 36038, others => 0),
2628 =>
(0 => 823, 15 => 823, 34 => 823, 35 => 823,
39 => 823, 40 => 823, 41 => 823, 46 => 823,
56 => 823, 60 => 823, 67 => 823, 68 => 823,
70 => 823, 71 => 823, 72 => 823, 73 => 823,
86 => 823, 91 => 823, 94 => 823, 97 => 823,
99 => 823, 103 => 823, others => 0),
2629 =>
(85 => 36039, others => 0),
2630 =>
(34 => 36041, 37 => 36040, others => 0),
2631 =>
(0 => 1192, 15 => 1192, 34 => 1192, 35 => 1192,
39 => 1192, 40 => 1192, 41 => 1192, 46 => 1192,
56 => 1192, 60 => 1192, 67 => 1192, 68 => 1192,
70 => 1192, 71 => 1192, 72 => 1192, 73 => 1192,
86 => 1192, 91 => 1192, 94 => 1192, 97 => 1192,
99 => 1192, 103 => 1192, others => 0),
2632 =>
(85 => 36042, others => 0),
2633 =>
(0 => 1194, 15 => 1194, 34 => 1194, 35 => 1194,
39 => 1194, 40 => 1194, 41 => 1194, 46 => 1194,
56 => 1194, 60 => 1194, 67 => 1194, 68 => 1194,
70 => 1194, 71 => 1194, 72 => 1194, 73 => 1194,
86 => 1194, 91 => 1194, 94 => 1194, 97 => 1194,
99 => 1194, 103 => 1194, others => 0),
2634 =>
(85 => 36043, others => 0),
2635 =>
(46 => 32807, 85 => 36044, 90 => 32868, others => 0),
2636 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2637 =>
(46 => 32807, 85 => 36047, 90 => 32868, others => 0),
2638 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2639 =>
(15 => 36051, 34 => 36050, others => 0),
2640 =>
(61 => 36052, others => 0),
2641 =>
(51 => 36055, 78 => 36054, 85 => 36053, 103 => 32885,
others => 0),
2642 =>
(51 => 36059, 78 => 36058, 85 => 36057, 103 => 32885,
others => 0),
2643 =>
(83 => 36061, others => 0),
2644 =>
(0 => 1386, 15 => 1386, 34 => 1386, 39 => 1386,
40 => 1386, 41 => 1386, 46 => 1386, 56 => 1386,
60 => 1386, 67 => 1386, 68 => 1386, 70 => 1386,
71 => 1386, 72 => 1386, 73 => 1386, 86 => 1386,
91 => 1386, 94 => 1386, 97 => 1386, 99 => 1386,
103 => 1386, others => 0),
2645 =>
(85 => 36062, 103 => 32885, others => 0),
2646 =>
(85 => 36064, 103 => 32885, others => 0),
2647 =>
(17 => 36068, 19 => 32869, 46 => 32807, 61 => 36067,
85 => 36066, 90 => 32868, 103 => 32885, others => 0),
2648 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36071,
103 => 32885, others => 0),
2649 =>
(40 => 644, 46 => 644, 68 => 644, 70 => 644,
72 => 644, 97 => 644, 99 => 644, 103 => 644,
others => 0),
2650 =>
(40 => 650, 46 => 650, 68 => 650, 70 => 650,
72 => 650, 97 => 650, 99 => 650, 103 => 650,
others => 0),
2651 =>
(40 => 648, 46 => 648, 68 => 648, 70 => 648,
72 => 648, 97 => 648, 99 => 648, 103 => 648,
others => 0),
2652 =>
(40 => 646, 46 => 646, 68 => 646, 70 => 646,
72 => 646, 97 => 646, 99 => 646, 103 => 646,
others => 0),
2653 =>
(83 => 36073, others => 0),
2654 =>
(40 => 620, 46 => 620, 68 => 620, 70 => 620,
72 => 620, 97 => 620, 99 => 620, 103 => 620,
others => 0),
2655 =>
(40 => 513, 46 => 513, 68 => 513, 70 => 513,
72 => 513, 97 => 513, 99 => 513, 103 => 513,
others => 0),
2656 =>
(3 => 36075, 17 => 36074, 19 => 32869, 46 => 32807,
90 => 32868, others => 0),
2657 =>
(85 => 36077, others => 0),
2658 =>
(40 => 547, 46 => 547, 68 => 547, 70 => 547,
72 => 547, 97 => 547, 99 => 547, 103 => 547,
others => 0),
2659 =>
(85 => 36078, others => 0),
2660 =>
(40 => 543, 46 => 543, 68 => 543, 70 => 543,
72 => 543, 97 => 543, 99 => 543, 103 => 543,
others => 0),
2661 =>
(85 => 36079, 103 => 32885, others => 0),
2662 =>
(85 => 36081, others => 0),
2663 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36082,
103 => 32885, others => 0),
2664 =>
(40 => 545, 46 => 545, 68 => 545, 70 => 545,
72 => 545, 97 => 545, 99 => 545, 103 => 545,
others => 0),
2665 =>
(85 => 36084, others => 0),
2666 =>
(40 => 523, 46 => 523, 68 => 523, 70 => 523,
72 => 523, 97 => 523, 99 => 523, 103 => 523,
others => 0),
2667 =>
(85 => 36085, others => 0),
2668 =>
(40 => 519, 46 => 519, 68 => 519, 70 => 519,
72 => 519, 97 => 519, 99 => 519, 103 => 519,
others => 0),
2669 =>
(85 => 36086, 103 => 32885, others => 0),
2670 =>
(85 => 36088, others => 0),
2671 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36089,
103 => 32885, others => 0),
2672 =>
(40 => 521, 46 => 521, 68 => 521, 70 => 521,
72 => 521, 97 => 521, 99 => 521, 103 => 521,
others => 0),
2673 =>
(85 => 36091, others => 0),
2674 =>
(61 => 36092, others => 0),
2675 =>
(51 => 36094, 85 => 36093, 103 => 32885, others => 0),
2676 =>
(51 => 36097, 85 => 36096, 103 => 32885, others => 0),
2677 =>
(13 => 36099, 83 => 281, 85 => 281, others => 0),
2678 =>
(9 => 33243, 64 => 33242, 83 => 284, 85 => 284,
104 => 33241, others => 0),
2679 =>
(9 => 33243, 64 => 33242, 83 => 282, 85 => 282,
104 => 33241, others => 0),
2680 =>
(85 => 467, 103 => 32885, others => 0),
2681 =>
(103 => 36101, others => 0),
2682 =>
(53 => 36102, 85 => 400, 103 => 400, others => 0),
2683 =>
(53 => 36104, 80 => 36103, others => 0),
2684 =>
(46 => 32838, others => 0),
2685 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36106,
90 => 32868, others => 0),
2686 =>
(46 => 32838, others => 0),
2687 =>
(85 => 395, 103 => 395, others => 0),
2688 =>
(85 => 472, others => 0),
2689 =>
(71 => 36110, others => 0),
2690 =>
(85 => 461, 103 => 32885, others => 0),
2691 =>
(103 => 36112, others => 0),
2692 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
2693 =>
(21 => 275, 83 => 275, others => 0),
2694 =>
(63 => 36114, others => 0),
2695 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2696 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
2697 =>
(21 => 1492, 83 => 1492, others => 0),
2698 =>
(75 => 36117, others => 0),
2699 =>
(63 => 36118, others => 0),
2700 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2701 =>
(8 => 33263, 12 => 269, 21 => 269, 31 => 33262,
45 => 33258, 57 => 269, 58 => 33253, 69 => 33251,
77 => 33250, 83 => 269, 85 => 269, 87 => 33249,
89 => 33248, others => 0),
2702 =>
(21 => 1490, 83 => 1490, others => 0),
2703 =>
(83 => 36120, others => 0),
2704 =>
(61 => 36121, others => 0),
2705 =>
(85 => 428, 103 => 428, others => 0),
2706 =>
(85 => 418, 103 => 418, others => 0),
2707 =>
(83 => 36122, others => 0),
2708 =>
(85 => 405, 103 => 405, others => 0),
2709 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2710 =>
(80 => 36124, others => 0),
2711 =>
(19 => 32869, 46 => 32807, 71 => 36125, 90 => 32868,
others => 0),
2712 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2713 =>
(85 => 450, others => 0),
2714 =>
(85 => 455, 103 => 32885, others => 0),
2715 =>
(103 => 36128, others => 0),
2716 =>
(19 => 32869, 46 => 32807, 71 => 36129, 90 => 32868,
others => 0),
2717 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2718 =>
(85 => 444, others => 0),
2719 =>
(0 => 1450, 15 => 1450, 34 => 1450, 39 => 1450,
40 => 1450, 41 => 1450, 46 => 1450, 56 => 1450,
60 => 1450, 67 => 1450, 68 => 1450, 70 => 1450,
71 => 1450, 72 => 1450, 73 => 1450, 86 => 1450,
91 => 1450, 94 => 1450, 97 => 1450, 99 => 1450,
103 => 1450, others => 0),
2720 =>
(0 => 1446, 15 => 1446, 34 => 1446, 39 => 1446,
40 => 1446, 41 => 1446, 46 => 1446, 56 => 1446,
60 => 1446, 67 => 1446, 68 => 1446, 70 => 1446,
71 => 1446, 72 => 1446, 73 => 1446, 86 => 1446,
91 => 1446, 94 => 1446, 97 => 1446, 99 => 1446,
103 => 1446, others => 0),
2721 =>
(0 => 1445, 15 => 1445, 34 => 1445, 39 => 1445,
40 => 1445, 41 => 1445, 46 => 1445, 56 => 1445,
60 => 1445, 67 => 1445, 68 => 1445, 70 => 1445,
71 => 1445, 72 => 1445, 73 => 1445, 86 => 1445,
91 => 1445, 94 => 1445, 97 => 1445, 99 => 1445,
103 => 1445, others => 0),
2722 =>
(29 => 32865, 85 => 36131, others => 0),
2723 =>
(0 => 1440, 15 => 1440, 34 => 1440, 39 => 1440,
40 => 1440, 41 => 1440, 46 => 1440, 56 => 1440,
60 => 1440, 67 => 1440, 68 => 1440, 70 => 1440,
71 => 1440, 72 => 1440, 73 => 1440, 86 => 1440,
91 => 1440, 94 => 1440, 97 => 1440, 99 => 1440,
103 => 1440, others => 0),
2724 =>
(0 => 1439, 15 => 1439, 34 => 1439, 39 => 1439,
40 => 1439, 41 => 1439, 46 => 1439, 56 => 1439,
60 => 1439, 67 => 1439, 68 => 1439, 70 => 1439,
71 => 1439, 72 => 1439, 73 => 1439, 86 => 1439,
91 => 1439, 94 => 1439, 97 => 1439, 99 => 1439,
103 => 1439, others => 0),
2725 =>
(29 => 32865, 85 => 36132, others => 0),
2726 =>
(0 => 1435, 15 => 1435, 34 => 1435, 39 => 1435,
40 => 1435, 41 => 1435, 46 => 1435, 56 => 1435,
60 => 1435, 67 => 1435, 68 => 1435, 70 => 1435,
71 => 1435, 72 => 1435, 73 => 1435, 86 => 1435,
91 => 1435, 94 => 1435, 97 => 1435, 99 => 1435,
103 => 1435, others => 0),
2727 =>
(29 => 32865, 85 => 36133, others => 0),
2728 =>
(46 => 32807, 85 => 36134, others => 0),
2729 =>
(0 => 1436, 15 => 1436, 34 => 1436, 39 => 1436,
40 => 1436, 41 => 1436, 46 => 1436, 56 => 1436,
60 => 1436, 67 => 1436, 68 => 1436, 70 => 1436,
71 => 1436, 72 => 1436, 73 => 1436, 86 => 1436,
91 => 1436, 94 => 1436, 97 => 1436, 99 => 1436,
103 => 1436, others => 0),
2730 =>
(0 => 1368, 15 => 1368, 34 => 1368, 39 => 1368,
40 => 1368, 41 => 1368, 46 => 1368, 56 => 1368,
60 => 1368, 67 => 1368, 68 => 1368, 70 => 1368,
71 => 1368, 72 => 1368, 73 => 1368, 86 => 1368,
91 => 1368, 94 => 1368, 97 => 1368, 99 => 1368,
103 => 1368, others => 0),
2731 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2732 =>
(0 => 1377, 15 => 1377, 34 => 1377, 39 => 1377,
40 => 1377, 41 => 1377, 46 => 1377, 56 => 1377,
60 => 1377, 67 => 1377, 68 => 1377, 70 => 1377,
71 => 1377, 72 => 1377, 73 => 1377, 86 => 1377,
91 => 1377, 94 => 1377, 97 => 1377, 99 => 1377,
103 => 1377, others => 0),
2733 =>
(85 => 36137, others => 0),
2734 =>
(0 => 1367, 15 => 1367, 34 => 1367, 39 => 1367,
40 => 1367, 41 => 1367, 46 => 1367, 56 => 1367,
60 => 1367, 67 => 1367, 68 => 1367, 70 => 1367,
71 => 1367, 72 => 1367, 73 => 1367, 86 => 1367,
91 => 1367, 94 => 1367, 97 => 1367, 99 => 1367,
103 => 1367, others => 0),
2735 =>
(85 => 36138, others => 0),
2736 =>
(9 => 33243, 64 => 33242, 85 => 36139, 103 => 32885,
104 => 33241, others => 0),
2737 =>
(40 => 577, 46 => 577, 68 => 577, 70 => 577,
72 => 577, 97 => 577, 99 => 577, 103 => 577,
others => 0),
2738 =>
(40 => 599, 46 => 599, 68 => 599, 70 => 599,
72 => 599, 97 => 599, 99 => 599, 103 => 599,
others => 0),
2739 =>
(40 => 579, 46 => 579, 68 => 579, 70 => 579,
72 => 579, 97 => 579, 99 => 579, 103 => 579,
others => 0),
2740 =>
(46 => 32838, others => 0),
2741 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36142,
90 => 32868, others => 0),
2742 =>
(46 => 32838, others => 0),
2743 =>
(83 => 36146, others => 0),
2744 =>
(61 => 36147, others => 0),
2745 =>
(13 => 60, 51 => 60, 78 => 60, 83 => 60,
85 => 60, 103 => 60, others => 0),
2746 =>
(13 => 48, 51 => 48, 78 => 48, 83 => 48,
85 => 48, 103 => 48, others => 0),
2747 =>
(83 => 36148, others => 0),
2748 =>
(40 => 584, 46 => 584, 68 => 584, 70 => 584,
72 => 584, 97 => 584, 99 => 584, 103 => 584,
others => 0),
2749 =>
(85 => 36149, others => 0),
2750 =>
(40 => 562, 46 => 562, 68 => 562, 70 => 562,
72 => 562, 97 => 562, 99 => 562, 103 => 562,
others => 0),
2751 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2752 =>
(85 => 36151, others => 0),
2753 =>
(40 => 592, 46 => 592, 68 => 592, 70 => 592,
72 => 592, 97 => 592, 99 => 592, 103 => 592,
others => 0),
2754 =>
(85 => 36152, others => 0),
2755 =>
(40 => 564, 46 => 564, 68 => 564, 70 => 564,
72 => 564, 97 => 564, 99 => 564, 103 => 564,
others => 0),
2756 =>
(85 => 36153, others => 0),
2757 =>
(9 => 33243, 64 => 33242, 85 => 36154, 103 => 32885,
104 => 33241, others => 0),
2758 =>
(40 => 569, 46 => 569, 68 => 569, 70 => 569,
72 => 569, 97 => 569, 99 => 569, 103 => 569,
others => 0),
2759 =>
(40 => 595, 46 => 595, 68 => 595, 70 => 595,
72 => 595, 97 => 595, 99 => 595, 103 => 595,
others => 0),
2760 =>
(40 => 571, 46 => 571, 68 => 571, 70 => 571,
72 => 571, 97 => 571, 99 => 571, 103 => 571,
others => 0),
2761 =>
(13 => 37, 51 => 37, 78 => 37, 83 => 37,
85 => 37, 103 => 37, others => 0),
2762 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2763 =>
(80 => 36157, others => 0),
2764 =>
(13 => 55, 51 => 55, 78 => 55, 83 => 55,
85 => 55, 103 => 55, others => 0),
2765 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36158,
90 => 32868, others => 0),
2766 =>
(0 => 1456, 15 => 1456, 34 => 1456, 39 => 1456,
40 => 1456, 41 => 1456, 46 => 1456, 56 => 1456,
60 => 1456, 67 => 1456, 68 => 1456, 70 => 1456,
71 => 1456, 72 => 1456, 73 => 1456, 86 => 1456,
91 => 1456, 94 => 1456, 97 => 1456, 99 => 1456,
103 => 1456, others => 0),
2767 =>
(0 => 1428, 15 => 1428, 34 => 1428, 39 => 1428,
40 => 1428, 41 => 1428, 46 => 1428, 56 => 1428,
60 => 1428, 67 => 1428, 68 => 1428, 70 => 1428,
71 => 1428, 72 => 1428, 73 => 1428, 86 => 1428,
91 => 1428, 94 => 1428, 97 => 1428, 99 => 1428,
103 => 1428, others => 0),
2768 =>
(0 => 1427, 15 => 1427, 34 => 1427, 39 => 1427,
40 => 1427, 41 => 1427, 46 => 1427, 56 => 1427,
60 => 1427, 67 => 1427, 68 => 1427, 70 => 1427,
71 => 1427, 72 => 1427, 73 => 1427, 86 => 1427,
91 => 1427, 94 => 1427, 97 => 1427, 99 => 1427,
103 => 1427, others => 0),
2769 =>
(29 => 32865, 85 => 36161, others => 0),
2770 =>
(0 => 1423, 15 => 1423, 34 => 1423, 39 => 1423,
40 => 1423, 41 => 1423, 46 => 1423, 56 => 1423,
60 => 1423, 67 => 1423, 68 => 1423, 70 => 1423,
71 => 1423, 72 => 1423, 73 => 1423, 86 => 1423,
91 => 1423, 94 => 1423, 97 => 1423, 99 => 1423,
103 => 1423, others => 0),
2771 =>
(29 => 32865, 85 => 36162, others => 0),
2772 =>
(46 => 32807, 85 => 36163, others => 0),
2773 =>
(0 => 1424, 15 => 1424, 34 => 1424, 39 => 1424,
40 => 1424, 41 => 1424, 46 => 1424, 56 => 1424,
60 => 1424, 67 => 1424, 68 => 1424, 70 => 1424,
71 => 1424, 72 => 1424, 73 => 1424, 86 => 1424,
91 => 1424, 94 => 1424, 97 => 1424, 99 => 1424,
103 => 1424, others => 0),
2774 =>
(0 => 1417, 15 => 1417, 34 => 1417, 39 => 1417,
40 => 1417, 41 => 1417, 46 => 1417, 56 => 1417,
60 => 1417, 67 => 1417, 68 => 1417, 70 => 1417,
71 => 1417, 72 => 1417, 73 => 1417, 86 => 1417,
91 => 1417, 94 => 1417, 97 => 1417, 99 => 1417,
103 => 1417, others => 0),
2775 =>
(29 => 32865, 85 => 36165, others => 0),
2776 =>
(46 => 32807, 85 => 36166, others => 0),
2777 =>
(0 => 1418, 15 => 1418, 34 => 1418, 39 => 1418,
40 => 1418, 41 => 1418, 46 => 1418, 56 => 1418,
60 => 1418, 67 => 1418, 68 => 1418, 70 => 1418,
71 => 1418, 72 => 1418, 73 => 1418, 86 => 1418,
91 => 1418, 94 => 1418, 97 => 1418, 99 => 1418,
103 => 1418, others => 0),
2778 =>
(46 => 32807, 85 => 36168, others => 0),
2779 =>
(34 => 36170, 39 => 32961, 40 => 32824, 41 => 32780,
46 => 32838, 60 => 32823, 67 => 32822, 68 => 32821,
70 => 32775, 72 => 32820, 73 => 33047, 91 => 32955,
94 => 33046, 97 => 32953, 99 => 32771, others => 0),
2780 =>
(0 => 1413, 15 => 1413, 34 => 1413, 39 => 1413,
40 => 1413, 41 => 1413, 46 => 1413, 56 => 1413,
60 => 1413, 67 => 1413, 68 => 1413, 70 => 1413,
71 => 1413, 72 => 1413, 73 => 1413, 86 => 1413,
91 => 1413, 94 => 1413, 97 => 1413, 99 => 1413,
103 => 1413, others => 0),
2781 =>
(29 => 32865, 85 => 36171, others => 0),
2782 =>
(0 => 1361, 15 => 1361, 34 => 1361, 39 => 1361,
40 => 1361, 41 => 1361, 46 => 1361, 56 => 1361,
60 => 1361, 67 => 1361, 68 => 1361, 70 => 1361,
71 => 1361, 72 => 1361, 73 => 1361, 86 => 1361,
91 => 1361, 94 => 1361, 97 => 1361, 99 => 1361,
103 => 1361, others => 0),
2783 =>
(85 => 36172, others => 0),
2784 =>
(61 => 36173, others => 0),
2785 =>
(85 => 36174, 103 => 32885, others => 0),
2786 =>
(85 => 36176, 103 => 32885, others => 0),
2787 =>
(0 => 1266, 15 => 1266, 34 => 1266, 35 => 1266,
39 => 1266, 40 => 1266, 41 => 1266, 46 => 1266,
56 => 1266, 60 => 1266, 67 => 1266, 68 => 1266,
70 => 1266, 71 => 1266, 72 => 1266, 73 => 1266,
86 => 1266, 91 => 1266, 94 => 1266, 97 => 1266,
99 => 1266, 103 => 1266, others => 0),
2788 =>
(85 => 36178, others => 0),
2789 =>
(0 => 1268, 15 => 1268, 34 => 1268, 35 => 1268,
39 => 1268, 40 => 1268, 41 => 1268, 46 => 1268,
56 => 1268, 60 => 1268, 67 => 1268, 68 => 1268,
70 => 1268, 71 => 1268, 72 => 1268, 73 => 1268,
86 => 1268, 91 => 1268, 94 => 1268, 97 => 1268,
99 => 1268, 103 => 1268, others => 0),
2790 =>
(85 => 36179, others => 0),
2791 =>
(0 => 991, 15 => 991, 34 => 991, 35 => 991,
39 => 991, 40 => 991, 41 => 991, 46 => 991,
56 => 991, 60 => 991, 67 => 991, 68 => 991,
70 => 991, 71 => 991, 72 => 991, 73 => 991,
86 => 991, 91 => 991, 94 => 991, 97 => 991,
99 => 991, 103 => 991, others => 0),
2792 =>
(85 => 36180, others => 0),
2793 =>
(34 => 36182, 37 => 36181, others => 0),
2794 =>
(0 => 1262, 15 => 1262, 34 => 1262, 35 => 1262,
39 => 1262, 40 => 1262, 41 => 1262, 46 => 1262,
56 => 1262, 60 => 1262, 67 => 1262, 68 => 1262,
70 => 1262, 71 => 1262, 72 => 1262, 73 => 1262,
86 => 1262, 91 => 1262, 94 => 1262, 97 => 1262,
99 => 1262, 103 => 1262, others => 0),
2795 =>
(85 => 36183, others => 0),
2796 =>
(0 => 1264, 15 => 1264, 34 => 1264, 35 => 1264,
39 => 1264, 40 => 1264, 41 => 1264, 46 => 1264,
56 => 1264, 60 => 1264, 67 => 1264, 68 => 1264,
70 => 1264, 71 => 1264, 72 => 1264, 73 => 1264,
86 => 1264, 91 => 1264, 94 => 1264, 97 => 1264,
99 => 1264, 103 => 1264, others => 0),
2797 =>
(85 => 36184, others => 0),
2798 =>
(46 => 32807, 85 => 36185, 90 => 32868, others => 0),
2799 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2800 =>
(46 => 32807, 85 => 36188, 90 => 32868, others => 0),
2801 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2802 =>
(15 => 36192, 34 => 36191, others => 0),
2803 =>
(34 => 36193, others => 0),
2804 =>
(0 => 1157, 15 => 1157, 34 => 1157, 35 => 1157,
39 => 1157, 40 => 1157, 41 => 1157, 46 => 1157,
56 => 1157, 60 => 1157, 67 => 1157, 68 => 1157,
70 => 1157, 71 => 1157, 72 => 1157, 73 => 1157,
86 => 1157, 91 => 1157, 94 => 1157, 97 => 1157,
99 => 1157, 103 => 1157, others => 0),
2805 =>
(85 => 36194, others => 0),
2806 =>
(0 => 1152, 15 => 1152, 34 => 1152, 35 => 1152,
39 => 1152, 40 => 1152, 41 => 1152, 46 => 1152,
56 => 1152, 60 => 1152, 67 => 1152, 68 => 1152,
70 => 1152, 71 => 1152, 72 => 1152, 73 => 1152,
86 => 1152, 91 => 1152, 94 => 1152, 97 => 1152,
99 => 1152, 103 => 1152, others => 0),
2807 =>
(101 => 33976, others => 0),
2808 =>
(46 => 32807, 85 => 36196, 90 => 32868, others => 0),
2809 =>
(0 => 1146, 15 => 1146, 34 => 1146, 35 => 1146,
39 => 1146, 40 => 1146, 41 => 1146, 46 => 1146,
56 => 1146, 60 => 1146, 67 => 1146, 68 => 1146,
70 => 1146, 71 => 1146, 72 => 1146, 73 => 1146,
86 => 1146, 91 => 1146, 94 => 1146, 97 => 1146,
99 => 1146, 103 => 1146, others => 0),
2810 =>
(101 => 33976, others => 0),
2811 =>
(46 => 32807, 85 => 36199, 90 => 32868, others => 0),
2812 =>
(0 => 1141, 15 => 1141, 34 => 1141, 35 => 1141,
39 => 1141, 40 => 1141, 41 => 1141, 46 => 1141,
56 => 1141, 60 => 1141, 67 => 1141, 68 => 1141,
70 => 1141, 71 => 1141, 72 => 1141, 73 => 1141,
86 => 1141, 91 => 1141, 94 => 1141, 97 => 1141,
99 => 1141, 103 => 1141, others => 0),
2813 =>
(85 => 36201, others => 0),
2814 =>
(34 => 36203, 37 => 36202, others => 0),
2815 =>
(34 => 36204, others => 0),
2816 =>
(0 => 1013, 15 => 1013, 34 => 1013, 35 => 1013,
39 => 1013, 40 => 1013, 41 => 1013, 46 => 1013,
56 => 1013, 60 => 1013, 67 => 1013, 68 => 1013,
70 => 1013, 71 => 1013, 72 => 1013, 73 => 1013,
86 => 1013, 91 => 1013, 94 => 1013, 97 => 1013,
99 => 1013, 103 => 1013, others => 0),
2817 =>
(85 => 36205, others => 0),
2818 =>
(0 => 1008, 15 => 1008, 34 => 1008, 35 => 1008,
39 => 1008, 40 => 1008, 41 => 1008, 46 => 1008,
56 => 1008, 60 => 1008, 67 => 1008, 68 => 1008,
70 => 1008, 71 => 1008, 72 => 1008, 73 => 1008,
86 => 1008, 91 => 1008, 94 => 1008, 97 => 1008,
99 => 1008, 103 => 1008, others => 0),
2819 =>
(101 => 33976, others => 0),
2820 =>
(46 => 32807, 85 => 36207, 90 => 32868, others => 0),
2821 =>
(0 => 1002, 15 => 1002, 34 => 1002, 35 => 1002,
39 => 1002, 40 => 1002, 41 => 1002, 46 => 1002,
56 => 1002, 60 => 1002, 67 => 1002, 68 => 1002,
70 => 1002, 71 => 1002, 72 => 1002, 73 => 1002,
86 => 1002, 91 => 1002, 94 => 1002, 97 => 1002,
99 => 1002, 103 => 1002, others => 0),
2822 =>
(101 => 33976, others => 0),
2823 =>
(46 => 32807, 85 => 36210, 90 => 32868, others => 0),
2824 =>
(0 => 997, 15 => 997, 34 => 997, 35 => 997,
39 => 997, 40 => 997, 41 => 997, 46 => 997,
56 => 997, 60 => 997, 67 => 997, 68 => 997,
70 => 997, 71 => 997, 72 => 997, 73 => 997,
86 => 997, 91 => 997, 94 => 997, 97 => 997,
99 => 997, 103 => 997, others => 0),
2825 =>
(85 => 36212, others => 0),
2826 =>
(34 => 36214, 37 => 36213, others => 0),
2827 =>
(51 => 36217, 78 => 36216, 85 => 36215, 103 => 32885,
others => 0),
2828 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36219,
103 => 32885, others => 0),
2829 =>
(85 => 36221, 103 => 32885, others => 0),
2830 =>
(46 => 32807, 85 => 36223, 90 => 32868, others => 0),
2831 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2832 =>
(85 => 36226, 103 => 32885, others => 0),
2833 =>
(85 => 36228, 103 => 32885, others => 0),
2834 =>
(15 => 36231, 34 => 36230, others => 0),
2835 =>
(0 => 1329, 15 => 1329, 34 => 1329, 35 => 1329,
39 => 1329, 40 => 1329, 41 => 1329, 46 => 1329,
56 => 1329, 60 => 1329, 67 => 1329, 68 => 1329,
70 => 1329, 71 => 1329, 72 => 1329, 73 => 1329,
86 => 1329, 91 => 1329, 94 => 1329, 97 => 1329,
99 => 1329, 103 => 1329, others => 0),
2836 =>
(15 => 36233, 34 => 36232, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2837 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36235,
103 => 32885, others => 0),
2838 =>
(85 => 36237, 103 => 32885, others => 0),
2839 =>
(46 => 32807, 85 => 36239, 90 => 32868, others => 0),
2840 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2841 =>
(85 => 36242, 103 => 32885, others => 0),
2842 =>
(85 => 36244, 103 => 32885, others => 0),
2843 =>
(15 => 36247, 34 => 36246, others => 0),
2844 =>
(0 => 1259, 15 => 1259, 34 => 1259, 35 => 1259,
39 => 1259, 40 => 1259, 41 => 1259, 46 => 1259,
56 => 1259, 60 => 1259, 67 => 1259, 68 => 1259,
70 => 1259, 71 => 1259, 72 => 1259, 73 => 1259,
86 => 1259, 91 => 1259, 94 => 1259, 97 => 1259,
99 => 1259, 103 => 1259, others => 0),
2845 =>
(15 => 36249, 34 => 36248, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2846 =>
(0 => 1393, 15 => 1393, 34 => 1393, 39 => 1393,
40 => 1393, 41 => 1393, 46 => 1393, 56 => 1393,
60 => 1393, 67 => 1393, 68 => 1393, 70 => 1393,
71 => 1393, 72 => 1393, 73 => 1393, 86 => 1393,
91 => 1393, 94 => 1393, 97 => 1393, 99 => 1393,
103 => 1393, others => 0),
2847 =>
(85 => 36251, others => 0),
2848 =>
(9 => 2026, 12 => 2026, 13 => 2026, 21 => 2026,
28 => 2026, 32 => 2026, 33 => 2026, 51 => 2026,
57 => 2026, 63 => 2026, 64 => 2026, 83 => 2026,
85 => 2026, 96 => 2026, 100 => 2026, 103 => 2026,
104 => 2026, others => 0),
2849 =>
(15 => 33832, 34 => 33831, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2850 =>
(51 => 33836, others => 0),
2851 =>
(51 => 36252, 103 => 32885, others => 0),
2852 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
2853 =>
(15 => 34097, 34 => 34096, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2854 =>
(51 => 34102, others => 0),
2855 =>
(15 => 34106, 34 => 34105, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
2856 =>
(51 => 34111, others => 0),
2857 =>
(80 => 36255, others => 0),
2858 =>
(83 => 36256, others => 0),
2859 =>
(61 => 36257, others => 0),
2860 =>
(51 => 36258, 103 => 32885, others => 0),
2861 =>
(51 => 36260, 103 => 32885, others => 0),
2862 =>
(83 => 36262, others => 0),
2863 =>
(51 => 36263, 103 => 32885, others => 0),
2864 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36265,
90 => 32868, others => 0),
2865 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2866 =>
(9 => 33243, 64 => 33242, 83 => 1679, 85 => 1679,
104 => 33241, others => 0),
2867 =>
(13 => 36269, 83 => 1668, 85 => 1668, others => 0),
2868 =>
(9 => 33243, 64 => 33242, 83 => 1669, 85 => 1669,
104 => 33241, others => 0),
2869 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2870 =>
(13 => 36271, 83 => 1660, 85 => 1660, others => 0),
2871 =>
(9 => 33243, 64 => 33242, 83 => 1661, 85 => 1661,
104 => 33241, others => 0),
2872 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2873 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2874 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2875 =>
(13 => 36275, 83 => 1656, 85 => 1656, others => 0),
2876 =>
(9 => 33243, 64 => 33242, 83 => 1657, 85 => 1657,
104 => 33241, others => 0),
2877 =>
(34 => 36276, others => 0),
2878 =>
(0 => 1884, 15 => 1884, 34 => 1884, 35 => 1884,
39 => 1884, 40 => 1884, 41 => 1884, 46 => 1884,
56 => 1884, 60 => 1884, 67 => 1884, 68 => 1884,
70 => 1884, 71 => 1884, 72 => 1884, 73 => 1884,
86 => 1884, 91 => 1884, 94 => 1884, 97 => 1884,
99 => 1884, 103 => 1884, others => 0),
2879 =>
(29 => 32865, 85 => 36277, others => 0),
2880 =>
(0 => 1879, 15 => 1879, 34 => 1879, 35 => 1879,
39 => 1879, 40 => 1879, 41 => 1879, 46 => 1879,
56 => 1879, 60 => 1879, 67 => 1879, 68 => 1879,
70 => 1879, 71 => 1879, 72 => 1879, 73 => 1879,
86 => 1879, 91 => 1879, 94 => 1879, 97 => 1879,
99 => 1879, 103 => 1879, others => 0),
2881 =>
(101 => 33976, others => 0),
2882 =>
(46 => 32807, 85 => 36279, others => 0),
2883 =>
(0 => 1873, 15 => 1873, 34 => 1873, 35 => 1873,
39 => 1873, 40 => 1873, 41 => 1873, 46 => 1873,
56 => 1873, 60 => 1873, 67 => 1873, 68 => 1873,
70 => 1873, 71 => 1873, 72 => 1873, 73 => 1873,
86 => 1873, 91 => 1873, 94 => 1873, 97 => 1873,
99 => 1873, 103 => 1873, others => 0),
2884 =>
(101 => 33976, others => 0),
2885 =>
(46 => 32807, 85 => 36282, others => 0),
2886 =>
(0 => 1868, 15 => 1868, 34 => 1868, 35 => 1868,
39 => 1868, 40 => 1868, 41 => 1868, 46 => 1868,
56 => 1868, 60 => 1868, 67 => 1868, 68 => 1868,
70 => 1868, 71 => 1868, 72 => 1868, 73 => 1868,
86 => 1868, 91 => 1868, 94 => 1868, 97 => 1868,
99 => 1868, 103 => 1868, others => 0),
2887 =>
(29 => 32865, 85 => 36284, others => 0),
2888 =>
(34 => 36286, 37 => 36285, others => 0),
2889 =>
(15 => 1761, 34 => 1761, 39 => 1761, 40 => 1761,
41 => 1761, 46 => 1761, 60 => 1761, 67 => 1761,
68 => 1761, 70 => 1761, 71 => 1761, 72 => 1761,
73 => 1761, 91 => 1761, 94 => 1761, 97 => 1761,
99 => 1761, others => 0),
2890 =>
(15 => 1760, 34 => 1760, 39 => 1760, 40 => 1760,
41 => 1760, 46 => 1760, 60 => 1760, 67 => 1760,
68 => 1760, 70 => 1760, 71 => 1760, 72 => 1760,
73 => 1760, 91 => 1760, 94 => 1760, 97 => 1760,
99 => 1760, others => 0),
2891 =>
(85 => 36287, others => 0),
2892 =>
(71 => 36288, others => 0),
2893 =>
(9 => 34179, 103 => 36289, others => 0),
2894 =>
(101 => 36290, others => 0),
2895 =>
(18 => 213, 34 => 213, 39 => 213, 46 => 213,
70 => 213, 101 => 213, others => 0),
2896 =>
(34 => 215, 101 => 215, others => 0),
2897 =>
(85 => 2038, 103 => 2038, others => 0),
2898 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 33990,
90 => 32868, others => 0),
2899 =>
(13 => 210, 85 => 210, 103 => 210, others => 0),
2900 =>
(13 => 36295, 85 => 36294, 103 => 32885, others => 0),
2901 =>
(13 => 208, 85 => 208, 103 => 208, others => 0),
2902 =>
(8 => 33263, 31 => 33262, 45 => 33258, 58 => 33253,
69 => 33251, 77 => 33250, 85 => 2092, 87 => 33249,
89 => 33248, 103 => 2092, others => 0),
2903 =>
(40 => 36298, 72 => 36297, others => 0),
2904 =>
(53 => 36299, 85 => 72, 103 => 72, others => 0),
2905 =>
(53 => 36301, 80 => 36300, others => 0),
2906 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2907 =>
(85 => 66, 103 => 66, others => 0),
2908 =>
(85 => 36303, 103 => 32885, others => 0),
2909 =>
(85 => 36305, 103 => 32885, others => 0),
2910 =>
(61 => 33843, 71 => 36307, 76 => 33840, others => 0),
2911 =>
(15 => 726, 34 => 726, 39 => 726, 40 => 726,
41 => 726, 46 => 726, 60 => 726, 67 => 726,
68 => 726, 70 => 726, 71 => 726, 72 => 726,
73 => 726, 91 => 726, 94 => 726, 97 => 726,
99 => 726, others => 0),
2912 =>
(15 => 1763, 34 => 1763, 39 => 1763, 40 => 1763,
41 => 1763, 46 => 1763, 60 => 1763, 67 => 1763,
68 => 1763, 70 => 1763, 71 => 1763, 72 => 1763,
73 => 1763, 91 => 1763, 94 => 1763, 97 => 1763,
99 => 1763, others => 0),
2913 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 36309,
76 => 33840, 90 => 32868, others => 0),
2914 =>
(15 => 721, 34 => 721, 39 => 721, 40 => 721,
41 => 721, 46 => 721, 60 => 721, 67 => 721,
68 => 721, 70 => 721, 71 => 721, 72 => 721,
73 => 721, 91 => 721, 94 => 721, 97 => 721,
99 => 721, others => 0),
2915 =>
(9 => 34179, 103 => 36311, others => 0),
2916 =>
(85 => 36312, others => 0),
2917 =>
(21 => 351, 83 => 351, others => 0),
2918 =>
(85 => 354, 103 => 354, others => 0),
2919 =>
(19 => 34404, 46 => 34403, others => 0),
2920 =>
(8 => 33263, 30 => 36314, 31 => 33262, 45 => 33258,
58 => 33253, 69 => 33251, 77 => 33250, 87 => 33249,
89 => 33248, others => 0),
2921 =>
(8 => 33263, 31 => 33262, 45 => 33258, 58 => 33253,
69 => 33251, 75 => 35029, 77 => 33250, 85 => 231,
87 => 33249, 89 => 33248, 103 => 231, others => 0),
2922 =>
(46 => 32838, others => 0),
2923 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36317,
90 => 32868, others => 0),
2924 =>
(46 => 32838, others => 0),
2925 =>
(83 => 36321, others => 0),
2926 =>
(61 => 36322, others => 0),
2927 =>
(85 => 100, 103 => 100, others => 0),
2928 =>
(85 => 92, 103 => 92, others => 0),
2929 =>
(83 => 36323, others => 0),
2930 =>
(15 => 1758, 34 => 1758, 39 => 1758, 40 => 1758,
41 => 1758, 46 => 1758, 60 => 1758, 67 => 1758,
68 => 1758, 70 => 1758, 71 => 1758, 72 => 1758,
73 => 1758, 91 => 1758, 94 => 1758, 97 => 1758,
99 => 1758, others => 0),
2931 =>
(85 => 36324, others => 0),
2932 =>
(85 => 36325, 103 => 32885, others => 0),
2933 =>
(85 => 2044, 103 => 2044, others => 0),
2934 =>
(9 => 33678, 103 => 36327, others => 0),
2935 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 36329,
76 => 33840, 90 => 32868, others => 0),
2936 =>
(15 => 715, 34 => 715, 39 => 715, 40 => 715,
41 => 715, 46 => 715, 60 => 715, 67 => 715,
68 => 715, 70 => 715, 71 => 715, 72 => 715,
73 => 715, 91 => 715, 94 => 715, 97 => 715,
99 => 715, others => 0),
2937 =>
(9 => 34179, 103 => 36331, others => 0),
2938 =>
(85 => 36332, others => 0),
2939 =>
(9 => 33678, 85 => 36334, 103 => 36333, others => 0),
2940 =>
(15 => 1750, 34 => 1750, 39 => 1750, 40 => 1750,
41 => 1750, 46 => 1750, 60 => 1750, 67 => 1750,
68 => 1750, 70 => 1750, 71 => 1750, 72 => 1750,
73 => 1750, 91 => 1750, 94 => 1750, 97 => 1750,
99 => 1750, others => 0),
2941 =>
(85 => 36337, others => 0),
2942 =>
(85 => 36338, 103 => 32885, others => 0),
2943 =>
(9 => 33678, 103 => 36340, others => 0),
2944 =>
(15 => 1753, 34 => 1753, 39 => 1753, 40 => 1753,
41 => 1753, 46 => 1753, 60 => 1753, 67 => 1753,
68 => 1753, 70 => 1753, 71 => 1753, 72 => 1753,
73 => 1753, 91 => 1753, 94 => 1753, 97 => 1753,
99 => 1753, others => 0),
2945 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 36342,
76 => 33840, 90 => 32868, others => 0),
2946 =>
(15 => 703, 34 => 703, 39 => 703, 40 => 703,
41 => 703, 46 => 703, 60 => 703, 67 => 703,
68 => 703, 70 => 703, 71 => 703, 72 => 703,
73 => 703, 91 => 703, 94 => 703, 97 => 703,
99 => 703, others => 0),
2947 =>
(9 => 34179, 103 => 36344, others => 0),
2948 =>
(85 => 36345, others => 0),
2949 =>
(15 => 1752, 34 => 1752, 39 => 1752, 40 => 1752,
41 => 1752, 46 => 1752, 60 => 1752, 67 => 1752,
68 => 1752, 70 => 1752, 71 => 1752, 72 => 1752,
73 => 1752, 91 => 1752, 94 => 1752, 97 => 1752,
99 => 1752, others => 0),
2950 =>
(85 => 36346, others => 0),
2951 =>
(9 => 33678, 85 => 36348, 103 => 36347, others => 0),
2952 =>
(85 => 36351, 103 => 32885, others => 0),
2953 =>
(61 => 33843, 71 => 36353, 76 => 33840, others => 0),
2954 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2955 =>
(9 => 33678, 85 => 36356, 103 => 36355, others => 0),
2956 =>
(19 => 32869, 46 => 32807, 60 => 33685, 90 => 32868,
others => 0),
2957 =>
(15 => 676, 34 => 676, 39 => 676, 40 => 676,
41 => 676, 46 => 676, 60 => 676, 67 => 676,
68 => 676, 70 => 676, 71 => 676, 72 => 676,
73 => 676, 91 => 676, 94 => 676, 97 => 676,
99 => 676, others => 0),
2958 =>
(34 => 33882, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 33877, others => 0),
2959 =>
(103 => 36361, others => 0),
2960 =>
(15 => 2180, 34 => 2180, 39 => 2180, 40 => 2180,
41 => 2180, 46 => 2180, 60 => 2180, 67 => 2180,
68 => 2180, 70 => 2180, 71 => 2180, 72 => 2180,
73 => 2180, 91 => 2180, 94 => 2180, 97 => 2180,
99 => 2180, others => 0),
2961 =>
(103 => 36362, others => 0),
2962 =>
(15 => 2177, 34 => 2177, 39 => 2177, 40 => 2177,
41 => 2177, 46 => 2177, 60 => 2177, 67 => 2177,
68 => 2177, 70 => 2177, 71 => 2177, 72 => 2177,
73 => 2177, 91 => 2177, 94 => 2177, 97 => 2177,
99 => 2177, others => 0),
2963 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2964 =>
(85 => 36364, others => 0),
2965 =>
(15 => 2155, 34 => 2155, 39 => 2155, 40 => 2155,
41 => 2155, 46 => 2155, 60 => 2155, 67 => 2155,
68 => 2155, 70 => 2155, 72 => 2155, 73 => 2155,
91 => 2155, 94 => 2155, 97 => 2155, 99 => 2155,
others => 0),
2966 =>
(101 => 33976, others => 0),
2967 =>
(46 => 36367, 85 => 36366, others => 0),
2968 =>
(34 => 36369, 37 => 36368, others => 0),
2969 =>
(34 => 36371, 37 => 36370, others => 0),
2970 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
2971 =>
(85 => 2163, others => 0),
2972 =>
(34 => 340, 35 => 340, 39 => 340, 40 => 340,
46 => 340, 60 => 340, 67 => 340, 70 => 340,
71 => 340, 72 => 340, others => 0),
2973 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 33168,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2974 =>
(85 => 36375, others => 0),
2975 =>
(53 => 36377, 85 => 36376, 103 => 32885, others => 0),
2976 =>
(85 => 36379, others => 0),
2977 =>
(83 => 36380, others => 0),
2978 =>
(83 => 36381, others => 0),
2979 =>
(34 => 347, 35 => 347, 39 => 347, 40 => 347,
46 => 347, 60 => 347, 67 => 347, 70 => 347,
71 => 347, 72 => 347, others => 0),
2980 =>
(85 => 2159, others => 0),
2981 =>
(46 => 36382, 85 => 2158, others => 0),
2982 =>
(34 => 33882, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 33877, others => 0),
2983 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 33897,
72 => 33896, others => 0),
2984 =>
(103 => 36385, others => 0),
2985 =>
(15 => 2013, 34 => 2013, 39 => 2013, 40 => 2013,
41 => 2013, 46 => 2013, 60 => 2013, 67 => 2013,
68 => 2013, 70 => 2013, 71 => 2013, 72 => 2013,
73 => 2013, 91 => 2013, 94 => 2013, 97 => 2013,
99 => 2013, others => 0),
2986 =>
(103 => 36386, others => 0),
2987 =>
(15 => 2011, 34 => 2011, 39 => 2011, 40 => 2011,
41 => 2011, 46 => 2011, 60 => 2011, 67 => 2011,
68 => 2011, 70 => 2011, 71 => 2011, 72 => 2011,
73 => 2011, 91 => 2011, 94 => 2011, 97 => 2011,
99 => 2011, others => 0),
2988 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
2989 =>
(85 => 36388, others => 0),
2990 =>
(15 => 1976, 34 => 1976, 39 => 1976, 40 => 1976,
41 => 1976, 46 => 1976, 60 => 1976, 67 => 1976,
68 => 1976, 70 => 1976, 72 => 1976, 73 => 1976,
91 => 1976, 94 => 1976, 97 => 1976, 99 => 1976,
others => 0),
2991 =>
(3 => 32964, 15 => 32963, 34 => 32962, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 60 => 32778,
61 => 32959, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 32956, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
2992 =>
(51 => 36389, 53 => 33056, 78 => 33055, 85 => 33054,
103 => 32885, others => 0),
2993 =>
(53 => 33060, 80 => 33059, others => 0),
2994 =>
(46 => 32815, others => 0),
2995 =>
(46 => 32815, 90 => 32853, others => 0),
2996 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
2997 =>
(39 => 36393, 46 => 32838, others => 0),
2998 =>
(0 => 1974, 15 => 1974, 34 => 1974, 39 => 1974,
40 => 1974, 41 => 1974, 46 => 1974, 56 => 1974,
60 => 1974, 67 => 1974, 68 => 1974, 70 => 1974,
71 => 1974, 72 => 1974, 73 => 1974, 86 => 1974,
91 => 1974, 94 => 1974, 97 => 1974, 99 => 1974,
103 => 1974, others => 0),
2999 =>
(0 => 1973, 15 => 1973, 34 => 1973, 39 => 1973,
40 => 1973, 41 => 1973, 46 => 1973, 56 => 1973,
60 => 1973, 67 => 1973, 68 => 1973, 70 => 1973,
71 => 1973, 72 => 1973, 73 => 1973, 86 => 1973,
91 => 1973, 94 => 1973, 97 => 1973, 99 => 1973,
103 => 1973, others => 0),
3000 =>
(85 => 36396, others => 0),
3001 =>
(0 => 1971, 15 => 1971, 34 => 1971, 39 => 1971,
40 => 1971, 41 => 1971, 46 => 1971, 56 => 1971,
60 => 1971, 67 => 1971, 68 => 1971, 70 => 1971,
71 => 1971, 72 => 1971, 73 => 1971, 86 => 1971,
91 => 1971, 94 => 1971, 97 => 1971, 99 => 1971,
103 => 1971, others => 0),
3002 =>
(85 => 36397, others => 0),
3003 =>
(46 => 36399, 85 => 36398, others => 0),
3004 =>
(85 => 1984, others => 0),
3005 =>
(3 => 32964, 61 => 32959, 86 => 33284, others => 0),
3006 =>
(51 => 36400, 53 => 33537, 78 => 33298, 85 => 33297,
103 => 32885, others => 0),
3007 =>
(53 => 33541, 80 => 33540, others => 0),
3008 =>
(85 => 36401, others => 0),
3009 =>
(85 => 1980, others => 0),
3010 =>
(46 => 36402, 85 => 1979, others => 0),
3011 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 33897,
72 => 33896, others => 0),
3012 =>
(15 => 1623, 34 => 1623, 39 => 1623, 40 => 1623,
41 => 1623, 46 => 1623, 60 => 1623, 67 => 1623,
68 => 1623, 70 => 1623, 72 => 1623, 73 => 1623,
91 => 1623, 94 => 1623, 97 => 1623, 99 => 1623,
others => 0),
3013 =>
(0 => 1404, 15 => 1404, 34 => 1404, 39 => 1404,
40 => 1404, 41 => 1404, 46 => 1404, 56 => 1404,
60 => 1404, 67 => 1404, 68 => 1404, 70 => 1404,
71 => 1404, 72 => 1404, 73 => 1404, 86 => 1404,
91 => 1404, 94 => 1404, 97 => 1404, 99 => 1404,
103 => 1404, others => 0),
3014 =>
(17 => 36404, others => 0),
3015 =>
(21 => 616, 83 => 616, others => 0),
3016 =>
(12 => 36405, others => 0),
3017 =>
(15 => 2043, 18 => 2043, 34 => 2043, 35 => 2043,
39 => 2043, 40 => 2043, 41 => 2043, 46 => 2043,
60 => 2043, 67 => 2043, 68 => 2043, 70 => 2043,
71 => 2043, 72 => 2043, 73 => 2043, 91 => 2043,
94 => 2043, 97 => 2043, 99 => 2043, 101 => 2043,
others => 0),
3018 =>
(9 => 33243, 64 => 33242, 85 => 36406, 104 => 33241,
others => 0),
3019 =>
(85 => 36407, others => 0),
3020 =>
(8 => 33263, 31 => 33262, 45 => 33258, 58 => 33253,
69 => 33251, 75 => 36408, 77 => 33250, 87 => 33249,
89 => 33248, others => 0),
3021 =>
(46 => 36410, 85 => 36409, others => 0),
3022 =>
(84 => 36411, others => 0),
3023 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3024 =>
(32 => 36414, 34 => 36413, 64 => 34517, others => 0),
3025 =>
(84 => 36415, others => 0),
3026 =>
(4 => 33176, 19 => 32869, 25 => 33172, 46 => 32807,
90 => 32868, 95 => 33464, others => 0),
3027 =>
(85 => 36417, others => 0),
3028 =>
(9 => 33243, 12 => 36418, 64 => 33242, 104 => 33241,
others => 0),
3029 =>
(1 => 2080, 4 => 2080, 15 => 2080, 18 => 2080,
19 => 2080, 24 => 2080, 25 => 2080, 32 => 2080,
33 => 2080, 34 => 2080, 37 => 2080, 38 => 2080,
39 => 2080, 42 => 2080, 46 => 2080, 47 => 2080,
52 => 2080, 57 => 2080, 61 => 2080, 64 => 2080,
70 => 2080, 74 => 2080, 79 => 2080, 80 => 2080,
84 => 2080, 90 => 2080, 96 => 2080, 101 => 2080,
102 => 2080, others => 0),
3030 =>
(84 => 36419, others => 0),
3031 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3032 =>
(13 => 36421, 28 => 382, 85 => 382, others => 0),
3033 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3034 =>
(9 => 33243, 28 => 387, 64 => 33242, 85 => 387,
104 => 33241, others => 0),
3035 =>
(34 => 36423, others => 0),
3036 =>
(85 => 36424, others => 0),
3037 =>
(1 => 1546, 4 => 1546, 15 => 1546, 18 => 1546,
19 => 1546, 24 => 1546, 25 => 1546, 32 => 1546,
33 => 1546, 34 => 1546, 37 => 1546, 38 => 1546,
39 => 1546, 42 => 1546, 46 => 1546, 47 => 1546,
52 => 1546, 57 => 1546, 61 => 1546, 64 => 1546,
70 => 1546, 74 => 1546, 79 => 1546, 80 => 1546,
84 => 1546, 90 => 1546, 96 => 1546, 101 => 1546,
102 => 1546, others => 0),
3038 =>
(85 => 36425, others => 0),
3039 =>
(9 => 33243, 64 => 33242, 96 => 36426, 104 => 33241,
others => 0),
3040 =>
(34 => 36427, others => 0),
3041 =>
(47 => 36428, others => 0),
3042 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3043 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3044 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
3045 =>
(10 => 1694, 12 => 1504, 29 => 1694, 53 => 1694,
57 => 1504, others => 0),
3046 =>
(46 => 36433, 85 => 36432, others => 0),
3047 =>
(46 => 36435, 85 => 36434, others => 0),
3048 =>
(46 => 36437, 85 => 36436, others => 0),
3049 =>
(1 => 169, 4 => 169, 15 => 169, 18 => 169,
19 => 169, 24 => 169, 25 => 169, 32 => 169,
33 => 169, 34 => 169, 37 => 169, 38 => 169,
39 => 169, 42 => 169, 46 => 169, 47 => 169,
52 => 169, 57 => 169, 61 => 169, 64 => 169,
70 => 169, 74 => 169, 79 => 169, 80 => 169,
84 => 169, 90 => 169, 96 => 169, 101 => 169,
102 => 169, others => 0),
3050 =>
(34 => 36438, others => 0),
3051 =>
(1 => 166, 4 => 166, 15 => 166, 18 => 166,
19 => 166, 24 => 166, 25 => 166, 32 => 166,
33 => 166, 34 => 166, 37 => 166, 38 => 166,
39 => 166, 42 => 166, 46 => 166, 47 => 166,
52 => 166, 57 => 166, 61 => 166, 64 => 166,
70 => 166, 74 => 166, 79 => 166, 80 => 166,
84 => 166, 90 => 166, 96 => 166, 101 => 166,
102 => 166, others => 0),
3052 =>
(85 => 36439, others => 0),
3053 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3054 =>
(85 => 36441, others => 0),
3055 =>
(18 => 36442, others => 0),
3056 =>
(34 => 188, 101 => 188, others => 0),
3057 =>
(1 => 172, 4 => 172, 15 => 172, 18 => 172,
19 => 172, 24 => 172, 25 => 172, 32 => 172,
33 => 172, 34 => 172, 37 => 172, 38 => 172,
39 => 172, 42 => 172, 46 => 172, 47 => 172,
52 => 172, 57 => 172, 61 => 172, 64 => 172,
70 => 172, 74 => 172, 79 => 172, 80 => 172,
84 => 172, 90 => 172, 96 => 172, 101 => 172,
102 => 172, others => 0),
3058 =>
(85 => 36443, others => 0),
3059 =>
(1 => 18, 4 => 18, 15 => 18, 18 => 18,
19 => 18, 24 => 18, 25 => 18, 32 => 18,
33 => 18, 34 => 18, 37 => 18, 38 => 18,
39 => 18, 42 => 18, 46 => 18, 47 => 18,
52 => 18, 57 => 18, 61 => 18, 64 => 18,
70 => 18, 74 => 18, 79 => 18, 80 => 18,
84 => 18, 90 => 18, 96 => 18, 101 => 18,
102 => 18, others => 0),
3060 =>
(46 => 32838, others => 0),
3061 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3062 =>
(1 => 23, 4 => 23, 15 => 23, 18 => 23,
19 => 23, 24 => 23, 25 => 23, 32 => 23,
33 => 23, 34 => 23, 37 => 23, 38 => 23,
39 => 23, 42 => 23, 46 => 23, 47 => 23,
52 => 23, 57 => 23, 61 => 23, 64 => 23,
70 => 23, 74 => 23, 79 => 23, 80 => 23,
84 => 23, 90 => 23, 96 => 23, 101 => 23,
102 => 23, others => 0),
3063 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3064 =>
(34 => 36447, others => 0),
3065 =>
(1 => 27, 4 => 27, 15 => 27, 18 => 27,
19 => 27, 24 => 27, 25 => 27, 32 => 27,
33 => 27, 34 => 27, 37 => 27, 38 => 27,
39 => 27, 42 => 27, 46 => 27, 47 => 27,
52 => 27, 57 => 27, 61 => 27, 64 => 27,
70 => 27, 74 => 27, 79 => 27, 80 => 27,
84 => 27, 90 => 27, 96 => 27, 101 => 27,
102 => 27, others => 0),
3066 =>
(85 => 36448, others => 0),
3067 =>
(34 => 36449, others => 0),
3068 =>
(46 => 36451, 85 => 36450, others => 0),
3069 =>
(34 => 36452, others => 0),
3070 =>
(34 => 36453, others => 0),
3071 =>
(101 => 33976, others => 0),
3072 =>
(46 => 36456, 85 => 36455, others => 0),
3073 =>
(34 => 36458, 37 => 36457, others => 0),
3074 =>
(34 => 36459, others => 0),
3075 =>
(1 => 162, 4 => 162, 15 => 162, 18 => 162,
19 => 162, 24 => 162, 25 => 162, 32 => 162,
33 => 162, 34 => 162, 37 => 162, 38 => 162,
39 => 162, 42 => 162, 46 => 162, 47 => 162,
52 => 162, 57 => 162, 61 => 162, 64 => 162,
70 => 162, 74 => 162, 79 => 162, 80 => 162,
84 => 162, 90 => 162, 96 => 162, 101 => 162,
102 => 162, others => 0),
3076 =>
(85 => 36460, others => 0),
3077 =>
(12 => 36461, 100 => 35197, others => 0),
3078 =>
(12 => 359, 100 => 359, others => 0),
3079 =>
(34 => 365, 101 => 365, others => 0),
3080 =>
(46 => 32807, 65 => 33105, others => 0),
3081 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3082 =>
(0 => 1905, 15 => 1905, 34 => 1905, 35 => 1905,
39 => 1905, 40 => 1905, 41 => 1905, 46 => 1905,
56 => 1905, 60 => 1905, 67 => 1905, 68 => 1905,
70 => 1905, 71 => 1905, 72 => 1905, 73 => 1905,
86 => 1905, 91 => 1905, 94 => 1905, 97 => 1905,
99 => 1905, 103 => 1905, others => 0),
3083 =>
(0 => 1900, 15 => 1900, 34 => 1900, 35 => 1900,
39 => 1900, 40 => 1900, 41 => 1900, 46 => 1900,
56 => 1900, 60 => 1900, 67 => 1900, 68 => 1900,
70 => 1900, 71 => 1900, 72 => 1900, 73 => 1900,
86 => 1900, 91 => 1900, 94 => 1900, 97 => 1900,
99 => 1900, 103 => 1900, others => 0),
3084 =>
(29 => 32865, 85 => 36465, others => 0),
3085 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36466,
103 => 32885, others => 0),
3086 =>
(15 => 368, 34 => 368, 39 => 368, 40 => 368,
41 => 368, 46 => 368, 60 => 368, 67 => 368,
68 => 368, 70 => 368, 71 => 368, 72 => 368,
73 => 368, 91 => 368, 94 => 368, 97 => 368,
99 => 368, others => 0),
3087 =>
(15 => 1577, 34 => 1577, 39 => 1577, 40 => 1577,
41 => 1577, 46 => 1577, 60 => 1577, 67 => 1577,
68 => 1577, 70 => 1577, 71 => 1577, 72 => 1577,
73 => 1577, 91 => 1577, 94 => 1577, 97 => 1577,
99 => 1577, others => 0),
3088 =>
(85 => 36468, others => 0),
3089 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
3090 =>
(63 => 36470, others => 0),
3091 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
3092 =>
(63 => 36472, others => 0),
3093 =>
(9 => 33243, 64 => 33242, 85 => 36473, 103 => 32885,
104 => 33241, others => 0),
3094 =>
(15 => 1570, 34 => 1570, 39 => 1570, 40 => 1570,
41 => 1570, 46 => 1570, 60 => 1570, 67 => 1570,
68 => 1570, 70 => 1570, 71 => 1570, 72 => 1570,
73 => 1570, 91 => 1570, 94 => 1570, 97 => 1570,
99 => 1570, others => 0),
3095 =>
(15 => 1573, 34 => 1573, 39 => 1573, 40 => 1573,
41 => 1573, 46 => 1573, 60 => 1573, 67 => 1573,
68 => 1573, 70 => 1573, 71 => 1573, 72 => 1573,
73 => 1573, 91 => 1573, 94 => 1573, 97 => 1573,
99 => 1573, others => 0),
3096 =>
(85 => 36475, others => 0),
3097 =>
(15 => 1594, 34 => 1594, 39 => 1594, 40 => 1594,
41 => 1594, 46 => 1594, 60 => 1594, 67 => 1594,
68 => 1594, 70 => 1594, 71 => 1594, 72 => 1594,
73 => 1594, 91 => 1594, 94 => 1594, 97 => 1594,
99 => 1594, others => 0),
3098 =>
(15 => 1580, 34 => 1580, 39 => 1580, 40 => 1580,
41 => 1580, 46 => 1580, 60 => 1580, 67 => 1580,
68 => 1580, 70 => 1580, 71 => 1580, 72 => 1580,
73 => 1580, 91 => 1580, 94 => 1580, 97 => 1580,
99 => 1580, others => 0),
3099 =>
(15 => 1592, 34 => 1592, 39 => 1592, 40 => 1592,
41 => 1592, 46 => 1592, 60 => 1592, 67 => 1592,
68 => 1592, 70 => 1592, 71 => 1592, 72 => 1592,
73 => 1592, 91 => 1592, 94 => 1592, 97 => 1592,
99 => 1592, others => 0),
3100 =>
(0 => 1894, 15 => 1894, 34 => 1894, 35 => 1894,
39 => 1894, 40 => 1894, 41 => 1894, 46 => 1894,
56 => 1894, 60 => 1894, 67 => 1894, 68 => 1894,
70 => 1894, 71 => 1894, 72 => 1894, 73 => 1894,
86 => 1894, 91 => 1894, 94 => 1894, 97 => 1894,
99 => 1894, 103 => 1894, others => 0),
3101 =>
(29 => 32865, 85 => 36476, others => 0),
3102 =>
(46 => 32807, 85 => 36477, others => 0),
3103 =>
(0 => 1889, 15 => 1889, 34 => 1889, 35 => 1889,
39 => 1889, 40 => 1889, 41 => 1889, 46 => 1889,
56 => 1889, 60 => 1889, 67 => 1889, 68 => 1889,
70 => 1889, 71 => 1889, 72 => 1889, 73 => 1889,
86 => 1889, 91 => 1889, 94 => 1889, 97 => 1889,
99 => 1889, 103 => 1889, others => 0),
3104 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3105 =>
(3 => 35971, 53 => 32938, 86 => 35968, others => 0),
3106 =>
(85 => 35974, others => 0),
3107 =>
(3 => 35980, 53 => 32938, 86 => 35977, others => 0),
3108 =>
(85 => 35983, others => 0),
3109 =>
(3 => 36017, 53 => 32938, 86 => 36014, others => 0),
3110 =>
(85 => 36020, others => 0),
3111 =>
(61 => 36480, others => 0),
3112 =>
(51 => 36481, 78 => 36054, 85 => 36053, 103 => 32885,
others => 0),
3113 =>
(51 => 36483, 78 => 36058, 85 => 36057, 103 => 32885,
others => 0),
3114 =>
(51 => 36485, 78 => 36216, 85 => 36215, 103 => 32885,
others => 0),
3115 =>
(9 => 33243, 64 => 33242, 96 => 36487, 104 => 33241,
others => 0),
3116 =>
(9 => 33243, 64 => 33242, 83 => 1480, 104 => 33241,
others => 0),
3117 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3118 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3119 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3120 =>
(21 => 181, 83 => 181, others => 0),
3121 =>
(101 => 34619, others => 0),
3122 =>
(0 => 1618, 15 => 1618, 34 => 1618, 39 => 1618,
40 => 1618, 41 => 1618, 46 => 1618, 56 => 1618,
60 => 1618, 67 => 1618, 68 => 1618, 70 => 1618,
71 => 1618, 72 => 1618, 73 => 1618, 86 => 1618,
91 => 1618, 94 => 1618, 97 => 1618, 99 => 1618,
103 => 1618, others => 0),
3123 =>
(29 => 32865, 85 => 36492, others => 0),
3124 =>
(46 => 32807, 85 => 36493, others => 0),
3125 =>
(0 => 1613, 15 => 1613, 34 => 1613, 39 => 1613,
40 => 1613, 41 => 1613, 46 => 1613, 56 => 1613,
60 => 1613, 67 => 1613, 68 => 1613, 70 => 1613,
71 => 1613, 72 => 1613, 73 => 1613, 86 => 1613,
91 => 1613, 94 => 1613, 97 => 1613, 99 => 1613,
103 => 1613, others => 0),
3126 =>
(46 => 32807, 85 => 36495, others => 0),
3127 =>
(0 => 1607, 15 => 1607, 34 => 1607, 39 => 1607,
40 => 1607, 41 => 1607, 46 => 1607, 56 => 1607,
60 => 1607, 67 => 1607, 68 => 1607, 70 => 1607,
71 => 1607, 72 => 1607, 73 => 1607, 86 => 1607,
91 => 1607, 94 => 1607, 97 => 1607, 99 => 1607,
103 => 1607, others => 0),
3128 =>
(34 => 36497, others => 0),
3129 =>
(0 => 1602, 15 => 1602, 34 => 1602, 39 => 1602,
40 => 1602, 41 => 1602, 46 => 1602, 56 => 1602,
60 => 1602, 67 => 1602, 68 => 1602, 70 => 1602,
71 => 1602, 72 => 1602, 73 => 1602, 86 => 1602,
91 => 1602, 94 => 1602, 97 => 1602, 99 => 1602,
103 => 1602, others => 0),
3130 =>
(29 => 32865, 85 => 36498, others => 0),
3131 =>
(0 => 1380, 15 => 1380, 34 => 1380, 39 => 1380,
40 => 1380, 41 => 1380, 46 => 1380, 56 => 1380,
60 => 1380, 67 => 1380, 68 => 1380, 70 => 1380,
71 => 1380, 72 => 1380, 73 => 1380, 86 => 1380,
91 => 1380, 94 => 1380, 97 => 1380, 99 => 1380,
103 => 1380, others => 0),
3132 =>
(0 => 1625, 15 => 1625, 34 => 1625, 39 => 1625,
40 => 1625, 41 => 1625, 46 => 1625, 56 => 1625,
60 => 1625, 67 => 1625, 68 => 1625, 70 => 1625,
71 => 1625, 72 => 1625, 73 => 1625, 86 => 1625,
91 => 1625, 94 => 1625, 97 => 1625, 99 => 1625,
103 => 1625, others => 0),
3133 =>
(0 => 1929, 15 => 1929, 34 => 1929, 35 => 1929,
39 => 1929, 40 => 1929, 41 => 1929, 46 => 1929,
56 => 1929, 60 => 1929, 67 => 1929, 68 => 1929,
70 => 1929, 71 => 1929, 72 => 1929, 73 => 1929,
86 => 1929, 91 => 1929, 94 => 1929, 97 => 1929,
99 => 1929, 103 => 1929, others => 0),
3134 =>
(0 => 1931, 15 => 1931, 34 => 1931, 35 => 1931,
39 => 1931, 40 => 1931, 41 => 1931, 46 => 1931,
56 => 1931, 60 => 1931, 67 => 1931, 68 => 1931,
70 => 1931, 71 => 1931, 72 => 1931, 73 => 1931,
86 => 1931, 91 => 1931, 94 => 1931, 97 => 1931,
99 => 1931, 103 => 1931, others => 0),
3135 =>
(0 => 1837, 15 => 1837, 34 => 1837, 35 => 1837,
39 => 1837, 40 => 1837, 41 => 1837, 46 => 1837,
56 => 1837, 60 => 1837, 67 => 1837, 68 => 1837,
70 => 1837, 71 => 1837, 72 => 1837, 73 => 1837,
86 => 1837, 91 => 1837, 94 => 1837, 97 => 1837,
99 => 1837, 103 => 1837, others => 0),
3136 =>
(101 => 33976, others => 0),
3137 =>
(46 => 32807, 85 => 36500, others => 0),
3138 =>
(0 => 1832, 15 => 1832, 34 => 1832, 35 => 1832,
39 => 1832, 40 => 1832, 41 => 1832, 46 => 1832,
56 => 1832, 60 => 1832, 67 => 1832, 68 => 1832,
70 => 1832, 71 => 1832, 72 => 1832, 73 => 1832,
86 => 1832, 91 => 1832, 94 => 1832, 97 => 1832,
99 => 1832, 103 => 1832, others => 0),
3139 =>
(29 => 32865, 85 => 36502, others => 0),
3140 =>
(34 => 36504, 37 => 36503, others => 0),
3141 =>
(0 => 1927, 15 => 1927, 34 => 1927, 35 => 1927,
39 => 1927, 40 => 1927, 41 => 1927, 46 => 1927,
56 => 1927, 60 => 1927, 67 => 1927, 68 => 1927,
70 => 1927, 71 => 1927, 72 => 1927, 73 => 1927,
86 => 1927, 91 => 1927, 94 => 1927, 97 => 1927,
99 => 1927, 103 => 1927, others => 0),
3142 =>
(0 => 1826, 15 => 1826, 34 => 1826, 35 => 1826,
39 => 1826, 40 => 1826, 41 => 1826, 46 => 1826,
56 => 1826, 60 => 1826, 67 => 1826, 68 => 1826,
70 => 1826, 71 => 1826, 72 => 1826, 73 => 1826,
86 => 1826, 91 => 1826, 94 => 1826, 97 => 1826,
99 => 1826, 103 => 1826, others => 0),
3143 =>
(29 => 32865, 85 => 36505, others => 0),
3144 =>
(34 => 36507, 37 => 36506, others => 0),
3145 =>
(46 => 32807, 85 => 36508, others => 0),
3146 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3147 =>
(0 => 1401, 15 => 1401, 34 => 1401, 39 => 1401,
40 => 1401, 41 => 1401, 46 => 1401, 56 => 1401,
60 => 1401, 67 => 1401, 68 => 1401, 70 => 1401,
71 => 1401, 72 => 1401, 73 => 1401, 86 => 1401,
91 => 1401, 94 => 1401, 97 => 1401, 99 => 1401,
103 => 1401, others => 0),
3148 =>
(85 => 36511, others => 0),
3149 =>
(0 => 1858, 15 => 1858, 34 => 1858, 35 => 1858,
39 => 1858, 40 => 1858, 41 => 1858, 46 => 1858,
56 => 1858, 60 => 1858, 67 => 1858, 68 => 1858,
70 => 1858, 71 => 1858, 72 => 1858, 73 => 1858,
86 => 1858, 91 => 1858, 94 => 1858, 97 => 1858,
99 => 1858, 103 => 1858, others => 0),
3150 =>
(29 => 32865, 85 => 36512, others => 0),
3151 =>
(46 => 32807, 85 => 36513, others => 0),
3152 =>
(0 => 1853, 15 => 1853, 34 => 1853, 35 => 1853,
39 => 1853, 40 => 1853, 41 => 1853, 46 => 1853,
56 => 1853, 60 => 1853, 67 => 1853, 68 => 1853,
70 => 1853, 71 => 1853, 72 => 1853, 73 => 1853,
86 => 1853, 91 => 1853, 94 => 1853, 97 => 1853,
99 => 1853, 103 => 1853, others => 0),
3153 =>
(46 => 32807, 85 => 36515, others => 0),
3154 =>
(0 => 1847, 15 => 1847, 34 => 1847, 35 => 1847,
39 => 1847, 40 => 1847, 41 => 1847, 46 => 1847,
56 => 1847, 60 => 1847, 67 => 1847, 68 => 1847,
70 => 1847, 71 => 1847, 72 => 1847, 73 => 1847,
86 => 1847, 91 => 1847, 94 => 1847, 97 => 1847,
99 => 1847, 103 => 1847, others => 0),
3155 =>
(34 => 36517, others => 0),
3156 =>
(0 => 1842, 15 => 1842, 34 => 1842, 35 => 1842,
39 => 1842, 40 => 1842, 41 => 1842, 46 => 1842,
56 => 1842, 60 => 1842, 67 => 1842, 68 => 1842,
70 => 1842, 71 => 1842, 72 => 1842, 73 => 1842,
86 => 1842, 91 => 1842, 94 => 1842, 97 => 1842,
99 => 1842, 103 => 1842, others => 0),
3157 =>
(29 => 32865, 85 => 36518, others => 0),
3158 =>
(0 => 1226, 15 => 1226, 34 => 1226, 35 => 1226,
39 => 1226, 40 => 1226, 41 => 1226, 46 => 1226,
56 => 1226, 60 => 1226, 67 => 1226, 68 => 1226,
70 => 1226, 71 => 1226, 72 => 1226, 73 => 1226,
86 => 1226, 91 => 1226, 94 => 1226, 97 => 1226,
99 => 1226, 103 => 1226, others => 0),
3159 =>
(85 => 36519, others => 0),
3160 =>
(0 => 1228, 15 => 1228, 34 => 1228, 35 => 1228,
39 => 1228, 40 => 1228, 41 => 1228, 46 => 1228,
56 => 1228, 60 => 1228, 67 => 1228, 68 => 1228,
70 => 1228, 71 => 1228, 72 => 1228, 73 => 1228,
86 => 1228, 91 => 1228, 94 => 1228, 97 => 1228,
99 => 1228, 103 => 1228, others => 0),
3161 =>
(85 => 36520, others => 0),
3162 =>
(0 => 895, 15 => 895, 34 => 895, 35 => 895,
39 => 895, 40 => 895, 41 => 895, 46 => 895,
56 => 895, 60 => 895, 67 => 895, 68 => 895,
70 => 895, 71 => 895, 72 => 895, 73 => 895,
86 => 895, 91 => 895, 94 => 895, 97 => 895,
99 => 895, 103 => 895, others => 0),
3163 =>
(85 => 36521, others => 0),
3164 =>
(34 => 36523, 37 => 36522, others => 0),
3165 =>
(0 => 1222, 15 => 1222, 34 => 1222, 35 => 1222,
39 => 1222, 40 => 1222, 41 => 1222, 46 => 1222,
56 => 1222, 60 => 1222, 67 => 1222, 68 => 1222,
70 => 1222, 71 => 1222, 72 => 1222, 73 => 1222,
86 => 1222, 91 => 1222, 94 => 1222, 97 => 1222,
99 => 1222, 103 => 1222, others => 0),
3166 =>
(85 => 36524, others => 0),
3167 =>
(0 => 1224, 15 => 1224, 34 => 1224, 35 => 1224,
39 => 1224, 40 => 1224, 41 => 1224, 46 => 1224,
56 => 1224, 60 => 1224, 67 => 1224, 68 => 1224,
70 => 1224, 71 => 1224, 72 => 1224, 73 => 1224,
86 => 1224, 91 => 1224, 94 => 1224, 97 => 1224,
99 => 1224, 103 => 1224, others => 0),
3168 =>
(85 => 36525, others => 0),
3169 =>
(46 => 32807, 85 => 36526, 90 => 32868, others => 0),
3170 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3171 =>
(46 => 32807, 85 => 36529, 90 => 32868, others => 0),
3172 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3173 =>
(15 => 36533, 34 => 36532, others => 0),
3174 =>
(34 => 36534, others => 0),
3175 =>
(0 => 1109, 15 => 1109, 34 => 1109, 35 => 1109,
39 => 1109, 40 => 1109, 41 => 1109, 46 => 1109,
56 => 1109, 60 => 1109, 67 => 1109, 68 => 1109,
70 => 1109, 71 => 1109, 72 => 1109, 73 => 1109,
86 => 1109, 91 => 1109, 94 => 1109, 97 => 1109,
99 => 1109, 103 => 1109, others => 0),
3176 =>
(85 => 36535, others => 0),
3177 =>
(0 => 1104, 15 => 1104, 34 => 1104, 35 => 1104,
39 => 1104, 40 => 1104, 41 => 1104, 46 => 1104,
56 => 1104, 60 => 1104, 67 => 1104, 68 => 1104,
70 => 1104, 71 => 1104, 72 => 1104, 73 => 1104,
86 => 1104, 91 => 1104, 94 => 1104, 97 => 1104,
99 => 1104, 103 => 1104, others => 0),
3178 =>
(101 => 33976, others => 0),
3179 =>
(46 => 32807, 85 => 36537, 90 => 32868, others => 0),
3180 =>
(0 => 1098, 15 => 1098, 34 => 1098, 35 => 1098,
39 => 1098, 40 => 1098, 41 => 1098, 46 => 1098,
56 => 1098, 60 => 1098, 67 => 1098, 68 => 1098,
70 => 1098, 71 => 1098, 72 => 1098, 73 => 1098,
86 => 1098, 91 => 1098, 94 => 1098, 97 => 1098,
99 => 1098, 103 => 1098, others => 0),
3181 =>
(101 => 33976, others => 0),
3182 =>
(46 => 32807, 85 => 36540, 90 => 32868, others => 0),
3183 =>
(0 => 1093, 15 => 1093, 34 => 1093, 35 => 1093,
39 => 1093, 40 => 1093, 41 => 1093, 46 => 1093,
56 => 1093, 60 => 1093, 67 => 1093, 68 => 1093,
70 => 1093, 71 => 1093, 72 => 1093, 73 => 1093,
86 => 1093, 91 => 1093, 94 => 1093, 97 => 1093,
99 => 1093, 103 => 1093, others => 0),
3184 =>
(85 => 36542, others => 0),
3185 =>
(34 => 36544, 37 => 36543, others => 0),
3186 =>
(34 => 36545, others => 0),
3187 =>
(0 => 917, 15 => 917, 34 => 917, 35 => 917,
39 => 917, 40 => 917, 41 => 917, 46 => 917,
56 => 917, 60 => 917, 67 => 917, 68 => 917,
70 => 917, 71 => 917, 72 => 917, 73 => 917,
86 => 917, 91 => 917, 94 => 917, 97 => 917,
99 => 917, 103 => 917, others => 0),
3188 =>
(85 => 36546, others => 0),
3189 =>
(0 => 912, 15 => 912, 34 => 912, 35 => 912,
39 => 912, 40 => 912, 41 => 912, 46 => 912,
56 => 912, 60 => 912, 67 => 912, 68 => 912,
70 => 912, 71 => 912, 72 => 912, 73 => 912,
86 => 912, 91 => 912, 94 => 912, 97 => 912,
99 => 912, 103 => 912, others => 0),
3190 =>
(101 => 33976, others => 0),
3191 =>
(46 => 32807, 85 => 36548, 90 => 32868, others => 0),
3192 =>
(0 => 906, 15 => 906, 34 => 906, 35 => 906,
39 => 906, 40 => 906, 41 => 906, 46 => 906,
56 => 906, 60 => 906, 67 => 906, 68 => 906,
70 => 906, 71 => 906, 72 => 906, 73 => 906,
86 => 906, 91 => 906, 94 => 906, 97 => 906,
99 => 906, 103 => 906, others => 0),
3193 =>
(101 => 33976, others => 0),
3194 =>
(46 => 32807, 85 => 36551, 90 => 32868, others => 0),
3195 =>
(0 => 901, 15 => 901, 34 => 901, 35 => 901,
39 => 901, 40 => 901, 41 => 901, 46 => 901,
56 => 901, 60 => 901, 67 => 901, 68 => 901,
70 => 901, 71 => 901, 72 => 901, 73 => 901,
86 => 901, 91 => 901, 94 => 901, 97 => 901,
99 => 901, 103 => 901, others => 0),
3196 =>
(85 => 36553, others => 0),
3197 =>
(34 => 36555, 37 => 36554, others => 0),
3198 =>
(51 => 36558, 78 => 36557, 85 => 36556, 103 => 32885,
others => 0),
3199 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36560,
103 => 32885, others => 0),
3200 =>
(85 => 36562, 103 => 32885, others => 0),
3201 =>
(46 => 32807, 85 => 36564, 90 => 32868, others => 0),
3202 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3203 =>
(85 => 36567, 103 => 32885, others => 0),
3204 =>
(85 => 36569, 103 => 32885, others => 0),
3205 =>
(15 => 36572, 34 => 36571, others => 0),
3206 =>
(0 => 1309, 15 => 1309, 34 => 1309, 35 => 1309,
39 => 1309, 40 => 1309, 41 => 1309, 46 => 1309,
56 => 1309, 60 => 1309, 67 => 1309, 68 => 1309,
70 => 1309, 71 => 1309, 72 => 1309, 73 => 1309,
86 => 1309, 91 => 1309, 94 => 1309, 97 => 1309,
99 => 1309, 103 => 1309, others => 0),
3207 =>
(15 => 36574, 34 => 36573, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3208 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36576,
103 => 32885, others => 0),
3209 =>
(85 => 36578, 103 => 32885, others => 0),
3210 =>
(46 => 32807, 85 => 36580, 90 => 32868, others => 0),
3211 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3212 =>
(85 => 36583, 103 => 32885, others => 0),
3213 =>
(85 => 36585, 103 => 32885, others => 0),
3214 =>
(15 => 36588, 34 => 36587, others => 0),
3215 =>
(0 => 1219, 15 => 1219, 34 => 1219, 35 => 1219,
39 => 1219, 40 => 1219, 41 => 1219, 46 => 1219,
56 => 1219, 60 => 1219, 67 => 1219, 68 => 1219,
70 => 1219, 71 => 1219, 72 => 1219, 73 => 1219,
86 => 1219, 91 => 1219, 94 => 1219, 97 => 1219,
99 => 1219, 103 => 1219, others => 0),
3216 =>
(15 => 36590, 34 => 36589, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3217 =>
(0 => 1389, 15 => 1389, 34 => 1389, 39 => 1389,
40 => 1389, 41 => 1389, 46 => 1389, 56 => 1389,
60 => 1389, 67 => 1389, 68 => 1389, 70 => 1389,
71 => 1389, 72 => 1389, 73 => 1389, 86 => 1389,
91 => 1389, 94 => 1389, 97 => 1389, 99 => 1389,
103 => 1389, others => 0),
3218 =>
(85 => 36592, others => 0),
3219 =>
(0 => 1914, 15 => 1914, 34 => 1914, 35 => 1914,
39 => 1914, 40 => 1914, 41 => 1914, 46 => 1914,
56 => 1914, 60 => 1914, 67 => 1914, 68 => 1914,
70 => 1914, 71 => 1914, 72 => 1914, 73 => 1914,
86 => 1914, 91 => 1914, 94 => 1914, 97 => 1914,
99 => 1914, 103 => 1914, others => 0),
3220 =>
(85 => 36593, others => 0),
3221 =>
(0 => 1916, 15 => 1916, 34 => 1916, 35 => 1916,
39 => 1916, 40 => 1916, 41 => 1916, 46 => 1916,
56 => 1916, 60 => 1916, 67 => 1916, 68 => 1916,
70 => 1916, 71 => 1916, 72 => 1916, 73 => 1916,
86 => 1916, 91 => 1916, 94 => 1916, 97 => 1916,
99 => 1916, 103 => 1916, others => 0),
3222 =>
(85 => 36594, others => 0),
3223 =>
(0 => 1790, 15 => 1790, 34 => 1790, 35 => 1790,
39 => 1790, 40 => 1790, 41 => 1790, 46 => 1790,
56 => 1790, 60 => 1790, 67 => 1790, 68 => 1790,
70 => 1790, 71 => 1790, 72 => 1790, 73 => 1790,
86 => 1790, 91 => 1790, 94 => 1790, 97 => 1790,
99 => 1790, 103 => 1790, others => 0),
3224 =>
(29 => 32865, 85 => 36595, others => 0),
3225 =>
(34 => 36597, 37 => 36596, others => 0),
3226 =>
(46 => 32807, 85 => 36598, others => 0),
3227 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3228 =>
(0 => 1912, 15 => 1912, 34 => 1912, 35 => 1912,
39 => 1912, 40 => 1912, 41 => 1912, 46 => 1912,
56 => 1912, 60 => 1912, 67 => 1912, 68 => 1912,
70 => 1912, 71 => 1912, 72 => 1912, 73 => 1912,
86 => 1912, 91 => 1912, 94 => 1912, 97 => 1912,
99 => 1912, 103 => 1912, others => 0),
3229 =>
(85 => 36601, others => 0),
3230 =>
(46 => 32807, 85 => 36602, others => 0),
3231 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3232 =>
(15 => 36606, 34 => 36605, others => 0),
3233 =>
(85 => 36607, 103 => 32885, others => 0),
3234 =>
(46 => 32807, 85 => 36609, others => 0),
3235 =>
(0 => 1811, 15 => 1811, 34 => 1811, 35 => 1811,
39 => 1811, 40 => 1811, 41 => 1811, 46 => 1811,
56 => 1811, 60 => 1811, 67 => 1811, 68 => 1811,
70 => 1811, 71 => 1811, 72 => 1811, 73 => 1811,
86 => 1811, 91 => 1811, 94 => 1811, 97 => 1811,
99 => 1811, 103 => 1811, others => 0),
3236 =>
(34 => 36611, others => 0),
3237 =>
(0 => 1806, 15 => 1806, 34 => 1806, 35 => 1806,
39 => 1806, 40 => 1806, 41 => 1806, 46 => 1806,
56 => 1806, 60 => 1806, 67 => 1806, 68 => 1806,
70 => 1806, 71 => 1806, 72 => 1806, 73 => 1806,
86 => 1806, 91 => 1806, 94 => 1806, 97 => 1806,
99 => 1806, 103 => 1806, others => 0),
3238 =>
(29 => 32865, 85 => 36612, others => 0),
3239 =>
(34 => 36613, others => 0),
3240 =>
(0 => 1800, 15 => 1800, 34 => 1800, 35 => 1800,
39 => 1800, 40 => 1800, 41 => 1800, 46 => 1800,
56 => 1800, 60 => 1800, 67 => 1800, 68 => 1800,
70 => 1800, 71 => 1800, 72 => 1800, 73 => 1800,
86 => 1800, 91 => 1800, 94 => 1800, 97 => 1800,
99 => 1800, 103 => 1800, others => 0),
3241 =>
(29 => 32865, 85 => 36614, others => 0),
3242 =>
(0 => 1795, 15 => 1795, 34 => 1795, 35 => 1795,
39 => 1795, 40 => 1795, 41 => 1795, 46 => 1795,
56 => 1795, 60 => 1795, 67 => 1795, 68 => 1795,
70 => 1795, 71 => 1795, 72 => 1795, 73 => 1795,
86 => 1795, 91 => 1795, 94 => 1795, 97 => 1795,
99 => 1795, 103 => 1795, others => 0),
3243 =>
(101 => 33976, others => 0),
3244 =>
(46 => 32807, 85 => 36616, others => 0),
3245 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36618,
103 => 32885, others => 0),
3246 =>
(85 => 36620, 103 => 32885, others => 0),
3247 =>
(46 => 32807, 85 => 36622, 90 => 32868, others => 0),
3248 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3249 =>
(85 => 36625, 103 => 32885, others => 0),
3250 =>
(85 => 36627, 103 => 32885, others => 0),
3251 =>
(15 => 36630, 34 => 36629, others => 0),
3252 =>
(0 => 1189, 15 => 1189, 34 => 1189, 35 => 1189,
39 => 1189, 40 => 1189, 41 => 1189, 46 => 1189,
56 => 1189, 60 => 1189, 67 => 1189, 68 => 1189,
70 => 1189, 71 => 1189, 72 => 1189, 73 => 1189,
86 => 1189, 91 => 1189, 94 => 1189, 97 => 1189,
99 => 1189, 103 => 1189, others => 0),
3253 =>
(15 => 36632, 34 => 36631, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3254 =>
(0 => 1295, 15 => 1295, 34 => 1295, 35 => 1295,
39 => 1295, 40 => 1295, 41 => 1295, 46 => 1295,
56 => 1295, 60 => 1295, 67 => 1295, 68 => 1295,
70 => 1295, 71 => 1295, 72 => 1295, 73 => 1295,
86 => 1295, 91 => 1295, 94 => 1295, 97 => 1295,
99 => 1295, 103 => 1295, others => 0),
3255 =>
(0 => 1297, 15 => 1297, 34 => 1297, 35 => 1297,
39 => 1297, 40 => 1297, 41 => 1297, 46 => 1297,
56 => 1297, 60 => 1297, 67 => 1297, 68 => 1297,
70 => 1297, 71 => 1297, 72 => 1297, 73 => 1297,
86 => 1297, 91 => 1297, 94 => 1297, 97 => 1297,
99 => 1297, 103 => 1297, others => 0),
3256 =>
(0 => 1062, 15 => 1062, 34 => 1062, 35 => 1062,
39 => 1062, 40 => 1062, 41 => 1062, 46 => 1062,
56 => 1062, 60 => 1062, 67 => 1062, 68 => 1062,
70 => 1062, 71 => 1062, 72 => 1062, 73 => 1062,
86 => 1062, 91 => 1062, 94 => 1062, 97 => 1062,
99 => 1062, 103 => 1062, others => 0),
3257 =>
(101 => 33976, others => 0),
3258 =>
(46 => 32807, 85 => 36635, 90 => 32868, others => 0),
3259 =>
(0 => 1291, 15 => 1291, 34 => 1291, 35 => 1291,
39 => 1291, 40 => 1291, 41 => 1291, 46 => 1291,
56 => 1291, 60 => 1291, 67 => 1291, 68 => 1291,
70 => 1291, 71 => 1291, 72 => 1291, 73 => 1291,
86 => 1291, 91 => 1291, 94 => 1291, 97 => 1291,
99 => 1291, 103 => 1291, others => 0),
3260 =>
(0 => 1293, 15 => 1293, 34 => 1293, 35 => 1293,
39 => 1293, 40 => 1293, 41 => 1293, 46 => 1293,
56 => 1293, 60 => 1293, 67 => 1293, 68 => 1293,
70 => 1293, 71 => 1293, 72 => 1293, 73 => 1293,
86 => 1293, 91 => 1293, 94 => 1293, 97 => 1293,
99 => 1293, 103 => 1293, others => 0),
3261 =>
(0 => 1057, 15 => 1057, 34 => 1057, 35 => 1057,
39 => 1057, 40 => 1057, 41 => 1057, 46 => 1057,
56 => 1057, 60 => 1057, 67 => 1057, 68 => 1057,
70 => 1057, 71 => 1057, 72 => 1057, 73 => 1057,
86 => 1057, 91 => 1057, 94 => 1057, 97 => 1057,
99 => 1057, 103 => 1057, others => 0),
3262 =>
(85 => 36637, others => 0),
3263 =>
(34 => 36639, 37 => 36638, others => 0),
3264 =>
(0 => 1051, 15 => 1051, 34 => 1051, 35 => 1051,
39 => 1051, 40 => 1051, 41 => 1051, 46 => 1051,
56 => 1051, 60 => 1051, 67 => 1051, 68 => 1051,
70 => 1051, 71 => 1051, 72 => 1051, 73 => 1051,
86 => 1051, 91 => 1051, 94 => 1051, 97 => 1051,
99 => 1051, 103 => 1051, others => 0),
3265 =>
(85 => 36640, others => 0),
3266 =>
(34 => 36642, 37 => 36641, others => 0),
3267 =>
(46 => 32807, 85 => 36643, 90 => 32868, others => 0),
3268 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3269 =>
(0 => 1195, 15 => 1195, 34 => 1195, 35 => 1195,
39 => 1195, 40 => 1195, 41 => 1195, 46 => 1195,
56 => 1195, 60 => 1195, 67 => 1195, 68 => 1195,
70 => 1195, 71 => 1195, 72 => 1195, 73 => 1195,
86 => 1195, 91 => 1195, 94 => 1195, 97 => 1195,
99 => 1195, 103 => 1195, others => 0),
3270 =>
(0 => 1197, 15 => 1197, 34 => 1197, 35 => 1197,
39 => 1197, 40 => 1197, 41 => 1197, 46 => 1197,
56 => 1197, 60 => 1197, 67 => 1197, 68 => 1197,
70 => 1197, 71 => 1197, 72 => 1197, 73 => 1197,
86 => 1197, 91 => 1197, 94 => 1197, 97 => 1197,
99 => 1197, 103 => 1197, others => 0),
3271 =>
(0 => 822, 15 => 822, 34 => 822, 35 => 822,
39 => 822, 40 => 822, 41 => 822, 46 => 822,
56 => 822, 60 => 822, 67 => 822, 68 => 822,
70 => 822, 71 => 822, 72 => 822, 73 => 822,
86 => 822, 91 => 822, 94 => 822, 97 => 822,
99 => 822, 103 => 822, others => 0),
3272 =>
(101 => 33976, others => 0),
3273 =>
(46 => 32807, 85 => 36647, 90 => 32868, others => 0),
3274 =>
(0 => 1191, 15 => 1191, 34 => 1191, 35 => 1191,
39 => 1191, 40 => 1191, 41 => 1191, 46 => 1191,
56 => 1191, 60 => 1191, 67 => 1191, 68 => 1191,
70 => 1191, 71 => 1191, 72 => 1191, 73 => 1191,
86 => 1191, 91 => 1191, 94 => 1191, 97 => 1191,
99 => 1191, 103 => 1191, others => 0),
3275 =>
(0 => 1193, 15 => 1193, 34 => 1193, 35 => 1193,
39 => 1193, 40 => 1193, 41 => 1193, 46 => 1193,
56 => 1193, 60 => 1193, 67 => 1193, 68 => 1193,
70 => 1193, 71 => 1193, 72 => 1193, 73 => 1193,
86 => 1193, 91 => 1193, 94 => 1193, 97 => 1193,
99 => 1193, 103 => 1193, others => 0),
3276 =>
(0 => 817, 15 => 817, 34 => 817, 35 => 817,
39 => 817, 40 => 817, 41 => 817, 46 => 817,
56 => 817, 60 => 817, 67 => 817, 68 => 817,
70 => 817, 71 => 817, 72 => 817, 73 => 817,
86 => 817, 91 => 817, 94 => 817, 97 => 817,
99 => 817, 103 => 817, others => 0),
3277 =>
(85 => 36649, others => 0),
3278 =>
(34 => 36651, 37 => 36650, others => 0),
3279 =>
(0 => 811, 15 => 811, 34 => 811, 35 => 811,
39 => 811, 40 => 811, 41 => 811, 46 => 811,
56 => 811, 60 => 811, 67 => 811, 68 => 811,
70 => 811, 71 => 811, 72 => 811, 73 => 811,
86 => 811, 91 => 811, 94 => 811, 97 => 811,
99 => 811, 103 => 811, others => 0),
3280 =>
(85 => 36652, others => 0),
3281 =>
(34 => 36654, 37 => 36653, others => 0),
3282 =>
(46 => 32807, 85 => 36655, 90 => 32868, others => 0),
3283 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3284 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3285 =>
(0 => 1290, 15 => 1290, 34 => 1290, 35 => 1290,
39 => 1290, 40 => 1290, 41 => 1290, 46 => 1290,
56 => 1290, 60 => 1290, 67 => 1290, 68 => 1290,
70 => 1290, 71 => 1290, 72 => 1290, 73 => 1290,
86 => 1290, 91 => 1290, 94 => 1290, 97 => 1290,
99 => 1290, 103 => 1290, others => 0),
3286 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
3287 =>
(3 => 36663, 15 => 36662, 34 => 36661, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 36660, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
3288 =>
(51 => 36667, 85 => 36666, others => 0),
3289 =>
(0 => 1180, 15 => 1180, 34 => 1180, 35 => 1180,
39 => 1180, 40 => 1180, 41 => 1180, 46 => 1180,
56 => 1180, 60 => 1180, 67 => 1180, 68 => 1180,
70 => 1180, 71 => 1180, 72 => 1180, 73 => 1180,
86 => 1180, 91 => 1180, 94 => 1180, 97 => 1180,
99 => 1180, 103 => 1180, others => 0),
3290 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
3291 =>
(3 => 36672, 15 => 36671, 34 => 36670, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 36669, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
3292 =>
(51 => 36676, 85 => 36675, others => 0),
3293 =>
(85 => 36677, 103 => 32885, others => 0),
3294 =>
(40 => 643, 46 => 643, 68 => 643, 70 => 643,
72 => 643, 97 => 643, 99 => 643, 103 => 643,
others => 0),
3295 =>
(85 => 36679, others => 0),
3296 =>
(40 => 641, 46 => 641, 68 => 641, 70 => 641,
72 => 641, 97 => 641, 99 => 641, 103 => 641,
others => 0),
3297 =>
(85 => 36680, others => 0),
3298 =>
(40 => 637, 46 => 637, 68 => 637, 70 => 637,
72 => 637, 97 => 637, 99 => 637, 103 => 637,
others => 0),
3299 =>
(85 => 36681, 103 => 32885, others => 0),
3300 =>
(85 => 36683, 103 => 32885, others => 0),
3301 =>
(85 => 36685, others => 0),
3302 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36686,
103 => 32885, others => 0),
3303 =>
(40 => 639, 46 => 639, 68 => 639, 70 => 639,
72 => 639, 97 => 639, 99 => 639, 103 => 639,
others => 0),
3304 =>
(85 => 36688, others => 0),
3305 =>
(85 => 36689, 103 => 32885, others => 0),
3306 =>
(85 => 36691, 103 => 32885, others => 0),
3307 =>
(17 => 36694, 19 => 32869, 46 => 32807, 85 => 36693,
90 => 32868, 103 => 32885, others => 0),
3308 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 36697,
103 => 32885, others => 0),
3309 =>
(40 => 512, 46 => 512, 68 => 512, 70 => 512,
72 => 512, 97 => 512, 99 => 512, 103 => 512,
others => 0),
3310 =>
(40 => 546, 46 => 546, 68 => 546, 70 => 546,
72 => 546, 97 => 546, 99 => 546, 103 => 546,
others => 0),
3311 =>
(40 => 541, 46 => 541, 68 => 541, 70 => 541,
72 => 541, 97 => 541, 99 => 541, 103 => 541,
others => 0),
3312 =>
(85 => 36699, others => 0),
3313 =>
(40 => 542, 46 => 542, 68 => 542, 70 => 542,
72 => 542, 97 => 542, 99 => 542, 103 => 542,
others => 0),
3314 =>
(40 => 539, 46 => 539, 68 => 539, 70 => 539,
72 => 539, 97 => 539, 99 => 539, 103 => 539,
others => 0),
3315 =>
(85 => 36700, others => 0),
3316 =>
(40 => 544, 46 => 544, 68 => 544, 70 => 544,
72 => 544, 97 => 544, 99 => 544, 103 => 544,
others => 0),
3317 =>
(40 => 522, 46 => 522, 68 => 522, 70 => 522,
72 => 522, 97 => 522, 99 => 522, 103 => 522,
others => 0),
3318 =>
(40 => 517, 46 => 517, 68 => 517, 70 => 517,
72 => 517, 97 => 517, 99 => 517, 103 => 517,
others => 0),
3319 =>
(85 => 36701, others => 0),
3320 =>
(40 => 518, 46 => 518, 68 => 518, 70 => 518,
72 => 518, 97 => 518, 99 => 518, 103 => 518,
others => 0),
3321 =>
(40 => 515, 46 => 515, 68 => 515, 70 => 515,
72 => 515, 97 => 515, 99 => 515, 103 => 515,
others => 0),
3322 =>
(85 => 36702, others => 0),
3323 =>
(40 => 520, 46 => 520, 68 => 520, 70 => 520,
72 => 520, 97 => 520, 99 => 520, 103 => 520,
others => 0),
3324 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3325 =>
(40 => 537, 46 => 537, 68 => 537, 70 => 537,
72 => 537, 97 => 537, 99 => 537, 103 => 537,
others => 0),
3326 =>
(3 => 36705, 17 => 36704, 19 => 32869, 46 => 32807,
90 => 32868, others => 0),
3327 =>
(85 => 36707, others => 0),
3328 =>
(40 => 501, 46 => 501, 68 => 501, 70 => 501,
72 => 501, 97 => 501, 99 => 501, 103 => 501,
others => 0),
3329 =>
(3 => 36709, 17 => 36708, 19 => 32869, 46 => 32807,
90 => 32868, others => 0),
3330 =>
(85 => 36711, others => 0),
3331 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3332 =>
(85 => 466, others => 0),
3333 =>
(71 => 36713, others => 0),
3334 =>
(46 => 32838, others => 0),
3335 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36715,
90 => 32868, others => 0),
3336 =>
(46 => 32838, others => 0),
3337 =>
(83 => 36719, others => 0),
3338 =>
(61 => 36720, others => 0),
3339 =>
(85 => 426, 103 => 426, others => 0),
3340 =>
(85 => 414, 103 => 414, others => 0),
3341 =>
(83 => 36721, others => 0),
3342 =>
(85 => 471, 103 => 32885, others => 0),
3343 =>
(85 => 460, others => 0),
3344 =>
(71 => 36723, others => 0),
3345 =>
(85 => 438, 103 => 438, others => 0),
3346 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
3347 =>
(21 => 274, 83 => 274, others => 0),
3348 =>
(85 => 675, 103 => 675, others => 0),
3349 =>
(17 => 35470, others => 0),
3350 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
3351 =>
(21 => 1491, 83 => 1491, others => 0),
3352 =>
(85 => 403, 103 => 403, others => 0),
3353 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3354 =>
(80 => 36727, others => 0),
3355 =>
(85 => 421, 103 => 421, others => 0),
3356 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36728,
90 => 32868, others => 0),
3357 =>
(85 => 449, 103 => 32885, others => 0),
3358 =>
(103 => 36732, others => 0),
3359 =>
(85 => 454, others => 0),
3360 =>
(71 => 36733, others => 0),
3361 =>
(85 => 443, 103 => 32885, others => 0),
3362 =>
(103 => 36735, others => 0),
3363 =>
(0 => 1444, 15 => 1444, 34 => 1444, 39 => 1444,
40 => 1444, 41 => 1444, 46 => 1444, 56 => 1444,
60 => 1444, 67 => 1444, 68 => 1444, 70 => 1444,
71 => 1444, 72 => 1444, 73 => 1444, 86 => 1444,
91 => 1444, 94 => 1444, 97 => 1444, 99 => 1444,
103 => 1444, others => 0),
3364 =>
(0 => 1438, 15 => 1438, 34 => 1438, 39 => 1438,
40 => 1438, 41 => 1438, 46 => 1438, 56 => 1438,
60 => 1438, 67 => 1438, 68 => 1438, 70 => 1438,
71 => 1438, 72 => 1438, 73 => 1438, 86 => 1438,
91 => 1438, 94 => 1438, 97 => 1438, 99 => 1438,
103 => 1438, others => 0),
3365 =>
(0 => 1434, 15 => 1434, 34 => 1434, 39 => 1434,
40 => 1434, 41 => 1434, 46 => 1434, 56 => 1434,
60 => 1434, 67 => 1434, 68 => 1434, 70 => 1434,
71 => 1434, 72 => 1434, 73 => 1434, 86 => 1434,
91 => 1434, 94 => 1434, 97 => 1434, 99 => 1434,
103 => 1434, others => 0),
3366 =>
(0 => 1433, 15 => 1433, 34 => 1433, 39 => 1433,
40 => 1433, 41 => 1433, 46 => 1433, 56 => 1433,
60 => 1433, 67 => 1433, 68 => 1433, 70 => 1433,
71 => 1433, 72 => 1433, 73 => 1433, 86 => 1433,
91 => 1433, 94 => 1433, 97 => 1433, 99 => 1433,
103 => 1433, others => 0),
3367 =>
(29 => 32865, 85 => 36736, others => 0),
3368 =>
(85 => 36737, 103 => 32885, others => 0),
3369 =>
(0 => 1376, 15 => 1376, 34 => 1376, 39 => 1376,
40 => 1376, 41 => 1376, 46 => 1376, 56 => 1376,
60 => 1376, 67 => 1376, 68 => 1376, 70 => 1376,
71 => 1376, 72 => 1376, 73 => 1376, 86 => 1376,
91 => 1376, 94 => 1376, 97 => 1376, 99 => 1376,
103 => 1376, others => 0),
3370 =>
(0 => 1366, 15 => 1366, 34 => 1366, 39 => 1366,
40 => 1366, 41 => 1366, 46 => 1366, 56 => 1366,
60 => 1366, 67 => 1366, 68 => 1366, 70 => 1366,
71 => 1366, 72 => 1366, 73 => 1366, 86 => 1366,
91 => 1366, 94 => 1366, 97 => 1366, 99 => 1366,
103 => 1366, others => 0),
3371 =>
(40 => 576, 46 => 576, 68 => 576, 70 => 576,
72 => 576, 97 => 576, 99 => 576, 103 => 576,
others => 0),
3372 =>
(85 => 36739, others => 0),
3373 =>
(83 => 36740, others => 0),
3374 =>
(61 => 36741, others => 0),
3375 =>
(13 => 58, 51 => 58, 78 => 58, 83 => 58,
85 => 58, 103 => 58, others => 0),
3376 =>
(13 => 44, 51 => 44, 78 => 44, 83 => 44,
85 => 44, 103 => 44, others => 0),
3377 =>
(83 => 36742, others => 0),
3378 =>
(13 => 35, 51 => 35, 78 => 35, 83 => 35,
85 => 35, 103 => 35, others => 0),
3379 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3380 =>
(80 => 36744, others => 0),
3381 =>
(40 => 583, 46 => 583, 68 => 583, 70 => 583,
72 => 583, 97 => 583, 99 => 583, 103 => 583,
others => 0),
3382 =>
(9 => 33243, 64 => 33242, 85 => 36745, 103 => 32885,
104 => 33241, others => 0),
3383 =>
(40 => 561, 46 => 561, 68 => 561, 70 => 561,
72 => 561, 97 => 561, 99 => 561, 103 => 561,
others => 0),
3384 =>
(40 => 591, 46 => 591, 68 => 591, 70 => 591,
72 => 591, 97 => 591, 99 => 591, 103 => 591,
others => 0),
3385 =>
(40 => 563, 46 => 563, 68 => 563, 70 => 563,
72 => 563, 97 => 563, 99 => 563, 103 => 563,
others => 0),
3386 =>
(40 => 568, 46 => 568, 68 => 568, 70 => 568,
72 => 568, 97 => 568, 99 => 568, 103 => 568,
others => 0),
3387 =>
(85 => 36747, others => 0),
3388 =>
(13 => 51, 51 => 51, 78 => 51, 83 => 51,
85 => 51, 103 => 51, others => 0),
3389 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36748,
90 => 32868, others => 0),
3390 =>
(61 => 36751, others => 0),
3391 =>
(13 => 63, 51 => 63, 78 => 63, 83 => 63,
85 => 63, 103 => 63, others => 0),
3392 =>
(13 => 54, 51 => 54, 78 => 54, 83 => 54,
85 => 54, 103 => 54, others => 0),
3393 =>
(0 => 1426, 15 => 1426, 34 => 1426, 39 => 1426,
40 => 1426, 41 => 1426, 46 => 1426, 56 => 1426,
60 => 1426, 67 => 1426, 68 => 1426, 70 => 1426,
71 => 1426, 72 => 1426, 73 => 1426, 86 => 1426,
91 => 1426, 94 => 1426, 97 => 1426, 99 => 1426,
103 => 1426, others => 0),
3394 =>
(0 => 1422, 15 => 1422, 34 => 1422, 39 => 1422,
40 => 1422, 41 => 1422, 46 => 1422, 56 => 1422,
60 => 1422, 67 => 1422, 68 => 1422, 70 => 1422,
71 => 1422, 72 => 1422, 73 => 1422, 86 => 1422,
91 => 1422, 94 => 1422, 97 => 1422, 99 => 1422,
103 => 1422, others => 0),
3395 =>
(0 => 1421, 15 => 1421, 34 => 1421, 39 => 1421,
40 => 1421, 41 => 1421, 46 => 1421, 56 => 1421,
60 => 1421, 67 => 1421, 68 => 1421, 70 => 1421,
71 => 1421, 72 => 1421, 73 => 1421, 86 => 1421,
91 => 1421, 94 => 1421, 97 => 1421, 99 => 1421,
103 => 1421, others => 0),
3396 =>
(29 => 32865, 85 => 36752, others => 0),
3397 =>
(0 => 1416, 15 => 1416, 34 => 1416, 39 => 1416,
40 => 1416, 41 => 1416, 46 => 1416, 56 => 1416,
60 => 1416, 67 => 1416, 68 => 1416, 70 => 1416,
71 => 1416, 72 => 1416, 73 => 1416, 86 => 1416,
91 => 1416, 94 => 1416, 97 => 1416, 99 => 1416,
103 => 1416, others => 0),
3398 =>
(0 => 1415, 15 => 1415, 34 => 1415, 39 => 1415,
40 => 1415, 41 => 1415, 46 => 1415, 56 => 1415,
60 => 1415, 67 => 1415, 68 => 1415, 70 => 1415,
71 => 1415, 72 => 1415, 73 => 1415, 86 => 1415,
91 => 1415, 94 => 1415, 97 => 1415, 99 => 1415,
103 => 1415, others => 0),
3399 =>
(29 => 32865, 85 => 36753, others => 0),
3400 =>
(0 => 1411, 15 => 1411, 34 => 1411, 39 => 1411,
40 => 1411, 41 => 1411, 46 => 1411, 56 => 1411,
60 => 1411, 67 => 1411, 68 => 1411, 70 => 1411,
71 => 1411, 72 => 1411, 73 => 1411, 86 => 1411,
91 => 1411, 94 => 1411, 97 => 1411, 99 => 1411,
103 => 1411, others => 0),
3401 =>
(29 => 32865, 85 => 36754, others => 0),
3402 =>
(46 => 32807, 85 => 36755, others => 0),
3403 =>
(0 => 1412, 15 => 1412, 34 => 1412, 39 => 1412,
40 => 1412, 41 => 1412, 46 => 1412, 56 => 1412,
60 => 1412, 67 => 1412, 68 => 1412, 70 => 1412,
71 => 1412, 72 => 1412, 73 => 1412, 86 => 1412,
91 => 1412, 94 => 1412, 97 => 1412, 99 => 1412,
103 => 1412, others => 0),
3404 =>
(0 => 1360, 15 => 1360, 34 => 1360, 39 => 1360,
40 => 1360, 41 => 1360, 46 => 1360, 56 => 1360,
60 => 1360, 67 => 1360, 68 => 1360, 70 => 1360,
71 => 1360, 72 => 1360, 73 => 1360, 86 => 1360,
91 => 1360, 94 => 1360, 97 => 1360, 99 => 1360,
103 => 1360, others => 0),
3405 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3406 =>
(0 => 1373, 15 => 1373, 34 => 1373, 39 => 1373,
40 => 1373, 41 => 1373, 46 => 1373, 56 => 1373,
60 => 1373, 67 => 1373, 68 => 1373, 70 => 1373,
71 => 1373, 72 => 1373, 73 => 1373, 86 => 1373,
91 => 1373, 94 => 1373, 97 => 1373, 99 => 1373,
103 => 1373, others => 0),
3407 =>
(85 => 36758, others => 0),
3408 =>
(0 => 1359, 15 => 1359, 34 => 1359, 39 => 1359,
40 => 1359, 41 => 1359, 46 => 1359, 56 => 1359,
60 => 1359, 67 => 1359, 68 => 1359, 70 => 1359,
71 => 1359, 72 => 1359, 73 => 1359, 86 => 1359,
91 => 1359, 94 => 1359, 97 => 1359, 99 => 1359,
103 => 1359, others => 0),
3409 =>
(85 => 36759, others => 0),
3410 =>
(0 => 1265, 15 => 1265, 34 => 1265, 35 => 1265,
39 => 1265, 40 => 1265, 41 => 1265, 46 => 1265,
56 => 1265, 60 => 1265, 67 => 1265, 68 => 1265,
70 => 1265, 71 => 1265, 72 => 1265, 73 => 1265,
86 => 1265, 91 => 1265, 94 => 1265, 97 => 1265,
99 => 1265, 103 => 1265, others => 0),
3411 =>
(0 => 1267, 15 => 1267, 34 => 1267, 35 => 1267,
39 => 1267, 40 => 1267, 41 => 1267, 46 => 1267,
56 => 1267, 60 => 1267, 67 => 1267, 68 => 1267,
70 => 1267, 71 => 1267, 72 => 1267, 73 => 1267,
86 => 1267, 91 => 1267, 94 => 1267, 97 => 1267,
99 => 1267, 103 => 1267, others => 0),
3412 =>
(0 => 990, 15 => 990, 34 => 990, 35 => 990,
39 => 990, 40 => 990, 41 => 990, 46 => 990,
56 => 990, 60 => 990, 67 => 990, 68 => 990,
70 => 990, 71 => 990, 72 => 990, 73 => 990,
86 => 990, 91 => 990, 94 => 990, 97 => 990,
99 => 990, 103 => 990, others => 0),
3413 =>
(101 => 33976, others => 0),
3414 =>
(46 => 32807, 85 => 36761, 90 => 32868, others => 0),
3415 =>
(0 => 1261, 15 => 1261, 34 => 1261, 35 => 1261,
39 => 1261, 40 => 1261, 41 => 1261, 46 => 1261,
56 => 1261, 60 => 1261, 67 => 1261, 68 => 1261,
70 => 1261, 71 => 1261, 72 => 1261, 73 => 1261,
86 => 1261, 91 => 1261, 94 => 1261, 97 => 1261,
99 => 1261, 103 => 1261, others => 0),
3416 =>
(0 => 1263, 15 => 1263, 34 => 1263, 35 => 1263,
39 => 1263, 40 => 1263, 41 => 1263, 46 => 1263,
56 => 1263, 60 => 1263, 67 => 1263, 68 => 1263,
70 => 1263, 71 => 1263, 72 => 1263, 73 => 1263,
86 => 1263, 91 => 1263, 94 => 1263, 97 => 1263,
99 => 1263, 103 => 1263, others => 0),
3417 =>
(0 => 985, 15 => 985, 34 => 985, 35 => 985,
39 => 985, 40 => 985, 41 => 985, 46 => 985,
56 => 985, 60 => 985, 67 => 985, 68 => 985,
70 => 985, 71 => 985, 72 => 985, 73 => 985,
86 => 985, 91 => 985, 94 => 985, 97 => 985,
99 => 985, 103 => 985, others => 0),
3418 =>
(85 => 36763, others => 0),
3419 =>
(34 => 36765, 37 => 36764, others => 0),
3420 =>
(0 => 979, 15 => 979, 34 => 979, 35 => 979,
39 => 979, 40 => 979, 41 => 979, 46 => 979,
56 => 979, 60 => 979, 67 => 979, 68 => 979,
70 => 979, 71 => 979, 72 => 979, 73 => 979,
86 => 979, 91 => 979, 94 => 979, 97 => 979,
99 => 979, 103 => 979, others => 0),
3421 =>
(85 => 36766, others => 0),
3422 =>
(34 => 36768, 37 => 36767, others => 0),
3423 =>
(46 => 32807, 85 => 36769, 90 => 32868, others => 0),
3424 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3425 =>
(46 => 32807, 85 => 36772, 90 => 32868, others => 0),
3426 =>
(0 => 1156, 15 => 1156, 34 => 1156, 35 => 1156,
39 => 1156, 40 => 1156, 41 => 1156, 46 => 1156,
56 => 1156, 60 => 1156, 67 => 1156, 68 => 1156,
70 => 1156, 71 => 1156, 72 => 1156, 73 => 1156,
86 => 1156, 91 => 1156, 94 => 1156, 97 => 1156,
99 => 1156, 103 => 1156, others => 0),
3427 =>
(34 => 36774, others => 0),
3428 =>
(0 => 1151, 15 => 1151, 34 => 1151, 35 => 1151,
39 => 1151, 40 => 1151, 41 => 1151, 46 => 1151,
56 => 1151, 60 => 1151, 67 => 1151, 68 => 1151,
70 => 1151, 71 => 1151, 72 => 1151, 73 => 1151,
86 => 1151, 91 => 1151, 94 => 1151, 97 => 1151,
99 => 1151, 103 => 1151, others => 0),
3429 =>
(85 => 36775, others => 0),
3430 =>
(34 => 36776, others => 0),
3431 =>
(0 => 1145, 15 => 1145, 34 => 1145, 35 => 1145,
39 => 1145, 40 => 1145, 41 => 1145, 46 => 1145,
56 => 1145, 60 => 1145, 67 => 1145, 68 => 1145,
70 => 1145, 71 => 1145, 72 => 1145, 73 => 1145,
86 => 1145, 91 => 1145, 94 => 1145, 97 => 1145,
99 => 1145, 103 => 1145, others => 0),
3432 =>
(85 => 36777, others => 0),
3433 =>
(0 => 1140, 15 => 1140, 34 => 1140, 35 => 1140,
39 => 1140, 40 => 1140, 41 => 1140, 46 => 1140,
56 => 1140, 60 => 1140, 67 => 1140, 68 => 1140,
70 => 1140, 71 => 1140, 72 => 1140, 73 => 1140,
86 => 1140, 91 => 1140, 94 => 1140, 97 => 1140,
99 => 1140, 103 => 1140, others => 0),
3434 =>
(101 => 33976, others => 0),
3435 =>
(46 => 32807, 85 => 36779, 90 => 32868, others => 0),
3436 =>
(46 => 32807, 85 => 36781, 90 => 32868, others => 0),
3437 =>
(0 => 1012, 15 => 1012, 34 => 1012, 35 => 1012,
39 => 1012, 40 => 1012, 41 => 1012, 46 => 1012,
56 => 1012, 60 => 1012, 67 => 1012, 68 => 1012,
70 => 1012, 71 => 1012, 72 => 1012, 73 => 1012,
86 => 1012, 91 => 1012, 94 => 1012, 97 => 1012,
99 => 1012, 103 => 1012, others => 0),
3438 =>
(34 => 36783, others => 0),
3439 =>
(0 => 1007, 15 => 1007, 34 => 1007, 35 => 1007,
39 => 1007, 40 => 1007, 41 => 1007, 46 => 1007,
56 => 1007, 60 => 1007, 67 => 1007, 68 => 1007,
70 => 1007, 71 => 1007, 72 => 1007, 73 => 1007,
86 => 1007, 91 => 1007, 94 => 1007, 97 => 1007,
99 => 1007, 103 => 1007, others => 0),
3440 =>
(85 => 36784, others => 0),
3441 =>
(34 => 36785, others => 0),
3442 =>
(0 => 1001, 15 => 1001, 34 => 1001, 35 => 1001,
39 => 1001, 40 => 1001, 41 => 1001, 46 => 1001,
56 => 1001, 60 => 1001, 67 => 1001, 68 => 1001,
70 => 1001, 71 => 1001, 72 => 1001, 73 => 1001,
86 => 1001, 91 => 1001, 94 => 1001, 97 => 1001,
99 => 1001, 103 => 1001, others => 0),
3443 =>
(85 => 36786, others => 0),
3444 =>
(0 => 996, 15 => 996, 34 => 996, 35 => 996,
39 => 996, 40 => 996, 41 => 996, 46 => 996,
56 => 996, 60 => 996, 67 => 996, 68 => 996,
70 => 996, 71 => 996, 72 => 996, 73 => 996,
86 => 996, 91 => 996, 94 => 996, 97 => 996,
99 => 996, 103 => 996, others => 0),
3445 =>
(101 => 33976, others => 0),
3446 =>
(46 => 32807, 85 => 36788, 90 => 32868, others => 0),
3447 =>
(0 => 1250, 15 => 1250, 34 => 1250, 35 => 1250,
39 => 1250, 40 => 1250, 41 => 1250, 46 => 1250,
56 => 1250, 60 => 1250, 67 => 1250, 68 => 1250,
70 => 1250, 71 => 1250, 72 => 1250, 73 => 1250,
86 => 1250, 91 => 1250, 94 => 1250, 97 => 1250,
99 => 1250, 103 => 1250, others => 0),
3448 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
3449 =>
(3 => 36794, 15 => 36793, 34 => 36792, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 36791, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
3450 =>
(51 => 36798, 85 => 36797, others => 0),
3451 =>
(0 => 1326, 15 => 1326, 34 => 1326, 35 => 1326,
39 => 1326, 40 => 1326, 41 => 1326, 46 => 1326,
56 => 1326, 60 => 1326, 67 => 1326, 68 => 1326,
70 => 1326, 71 => 1326, 72 => 1326, 73 => 1326,
86 => 1326, 91 => 1326, 94 => 1326, 97 => 1326,
99 => 1326, 103 => 1326, others => 0),
3452 =>
(85 => 36799, others => 0),
3453 =>
(0 => 1328, 15 => 1328, 34 => 1328, 35 => 1328,
39 => 1328, 40 => 1328, 41 => 1328, 46 => 1328,
56 => 1328, 60 => 1328, 67 => 1328, 68 => 1328,
70 => 1328, 71 => 1328, 72 => 1328, 73 => 1328,
86 => 1328, 91 => 1328, 94 => 1328, 97 => 1328,
99 => 1328, 103 => 1328, others => 0),
3454 =>
(85 => 36800, others => 0),
3455 =>
(0 => 1135, 15 => 1135, 34 => 1135, 35 => 1135,
39 => 1135, 40 => 1135, 41 => 1135, 46 => 1135,
56 => 1135, 60 => 1135, 67 => 1135, 68 => 1135,
70 => 1135, 71 => 1135, 72 => 1135, 73 => 1135,
86 => 1135, 91 => 1135, 94 => 1135, 97 => 1135,
99 => 1135, 103 => 1135, others => 0),
3456 =>
(85 => 36801, others => 0),
3457 =>
(34 => 36803, 37 => 36802, others => 0),
3458 =>
(0 => 1322, 15 => 1322, 34 => 1322, 35 => 1322,
39 => 1322, 40 => 1322, 41 => 1322, 46 => 1322,
56 => 1322, 60 => 1322, 67 => 1322, 68 => 1322,
70 => 1322, 71 => 1322, 72 => 1322, 73 => 1322,
86 => 1322, 91 => 1322, 94 => 1322, 97 => 1322,
99 => 1322, 103 => 1322, others => 0),
3459 =>
(85 => 36804, others => 0),
3460 =>
(0 => 1324, 15 => 1324, 34 => 1324, 35 => 1324,
39 => 1324, 40 => 1324, 41 => 1324, 46 => 1324,
56 => 1324, 60 => 1324, 67 => 1324, 68 => 1324,
70 => 1324, 71 => 1324, 72 => 1324, 73 => 1324,
86 => 1324, 91 => 1324, 94 => 1324, 97 => 1324,
99 => 1324, 103 => 1324, others => 0),
3461 =>
(85 => 36805, others => 0),
3462 =>
(46 => 32807, 85 => 36806, 90 => 32868, others => 0),
3463 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3464 =>
(46 => 32807, 85 => 36809, 90 => 32868, others => 0),
3465 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3466 =>
(15 => 36813, 34 => 36812, others => 0),
3467 =>
(0 => 1256, 15 => 1256, 34 => 1256, 35 => 1256,
39 => 1256, 40 => 1256, 41 => 1256, 46 => 1256,
56 => 1256, 60 => 1256, 67 => 1256, 68 => 1256,
70 => 1256, 71 => 1256, 72 => 1256, 73 => 1256,
86 => 1256, 91 => 1256, 94 => 1256, 97 => 1256,
99 => 1256, 103 => 1256, others => 0),
3468 =>
(85 => 36814, others => 0),
3469 =>
(0 => 1258, 15 => 1258, 34 => 1258, 35 => 1258,
39 => 1258, 40 => 1258, 41 => 1258, 46 => 1258,
56 => 1258, 60 => 1258, 67 => 1258, 68 => 1258,
70 => 1258, 71 => 1258, 72 => 1258, 73 => 1258,
86 => 1258, 91 => 1258, 94 => 1258, 97 => 1258,
99 => 1258, 103 => 1258, others => 0),
3470 =>
(85 => 36815, others => 0),
3471 =>
(0 => 967, 15 => 967, 34 => 967, 35 => 967,
39 => 967, 40 => 967, 41 => 967, 46 => 967,
56 => 967, 60 => 967, 67 => 967, 68 => 967,
70 => 967, 71 => 967, 72 => 967, 73 => 967,
86 => 967, 91 => 967, 94 => 967, 97 => 967,
99 => 967, 103 => 967, others => 0),
3472 =>
(85 => 36816, others => 0),
3473 =>
(34 => 36818, 37 => 36817, others => 0),
3474 =>
(0 => 1252, 15 => 1252, 34 => 1252, 35 => 1252,
39 => 1252, 40 => 1252, 41 => 1252, 46 => 1252,
56 => 1252, 60 => 1252, 67 => 1252, 68 => 1252,
70 => 1252, 71 => 1252, 72 => 1252, 73 => 1252,
86 => 1252, 91 => 1252, 94 => 1252, 97 => 1252,
99 => 1252, 103 => 1252, others => 0),
3475 =>
(85 => 36819, others => 0),
3476 =>
(0 => 1254, 15 => 1254, 34 => 1254, 35 => 1254,
39 => 1254, 40 => 1254, 41 => 1254, 46 => 1254,
56 => 1254, 60 => 1254, 67 => 1254, 68 => 1254,
70 => 1254, 71 => 1254, 72 => 1254, 73 => 1254,
86 => 1254, 91 => 1254, 94 => 1254, 97 => 1254,
99 => 1254, 103 => 1254, others => 0),
3477 =>
(85 => 36820, others => 0),
3478 =>
(46 => 32807, 85 => 36821, 90 => 32868, others => 0),
3479 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3480 =>
(46 => 32807, 85 => 36824, 90 => 32868, others => 0),
3481 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3482 =>
(15 => 36828, 34 => 36827, others => 0),
3483 =>
(0 => 1392, 15 => 1392, 34 => 1392, 39 => 1392,
40 => 1392, 41 => 1392, 46 => 1392, 56 => 1392,
60 => 1392, 67 => 1392, 68 => 1392, 70 => 1392,
71 => 1392, 72 => 1392, 73 => 1392, 86 => 1392,
91 => 1392, 94 => 1392, 97 => 1392, 99 => 1392,
103 => 1392, others => 0),
3484 =>
(15 => 34652, 34 => 34651, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3485 =>
(51 => 34656, others => 0),
3486 =>
(51 => 36829, 103 => 32885, others => 0),
3487 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36831,
90 => 32868, others => 0),
3488 =>
(51 => 36834, 103 => 32885, others => 0),
3489 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3490 =>
(15 => 34737, 34 => 34736, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3491 =>
(51 => 34742, others => 0),
3492 =>
(15 => 34746, 34 => 34745, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3493 =>
(51 => 34751, others => 0),
3494 =>
(80 => 36837, others => 0),
3495 =>
(15 => 34910, 34 => 34909, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3496 =>
(51 => 34915, others => 0),
3497 =>
(61 => 36838, others => 0),
3498 =>
(51 => 36839, 103 => 32885, others => 0),
3499 =>
(51 => 36841, 103 => 32885, others => 0),
3500 =>
(9 => 33243, 64 => 33242, 83 => 1675, 85 => 1675,
104 => 33241, others => 0),
3501 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3502 =>
(9 => 33243, 64 => 33242, 83 => 1671, 85 => 1671,
104 => 33241, others => 0),
3503 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3504 =>
(9 => 33243, 64 => 33242, 83 => 1663, 85 => 1663,
104 => 33241, others => 0),
3505 =>
(13 => 36845, 83 => 1652, 85 => 1652, others => 0),
3506 =>
(9 => 33243, 64 => 33242, 83 => 1653, 85 => 1653,
104 => 33241, others => 0),
3507 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3508 =>
(46 => 32807, 85 => 36847, others => 0),
3509 =>
(0 => 1883, 15 => 1883, 34 => 1883, 35 => 1883,
39 => 1883, 40 => 1883, 41 => 1883, 46 => 1883,
56 => 1883, 60 => 1883, 67 => 1883, 68 => 1883,
70 => 1883, 71 => 1883, 72 => 1883, 73 => 1883,
86 => 1883, 91 => 1883, 94 => 1883, 97 => 1883,
99 => 1883, 103 => 1883, others => 0),
3510 =>
(34 => 36849, others => 0),
3511 =>
(0 => 1878, 15 => 1878, 34 => 1878, 35 => 1878,
39 => 1878, 40 => 1878, 41 => 1878, 46 => 1878,
56 => 1878, 60 => 1878, 67 => 1878, 68 => 1878,
70 => 1878, 71 => 1878, 72 => 1878, 73 => 1878,
86 => 1878, 91 => 1878, 94 => 1878, 97 => 1878,
99 => 1878, 103 => 1878, others => 0),
3512 =>
(29 => 32865, 85 => 36850, others => 0),
3513 =>
(34 => 36851, others => 0),
3514 =>
(0 => 1872, 15 => 1872, 34 => 1872, 35 => 1872,
39 => 1872, 40 => 1872, 41 => 1872, 46 => 1872,
56 => 1872, 60 => 1872, 67 => 1872, 68 => 1872,
70 => 1872, 71 => 1872, 72 => 1872, 73 => 1872,
86 => 1872, 91 => 1872, 94 => 1872, 97 => 1872,
99 => 1872, 103 => 1872, others => 0),
3515 =>
(29 => 32865, 85 => 36852, others => 0),
3516 =>
(0 => 1867, 15 => 1867, 34 => 1867, 35 => 1867,
39 => 1867, 40 => 1867, 41 => 1867, 46 => 1867,
56 => 1867, 60 => 1867, 67 => 1867, 68 => 1867,
70 => 1867, 71 => 1867, 72 => 1867, 73 => 1867,
86 => 1867, 91 => 1867, 94 => 1867, 97 => 1867,
99 => 1867, 103 => 1867, others => 0),
3517 =>
(101 => 33976, others => 0),
3518 =>
(46 => 32807, 85 => 36854, others => 0),
3519 =>
(15 => 1759, 34 => 1759, 39 => 1759, 40 => 1759,
41 => 1759, 46 => 1759, 60 => 1759, 67 => 1759,
68 => 1759, 70 => 1759, 71 => 1759, 72 => 1759,
73 => 1759, 91 => 1759, 94 => 1759, 97 => 1759,
99 => 1759, others => 0),
3520 =>
(85 => 36856, 103 => 32885, others => 0),
3521 =>
(71 => 36858, others => 0),
3522 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 65 => 33105, 69 => 33024, 90 => 32868,
others => 0),
3523 =>
(34 => 36860, 101 => 36290, others => 0),
3524 =>
(13 => 209, 85 => 209, 103 => 209, others => 0),
3525 =>
(13 => 207, 85 => 207, 103 => 207, others => 0),
3526 =>
(18 => 206, 34 => 206, 35 => 206, 39 => 206,
40 => 206, 46 => 206, 60 => 206, 67 => 206,
70 => 206, 72 => 206, 101 => 206, others => 0),
3527 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3528 =>
(85 => 36864, others => 0),
3529 =>
(53 => 36865, 85 => 70, 103 => 70, others => 0),
3530 =>
(53 => 36867, 80 => 36866, others => 0),
3531 =>
(46 => 32838, others => 0),
3532 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 36869,
90 => 32868, others => 0),
3533 =>
(46 => 32838, others => 0),
3534 =>
(85 => 65, 103 => 65, others => 0),
3535 =>
(15 => 1742, 34 => 1742, 39 => 1742, 40 => 1742,
41 => 1742, 46 => 1742, 60 => 1742, 67 => 1742,
68 => 1742, 70 => 1742, 71 => 1742, 72 => 1742,
73 => 1742, 91 => 1742, 94 => 1742, 97 => 1742,
99 => 1742, others => 0),
3536 =>
(85 => 36873, others => 0),
3537 =>
(15 => 725, 34 => 725, 39 => 725, 40 => 725,
41 => 725, 46 => 725, 60 => 725, 67 => 725,
68 => 725, 70 => 725, 71 => 725, 72 => 725,
73 => 725, 91 => 725, 94 => 725, 97 => 725,
99 => 725, others => 0),
3538 =>
(85 => 36874, others => 0),
3539 =>
(85 => 36875, 103 => 32885, others => 0),
3540 =>
(85 => 36877, 103 => 32885, others => 0),
3541 =>
(85 => 36879, 103 => 32885, others => 0),
3542 =>
(85 => 36881, 103 => 32885, others => 0),
3543 =>
(61 => 33843, 71 => 36883, 76 => 33840, others => 0),
3544 =>
(15 => 720, 34 => 720, 39 => 720, 40 => 720,
41 => 720, 46 => 720, 60 => 720, 67 => 720,
68 => 720, 70 => 720, 71 => 720, 72 => 720,
73 => 720, 91 => 720, 94 => 720, 97 => 720,
99 => 720, others => 0),
3545 =>
(21 => 350, 83 => 350, others => 0),
3546 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3547 =>
(85 => 230, 103 => 230, others => 0),
3548 =>
(83 => 36886, others => 0),
3549 =>
(61 => 36887, others => 0),
3550 =>
(85 => 98, 103 => 98, others => 0),
3551 =>
(85 => 88, 103 => 88, others => 0),
3552 =>
(83 => 36888, others => 0),
3553 =>
(85 => 75, 103 => 75, others => 0),
3554 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3555 =>
(80 => 36890, others => 0),
3556 =>
(15 => 1757, 34 => 1757, 39 => 1757, 40 => 1757,
41 => 1757, 46 => 1757, 60 => 1757, 67 => 1757,
68 => 1757, 70 => 1757, 71 => 1757, 72 => 1757,
73 => 1757, 91 => 1757, 94 => 1757, 97 => 1757,
99 => 1757, others => 0),
3557 =>
(15 => 1756, 34 => 1756, 39 => 1756, 40 => 1756,
41 => 1756, 46 => 1756, 60 => 1756, 67 => 1756,
68 => 1756, 70 => 1756, 71 => 1756, 72 => 1756,
73 => 1756, 91 => 1756, 94 => 1756, 97 => 1756,
99 => 1756, others => 0),
3558 =>
(85 => 36891, others => 0),
3559 =>
(71 => 36892, others => 0),
3560 =>
(9 => 34179, 103 => 36893, others => 0),
3561 =>
(85 => 36894, 103 => 32885, others => 0),
3562 =>
(85 => 36896, 103 => 32885, others => 0),
3563 =>
(61 => 33843, 71 => 36898, 76 => 33840, others => 0),
3564 =>
(15 => 714, 34 => 714, 39 => 714, 40 => 714,
41 => 714, 46 => 714, 60 => 714, 67 => 714,
68 => 714, 70 => 714, 71 => 714, 72 => 714,
73 => 714, 91 => 714, 94 => 714, 97 => 714,
99 => 714, others => 0),
3565 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 36900,
76 => 33840, 90 => 32868, others => 0),
3566 =>
(15 => 709, 34 => 709, 39 => 709, 40 => 709,
41 => 709, 46 => 709, 60 => 709, 67 => 709,
68 => 709, 70 => 709, 71 => 709, 72 => 709,
73 => 709, 91 => 709, 94 => 709, 97 => 709,
99 => 709, others => 0),
3567 =>
(9 => 34179, 103 => 36902, others => 0),
3568 =>
(85 => 36903, others => 0),
3569 =>
(15 => 1749, 34 => 1749, 39 => 1749, 40 => 1749,
41 => 1749, 46 => 1749, 60 => 1749, 67 => 1749,
68 => 1749, 70 => 1749, 71 => 1749, 72 => 1749,
73 => 1749, 91 => 1749, 94 => 1749, 97 => 1749,
99 => 1749, others => 0),
3570 =>
(15 => 1748, 34 => 1748, 39 => 1748, 40 => 1748,
41 => 1748, 46 => 1748, 60 => 1748, 67 => 1748,
68 => 1748, 70 => 1748, 71 => 1748, 72 => 1748,
73 => 1748, 91 => 1748, 94 => 1748, 97 => 1748,
99 => 1748, others => 0),
3571 =>
(85 => 36904, others => 0),
3572 =>
(71 => 36905, others => 0),
3573 =>
(9 => 34179, 103 => 36906, others => 0),
3574 =>
(85 => 36907, 103 => 32885, others => 0),
3575 =>
(85 => 36909, 103 => 32885, others => 0),
3576 =>
(61 => 33843, 71 => 36911, 76 => 33840, others => 0),
3577 =>
(15 => 702, 34 => 702, 39 => 702, 40 => 702,
41 => 702, 46 => 702, 60 => 702, 67 => 702,
68 => 702, 70 => 702, 71 => 702, 72 => 702,
73 => 702, 91 => 702, 94 => 702, 97 => 702,
99 => 702, others => 0),
3578 =>
(15 => 1751, 34 => 1751, 39 => 1751, 40 => 1751,
41 => 1751, 46 => 1751, 60 => 1751, 67 => 1751,
68 => 1751, 70 => 1751, 71 => 1751, 72 => 1751,
73 => 1751, 91 => 1751, 94 => 1751, 97 => 1751,
99 => 1751, others => 0),
3579 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 36913,
76 => 33840, 90 => 32868, others => 0),
3580 =>
(15 => 697, 34 => 697, 39 => 697, 40 => 697,
41 => 697, 46 => 697, 60 => 697, 67 => 697,
68 => 697, 70 => 697, 71 => 697, 72 => 697,
73 => 697, 91 => 697, 94 => 697, 97 => 697,
99 => 697, others => 0),
3581 =>
(9 => 34179, 103 => 36915, others => 0),
3582 =>
(85 => 36916, others => 0),
3583 =>
(15 => 1746, 34 => 1746, 39 => 1746, 40 => 1746,
41 => 1746, 46 => 1746, 60 => 1746, 67 => 1746,
68 => 1746, 70 => 1746, 71 => 1746, 72 => 1746,
73 => 1746, 91 => 1746, 94 => 1746, 97 => 1746,
99 => 1746, others => 0),
3584 =>
(85 => 36917, others => 0),
3585 =>
(85 => 36918, 103 => 32885, others => 0),
3586 =>
(9 => 33678, 103 => 36920, others => 0),
3587 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 36922,
76 => 33840, 90 => 32868, others => 0),
3588 =>
(15 => 691, 34 => 691, 39 => 691, 40 => 691,
41 => 691, 46 => 691, 60 => 691, 67 => 691,
68 => 691, 70 => 691, 71 => 691, 72 => 691,
73 => 691, 91 => 691, 94 => 691, 97 => 691,
99 => 691, others => 0),
3589 =>
(9 => 34179, 103 => 36924, others => 0),
3590 =>
(85 => 36925, others => 0),
3591 =>
(9 => 33678, 85 => 36927, 103 => 36926, others => 0),
3592 =>
(85 => 36930, others => 0),
3593 =>
(34 => 33882, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 33877, others => 0),
3594 =>
(34 => 33882, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 33877, others => 0),
3595 =>
(103 => 36933, others => 0),
3596 =>
(15 => 2174, 34 => 2174, 39 => 2174, 40 => 2174,
41 => 2174, 46 => 2174, 60 => 2174, 67 => 2174,
68 => 2174, 70 => 2174, 71 => 2174, 72 => 2174,
73 => 2174, 91 => 2174, 94 => 2174, 97 => 2174,
99 => 2174, others => 0),
3597 =>
(34 => 36934, others => 0),
3598 =>
(0 => 2154, 15 => 2154, 34 => 2154, 39 => 2154,
40 => 2154, 41 => 2154, 46 => 2154, 56 => 2154,
60 => 2154, 67 => 2154, 68 => 2154, 70 => 2154,
71 => 2154, 72 => 2154, 73 => 2154, 86 => 2154,
91 => 2154, 94 => 2154, 97 => 2154, 99 => 2154,
103 => 2154, others => 0),
3599 =>
(85 => 36935, others => 0),
3600 =>
(101 => 33976, others => 0),
3601 =>
(46 => 36938, 85 => 36937, others => 0),
3602 =>
(101 => 33976, others => 0),
3603 =>
(46 => 36941, 85 => 36940, others => 0),
3604 =>
(34 => 36943, 37 => 36942, others => 0),
3605 =>
(83 => 36944, others => 0),
3606 =>
(83 => 36945, others => 0),
3607 =>
(34 => 339, 35 => 339, 39 => 339, 40 => 339,
46 => 339, 60 => 339, 67 => 339, 70 => 339,
71 => 339, 72 => 339, others => 0),
3608 =>
(34 => 332, 35 => 332, 39 => 332, 40 => 332,
46 => 332, 60 => 332, 67 => 332, 70 => 332,
71 => 332, 72 => 332, others => 0),
3609 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 33168,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3610 =>
(85 => 36948, others => 0),
3611 =>
(15 => 2121, 34 => 2121, 39 => 2121, 40 => 2121,
41 => 2121, 46 => 2121, 60 => 2121, 67 => 2121,
68 => 2121, 70 => 2121, 71 => 2121, 72 => 2121,
73 => 2121, 91 => 2121, 94 => 2121, 97 => 2121,
99 => 2121, others => 0),
3612 =>
(53 => 36950, 85 => 36949, 103 => 32885, others => 0),
3613 =>
(85 => 36952, 103 => 32885, others => 0),
3614 =>
(85 => 2157, others => 0),
3615 =>
(85 => 36954, others => 0),
3616 =>
(85 => 36955, others => 0),
3617 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 33897,
72 => 33896, others => 0),
3618 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 33897,
72 => 33896, others => 0),
3619 =>
(103 => 36958, others => 0),
3620 =>
(15 => 2009, 34 => 2009, 39 => 2009, 40 => 2009,
41 => 2009, 46 => 2009, 60 => 2009, 67 => 2009,
68 => 2009, 70 => 2009, 71 => 2009, 72 => 2009,
73 => 2009, 91 => 2009, 94 => 2009, 97 => 2009,
99 => 2009, others => 0),
3621 =>
(3 => 32964, 15 => 33287, 34 => 33286, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 60 => 32778,
61 => 32959, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 33284, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
3622 =>
(51 => 36959, 53 => 33299, 78 => 33298, 85 => 33297,
103 => 32885, others => 0),
3623 =>
(53 => 33303, 80 => 33302, others => 0),
3624 =>
(9 => 33243, 51 => 36960, 64 => 33242, 104 => 33241,
others => 0),
3625 =>
(46 => 32838, others => 0),
3626 =>
(83 => 36962, others => 0),
3627 =>
(83 => 36963, others => 0),
3628 =>
(0 => 1972, 15 => 1972, 34 => 1972, 39 => 1972,
40 => 1972, 41 => 1972, 46 => 1972, 56 => 1972,
60 => 1972, 67 => 1972, 68 => 1972, 70 => 1972,
71 => 1972, 72 => 1972, 73 => 1972, 86 => 1972,
91 => 1972, 94 => 1972, 97 => 1972, 99 => 1972,
103 => 1972, others => 0),
3629 =>
(0 => 1970, 15 => 1970, 34 => 1970, 39 => 1970,
40 => 1970, 41 => 1970, 46 => 1970, 56 => 1970,
60 => 1970, 67 => 1970, 68 => 1970, 70 => 1970,
71 => 1970, 72 => 1970, 73 => 1970, 86 => 1970,
91 => 1970, 94 => 1970, 97 => 1970, 99 => 1970,
103 => 1970, others => 0),
3630 =>
(0 => 1969, 15 => 1969, 34 => 1969, 39 => 1969,
40 => 1969, 41 => 1969, 46 => 1969, 56 => 1969,
60 => 1969, 67 => 1969, 68 => 1969, 70 => 1969,
71 => 1969, 72 => 1969, 73 => 1969, 86 => 1969,
91 => 1969, 94 => 1969, 97 => 1969, 99 => 1969,
103 => 1969, others => 0),
3631 =>
(85 => 36964, others => 0),
3632 =>
(3 => 32964, 61 => 32959, 86 => 33637, others => 0),
3633 =>
(15 => 2116, 34 => 2116, 39 => 2116, 40 => 2116,
41 => 2116, 46 => 2116, 60 => 2116, 67 => 2116,
68 => 2116, 70 => 2116, 71 => 2116, 72 => 2116,
73 => 2116, 91 => 2116, 94 => 2116, 97 => 2116,
99 => 2116, others => 0),
3634 =>
(85 => 1978, others => 0),
3635 =>
(85 => 36965, others => 0),
3636 =>
(83 => 612, others => 0),
3637 =>
(17 => 36966, others => 0),
3638 =>
(19 => 32869, 34 => 36967, 46 => 32807, 70 => 32775,
90 => 32868, others => 0),
3639 =>
(15 => 2042, 18 => 2042, 34 => 2042, 35 => 2042,
39 => 2042, 40 => 2042, 41 => 2042, 46 => 2042,
60 => 2042, 67 => 2042, 68 => 2042, 70 => 2042,
71 => 2042, 72 => 2042, 73 => 2042, 91 => 2042,
94 => 2042, 97 => 2042, 99 => 2042, 101 => 2042,
others => 0),
3640 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3641 =>
(1 => 1541, 4 => 1541, 15 => 1541, 18 => 1541,
19 => 1541, 24 => 1541, 25 => 1541, 32 => 1541,
33 => 1541, 34 => 1541, 37 => 1541, 38 => 1541,
39 => 1541, 42 => 1541, 46 => 1541, 47 => 1541,
52 => 1541, 57 => 1541, 61 => 1541, 64 => 1541,
70 => 1541, 74 => 1541, 79 => 1541, 80 => 1541,
84 => 1541, 90 => 1541, 96 => 1541, 101 => 1541,
102 => 1541, others => 0),
3642 =>
(85 => 36970, others => 0),
3643 =>
(85 => 36971, others => 0),
3644 =>
(34 => 36972, others => 0),
3645 =>
(84 => 36973, others => 0),
3646 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3647 =>
(85 => 36975, others => 0),
3648 =>
(32 => 2071, 34 => 2071, 64 => 2071, others => 0),
3649 =>
(1 => 2081, 4 => 2081, 15 => 2081, 18 => 2081,
19 => 2081, 24 => 2081, 25 => 2081, 32 => 2081,
33 => 2081, 34 => 2081, 37 => 2081, 38 => 2081,
39 => 2081, 42 => 2081, 46 => 2081, 47 => 2081,
52 => 2081, 57 => 2081, 61 => 2081, 64 => 2081,
70 => 2081, 74 => 2081, 79 => 2081, 80 => 2081,
84 => 2081, 90 => 2081, 96 => 2081, 101 => 2081,
102 => 2081, others => 0),
3650 =>
(4 => 33176, 19 => 32869, 25 => 33172, 46 => 32807,
90 => 32868, 95 => 33464, others => 0),
3651 =>
(85 => 36977, others => 0),
3652 =>
(9 => 33243, 28 => 385, 64 => 33242, 85 => 385,
104 => 33241, others => 0),
3653 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3654 =>
(9 => 33243, 28 => 383, 64 => 33242, 85 => 383,
104 => 33241, others => 0),
3655 =>
(80 => 36979, others => 0),
3656 =>
(1 => 390, 4 => 390, 15 => 390, 18 => 390,
19 => 390, 24 => 390, 25 => 390, 32 => 390,
33 => 390, 34 => 390, 37 => 390, 38 => 390,
39 => 390, 42 => 390, 46 => 390, 47 => 390,
52 => 390, 57 => 390, 61 => 390, 64 => 390,
70 => 390, 74 => 390, 79 => 390, 80 => 390,
84 => 390, 90 => 390, 96 => 390, 101 => 390,
102 => 390, others => 0),
3657 =>
(1 => 1485, 4 => 1485, 15 => 1485, 18 => 1485,
19 => 1485, 24 => 1485, 25 => 1485, 32 => 1485,
33 => 1485, 34 => 1485, 37 => 1485, 38 => 1485,
39 => 1485, 42 => 1485, 46 => 1485, 47 => 1485,
52 => 1485, 57 => 1485, 61 => 1485, 64 => 1485,
70 => 1485, 74 => 1485, 79 => 1485, 80 => 1485,
84 => 1485, 90 => 1485, 96 => 1485, 101 => 1485,
102 => 1485, others => 0),
3658 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3659 =>
(47 => 36981, others => 0),
3660 =>
(85 => 36982, others => 0),
3661 =>
(9 => 33243, 64 => 33242, 96 => 36983, 104 => 33241,
others => 0),
3662 =>
(34 => 36984, others => 0),
3663 =>
(10 => 1694, 12 => 1503, 29 => 1694, 53 => 1694,
57 => 1503, others => 0),
3664 =>
(1 => 1545, 4 => 1545, 15 => 1545, 18 => 1545,
19 => 1545, 24 => 1545, 25 => 1545, 32 => 1545,
33 => 1545, 34 => 1545, 37 => 1545, 38 => 1545,
39 => 1545, 42 => 1545, 46 => 1545, 47 => 1545,
52 => 1545, 57 => 1545, 61 => 1545, 64 => 1545,
70 => 1545, 74 => 1545, 79 => 1545, 80 => 1545,
84 => 1545, 90 => 1545, 96 => 1545, 101 => 1545,
102 => 1545, others => 0),
3665 =>
(85 => 36985, others => 0),
3666 =>
(1 => 1543, 4 => 1543, 15 => 1543, 18 => 1543,
19 => 1543, 24 => 1543, 25 => 1543, 32 => 1543,
33 => 1543, 34 => 1543, 37 => 1543, 38 => 1543,
39 => 1543, 42 => 1543, 46 => 1543, 47 => 1543,
52 => 1543, 57 => 1543, 61 => 1543, 64 => 1543,
70 => 1543, 74 => 1543, 79 => 1543, 80 => 1543,
84 => 1543, 90 => 1543, 96 => 1543, 101 => 1543,
102 => 1543, others => 0),
3667 =>
(85 => 36986, others => 0),
3668 =>
(1 => 168, 4 => 168, 15 => 168, 18 => 168,
19 => 168, 24 => 168, 25 => 168, 32 => 168,
33 => 168, 34 => 168, 37 => 168, 38 => 168,
39 => 168, 42 => 168, 46 => 168, 47 => 168,
52 => 168, 57 => 168, 61 => 168, 64 => 168,
70 => 168, 74 => 168, 79 => 168, 80 => 168,
84 => 168, 90 => 168, 96 => 168, 101 => 168,
102 => 168, others => 0),
3669 =>
(85 => 36987, others => 0),
3670 =>
(46 => 36989, 85 => 36988, others => 0),
3671 =>
(1 => 165, 4 => 165, 15 => 165, 18 => 165,
19 => 165, 24 => 165, 25 => 165, 32 => 165,
33 => 165, 34 => 165, 37 => 165, 38 => 165,
39 => 165, 42 => 165, 46 => 165, 47 => 165,
52 => 165, 57 => 165, 61 => 165, 64 => 165,
70 => 165, 74 => 165, 79 => 165, 80 => 165,
84 => 165, 90 => 165, 96 => 165, 101 => 165,
102 => 165, others => 0),
3672 =>
(34 => 187, 101 => 187, others => 0),
3673 =>
(1 => 186, 4 => 186, 15 => 186, 18 => 186,
19 => 186, 24 => 186, 25 => 186, 32 => 186,
33 => 186, 34 => 186, 37 => 186, 38 => 186,
39 => 186, 42 => 186, 46 => 186, 47 => 186,
52 => 186, 57 => 186, 61 => 186, 64 => 186,
70 => 186, 74 => 186, 79 => 186, 80 => 186,
84 => 186, 90 => 186, 96 => 186, 101 => 186,
102 => 186, others => 0),
3674 =>
(85 => 36990, others => 0),
3675 =>
(1 => 171, 4 => 171, 15 => 171, 18 => 171,
19 => 171, 24 => 171, 25 => 171, 32 => 171,
33 => 171, 34 => 171, 37 => 171, 38 => 171,
39 => 171, 42 => 171, 46 => 171, 47 => 171,
52 => 171, 57 => 171, 61 => 171, 64 => 171,
70 => 171, 74 => 171, 79 => 171, 80 => 171,
84 => 171, 90 => 171, 96 => 171, 101 => 171,
102 => 171, others => 0),
3676 =>
(83 => 36991, others => 0),
3677 =>
(34 => 36993, 37 => 36992, others => 0),
3678 =>
(34 => 36995, 37 => 36994, others => 0),
3679 =>
(46 => 36997, 85 => 36996, others => 0),
3680 =>
(1 => 26, 4 => 26, 15 => 26, 18 => 26,
19 => 26, 24 => 26, 25 => 26, 32 => 26,
33 => 26, 34 => 26, 37 => 26, 38 => 26,
39 => 26, 42 => 26, 46 => 26, 47 => 26,
52 => 26, 57 => 26, 61 => 26, 64 => 26,
70 => 26, 74 => 26, 79 => 26, 80 => 26,
84 => 26, 90 => 26, 96 => 26, 101 => 26,
102 => 26, others => 0),
3681 =>
(57 => 36998, others => 0),
3682 =>
(1 => 1539, 4 => 1539, 15 => 1539, 18 => 1539,
19 => 1539, 24 => 1539, 25 => 1539, 32 => 1539,
33 => 1539, 34 => 1539, 37 => 1539, 38 => 1539,
39 => 1539, 42 => 1539, 46 => 1539, 47 => 1539,
52 => 1539, 57 => 1539, 61 => 1539, 64 => 1539,
70 => 1539, 74 => 1539, 79 => 1539, 80 => 1539,
84 => 1539, 90 => 1539, 96 => 1539, 101 => 1539,
102 => 1539, others => 0),
3683 =>
(85 => 36999, others => 0),
3684 =>
(57 => 37000, others => 0),
3685 =>
(57 => 37001, others => 0),
3686 =>
(34 => 37002, others => 0),
3687 =>
(1 => 158, 4 => 158, 15 => 158, 18 => 158,
19 => 158, 24 => 158, 25 => 158, 32 => 158,
33 => 158, 34 => 158, 37 => 158, 38 => 158,
39 => 158, 42 => 158, 46 => 158, 47 => 158,
52 => 158, 57 => 158, 61 => 158, 64 => 158,
70 => 158, 74 => 158, 79 => 158, 80 => 158,
84 => 158, 90 => 158, 96 => 158, 101 => 158,
102 => 158, others => 0),
3688 =>
(85 => 37003, others => 0),
3689 =>
(101 => 33976, others => 0),
3690 =>
(46 => 37006, 85 => 37005, others => 0),
3691 =>
(46 => 37008, 85 => 37007, others => 0),
3692 =>
(1 => 161, 4 => 161, 15 => 161, 18 => 161,
19 => 161, 24 => 161, 25 => 161, 32 => 161,
33 => 161, 34 => 161, 37 => 161, 38 => 161,
39 => 161, 42 => 161, 46 => 161, 47 => 161,
52 => 161, 57 => 161, 61 => 161, 64 => 161,
70 => 161, 74 => 161, 79 => 161, 80 => 161,
84 => 161, 90 => 161, 96 => 161, 101 => 161,
102 => 161, others => 0),
3693 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3694 =>
(12 => 37010, 100 => 35848, others => 0),
3695 =>
(12 => 358, 100 => 358, others => 0),
3696 =>
(34 => 364, 101 => 364, others => 0),
3697 =>
(0 => 1899, 15 => 1899, 34 => 1899, 35 => 1899,
39 => 1899, 40 => 1899, 41 => 1899, 46 => 1899,
56 => 1899, 60 => 1899, 67 => 1899, 68 => 1899,
70 => 1899, 71 => 1899, 72 => 1899, 73 => 1899,
86 => 1899, 91 => 1899, 94 => 1899, 97 => 1899,
99 => 1899, 103 => 1899, others => 0),
3698 =>
(15 => 1591, 34 => 1591, 39 => 1591, 40 => 1591,
41 => 1591, 46 => 1591, 60 => 1591, 67 => 1591,
68 => 1591, 70 => 1591, 71 => 1591, 72 => 1591,
73 => 1591, 91 => 1591, 94 => 1591, 97 => 1591,
99 => 1591, others => 0),
3699 =>
(85 => 37011, others => 0),
3700 =>
(15 => 1576, 34 => 1576, 39 => 1576, 40 => 1576,
41 => 1576, 46 => 1576, 60 => 1576, 67 => 1576,
68 => 1576, 70 => 1576, 71 => 1576, 72 => 1576,
73 => 1576, 91 => 1576, 94 => 1576, 97 => 1576,
99 => 1576, others => 0),
3701 =>
(13 => 224, 85 => 224, 103 => 224, others => 0),
3702 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
3703 =>
(13 => 2198, 85 => 2198, 103 => 2198, others => 0),
3704 =>
(5 => 33091, 6 => 35666, 19 => 32869, 46 => 32807,
60 => 33990, 90 => 32868, others => 0),
3705 =>
(15 => 1569, 34 => 1569, 39 => 1569, 40 => 1569,
41 => 1569, 46 => 1569, 60 => 1569, 67 => 1569,
68 => 1569, 70 => 1569, 71 => 1569, 72 => 1569,
73 => 1569, 91 => 1569, 94 => 1569, 97 => 1569,
99 => 1569, others => 0),
3706 =>
(85 => 37014, others => 0),
3707 =>
(15 => 1572, 34 => 1572, 39 => 1572, 40 => 1572,
41 => 1572, 46 => 1572, 60 => 1572, 67 => 1572,
68 => 1572, 70 => 1572, 71 => 1572, 72 => 1572,
73 => 1572, 91 => 1572, 94 => 1572, 97 => 1572,
99 => 1572, others => 0),
3708 =>
(0 => 1893, 15 => 1893, 34 => 1893, 35 => 1893,
39 => 1893, 40 => 1893, 41 => 1893, 46 => 1893,
56 => 1893, 60 => 1893, 67 => 1893, 68 => 1893,
70 => 1893, 71 => 1893, 72 => 1893, 73 => 1893,
86 => 1893, 91 => 1893, 94 => 1893, 97 => 1893,
99 => 1893, 103 => 1893, others => 0),
3709 =>
(0 => 1888, 15 => 1888, 34 => 1888, 35 => 1888,
39 => 1888, 40 => 1888, 41 => 1888, 46 => 1888,
56 => 1888, 60 => 1888, 67 => 1888, 68 => 1888,
70 => 1888, 71 => 1888, 72 => 1888, 73 => 1888,
86 => 1888, 91 => 1888, 94 => 1888, 97 => 1888,
99 => 1888, 103 => 1888, others => 0),
3710 =>
(29 => 32865, 85 => 37015, others => 0),
3711 =>
(51 => 37016, 78 => 36557, 85 => 36556, 103 => 32885,
others => 0),
3712 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3713 =>
(3 => 36663, 53 => 32938, 86 => 36660, others => 0),
3714 =>
(85 => 36666, others => 0),
3715 =>
(3 => 36672, 53 => 32938, 86 => 36669, others => 0),
3716 =>
(85 => 36675, others => 0),
3717 =>
(3 => 36794, 53 => 32938, 86 => 36791, others => 0),
3718 =>
(85 => 36797, others => 0),
3719 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
3720 =>
(9 => 33243, 64 => 33242, 96 => 37020, 104 => 33241,
others => 0),
3721 =>
(9 => 33243, 64 => 33242, 83 => 1478, 104 => 33241,
others => 0),
3722 =>
(9 => 33243, 21 => 184, 64 => 33242, 83 => 184,
104 => 33241, others => 0),
3723 =>
(21 => 180, 83 => 180, others => 0),
3724 =>
(0 => 1617, 15 => 1617, 34 => 1617, 39 => 1617,
40 => 1617, 41 => 1617, 46 => 1617, 56 => 1617,
60 => 1617, 67 => 1617, 68 => 1617, 70 => 1617,
71 => 1617, 72 => 1617, 73 => 1617, 86 => 1617,
91 => 1617, 94 => 1617, 97 => 1617, 99 => 1617,
103 => 1617, others => 0),
3725 =>
(0 => 1612, 15 => 1612, 34 => 1612, 39 => 1612,
40 => 1612, 41 => 1612, 46 => 1612, 56 => 1612,
60 => 1612, 67 => 1612, 68 => 1612, 70 => 1612,
71 => 1612, 72 => 1612, 73 => 1612, 86 => 1612,
91 => 1612, 94 => 1612, 97 => 1612, 99 => 1612,
103 => 1612, others => 0),
3726 =>
(29 => 32865, 85 => 37021, others => 0),
3727 =>
(0 => 1606, 15 => 1606, 34 => 1606, 39 => 1606,
40 => 1606, 41 => 1606, 46 => 1606, 56 => 1606,
60 => 1606, 67 => 1606, 68 => 1606, 70 => 1606,
71 => 1606, 72 => 1606, 73 => 1606, 86 => 1606,
91 => 1606, 94 => 1606, 97 => 1606, 99 => 1606,
103 => 1606, others => 0),
3728 =>
(29 => 32865, 85 => 37022, others => 0),
3729 =>
(46 => 32807, 85 => 37023, others => 0),
3730 =>
(0 => 1601, 15 => 1601, 34 => 1601, 39 => 1601,
40 => 1601, 41 => 1601, 46 => 1601, 56 => 1601,
60 => 1601, 67 => 1601, 68 => 1601, 70 => 1601,
71 => 1601, 72 => 1601, 73 => 1601, 86 => 1601,
91 => 1601, 94 => 1601, 97 => 1601, 99 => 1601,
103 => 1601, others => 0),
3731 =>
(34 => 37025, others => 0),
3732 =>
(0 => 1836, 15 => 1836, 34 => 1836, 35 => 1836,
39 => 1836, 40 => 1836, 41 => 1836, 46 => 1836,
56 => 1836, 60 => 1836, 67 => 1836, 68 => 1836,
70 => 1836, 71 => 1836, 72 => 1836, 73 => 1836,
86 => 1836, 91 => 1836, 94 => 1836, 97 => 1836,
99 => 1836, 103 => 1836, others => 0),
3733 =>
(29 => 32865, 85 => 37026, others => 0),
3734 =>
(0 => 1831, 15 => 1831, 34 => 1831, 35 => 1831,
39 => 1831, 40 => 1831, 41 => 1831, 46 => 1831,
56 => 1831, 60 => 1831, 67 => 1831, 68 => 1831,
70 => 1831, 71 => 1831, 72 => 1831, 73 => 1831,
86 => 1831, 91 => 1831, 94 => 1831, 97 => 1831,
99 => 1831, 103 => 1831, others => 0),
3735 =>
(101 => 33976, others => 0),
3736 =>
(46 => 32807, 85 => 37028, others => 0),
3737 =>
(0 => 1825, 15 => 1825, 34 => 1825, 35 => 1825,
39 => 1825, 40 => 1825, 41 => 1825, 46 => 1825,
56 => 1825, 60 => 1825, 67 => 1825, 68 => 1825,
70 => 1825, 71 => 1825, 72 => 1825, 73 => 1825,
86 => 1825, 91 => 1825, 94 => 1825, 97 => 1825,
99 => 1825, 103 => 1825, others => 0),
3738 =>
(101 => 33976, others => 0),
3739 =>
(46 => 32807, 85 => 37031, others => 0),
3740 =>
(0 => 1820, 15 => 1820, 34 => 1820, 35 => 1820,
39 => 1820, 40 => 1820, 41 => 1820, 46 => 1820,
56 => 1820, 60 => 1820, 67 => 1820, 68 => 1820,
70 => 1820, 71 => 1820, 72 => 1820, 73 => 1820,
86 => 1820, 91 => 1820, 94 => 1820, 97 => 1820,
99 => 1820, 103 => 1820, others => 0),
3741 =>
(29 => 32865, 85 => 37033, others => 0),
3742 =>
(34 => 37035, 37 => 37034, others => 0),
3743 =>
(0 => 1400, 15 => 1400, 34 => 1400, 39 => 1400,
40 => 1400, 41 => 1400, 46 => 1400, 56 => 1400,
60 => 1400, 67 => 1400, 68 => 1400, 70 => 1400,
71 => 1400, 72 => 1400, 73 => 1400, 86 => 1400,
91 => 1400, 94 => 1400, 97 => 1400, 99 => 1400,
103 => 1400, others => 0),
3744 =>
(0 => 1857, 15 => 1857, 34 => 1857, 35 => 1857,
39 => 1857, 40 => 1857, 41 => 1857, 46 => 1857,
56 => 1857, 60 => 1857, 67 => 1857, 68 => 1857,
70 => 1857, 71 => 1857, 72 => 1857, 73 => 1857,
86 => 1857, 91 => 1857, 94 => 1857, 97 => 1857,
99 => 1857, 103 => 1857, others => 0),
3745 =>
(0 => 1852, 15 => 1852, 34 => 1852, 35 => 1852,
39 => 1852, 40 => 1852, 41 => 1852, 46 => 1852,
56 => 1852, 60 => 1852, 67 => 1852, 68 => 1852,
70 => 1852, 71 => 1852, 72 => 1852, 73 => 1852,
86 => 1852, 91 => 1852, 94 => 1852, 97 => 1852,
99 => 1852, 103 => 1852, others => 0),
3746 =>
(29 => 32865, 85 => 37036, others => 0),
3747 =>
(0 => 1846, 15 => 1846, 34 => 1846, 35 => 1846,
39 => 1846, 40 => 1846, 41 => 1846, 46 => 1846,
56 => 1846, 60 => 1846, 67 => 1846, 68 => 1846,
70 => 1846, 71 => 1846, 72 => 1846, 73 => 1846,
86 => 1846, 91 => 1846, 94 => 1846, 97 => 1846,
99 => 1846, 103 => 1846, others => 0),
3748 =>
(29 => 32865, 85 => 37037, others => 0),
3749 =>
(46 => 32807, 85 => 37038, others => 0),
3750 =>
(0 => 1841, 15 => 1841, 34 => 1841, 35 => 1841,
39 => 1841, 40 => 1841, 41 => 1841, 46 => 1841,
56 => 1841, 60 => 1841, 67 => 1841, 68 => 1841,
70 => 1841, 71 => 1841, 72 => 1841, 73 => 1841,
86 => 1841, 91 => 1841, 94 => 1841, 97 => 1841,
99 => 1841, 103 => 1841, others => 0),
3751 =>
(0 => 1225, 15 => 1225, 34 => 1225, 35 => 1225,
39 => 1225, 40 => 1225, 41 => 1225, 46 => 1225,
56 => 1225, 60 => 1225, 67 => 1225, 68 => 1225,
70 => 1225, 71 => 1225, 72 => 1225, 73 => 1225,
86 => 1225, 91 => 1225, 94 => 1225, 97 => 1225,
99 => 1225, 103 => 1225, others => 0),
3752 =>
(0 => 1227, 15 => 1227, 34 => 1227, 35 => 1227,
39 => 1227, 40 => 1227, 41 => 1227, 46 => 1227,
56 => 1227, 60 => 1227, 67 => 1227, 68 => 1227,
70 => 1227, 71 => 1227, 72 => 1227, 73 => 1227,
86 => 1227, 91 => 1227, 94 => 1227, 97 => 1227,
99 => 1227, 103 => 1227, others => 0),
3753 =>
(0 => 894, 15 => 894, 34 => 894, 35 => 894,
39 => 894, 40 => 894, 41 => 894, 46 => 894,
56 => 894, 60 => 894, 67 => 894, 68 => 894,
70 => 894, 71 => 894, 72 => 894, 73 => 894,
86 => 894, 91 => 894, 94 => 894, 97 => 894,
99 => 894, 103 => 894, others => 0),
3754 =>
(101 => 33976, others => 0),
3755 =>
(46 => 32807, 85 => 37041, 90 => 32868, others => 0),
3756 =>
(0 => 1221, 15 => 1221, 34 => 1221, 35 => 1221,
39 => 1221, 40 => 1221, 41 => 1221, 46 => 1221,
56 => 1221, 60 => 1221, 67 => 1221, 68 => 1221,
70 => 1221, 71 => 1221, 72 => 1221, 73 => 1221,
86 => 1221, 91 => 1221, 94 => 1221, 97 => 1221,
99 => 1221, 103 => 1221, others => 0),
3757 =>
(0 => 1223, 15 => 1223, 34 => 1223, 35 => 1223,
39 => 1223, 40 => 1223, 41 => 1223, 46 => 1223,
56 => 1223, 60 => 1223, 67 => 1223, 68 => 1223,
70 => 1223, 71 => 1223, 72 => 1223, 73 => 1223,
86 => 1223, 91 => 1223, 94 => 1223, 97 => 1223,
99 => 1223, 103 => 1223, others => 0),
3758 =>
(0 => 889, 15 => 889, 34 => 889, 35 => 889,
39 => 889, 40 => 889, 41 => 889, 46 => 889,
56 => 889, 60 => 889, 67 => 889, 68 => 889,
70 => 889, 71 => 889, 72 => 889, 73 => 889,
86 => 889, 91 => 889, 94 => 889, 97 => 889,
99 => 889, 103 => 889, others => 0),
3759 =>
(85 => 37043, others => 0),
3760 =>
(34 => 37045, 37 => 37044, others => 0),
3761 =>
(0 => 883, 15 => 883, 34 => 883, 35 => 883,
39 => 883, 40 => 883, 41 => 883, 46 => 883,
56 => 883, 60 => 883, 67 => 883, 68 => 883,
70 => 883, 71 => 883, 72 => 883, 73 => 883,
86 => 883, 91 => 883, 94 => 883, 97 => 883,
99 => 883, 103 => 883, others => 0),
3762 =>
(85 => 37046, others => 0),
3763 =>
(34 => 37048, 37 => 37047, others => 0),
3764 =>
(46 => 32807, 85 => 37049, 90 => 32868, others => 0),
3765 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3766 =>
(46 => 32807, 85 => 37052, 90 => 32868, others => 0),
3767 =>
(0 => 1108, 15 => 1108, 34 => 1108, 35 => 1108,
39 => 1108, 40 => 1108, 41 => 1108, 46 => 1108,
56 => 1108, 60 => 1108, 67 => 1108, 68 => 1108,
70 => 1108, 71 => 1108, 72 => 1108, 73 => 1108,
86 => 1108, 91 => 1108, 94 => 1108, 97 => 1108,
99 => 1108, 103 => 1108, others => 0),
3768 =>
(34 => 37054, others => 0),
3769 =>
(0 => 1103, 15 => 1103, 34 => 1103, 35 => 1103,
39 => 1103, 40 => 1103, 41 => 1103, 46 => 1103,
56 => 1103, 60 => 1103, 67 => 1103, 68 => 1103,
70 => 1103, 71 => 1103, 72 => 1103, 73 => 1103,
86 => 1103, 91 => 1103, 94 => 1103, 97 => 1103,
99 => 1103, 103 => 1103, others => 0),
3770 =>
(85 => 37055, others => 0),
3771 =>
(34 => 37056, others => 0),
3772 =>
(0 => 1097, 15 => 1097, 34 => 1097, 35 => 1097,
39 => 1097, 40 => 1097, 41 => 1097, 46 => 1097,
56 => 1097, 60 => 1097, 67 => 1097, 68 => 1097,
70 => 1097, 71 => 1097, 72 => 1097, 73 => 1097,
86 => 1097, 91 => 1097, 94 => 1097, 97 => 1097,
99 => 1097, 103 => 1097, others => 0),
3773 =>
(85 => 37057, others => 0),
3774 =>
(0 => 1092, 15 => 1092, 34 => 1092, 35 => 1092,
39 => 1092, 40 => 1092, 41 => 1092, 46 => 1092,
56 => 1092, 60 => 1092, 67 => 1092, 68 => 1092,
70 => 1092, 71 => 1092, 72 => 1092, 73 => 1092,
86 => 1092, 91 => 1092, 94 => 1092, 97 => 1092,
99 => 1092, 103 => 1092, others => 0),
3775 =>
(101 => 33976, others => 0),
3776 =>
(46 => 32807, 85 => 37059, 90 => 32868, others => 0),
3777 =>
(46 => 32807, 85 => 37061, 90 => 32868, others => 0),
3778 =>
(0 => 916, 15 => 916, 34 => 916, 35 => 916,
39 => 916, 40 => 916, 41 => 916, 46 => 916,
56 => 916, 60 => 916, 67 => 916, 68 => 916,
70 => 916, 71 => 916, 72 => 916, 73 => 916,
86 => 916, 91 => 916, 94 => 916, 97 => 916,
99 => 916, 103 => 916, others => 0),
3779 =>
(34 => 37063, others => 0),
3780 =>
(0 => 911, 15 => 911, 34 => 911, 35 => 911,
39 => 911, 40 => 911, 41 => 911, 46 => 911,
56 => 911, 60 => 911, 67 => 911, 68 => 911,
70 => 911, 71 => 911, 72 => 911, 73 => 911,
86 => 911, 91 => 911, 94 => 911, 97 => 911,
99 => 911, 103 => 911, others => 0),
3781 =>
(85 => 37064, others => 0),
3782 =>
(34 => 37065, others => 0),
3783 =>
(0 => 905, 15 => 905, 34 => 905, 35 => 905,
39 => 905, 40 => 905, 41 => 905, 46 => 905,
56 => 905, 60 => 905, 67 => 905, 68 => 905,
70 => 905, 71 => 905, 72 => 905, 73 => 905,
86 => 905, 91 => 905, 94 => 905, 97 => 905,
99 => 905, 103 => 905, others => 0),
3784 =>
(85 => 37066, others => 0),
3785 =>
(0 => 900, 15 => 900, 34 => 900, 35 => 900,
39 => 900, 40 => 900, 41 => 900, 46 => 900,
56 => 900, 60 => 900, 67 => 900, 68 => 900,
70 => 900, 71 => 900, 72 => 900, 73 => 900,
86 => 900, 91 => 900, 94 => 900, 97 => 900,
99 => 900, 103 => 900, others => 0),
3786 =>
(101 => 33976, others => 0),
3787 =>
(46 => 32807, 85 => 37068, 90 => 32868, others => 0),
3788 =>
(0 => 1210, 15 => 1210, 34 => 1210, 35 => 1210,
39 => 1210, 40 => 1210, 41 => 1210, 46 => 1210,
56 => 1210, 60 => 1210, 67 => 1210, 68 => 1210,
70 => 1210, 71 => 1210, 72 => 1210, 73 => 1210,
86 => 1210, 91 => 1210, 94 => 1210, 97 => 1210,
99 => 1210, 103 => 1210, others => 0),
3789 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
3790 =>
(3 => 37074, 15 => 37073, 34 => 37072, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 37071, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
3791 =>
(51 => 37078, 85 => 37077, others => 0),
3792 =>
(0 => 1306, 15 => 1306, 34 => 1306, 35 => 1306,
39 => 1306, 40 => 1306, 41 => 1306, 46 => 1306,
56 => 1306, 60 => 1306, 67 => 1306, 68 => 1306,
70 => 1306, 71 => 1306, 72 => 1306, 73 => 1306,
86 => 1306, 91 => 1306, 94 => 1306, 97 => 1306,
99 => 1306, 103 => 1306, others => 0),
3793 =>
(85 => 37079, others => 0),
3794 =>
(0 => 1308, 15 => 1308, 34 => 1308, 35 => 1308,
39 => 1308, 40 => 1308, 41 => 1308, 46 => 1308,
56 => 1308, 60 => 1308, 67 => 1308, 68 => 1308,
70 => 1308, 71 => 1308, 72 => 1308, 73 => 1308,
86 => 1308, 91 => 1308, 94 => 1308, 97 => 1308,
99 => 1308, 103 => 1308, others => 0),
3795 =>
(85 => 37080, others => 0),
3796 =>
(0 => 1087, 15 => 1087, 34 => 1087, 35 => 1087,
39 => 1087, 40 => 1087, 41 => 1087, 46 => 1087,
56 => 1087, 60 => 1087, 67 => 1087, 68 => 1087,
70 => 1087, 71 => 1087, 72 => 1087, 73 => 1087,
86 => 1087, 91 => 1087, 94 => 1087, 97 => 1087,
99 => 1087, 103 => 1087, others => 0),
3797 =>
(85 => 37081, others => 0),
3798 =>
(34 => 37083, 37 => 37082, others => 0),
3799 =>
(0 => 1302, 15 => 1302, 34 => 1302, 35 => 1302,
39 => 1302, 40 => 1302, 41 => 1302, 46 => 1302,
56 => 1302, 60 => 1302, 67 => 1302, 68 => 1302,
70 => 1302, 71 => 1302, 72 => 1302, 73 => 1302,
86 => 1302, 91 => 1302, 94 => 1302, 97 => 1302,
99 => 1302, 103 => 1302, others => 0),
3800 =>
(85 => 37084, others => 0),
3801 =>
(0 => 1304, 15 => 1304, 34 => 1304, 35 => 1304,
39 => 1304, 40 => 1304, 41 => 1304, 46 => 1304,
56 => 1304, 60 => 1304, 67 => 1304, 68 => 1304,
70 => 1304, 71 => 1304, 72 => 1304, 73 => 1304,
86 => 1304, 91 => 1304, 94 => 1304, 97 => 1304,
99 => 1304, 103 => 1304, others => 0),
3802 =>
(85 => 37085, others => 0),
3803 =>
(46 => 32807, 85 => 37086, 90 => 32868, others => 0),
3804 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3805 =>
(46 => 32807, 85 => 37089, 90 => 32868, others => 0),
3806 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3807 =>
(15 => 37093, 34 => 37092, others => 0),
3808 =>
(0 => 1216, 15 => 1216, 34 => 1216, 35 => 1216,
39 => 1216, 40 => 1216, 41 => 1216, 46 => 1216,
56 => 1216, 60 => 1216, 67 => 1216, 68 => 1216,
70 => 1216, 71 => 1216, 72 => 1216, 73 => 1216,
86 => 1216, 91 => 1216, 94 => 1216, 97 => 1216,
99 => 1216, 103 => 1216, others => 0),
3809 =>
(85 => 37094, others => 0),
3810 =>
(0 => 1218, 15 => 1218, 34 => 1218, 35 => 1218,
39 => 1218, 40 => 1218, 41 => 1218, 46 => 1218,
56 => 1218, 60 => 1218, 67 => 1218, 68 => 1218,
70 => 1218, 71 => 1218, 72 => 1218, 73 => 1218,
86 => 1218, 91 => 1218, 94 => 1218, 97 => 1218,
99 => 1218, 103 => 1218, others => 0),
3811 =>
(85 => 37095, others => 0),
3812 =>
(0 => 871, 15 => 871, 34 => 871, 35 => 871,
39 => 871, 40 => 871, 41 => 871, 46 => 871,
56 => 871, 60 => 871, 67 => 871, 68 => 871,
70 => 871, 71 => 871, 72 => 871, 73 => 871,
86 => 871, 91 => 871, 94 => 871, 97 => 871,
99 => 871, 103 => 871, others => 0),
3813 =>
(85 => 37096, others => 0),
3814 =>
(34 => 37098, 37 => 37097, others => 0),
3815 =>
(0 => 1212, 15 => 1212, 34 => 1212, 35 => 1212,
39 => 1212, 40 => 1212, 41 => 1212, 46 => 1212,
56 => 1212, 60 => 1212, 67 => 1212, 68 => 1212,
70 => 1212, 71 => 1212, 72 => 1212, 73 => 1212,
86 => 1212, 91 => 1212, 94 => 1212, 97 => 1212,
99 => 1212, 103 => 1212, others => 0),
3816 =>
(85 => 37099, others => 0),
3817 =>
(0 => 1214, 15 => 1214, 34 => 1214, 35 => 1214,
39 => 1214, 40 => 1214, 41 => 1214, 46 => 1214,
56 => 1214, 60 => 1214, 67 => 1214, 68 => 1214,
70 => 1214, 71 => 1214, 72 => 1214, 73 => 1214,
86 => 1214, 91 => 1214, 94 => 1214, 97 => 1214,
99 => 1214, 103 => 1214, others => 0),
3818 =>
(85 => 37100, others => 0),
3819 =>
(46 => 32807, 85 => 37101, 90 => 32868, others => 0),
3820 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3821 =>
(46 => 32807, 85 => 37104, 90 => 32868, others => 0),
3822 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3823 =>
(15 => 37108, 34 => 37107, others => 0),
3824 =>
(0 => 1388, 15 => 1388, 34 => 1388, 39 => 1388,
40 => 1388, 41 => 1388, 46 => 1388, 56 => 1388,
60 => 1388, 67 => 1388, 68 => 1388, 70 => 1388,
71 => 1388, 72 => 1388, 73 => 1388, 86 => 1388,
91 => 1388, 94 => 1388, 97 => 1388, 99 => 1388,
103 => 1388, others => 0),
3825 =>
(0 => 1913, 15 => 1913, 34 => 1913, 35 => 1913,
39 => 1913, 40 => 1913, 41 => 1913, 46 => 1913,
56 => 1913, 60 => 1913, 67 => 1913, 68 => 1913,
70 => 1913, 71 => 1913, 72 => 1913, 73 => 1913,
86 => 1913, 91 => 1913, 94 => 1913, 97 => 1913,
99 => 1913, 103 => 1913, others => 0),
3826 =>
(0 => 1915, 15 => 1915, 34 => 1915, 35 => 1915,
39 => 1915, 40 => 1915, 41 => 1915, 46 => 1915,
56 => 1915, 60 => 1915, 67 => 1915, 68 => 1915,
70 => 1915, 71 => 1915, 72 => 1915, 73 => 1915,
86 => 1915, 91 => 1915, 94 => 1915, 97 => 1915,
99 => 1915, 103 => 1915, others => 0),
3827 =>
(0 => 1789, 15 => 1789, 34 => 1789, 35 => 1789,
39 => 1789, 40 => 1789, 41 => 1789, 46 => 1789,
56 => 1789, 60 => 1789, 67 => 1789, 68 => 1789,
70 => 1789, 71 => 1789, 72 => 1789, 73 => 1789,
86 => 1789, 91 => 1789, 94 => 1789, 97 => 1789,
99 => 1789, 103 => 1789, others => 0),
3828 =>
(101 => 33976, others => 0),
3829 =>
(46 => 32807, 85 => 37110, others => 0),
3830 =>
(0 => 1784, 15 => 1784, 34 => 1784, 35 => 1784,
39 => 1784, 40 => 1784, 41 => 1784, 46 => 1784,
56 => 1784, 60 => 1784, 67 => 1784, 68 => 1784,
70 => 1784, 71 => 1784, 72 => 1784, 73 => 1784,
86 => 1784, 91 => 1784, 94 => 1784, 97 => 1784,
99 => 1784, 103 => 1784, others => 0),
3831 =>
(29 => 32865, 85 => 37112, others => 0),
3832 =>
(34 => 37114, 37 => 37113, others => 0),
3833 =>
(0 => 1911, 15 => 1911, 34 => 1911, 35 => 1911,
39 => 1911, 40 => 1911, 41 => 1911, 46 => 1911,
56 => 1911, 60 => 1911, 67 => 1911, 68 => 1911,
70 => 1911, 71 => 1911, 72 => 1911, 73 => 1911,
86 => 1911, 91 => 1911, 94 => 1911, 97 => 1911,
99 => 1911, 103 => 1911, others => 0),
3834 =>
(0 => 1778, 15 => 1778, 34 => 1778, 35 => 1778,
39 => 1778, 40 => 1778, 41 => 1778, 46 => 1778,
56 => 1778, 60 => 1778, 67 => 1778, 68 => 1778,
70 => 1778, 71 => 1778, 72 => 1778, 73 => 1778,
86 => 1778, 91 => 1778, 94 => 1778, 97 => 1778,
99 => 1778, 103 => 1778, others => 0),
3835 =>
(29 => 32865, 85 => 37115, others => 0),
3836 =>
(34 => 37117, 37 => 37116, others => 0),
3837 =>
(46 => 32807, 85 => 37118, others => 0),
3838 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3839 =>
(0 => 1397, 15 => 1397, 34 => 1397, 39 => 1397,
40 => 1397, 41 => 1397, 46 => 1397, 56 => 1397,
60 => 1397, 67 => 1397, 68 => 1397, 70 => 1397,
71 => 1397, 72 => 1397, 73 => 1397, 86 => 1397,
91 => 1397, 94 => 1397, 97 => 1397, 99 => 1397,
103 => 1397, others => 0),
3840 =>
(85 => 37121, others => 0),
3841 =>
(0 => 1810, 15 => 1810, 34 => 1810, 35 => 1810,
39 => 1810, 40 => 1810, 41 => 1810, 46 => 1810,
56 => 1810, 60 => 1810, 67 => 1810, 68 => 1810,
70 => 1810, 71 => 1810, 72 => 1810, 73 => 1810,
86 => 1810, 91 => 1810, 94 => 1810, 97 => 1810,
99 => 1810, 103 => 1810, others => 0),
3842 =>
(29 => 32865, 85 => 37122, others => 0),
3843 =>
(46 => 32807, 85 => 37123, others => 0),
3844 =>
(0 => 1805, 15 => 1805, 34 => 1805, 35 => 1805,
39 => 1805, 40 => 1805, 41 => 1805, 46 => 1805,
56 => 1805, 60 => 1805, 67 => 1805, 68 => 1805,
70 => 1805, 71 => 1805, 72 => 1805, 73 => 1805,
86 => 1805, 91 => 1805, 94 => 1805, 97 => 1805,
99 => 1805, 103 => 1805, others => 0),
3845 =>
(46 => 32807, 85 => 37125, others => 0),
3846 =>
(0 => 1799, 15 => 1799, 34 => 1799, 35 => 1799,
39 => 1799, 40 => 1799, 41 => 1799, 46 => 1799,
56 => 1799, 60 => 1799, 67 => 1799, 68 => 1799,
70 => 1799, 71 => 1799, 72 => 1799, 73 => 1799,
86 => 1799, 91 => 1799, 94 => 1799, 97 => 1799,
99 => 1799, 103 => 1799, others => 0),
3847 =>
(34 => 37127, others => 0),
3848 =>
(0 => 1794, 15 => 1794, 34 => 1794, 35 => 1794,
39 => 1794, 40 => 1794, 41 => 1794, 46 => 1794,
56 => 1794, 60 => 1794, 67 => 1794, 68 => 1794,
70 => 1794, 71 => 1794, 72 => 1794, 73 => 1794,
86 => 1794, 91 => 1794, 94 => 1794, 97 => 1794,
99 => 1794, 103 => 1794, others => 0),
3849 =>
(29 => 32865, 85 => 37128, others => 0),
3850 =>
(0 => 1186, 15 => 1186, 34 => 1186, 35 => 1186,
39 => 1186, 40 => 1186, 41 => 1186, 46 => 1186,
56 => 1186, 60 => 1186, 67 => 1186, 68 => 1186,
70 => 1186, 71 => 1186, 72 => 1186, 73 => 1186,
86 => 1186, 91 => 1186, 94 => 1186, 97 => 1186,
99 => 1186, 103 => 1186, others => 0),
3851 =>
(85 => 37129, others => 0),
3852 =>
(0 => 1188, 15 => 1188, 34 => 1188, 35 => 1188,
39 => 1188, 40 => 1188, 41 => 1188, 46 => 1188,
56 => 1188, 60 => 1188, 67 => 1188, 68 => 1188,
70 => 1188, 71 => 1188, 72 => 1188, 73 => 1188,
86 => 1188, 91 => 1188, 94 => 1188, 97 => 1188,
99 => 1188, 103 => 1188, others => 0),
3853 =>
(85 => 37130, others => 0),
3854 =>
(0 => 799, 15 => 799, 34 => 799, 35 => 799,
39 => 799, 40 => 799, 41 => 799, 46 => 799,
56 => 799, 60 => 799, 67 => 799, 68 => 799,
70 => 799, 71 => 799, 72 => 799, 73 => 799,
86 => 799, 91 => 799, 94 => 799, 97 => 799,
99 => 799, 103 => 799, others => 0),
3855 =>
(85 => 37131, others => 0),
3856 =>
(34 => 37133, 37 => 37132, others => 0),
3857 =>
(0 => 1182, 15 => 1182, 34 => 1182, 35 => 1182,
39 => 1182, 40 => 1182, 41 => 1182, 46 => 1182,
56 => 1182, 60 => 1182, 67 => 1182, 68 => 1182,
70 => 1182, 71 => 1182, 72 => 1182, 73 => 1182,
86 => 1182, 91 => 1182, 94 => 1182, 97 => 1182,
99 => 1182, 103 => 1182, others => 0),
3858 =>
(85 => 37134, others => 0),
3859 =>
(0 => 1184, 15 => 1184, 34 => 1184, 35 => 1184,
39 => 1184, 40 => 1184, 41 => 1184, 46 => 1184,
56 => 1184, 60 => 1184, 67 => 1184, 68 => 1184,
70 => 1184, 71 => 1184, 72 => 1184, 73 => 1184,
86 => 1184, 91 => 1184, 94 => 1184, 97 => 1184,
99 => 1184, 103 => 1184, others => 0),
3860 =>
(85 => 37135, others => 0),
3861 =>
(46 => 32807, 85 => 37136, 90 => 32868, others => 0),
3862 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3863 =>
(46 => 32807, 85 => 37139, 90 => 32868, others => 0),
3864 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3865 =>
(15 => 37143, 34 => 37142, others => 0),
3866 =>
(34 => 37144, others => 0),
3867 =>
(0 => 1061, 15 => 1061, 34 => 1061, 35 => 1061,
39 => 1061, 40 => 1061, 41 => 1061, 46 => 1061,
56 => 1061, 60 => 1061, 67 => 1061, 68 => 1061,
70 => 1061, 71 => 1061, 72 => 1061, 73 => 1061,
86 => 1061, 91 => 1061, 94 => 1061, 97 => 1061,
99 => 1061, 103 => 1061, others => 0),
3868 =>
(85 => 37145, others => 0),
3869 =>
(0 => 1056, 15 => 1056, 34 => 1056, 35 => 1056,
39 => 1056, 40 => 1056, 41 => 1056, 46 => 1056,
56 => 1056, 60 => 1056, 67 => 1056, 68 => 1056,
70 => 1056, 71 => 1056, 72 => 1056, 73 => 1056,
86 => 1056, 91 => 1056, 94 => 1056, 97 => 1056,
99 => 1056, 103 => 1056, others => 0),
3870 =>
(101 => 33976, others => 0),
3871 =>
(46 => 32807, 85 => 37147, 90 => 32868, others => 0),
3872 =>
(0 => 1050, 15 => 1050, 34 => 1050, 35 => 1050,
39 => 1050, 40 => 1050, 41 => 1050, 46 => 1050,
56 => 1050, 60 => 1050, 67 => 1050, 68 => 1050,
70 => 1050, 71 => 1050, 72 => 1050, 73 => 1050,
86 => 1050, 91 => 1050, 94 => 1050, 97 => 1050,
99 => 1050, 103 => 1050, others => 0),
3873 =>
(101 => 33976, others => 0),
3874 =>
(46 => 32807, 85 => 37150, 90 => 32868, others => 0),
3875 =>
(0 => 1045, 15 => 1045, 34 => 1045, 35 => 1045,
39 => 1045, 40 => 1045, 41 => 1045, 46 => 1045,
56 => 1045, 60 => 1045, 67 => 1045, 68 => 1045,
70 => 1045, 71 => 1045, 72 => 1045, 73 => 1045,
86 => 1045, 91 => 1045, 94 => 1045, 97 => 1045,
99 => 1045, 103 => 1045, others => 0),
3876 =>
(85 => 37152, others => 0),
3877 =>
(34 => 37154, 37 => 37153, others => 0),
3878 =>
(34 => 37155, others => 0),
3879 =>
(0 => 821, 15 => 821, 34 => 821, 35 => 821,
39 => 821, 40 => 821, 41 => 821, 46 => 821,
56 => 821, 60 => 821, 67 => 821, 68 => 821,
70 => 821, 71 => 821, 72 => 821, 73 => 821,
86 => 821, 91 => 821, 94 => 821, 97 => 821,
99 => 821, 103 => 821, others => 0),
3880 =>
(85 => 37156, others => 0),
3881 =>
(0 => 816, 15 => 816, 34 => 816, 35 => 816,
39 => 816, 40 => 816, 41 => 816, 46 => 816,
56 => 816, 60 => 816, 67 => 816, 68 => 816,
70 => 816, 71 => 816, 72 => 816, 73 => 816,
86 => 816, 91 => 816, 94 => 816, 97 => 816,
99 => 816, 103 => 816, others => 0),
3882 =>
(101 => 33976, others => 0),
3883 =>
(46 => 32807, 85 => 37158, 90 => 32868, others => 0),
3884 =>
(0 => 810, 15 => 810, 34 => 810, 35 => 810,
39 => 810, 40 => 810, 41 => 810, 46 => 810,
56 => 810, 60 => 810, 67 => 810, 68 => 810,
70 => 810, 71 => 810, 72 => 810, 73 => 810,
86 => 810, 91 => 810, 94 => 810, 97 => 810,
99 => 810, 103 => 810, others => 0),
3885 =>
(101 => 33976, others => 0),
3886 =>
(46 => 32807, 85 => 37161, 90 => 32868, others => 0),
3887 =>
(0 => 805, 15 => 805, 34 => 805, 35 => 805,
39 => 805, 40 => 805, 41 => 805, 46 => 805,
56 => 805, 60 => 805, 67 => 805, 68 => 805,
70 => 805, 71 => 805, 72 => 805, 73 => 805,
86 => 805, 91 => 805, 94 => 805, 97 => 805,
99 => 805, 103 => 805, others => 0),
3888 =>
(85 => 37163, others => 0),
3889 =>
(34 => 37165, 37 => 37164, others => 0),
3890 =>
(51 => 37168, 78 => 37167, 85 => 37166, 103 => 32885,
others => 0),
3891 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37170,
103 => 32885, others => 0),
3892 =>
(85 => 37172, 103 => 32885, others => 0),
3893 =>
(46 => 32807, 85 => 37174, 90 => 32868, others => 0),
3894 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3895 =>
(85 => 37177, 103 => 32885, others => 0),
3896 =>
(85 => 37179, 103 => 32885, others => 0),
3897 =>
(15 => 37182, 34 => 37181, others => 0),
3898 =>
(0 => 1289, 15 => 1289, 34 => 1289, 35 => 1289,
39 => 1289, 40 => 1289, 41 => 1289, 46 => 1289,
56 => 1289, 60 => 1289, 67 => 1289, 68 => 1289,
70 => 1289, 71 => 1289, 72 => 1289, 73 => 1289,
86 => 1289, 91 => 1289, 94 => 1289, 97 => 1289,
99 => 1289, 103 => 1289, others => 0),
3899 =>
(15 => 37184, 34 => 37183, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3900 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37186,
103 => 32885, others => 0),
3901 =>
(85 => 37188, 103 => 32885, others => 0),
3902 =>
(46 => 32807, 85 => 37190, 90 => 32868, others => 0),
3903 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
3904 =>
(85 => 37193, 103 => 32885, others => 0),
3905 =>
(85 => 37195, 103 => 32885, others => 0),
3906 =>
(15 => 37198, 34 => 37197, others => 0),
3907 =>
(0 => 1179, 15 => 1179, 34 => 1179, 35 => 1179,
39 => 1179, 40 => 1179, 41 => 1179, 46 => 1179,
56 => 1179, 60 => 1179, 67 => 1179, 68 => 1179,
70 => 1179, 71 => 1179, 72 => 1179, 73 => 1179,
86 => 1179, 91 => 1179, 94 => 1179, 97 => 1179,
99 => 1179, 103 => 1179, others => 0),
3908 =>
(15 => 37200, 34 => 37199, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
3909 =>
(0 => 1385, 15 => 1385, 34 => 1385, 39 => 1385,
40 => 1385, 41 => 1385, 46 => 1385, 56 => 1385,
60 => 1385, 67 => 1385, 68 => 1385, 70 => 1385,
71 => 1385, 72 => 1385, 73 => 1385, 86 => 1385,
91 => 1385, 94 => 1385, 97 => 1385, 99 => 1385,
103 => 1385, others => 0),
3910 =>
(85 => 37202, others => 0),
3911 =>
(40 => 642, 46 => 642, 68 => 642, 70 => 642,
72 => 642, 97 => 642, 99 => 642, 103 => 642,
others => 0),
3912 =>
(40 => 640, 46 => 640, 68 => 640, 70 => 640,
72 => 640, 97 => 640, 99 => 640, 103 => 640,
others => 0),
3913 =>
(40 => 635, 46 => 635, 68 => 635, 70 => 635,
72 => 635, 97 => 635, 99 => 635, 103 => 635,
others => 0),
3914 =>
(85 => 37203, others => 0),
3915 =>
(40 => 633, 46 => 633, 68 => 633, 70 => 633,
72 => 633, 97 => 633, 99 => 633, 103 => 633,
others => 0),
3916 =>
(85 => 37204, others => 0),
3917 =>
(40 => 636, 46 => 636, 68 => 636, 70 => 636,
72 => 636, 97 => 636, 99 => 636, 103 => 636,
others => 0),
3918 =>
(40 => 631, 46 => 631, 68 => 631, 70 => 631,
72 => 631, 97 => 631, 99 => 631, 103 => 631,
others => 0),
3919 =>
(85 => 37205, others => 0),
3920 =>
(40 => 638, 46 => 638, 68 => 638, 70 => 638,
72 => 638, 97 => 638, 99 => 638, 103 => 638,
others => 0),
3921 =>
(40 => 619, 46 => 619, 68 => 619, 70 => 619,
72 => 619, 97 => 619, 99 => 619, 103 => 619,
others => 0),
3922 =>
(85 => 37206, others => 0),
3923 =>
(40 => 511, 46 => 511, 68 => 511, 70 => 511,
72 => 511, 97 => 511, 99 => 511, 103 => 511,
others => 0),
3924 =>
(85 => 37207, others => 0),
3925 =>
(40 => 507, 46 => 507, 68 => 507, 70 => 507,
72 => 507, 97 => 507, 99 => 507, 103 => 507,
others => 0),
3926 =>
(85 => 37208, 103 => 32885, others => 0),
3927 =>
(85 => 37210, others => 0),
3928 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37211,
103 => 32885, others => 0),
3929 =>
(40 => 509, 46 => 509, 68 => 509, 70 => 509,
72 => 509, 97 => 509, 99 => 509, 103 => 509,
others => 0),
3930 =>
(85 => 37213, others => 0),
3931 =>
(40 => 540, 46 => 540, 68 => 540, 70 => 540,
72 => 540, 97 => 540, 99 => 540, 103 => 540,
others => 0),
3932 =>
(40 => 538, 46 => 538, 68 => 538, 70 => 538,
72 => 538, 97 => 538, 99 => 538, 103 => 538,
others => 0),
3933 =>
(40 => 516, 46 => 516, 68 => 516, 70 => 516,
72 => 516, 97 => 516, 99 => 516, 103 => 516,
others => 0),
3934 =>
(40 => 514, 46 => 514, 68 => 514, 70 => 514,
72 => 514, 97 => 514, 99 => 514, 103 => 514,
others => 0),
3935 =>
(51 => 37215, 85 => 37214, 103 => 32885, others => 0),
3936 =>
(85 => 37217, 103 => 32885, others => 0),
3937 =>
(17 => 37220, 19 => 32869, 46 => 32807, 85 => 37219,
90 => 32868, 103 => 32885, others => 0),
3938 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37223,
103 => 32885, others => 0),
3939 =>
(40 => 536, 46 => 536, 68 => 536, 70 => 536,
72 => 536, 97 => 536, 99 => 536, 103 => 536,
others => 0),
3940 =>
(85 => 37225, 103 => 32885, others => 0),
3941 =>
(17 => 37228, 19 => 32869, 46 => 32807, 85 => 37227,
90 => 32868, 103 => 32885, others => 0),
3942 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37231,
103 => 32885, others => 0),
3943 =>
(40 => 500, 46 => 500, 68 => 500, 70 => 500,
72 => 500, 97 => 500, 99 => 500, 103 => 500,
others => 0),
3944 =>
(9 => 33243, 64 => 33242, 83 => 280, 85 => 280,
104 => 33241, others => 0),
3945 =>
(85 => 465, 103 => 32885, others => 0),
3946 =>
(83 => 37234, others => 0),
3947 =>
(61 => 37235, others => 0),
3948 =>
(85 => 424, 103 => 424, others => 0),
3949 =>
(85 => 410, 103 => 410, others => 0),
3950 =>
(83 => 37236, others => 0),
3951 =>
(85 => 401, 103 => 401, others => 0),
3952 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3953 =>
(80 => 37238, others => 0),
3954 =>
(85 => 470, others => 0),
3955 =>
(85 => 459, 103 => 32885, others => 0),
3956 =>
(85 => 437, 103 => 437, others => 0),
3957 =>
(85 => 674, 103 => 674, others => 0),
3958 =>
(85 => 417, 103 => 417, others => 0),
3959 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37240,
90 => 32868, others => 0),
3960 =>
(61 => 37243, others => 0),
3961 =>
(85 => 429, 103 => 429, others => 0),
3962 =>
(85 => 420, 103 => 420, others => 0),
3963 =>
(85 => 448, others => 0),
3964 =>
(71 => 37244, others => 0),
3965 =>
(85 => 453, 103 => 32885, others => 0),
3966 =>
(85 => 442, others => 0),
3967 =>
(71 => 37246, others => 0),
3968 =>
(0 => 1432, 15 => 1432, 34 => 1432, 39 => 1432,
40 => 1432, 41 => 1432, 46 => 1432, 56 => 1432,
60 => 1432, 67 => 1432, 68 => 1432, 70 => 1432,
71 => 1432, 72 => 1432, 73 => 1432, 86 => 1432,
91 => 1432, 94 => 1432, 97 => 1432, 99 => 1432,
103 => 1432, others => 0),
3969 =>
(0 => 1365, 15 => 1365, 34 => 1365, 39 => 1365,
40 => 1365, 41 => 1365, 46 => 1365, 56 => 1365,
60 => 1365, 67 => 1365, 68 => 1365, 70 => 1365,
71 => 1365, 72 => 1365, 73 => 1365, 86 => 1365,
91 => 1365, 94 => 1365, 97 => 1365, 99 => 1365,
103 => 1365, others => 0),
3970 =>
(85 => 37247, others => 0),
3971 =>
(40 => 575, 46 => 575, 68 => 575, 70 => 575,
72 => 575, 97 => 575, 99 => 575, 103 => 575,
others => 0),
3972 =>
(13 => 33, 51 => 33, 78 => 33, 83 => 33,
85 => 33, 103 => 33, others => 0),
3973 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3974 =>
(80 => 37249, others => 0),
3975 =>
(13 => 47, 51 => 47, 78 => 47, 83 => 47,
85 => 47, 103 => 47, others => 0),
3976 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37250,
90 => 32868, others => 0),
3977 =>
(40 => 560, 46 => 560, 68 => 560, 70 => 560,
72 => 560, 97 => 560, 99 => 560, 103 => 560,
others => 0),
3978 =>
(85 => 37253, others => 0),
3979 =>
(40 => 567, 46 => 567, 68 => 567, 70 => 567,
72 => 567, 97 => 567, 99 => 567, 103 => 567,
others => 0),
3980 =>
(61 => 37254, others => 0),
3981 =>
(13 => 61, 51 => 61, 78 => 61, 83 => 61,
85 => 61, 103 => 61, others => 0),
3982 =>
(13 => 50, 51 => 50, 78 => 50, 83 => 50,
85 => 50, 103 => 50, others => 0),
3983 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
3984 =>
(0 => 1420, 15 => 1420, 34 => 1420, 39 => 1420,
40 => 1420, 41 => 1420, 46 => 1420, 56 => 1420,
60 => 1420, 67 => 1420, 68 => 1420, 70 => 1420,
71 => 1420, 72 => 1420, 73 => 1420, 86 => 1420,
91 => 1420, 94 => 1420, 97 => 1420, 99 => 1420,
103 => 1420, others => 0),
3985 =>
(0 => 1414, 15 => 1414, 34 => 1414, 39 => 1414,
40 => 1414, 41 => 1414, 46 => 1414, 56 => 1414,
60 => 1414, 67 => 1414, 68 => 1414, 70 => 1414,
71 => 1414, 72 => 1414, 73 => 1414, 86 => 1414,
91 => 1414, 94 => 1414, 97 => 1414, 99 => 1414,
103 => 1414, others => 0),
3986 =>
(0 => 1410, 15 => 1410, 34 => 1410, 39 => 1410,
40 => 1410, 41 => 1410, 46 => 1410, 56 => 1410,
60 => 1410, 67 => 1410, 68 => 1410, 70 => 1410,
71 => 1410, 72 => 1410, 73 => 1410, 86 => 1410,
91 => 1410, 94 => 1410, 97 => 1410, 99 => 1410,
103 => 1410, others => 0),
3987 =>
(0 => 1409, 15 => 1409, 34 => 1409, 39 => 1409,
40 => 1409, 41 => 1409, 46 => 1409, 56 => 1409,
60 => 1409, 67 => 1409, 68 => 1409, 70 => 1409,
71 => 1409, 72 => 1409, 73 => 1409, 86 => 1409,
91 => 1409, 94 => 1409, 97 => 1409, 99 => 1409,
103 => 1409, others => 0),
3988 =>
(29 => 32865, 85 => 37256, others => 0),
3989 =>
(85 => 37257, 103 => 32885, others => 0),
3990 =>
(0 => 1372, 15 => 1372, 34 => 1372, 39 => 1372,
40 => 1372, 41 => 1372, 46 => 1372, 56 => 1372,
60 => 1372, 67 => 1372, 68 => 1372, 70 => 1372,
71 => 1372, 72 => 1372, 73 => 1372, 86 => 1372,
91 => 1372, 94 => 1372, 97 => 1372, 99 => 1372,
103 => 1372, others => 0),
3991 =>
(0 => 1358, 15 => 1358, 34 => 1358, 39 => 1358,
40 => 1358, 41 => 1358, 46 => 1358, 56 => 1358,
60 => 1358, 67 => 1358, 68 => 1358, 70 => 1358,
71 => 1358, 72 => 1358, 73 => 1358, 86 => 1358,
91 => 1358, 94 => 1358, 97 => 1358, 99 => 1358,
103 => 1358, others => 0),
3992 =>
(34 => 37259, others => 0),
3993 =>
(0 => 989, 15 => 989, 34 => 989, 35 => 989,
39 => 989, 40 => 989, 41 => 989, 46 => 989,
56 => 989, 60 => 989, 67 => 989, 68 => 989,
70 => 989, 71 => 989, 72 => 989, 73 => 989,
86 => 989, 91 => 989, 94 => 989, 97 => 989,
99 => 989, 103 => 989, others => 0),
3994 =>
(85 => 37260, others => 0),
3995 =>
(0 => 984, 15 => 984, 34 => 984, 35 => 984,
39 => 984, 40 => 984, 41 => 984, 46 => 984,
56 => 984, 60 => 984, 67 => 984, 68 => 984,
70 => 984, 71 => 984, 72 => 984, 73 => 984,
86 => 984, 91 => 984, 94 => 984, 97 => 984,
99 => 984, 103 => 984, others => 0),
3996 =>
(101 => 33976, others => 0),
3997 =>
(46 => 32807, 85 => 37262, 90 => 32868, others => 0),
3998 =>
(0 => 978, 15 => 978, 34 => 978, 35 => 978,
39 => 978, 40 => 978, 41 => 978, 46 => 978,
56 => 978, 60 => 978, 67 => 978, 68 => 978,
70 => 978, 71 => 978, 72 => 978, 73 => 978,
86 => 978, 91 => 978, 94 => 978, 97 => 978,
99 => 978, 103 => 978, others => 0),
3999 =>
(101 => 33976, others => 0),
4000 =>
(46 => 32807, 85 => 37265, 90 => 32868, others => 0),
4001 =>
(0 => 973, 15 => 973, 34 => 973, 35 => 973,
39 => 973, 40 => 973, 41 => 973, 46 => 973,
56 => 973, 60 => 973, 67 => 973, 68 => 973,
70 => 973, 71 => 973, 72 => 973, 73 => 973,
86 => 973, 91 => 973, 94 => 973, 97 => 973,
99 => 973, 103 => 973, others => 0),
4002 =>
(85 => 37267, others => 0),
4003 =>
(34 => 37269, 37 => 37268, others => 0),
4004 =>
(0 => 1155, 15 => 1155, 34 => 1155, 35 => 1155,
39 => 1155, 40 => 1155, 41 => 1155, 46 => 1155,
56 => 1155, 60 => 1155, 67 => 1155, 68 => 1155,
70 => 1155, 71 => 1155, 72 => 1155, 73 => 1155,
86 => 1155, 91 => 1155, 94 => 1155, 97 => 1155,
99 => 1155, 103 => 1155, others => 0),
4005 =>
(85 => 37270, others => 0),
4006 =>
(46 => 32807, 85 => 37271, 90 => 32868, others => 0),
4007 =>
(0 => 1150, 15 => 1150, 34 => 1150, 35 => 1150,
39 => 1150, 40 => 1150, 41 => 1150, 46 => 1150,
56 => 1150, 60 => 1150, 67 => 1150, 68 => 1150,
70 => 1150, 71 => 1150, 72 => 1150, 73 => 1150,
86 => 1150, 91 => 1150, 94 => 1150, 97 => 1150,
99 => 1150, 103 => 1150, others => 0),
4008 =>
(46 => 32807, 85 => 37273, 90 => 32868, others => 0),
4009 =>
(0 => 1144, 15 => 1144, 34 => 1144, 35 => 1144,
39 => 1144, 40 => 1144, 41 => 1144, 46 => 1144,
56 => 1144, 60 => 1144, 67 => 1144, 68 => 1144,
70 => 1144, 71 => 1144, 72 => 1144, 73 => 1144,
86 => 1144, 91 => 1144, 94 => 1144, 97 => 1144,
99 => 1144, 103 => 1144, others => 0),
4010 =>
(34 => 37275, others => 0),
4011 =>
(0 => 1139, 15 => 1139, 34 => 1139, 35 => 1139,
39 => 1139, 40 => 1139, 41 => 1139, 46 => 1139,
56 => 1139, 60 => 1139, 67 => 1139, 68 => 1139,
70 => 1139, 71 => 1139, 72 => 1139, 73 => 1139,
86 => 1139, 91 => 1139, 94 => 1139, 97 => 1139,
99 => 1139, 103 => 1139, others => 0),
4012 =>
(85 => 37276, others => 0),
4013 =>
(0 => 1011, 15 => 1011, 34 => 1011, 35 => 1011,
39 => 1011, 40 => 1011, 41 => 1011, 46 => 1011,
56 => 1011, 60 => 1011, 67 => 1011, 68 => 1011,
70 => 1011, 71 => 1011, 72 => 1011, 73 => 1011,
86 => 1011, 91 => 1011, 94 => 1011, 97 => 1011,
99 => 1011, 103 => 1011, others => 0),
4014 =>
(85 => 37277, others => 0),
4015 =>
(46 => 32807, 85 => 37278, 90 => 32868, others => 0),
4016 =>
(0 => 1006, 15 => 1006, 34 => 1006, 35 => 1006,
39 => 1006, 40 => 1006, 41 => 1006, 46 => 1006,
56 => 1006, 60 => 1006, 67 => 1006, 68 => 1006,
70 => 1006, 71 => 1006, 72 => 1006, 73 => 1006,
86 => 1006, 91 => 1006, 94 => 1006, 97 => 1006,
99 => 1006, 103 => 1006, others => 0),
4017 =>
(46 => 32807, 85 => 37280, 90 => 32868, others => 0),
4018 =>
(0 => 1000, 15 => 1000, 34 => 1000, 35 => 1000,
39 => 1000, 40 => 1000, 41 => 1000, 46 => 1000,
56 => 1000, 60 => 1000, 67 => 1000, 68 => 1000,
70 => 1000, 71 => 1000, 72 => 1000, 73 => 1000,
86 => 1000, 91 => 1000, 94 => 1000, 97 => 1000,
99 => 1000, 103 => 1000, others => 0),
4019 =>
(34 => 37282, others => 0),
4020 =>
(0 => 995, 15 => 995, 34 => 995, 35 => 995,
39 => 995, 40 => 995, 41 => 995, 46 => 995,
56 => 995, 60 => 995, 67 => 995, 68 => 995,
70 => 995, 71 => 995, 72 => 995, 73 => 995,
86 => 995, 91 => 995, 94 => 995, 97 => 995,
99 => 995, 103 => 995, others => 0),
4021 =>
(85 => 37283, others => 0),
4022 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37284,
103 => 32885, others => 0),
4023 =>
(85 => 37286, 103 => 32885, others => 0),
4024 =>
(46 => 32807, 85 => 37288, 90 => 32868, others => 0),
4025 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4026 =>
(85 => 37291, 103 => 32885, others => 0),
4027 =>
(85 => 37293, 103 => 32885, others => 0),
4028 =>
(15 => 37296, 34 => 37295, others => 0),
4029 =>
(0 => 1249, 15 => 1249, 34 => 1249, 35 => 1249,
39 => 1249, 40 => 1249, 41 => 1249, 46 => 1249,
56 => 1249, 60 => 1249, 67 => 1249, 68 => 1249,
70 => 1249, 71 => 1249, 72 => 1249, 73 => 1249,
86 => 1249, 91 => 1249, 94 => 1249, 97 => 1249,
99 => 1249, 103 => 1249, others => 0),
4030 =>
(15 => 37298, 34 => 37297, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4031 =>
(0 => 1325, 15 => 1325, 34 => 1325, 35 => 1325,
39 => 1325, 40 => 1325, 41 => 1325, 46 => 1325,
56 => 1325, 60 => 1325, 67 => 1325, 68 => 1325,
70 => 1325, 71 => 1325, 72 => 1325, 73 => 1325,
86 => 1325, 91 => 1325, 94 => 1325, 97 => 1325,
99 => 1325, 103 => 1325, others => 0),
4032 =>
(0 => 1327, 15 => 1327, 34 => 1327, 35 => 1327,
39 => 1327, 40 => 1327, 41 => 1327, 46 => 1327,
56 => 1327, 60 => 1327, 67 => 1327, 68 => 1327,
70 => 1327, 71 => 1327, 72 => 1327, 73 => 1327,
86 => 1327, 91 => 1327, 94 => 1327, 97 => 1327,
99 => 1327, 103 => 1327, others => 0),
4033 =>
(0 => 1134, 15 => 1134, 34 => 1134, 35 => 1134,
39 => 1134, 40 => 1134, 41 => 1134, 46 => 1134,
56 => 1134, 60 => 1134, 67 => 1134, 68 => 1134,
70 => 1134, 71 => 1134, 72 => 1134, 73 => 1134,
86 => 1134, 91 => 1134, 94 => 1134, 97 => 1134,
99 => 1134, 103 => 1134, others => 0),
4034 =>
(101 => 33976, others => 0),
4035 =>
(46 => 32807, 85 => 37301, 90 => 32868, others => 0),
4036 =>
(0 => 1321, 15 => 1321, 34 => 1321, 35 => 1321,
39 => 1321, 40 => 1321, 41 => 1321, 46 => 1321,
56 => 1321, 60 => 1321, 67 => 1321, 68 => 1321,
70 => 1321, 71 => 1321, 72 => 1321, 73 => 1321,
86 => 1321, 91 => 1321, 94 => 1321, 97 => 1321,
99 => 1321, 103 => 1321, others => 0),
4037 =>
(0 => 1323, 15 => 1323, 34 => 1323, 35 => 1323,
39 => 1323, 40 => 1323, 41 => 1323, 46 => 1323,
56 => 1323, 60 => 1323, 67 => 1323, 68 => 1323,
70 => 1323, 71 => 1323, 72 => 1323, 73 => 1323,
86 => 1323, 91 => 1323, 94 => 1323, 97 => 1323,
99 => 1323, 103 => 1323, others => 0),
4038 =>
(0 => 1129, 15 => 1129, 34 => 1129, 35 => 1129,
39 => 1129, 40 => 1129, 41 => 1129, 46 => 1129,
56 => 1129, 60 => 1129, 67 => 1129, 68 => 1129,
70 => 1129, 71 => 1129, 72 => 1129, 73 => 1129,
86 => 1129, 91 => 1129, 94 => 1129, 97 => 1129,
99 => 1129, 103 => 1129, others => 0),
4039 =>
(85 => 37303, others => 0),
4040 =>
(34 => 37305, 37 => 37304, others => 0),
4041 =>
(0 => 1123, 15 => 1123, 34 => 1123, 35 => 1123,
39 => 1123, 40 => 1123, 41 => 1123, 46 => 1123,
56 => 1123, 60 => 1123, 67 => 1123, 68 => 1123,
70 => 1123, 71 => 1123, 72 => 1123, 73 => 1123,
86 => 1123, 91 => 1123, 94 => 1123, 97 => 1123,
99 => 1123, 103 => 1123, others => 0),
4042 =>
(85 => 37306, others => 0),
4043 =>
(34 => 37308, 37 => 37307, others => 0),
4044 =>
(46 => 32807, 85 => 37309, 90 => 32868, others => 0),
4045 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4046 =>
(0 => 1255, 15 => 1255, 34 => 1255, 35 => 1255,
39 => 1255, 40 => 1255, 41 => 1255, 46 => 1255,
56 => 1255, 60 => 1255, 67 => 1255, 68 => 1255,
70 => 1255, 71 => 1255, 72 => 1255, 73 => 1255,
86 => 1255, 91 => 1255, 94 => 1255, 97 => 1255,
99 => 1255, 103 => 1255, others => 0),
4047 =>
(0 => 1257, 15 => 1257, 34 => 1257, 35 => 1257,
39 => 1257, 40 => 1257, 41 => 1257, 46 => 1257,
56 => 1257, 60 => 1257, 67 => 1257, 68 => 1257,
70 => 1257, 71 => 1257, 72 => 1257, 73 => 1257,
86 => 1257, 91 => 1257, 94 => 1257, 97 => 1257,
99 => 1257, 103 => 1257, others => 0),
4048 =>
(0 => 966, 15 => 966, 34 => 966, 35 => 966,
39 => 966, 40 => 966, 41 => 966, 46 => 966,
56 => 966, 60 => 966, 67 => 966, 68 => 966,
70 => 966, 71 => 966, 72 => 966, 73 => 966,
86 => 966, 91 => 966, 94 => 966, 97 => 966,
99 => 966, 103 => 966, others => 0),
4049 =>
(101 => 33976, others => 0),
4050 =>
(46 => 32807, 85 => 37313, 90 => 32868, others => 0),
4051 =>
(0 => 1251, 15 => 1251, 34 => 1251, 35 => 1251,
39 => 1251, 40 => 1251, 41 => 1251, 46 => 1251,
56 => 1251, 60 => 1251, 67 => 1251, 68 => 1251,
70 => 1251, 71 => 1251, 72 => 1251, 73 => 1251,
86 => 1251, 91 => 1251, 94 => 1251, 97 => 1251,
99 => 1251, 103 => 1251, others => 0),
4052 =>
(0 => 1253, 15 => 1253, 34 => 1253, 35 => 1253,
39 => 1253, 40 => 1253, 41 => 1253, 46 => 1253,
56 => 1253, 60 => 1253, 67 => 1253, 68 => 1253,
70 => 1253, 71 => 1253, 72 => 1253, 73 => 1253,
86 => 1253, 91 => 1253, 94 => 1253, 97 => 1253,
99 => 1253, 103 => 1253, others => 0),
4053 =>
(0 => 961, 15 => 961, 34 => 961, 35 => 961,
39 => 961, 40 => 961, 41 => 961, 46 => 961,
56 => 961, 60 => 961, 67 => 961, 68 => 961,
70 => 961, 71 => 961, 72 => 961, 73 => 961,
86 => 961, 91 => 961, 94 => 961, 97 => 961,
99 => 961, 103 => 961, others => 0),
4054 =>
(85 => 37315, others => 0),
4055 =>
(34 => 37317, 37 => 37316, others => 0),
4056 =>
(0 => 955, 15 => 955, 34 => 955, 35 => 955,
39 => 955, 40 => 955, 41 => 955, 46 => 955,
56 => 955, 60 => 955, 67 => 955, 68 => 955,
70 => 955, 71 => 955, 72 => 955, 73 => 955,
86 => 955, 91 => 955, 94 => 955, 97 => 955,
99 => 955, 103 => 955, others => 0),
4057 =>
(85 => 37318, others => 0),
4058 =>
(34 => 37320, 37 => 37319, others => 0),
4059 =>
(46 => 32807, 85 => 37321, 90 => 32868, others => 0),
4060 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4061 =>
(15 => 35304, 34 => 35303, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4062 =>
(51 => 35309, others => 0),
4063 =>
(61 => 37324, others => 0),
4064 =>
(51 => 37325, 103 => 32885, others => 0),
4065 =>
(51 => 37327, 103 => 32885, others => 0),
4066 =>
(15 => 35353, 34 => 35352, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4067 =>
(51 => 35357, others => 0),
4068 =>
(51 => 37329, 103 => 32885, others => 0),
4069 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37331,
90 => 32868, others => 0),
4070 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4071 =>
(15 => 35599, 34 => 35598, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4072 =>
(51 => 35604, others => 0),
4073 =>
(15 => 35608, 34 => 35607, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4074 =>
(51 => 35613, others => 0),
4075 =>
(9 => 33243, 64 => 33242, 83 => 1667, 85 => 1667,
104 => 33241, others => 0),
4076 =>
(9 => 33243, 64 => 33242, 83 => 1659, 85 => 1659,
104 => 33241, others => 0),
4077 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
4078 =>
(9 => 33243, 64 => 33242, 83 => 1655, 85 => 1655,
104 => 33241, others => 0),
4079 =>
(0 => 1882, 15 => 1882, 34 => 1882, 35 => 1882,
39 => 1882, 40 => 1882, 41 => 1882, 46 => 1882,
56 => 1882, 60 => 1882, 67 => 1882, 68 => 1882,
70 => 1882, 71 => 1882, 72 => 1882, 73 => 1882,
86 => 1882, 91 => 1882, 94 => 1882, 97 => 1882,
99 => 1882, 103 => 1882, others => 0),
4080 =>
(29 => 32865, 85 => 37336, others => 0),
4081 =>
(46 => 32807, 85 => 37337, others => 0),
4082 =>
(0 => 1877, 15 => 1877, 34 => 1877, 35 => 1877,
39 => 1877, 40 => 1877, 41 => 1877, 46 => 1877,
56 => 1877, 60 => 1877, 67 => 1877, 68 => 1877,
70 => 1877, 71 => 1877, 72 => 1877, 73 => 1877,
86 => 1877, 91 => 1877, 94 => 1877, 97 => 1877,
99 => 1877, 103 => 1877, others => 0),
4083 =>
(46 => 32807, 85 => 37339, others => 0),
4084 =>
(0 => 1871, 15 => 1871, 34 => 1871, 35 => 1871,
39 => 1871, 40 => 1871, 41 => 1871, 46 => 1871,
56 => 1871, 60 => 1871, 67 => 1871, 68 => 1871,
70 => 1871, 71 => 1871, 72 => 1871, 73 => 1871,
86 => 1871, 91 => 1871, 94 => 1871, 97 => 1871,
99 => 1871, 103 => 1871, others => 0),
4085 =>
(34 => 37341, others => 0),
4086 =>
(0 => 1866, 15 => 1866, 34 => 1866, 35 => 1866,
39 => 1866, 40 => 1866, 41 => 1866, 46 => 1866,
56 => 1866, 60 => 1866, 67 => 1866, 68 => 1866,
70 => 1866, 71 => 1866, 72 => 1866, 73 => 1866,
86 => 1866, 91 => 1866, 94 => 1866, 97 => 1866,
99 => 1866, 103 => 1866, others => 0),
4087 =>
(29 => 32865, 85 => 37342, others => 0),
4088 =>
(15 => 1738, 34 => 1738, 39 => 1738, 40 => 1738,
41 => 1738, 46 => 1738, 60 => 1738, 67 => 1738,
68 => 1738, 70 => 1738, 71 => 1738, 72 => 1738,
73 => 1738, 91 => 1738, 94 => 1738, 97 => 1738,
99 => 1738, others => 0),
4089 =>
(85 => 37343, others => 0),
4090 =>
(85 => 37344, 103 => 32885, others => 0),
4091 =>
(12 => 37346, others => 0),
4092 =>
(18 => 37347, others => 0),
4093 =>
(34 => 2229, 101 => 2229, others => 0),
4094 =>
(34 => 37348, 101 => 36290, others => 0),
4095 =>
(9 => 33243, 64 => 33242, 85 => 37350, 103 => 32885,
104 => 33241, others => 0),
4096 =>
(18 => 205, 34 => 205, 35 => 205, 39 => 205,
40 => 205, 46 => 205, 60 => 205, 67 => 205,
70 => 205, 72 => 205, 101 => 205, others => 0),
4097 =>
(46 => 32838, others => 0),
4098 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37353,
90 => 32868, others => 0),
4099 =>
(46 => 32838, others => 0),
4100 =>
(83 => 37357, others => 0),
4101 =>
(61 => 37358, others => 0),
4102 =>
(85 => 96, 103 => 96, others => 0),
4103 =>
(85 => 84, 103 => 84, others => 0),
4104 =>
(83 => 37359, others => 0),
4105 =>
(15 => 1741, 34 => 1741, 39 => 1741, 40 => 1741,
41 => 1741, 46 => 1741, 60 => 1741, 67 => 1741,
68 => 1741, 70 => 1741, 71 => 1741, 72 => 1741,
73 => 1741, 91 => 1741, 94 => 1741, 97 => 1741,
99 => 1741, others => 0),
4106 =>
(15 => 724, 34 => 724, 39 => 724, 40 => 724,
41 => 724, 46 => 724, 60 => 724, 67 => 724,
68 => 724, 70 => 724, 71 => 724, 72 => 724,
73 => 724, 91 => 724, 94 => 724, 97 => 724,
99 => 724, others => 0),
4107 =>
(15 => 1740, 34 => 1740, 39 => 1740, 40 => 1740,
41 => 1740, 46 => 1740, 60 => 1740, 67 => 1740,
68 => 1740, 70 => 1740, 71 => 1740, 72 => 1740,
73 => 1740, 91 => 1740, 94 => 1740, 97 => 1740,
99 => 1740, others => 0),
4108 =>
(85 => 37360, others => 0),
4109 =>
(15 => 723, 34 => 723, 39 => 723, 40 => 723,
41 => 723, 46 => 723, 60 => 723, 67 => 723,
68 => 723, 70 => 723, 71 => 723, 72 => 723,
73 => 723, 91 => 723, 94 => 723, 97 => 723,
99 => 723, others => 0),
4110 =>
(85 => 37361, others => 0),
4111 =>
(15 => 1734, 34 => 1734, 39 => 1734, 40 => 1734,
41 => 1734, 46 => 1734, 60 => 1734, 67 => 1734,
68 => 1734, 70 => 1734, 71 => 1734, 72 => 1734,
73 => 1734, 91 => 1734, 94 => 1734, 97 => 1734,
99 => 1734, others => 0),
4112 =>
(85 => 37362, others => 0),
4113 =>
(15 => 719, 34 => 719, 39 => 719, 40 => 719,
41 => 719, 46 => 719, 60 => 719, 67 => 719,
68 => 719, 70 => 719, 71 => 719, 72 => 719,
73 => 719, 91 => 719, 94 => 719, 97 => 719,
99 => 719, others => 0),
4114 =>
(85 => 37363, others => 0),
4115 =>
(85 => 37364, 103 => 32885, others => 0),
4116 =>
(85 => 37366, 103 => 32885, others => 0),
4117 =>
(8 => 33263, 31 => 33262, 45 => 33258, 58 => 33253,
69 => 33251, 77 => 33250, 85 => 2029, 87 => 33249,
89 => 33248, 103 => 2029, others => 0),
4118 =>
(85 => 73, 103 => 73, others => 0),
4119 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4120 =>
(80 => 37369, others => 0),
4121 =>
(85 => 91, 103 => 91, others => 0),
4122 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37370,
90 => 32868, others => 0),
4123 =>
(15 => 1755, 34 => 1755, 39 => 1755, 40 => 1755,
41 => 1755, 46 => 1755, 60 => 1755, 67 => 1755,
68 => 1755, 70 => 1755, 71 => 1755, 72 => 1755,
73 => 1755, 91 => 1755, 94 => 1755, 97 => 1755,
99 => 1755, others => 0),
4124 =>
(85 => 37373, 103 => 32885, others => 0),
4125 =>
(71 => 37375, others => 0),
4126 =>
(15 => 1730, 34 => 1730, 39 => 1730, 40 => 1730,
41 => 1730, 46 => 1730, 60 => 1730, 67 => 1730,
68 => 1730, 70 => 1730, 71 => 1730, 72 => 1730,
73 => 1730, 91 => 1730, 94 => 1730, 97 => 1730,
99 => 1730, others => 0),
4127 =>
(85 => 37376, others => 0),
4128 =>
(15 => 713, 34 => 713, 39 => 713, 40 => 713,
41 => 713, 46 => 713, 60 => 713, 67 => 713,
68 => 713, 70 => 713, 71 => 713, 72 => 713,
73 => 713, 91 => 713, 94 => 713, 97 => 713,
99 => 713, others => 0),
4129 =>
(85 => 37377, others => 0),
4130 =>
(85 => 37378, 103 => 32885, others => 0),
4131 =>
(85 => 37380, 103 => 32885, others => 0),
4132 =>
(85 => 37382, 103 => 32885, others => 0),
4133 =>
(85 => 37384, 103 => 32885, others => 0),
4134 =>
(61 => 33843, 71 => 37386, 76 => 33840, others => 0),
4135 =>
(15 => 708, 34 => 708, 39 => 708, 40 => 708,
41 => 708, 46 => 708, 60 => 708, 67 => 708,
68 => 708, 70 => 708, 71 => 708, 72 => 708,
73 => 708, 91 => 708, 94 => 708, 97 => 708,
99 => 708, others => 0),
4136 =>
(15 => 1747, 34 => 1747, 39 => 1747, 40 => 1747,
41 => 1747, 46 => 1747, 60 => 1747, 67 => 1747,
68 => 1747, 70 => 1747, 71 => 1747, 72 => 1747,
73 => 1747, 91 => 1747, 94 => 1747, 97 => 1747,
99 => 1747, others => 0),
4137 =>
(85 => 37388, 103 => 32885, others => 0),
4138 =>
(71 => 37390, others => 0),
4139 =>
(15 => 1718, 34 => 1718, 39 => 1718, 40 => 1718,
41 => 1718, 46 => 1718, 60 => 1718, 67 => 1718,
68 => 1718, 70 => 1718, 71 => 1718, 72 => 1718,
73 => 1718, 91 => 1718, 94 => 1718, 97 => 1718,
99 => 1718, others => 0),
4140 =>
(85 => 37391, others => 0),
4141 =>
(15 => 701, 34 => 701, 39 => 701, 40 => 701,
41 => 701, 46 => 701, 60 => 701, 67 => 701,
68 => 701, 70 => 701, 71 => 701, 72 => 701,
73 => 701, 91 => 701, 94 => 701, 97 => 701,
99 => 701, others => 0),
4142 =>
(85 => 37392, others => 0),
4143 =>
(85 => 37393, 103 => 32885, others => 0),
4144 =>
(85 => 37395, 103 => 32885, others => 0),
4145 =>
(85 => 37397, 103 => 32885, others => 0),
4146 =>
(85 => 37399, 103 => 32885, others => 0),
4147 =>
(61 => 33843, 71 => 37401, 76 => 33840, others => 0),
4148 =>
(15 => 696, 34 => 696, 39 => 696, 40 => 696,
41 => 696, 46 => 696, 60 => 696, 67 => 696,
68 => 696, 70 => 696, 71 => 696, 72 => 696,
73 => 696, 91 => 696, 94 => 696, 97 => 696,
99 => 696, others => 0),
4149 =>
(15 => 1745, 34 => 1745, 39 => 1745, 40 => 1745,
41 => 1745, 46 => 1745, 60 => 1745, 67 => 1745,
68 => 1745, 70 => 1745, 71 => 1745, 72 => 1745,
73 => 1745, 91 => 1745, 94 => 1745, 97 => 1745,
99 => 1745, others => 0),
4150 =>
(15 => 1744, 34 => 1744, 39 => 1744, 40 => 1744,
41 => 1744, 46 => 1744, 60 => 1744, 67 => 1744,
68 => 1744, 70 => 1744, 71 => 1744, 72 => 1744,
73 => 1744, 91 => 1744, 94 => 1744, 97 => 1744,
99 => 1744, others => 0),
4151 =>
(85 => 37403, others => 0),
4152 =>
(71 => 37404, others => 0),
4153 =>
(9 => 34179, 103 => 37405, others => 0),
4154 =>
(85 => 37406, 103 => 32885, others => 0),
4155 =>
(85 => 37408, 103 => 32885, others => 0),
4156 =>
(61 => 33843, 71 => 37410, 76 => 33840, others => 0),
4157 =>
(15 => 690, 34 => 690, 39 => 690, 40 => 690,
41 => 690, 46 => 690, 60 => 690, 67 => 690,
68 => 690, 70 => 690, 71 => 690, 72 => 690,
73 => 690, 91 => 690, 94 => 690, 97 => 690,
99 => 690, others => 0),
4158 =>
(19 => 32869, 46 => 32807, 61 => 33843, 71 => 37412,
76 => 33840, 90 => 32868, others => 0),
4159 =>
(15 => 685, 34 => 685, 39 => 685, 40 => 685,
41 => 685, 46 => 685, 60 => 685, 67 => 685,
68 => 685, 70 => 685, 71 => 685, 72 => 685,
73 => 685, 91 => 685, 94 => 685, 97 => 685,
99 => 685, others => 0),
4160 =>
(9 => 34179, 103 => 37414, others => 0),
4161 =>
(85 => 37415, others => 0),
4162 =>
(15 => 2182, 34 => 2182, 39 => 2182, 40 => 2182,
41 => 2182, 46 => 2182, 60 => 2182, 67 => 2182,
68 => 2182, 70 => 2182, 71 => 2182, 72 => 2182,
73 => 2182, 91 => 2182, 94 => 2182, 97 => 2182,
99 => 2182, others => 0),
4163 =>
(85 => 37416, others => 0),
4164 =>
(85 => 37417, others => 0),
4165 =>
(34 => 33882, 35 => 33881, 39 => 32961, 60 => 33879,
67 => 33878, 70 => 32775, 71 => 33877, others => 0),
4166 =>
(46 => 37420, 85 => 37419, others => 0),
4167 =>
(0 => 2153, 15 => 2153, 34 => 2153, 39 => 2153,
40 => 2153, 41 => 2153, 46 => 2153, 56 => 2153,
60 => 2153, 67 => 2153, 68 => 2153, 70 => 2153,
71 => 2153, 72 => 2153, 73 => 2153, 86 => 2153,
91 => 2153, 94 => 2153, 97 => 2153, 99 => 2153,
103 => 2153, others => 0),
4168 =>
(34 => 37421, others => 0),
4169 =>
(0 => 2150, 15 => 2150, 34 => 2150, 39 => 2150,
40 => 2150, 41 => 2150, 46 => 2150, 56 => 2150,
60 => 2150, 67 => 2150, 68 => 2150, 70 => 2150,
71 => 2150, 72 => 2150, 73 => 2150, 86 => 2150,
91 => 2150, 94 => 2150, 97 => 2150, 99 => 2150,
103 => 2150, others => 0),
4170 =>
(85 => 37422, others => 0),
4171 =>
(34 => 37423, others => 0),
4172 =>
(0 => 2146, 15 => 2146, 34 => 2146, 39 => 2146,
40 => 2146, 41 => 2146, 46 => 2146, 56 => 2146,
60 => 2146, 67 => 2146, 68 => 2146, 70 => 2146,
71 => 2146, 72 => 2146, 73 => 2146, 86 => 2146,
91 => 2146, 94 => 2146, 97 => 2146, 99 => 2146,
103 => 2146, others => 0),
4173 =>
(85 => 37424, others => 0),
4174 =>
(101 => 33976, others => 0),
4175 =>
(46 => 37427, 85 => 37426, others => 0),
4176 =>
(53 => 37429, 85 => 37428, 103 => 32885, others => 0),
4177 =>
(85 => 37431, 103 => 32885, others => 0),
4178 =>
(83 => 37433, others => 0),
4179 =>
(83 => 37434, others => 0),
4180 =>
(34 => 331, 35 => 331, 39 => 331, 40 => 331,
46 => 331, 60 => 331, 67 => 331, 70 => 331,
71 => 331, 72 => 331, others => 0),
4181 =>
(34 => 344, 35 => 344, 39 => 344, 40 => 344,
46 => 344, 60 => 344, 67 => 344, 70 => 344,
71 => 344, 72 => 344, others => 0),
4182 =>
(46 => 32838, others => 0),
4183 =>
(85 => 37436, others => 0),
4184 =>
(34 => 346, 35 => 346, 39 => 346, 40 => 346,
46 => 346, 60 => 346, 67 => 346, 70 => 346,
71 => 346, 72 => 346, others => 0),
4185 =>
(85 => 37437, others => 0),
4186 =>
(15 => 2118, 34 => 2118, 39 => 2118, 40 => 2118,
41 => 2118, 46 => 2118, 60 => 2118, 67 => 2118,
68 => 2118, 70 => 2118, 71 => 2118, 72 => 2118,
73 => 2118, 91 => 2118, 94 => 2118, 97 => 2118,
99 => 2118, others => 0),
4187 =>
(15 => 2014, 34 => 2014, 39 => 2014, 40 => 2014,
41 => 2014, 46 => 2014, 60 => 2014, 67 => 2014,
68 => 2014, 70 => 2014, 71 => 2014, 72 => 2014,
73 => 2014, 91 => 2014, 94 => 2014, 97 => 2014,
99 => 2014, others => 0),
4188 =>
(85 => 37438, others => 0),
4189 =>
(85 => 37439, others => 0),
4190 =>
(34 => 33902, 35 => 33881, 39 => 32961, 40 => 33901,
60 => 33899, 67 => 33898, 70 => 32775, 71 => 33897,
72 => 33896, others => 0),
4191 =>
(3 => 32964, 15 => 33640, 34 => 33639, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 60 => 32778,
61 => 32959, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 33637, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
4192 =>
(15 => 37441, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
4193 =>
(48 => 37443, others => 0),
4194 =>
(53 => 37445, 101 => 37444, others => 0),
4195 =>
(101 => 37446, others => 0),
4196 =>
(0 => 1968, 15 => 1968, 34 => 1968, 39 => 1968,
40 => 1968, 41 => 1968, 46 => 1968, 56 => 1968,
60 => 1968, 67 => 1968, 68 => 1968, 70 => 1968,
71 => 1968, 72 => 1968, 73 => 1968, 86 => 1968,
91 => 1968, 94 => 1968, 97 => 1968, 99 => 1968,
103 => 1968, others => 0),
4197 =>
(15 => 2114, 34 => 2114, 39 => 2114, 40 => 2114,
41 => 2114, 46 => 2114, 60 => 2114, 67 => 2114,
68 => 2114, 70 => 2114, 71 => 2114, 72 => 2114,
73 => 2114, 91 => 2114, 94 => 2114, 97 => 2114,
99 => 2114, others => 0),
4198 =>
(83 => 610, others => 0),
4199 =>
(76 => 37447, others => 0),
4200 =>
(19 => 32869, 34 => 37448, 46 => 32807, 70 => 32775,
90 => 32868, others => 0),
4201 =>
(85 => 37449, others => 0),
4202 =>
(1 => 1540, 4 => 1540, 15 => 1540, 18 => 1540,
19 => 1540, 24 => 1540, 25 => 1540, 32 => 1540,
33 => 1540, 34 => 1540, 37 => 1540, 38 => 1540,
39 => 1540, 42 => 1540, 46 => 1540, 47 => 1540,
52 => 1540, 57 => 1540, 61 => 1540, 64 => 1540,
70 => 1540, 74 => 1540, 79 => 1540, 80 => 1540,
84 => 1540, 90 => 1540, 96 => 1540, 101 => 1540,
102 => 1540, others => 0),
4203 =>
(1 => 2078, 4 => 2078, 15 => 2078, 18 => 2078,
19 => 2078, 24 => 2078, 25 => 2078, 32 => 2078,
33 => 2078, 34 => 2078, 37 => 2078, 38 => 2078,
39 => 2078, 42 => 2078, 46 => 2078, 47 => 2078,
52 => 2078, 57 => 2078, 61 => 2078, 64 => 2078,
70 => 2078, 74 => 2078, 79 => 2078, 80 => 2078,
84 => 2078, 90 => 2078, 96 => 2078, 101 => 2078,
102 => 2078, others => 0),
4204 =>
(84 => 37450, others => 0),
4205 =>
(85 => 37451, others => 0),
4206 =>
(34 => 37452, others => 0),
4207 =>
(1 => 121, 4 => 121, 15 => 121, 18 => 121,
19 => 121, 24 => 121, 25 => 121, 32 => 121,
33 => 121, 34 => 121, 37 => 121, 38 => 121,
39 => 121, 42 => 121, 46 => 121, 47 => 121,
52 => 121, 57 => 121, 61 => 121, 64 => 121,
70 => 121, 74 => 121, 79 => 121, 80 => 121,
84 => 121, 90 => 121, 96 => 121, 101 => 121,
102 => 121, others => 0),
4208 =>
(32 => 2069, 34 => 2069, 64 => 2069, others => 0),
4209 =>
(1 => 2079, 4 => 2079, 15 => 2079, 18 => 2079,
19 => 2079, 24 => 2079, 25 => 2079, 32 => 2079,
33 => 2079, 34 => 2079, 37 => 2079, 38 => 2079,
39 => 2079, 42 => 2079, 46 => 2079, 47 => 2079,
52 => 2079, 57 => 2079, 61 => 2079, 64 => 2079,
70 => 2079, 74 => 2079, 79 => 2079, 80 => 2079,
84 => 2079, 90 => 2079, 96 => 2079, 101 => 2079,
102 => 2079, others => 0),
4210 =>
(9 => 33243, 28 => 381, 64 => 33242, 85 => 381,
104 => 33241, others => 0),
4211 =>
(85 => 37453, others => 0),
4212 =>
(32 => 289, 33 => 289, 34 => 289, others => 0),
4213 =>
(85 => 37454, others => 0),
4214 =>
(1 => 1483, 4 => 1483, 15 => 1483, 18 => 1483,
19 => 1483, 24 => 1483, 25 => 1483, 32 => 1483,
33 => 1483, 34 => 1483, 37 => 1483, 38 => 1483,
39 => 1483, 42 => 1483, 46 => 1483, 47 => 1483,
52 => 1483, 57 => 1483, 61 => 1483, 64 => 1483,
70 => 1483, 74 => 1483, 79 => 1483, 80 => 1483,
84 => 1483, 90 => 1483, 96 => 1483, 101 => 1483,
102 => 1483, others => 0),
4215 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4216 =>
(47 => 37456, others => 0),
4217 =>
(1 => 1544, 4 => 1544, 15 => 1544, 18 => 1544,
19 => 1544, 24 => 1544, 25 => 1544, 32 => 1544,
33 => 1544, 34 => 1544, 37 => 1544, 38 => 1544,
39 => 1544, 42 => 1544, 46 => 1544, 47 => 1544,
52 => 1544, 57 => 1544, 61 => 1544, 64 => 1544,
70 => 1544, 74 => 1544, 79 => 1544, 80 => 1544,
84 => 1544, 90 => 1544, 96 => 1544, 101 => 1544,
102 => 1544, others => 0),
4218 =>
(1 => 1542, 4 => 1542, 15 => 1542, 18 => 1542,
19 => 1542, 24 => 1542, 25 => 1542, 32 => 1542,
33 => 1542, 34 => 1542, 37 => 1542, 38 => 1542,
39 => 1542, 42 => 1542, 46 => 1542, 47 => 1542,
52 => 1542, 57 => 1542, 61 => 1542, 64 => 1542,
70 => 1542, 74 => 1542, 79 => 1542, 80 => 1542,
84 => 1542, 90 => 1542, 96 => 1542, 101 => 1542,
102 => 1542, others => 0),
4219 =>
(1 => 167, 4 => 167, 15 => 167, 18 => 167,
19 => 167, 24 => 167, 25 => 167, 32 => 167,
33 => 167, 34 => 167, 37 => 167, 38 => 167,
39 => 167, 42 => 167, 46 => 167, 47 => 167,
52 => 167, 57 => 167, 61 => 167, 64 => 167,
70 => 167, 74 => 167, 79 => 167, 80 => 167,
84 => 167, 90 => 167, 96 => 167, 101 => 167,
102 => 167, others => 0),
4220 =>
(1 => 164, 4 => 164, 15 => 164, 18 => 164,
19 => 164, 24 => 164, 25 => 164, 32 => 164,
33 => 164, 34 => 164, 37 => 164, 38 => 164,
39 => 164, 42 => 164, 46 => 164, 47 => 164,
52 => 164, 57 => 164, 61 => 164, 64 => 164,
70 => 164, 74 => 164, 79 => 164, 80 => 164,
84 => 164, 90 => 164, 96 => 164, 101 => 164,
102 => 164, others => 0),
4221 =>
(85 => 37457, others => 0),
4222 =>
(1 => 185, 4 => 185, 15 => 185, 18 => 185,
19 => 185, 24 => 185, 25 => 185, 32 => 185,
33 => 185, 34 => 185, 37 => 185, 38 => 185,
39 => 185, 42 => 185, 46 => 185, 47 => 185,
52 => 185, 57 => 185, 61 => 185, 64 => 185,
70 => 185, 74 => 185, 79 => 185, 80 => 185,
84 => 185, 90 => 185, 96 => 185, 101 => 185,
102 => 185, others => 0),
4223 =>
(28 => 37459, 85 => 37458, others => 0),
4224 =>
(101 => 33976, others => 0),
4225 =>
(46 => 37462, 85 => 37461, others => 0),
4226 =>
(101 => 33976, others => 0),
4227 =>
(46 => 37465, 85 => 37464, others => 0),
4228 =>
(1 => 25, 4 => 25, 15 => 25, 18 => 25,
19 => 25, 24 => 25, 25 => 25, 32 => 25,
33 => 25, 34 => 25, 37 => 25, 38 => 25,
39 => 25, 42 => 25, 46 => 25, 47 => 25,
52 => 25, 57 => 25, 61 => 25, 64 => 25,
70 => 25, 74 => 25, 79 => 25, 80 => 25,
84 => 25, 90 => 25, 96 => 25, 101 => 25,
102 => 25, others => 0),
4229 =>
(85 => 37466, others => 0),
4230 =>
(46 => 37468, 85 => 37467, others => 0),
4231 =>
(1 => 1538, 4 => 1538, 15 => 1538, 18 => 1538,
19 => 1538, 24 => 1538, 25 => 1538, 32 => 1538,
33 => 1538, 34 => 1538, 37 => 1538, 38 => 1538,
39 => 1538, 42 => 1538, 46 => 1538, 47 => 1538,
52 => 1538, 57 => 1538, 61 => 1538, 64 => 1538,
70 => 1538, 74 => 1538, 79 => 1538, 80 => 1538,
84 => 1538, 90 => 1538, 96 => 1538, 101 => 1538,
102 => 1538, others => 0),
4232 =>
(46 => 37470, 85 => 37469, others => 0),
4233 =>
(46 => 37472, 85 => 37471, others => 0),
4234 =>
(46 => 37474, 85 => 37473, others => 0),
4235 =>
(1 => 157, 4 => 157, 15 => 157, 18 => 157,
19 => 157, 24 => 157, 25 => 157, 32 => 157,
33 => 157, 34 => 157, 37 => 157, 38 => 157,
39 => 157, 42 => 157, 46 => 157, 47 => 157,
52 => 157, 57 => 157, 61 => 157, 64 => 157,
70 => 157, 74 => 157, 79 => 157, 80 => 157,
84 => 157, 90 => 157, 96 => 157, 101 => 157,
102 => 157, others => 0),
4236 =>
(34 => 37475, others => 0),
4237 =>
(1 => 154, 4 => 154, 15 => 154, 18 => 154,
19 => 154, 24 => 154, 25 => 154, 32 => 154,
33 => 154, 34 => 154, 37 => 154, 38 => 154,
39 => 154, 42 => 154, 46 => 154, 47 => 154,
52 => 154, 57 => 154, 61 => 154, 64 => 154,
70 => 154, 74 => 154, 79 => 154, 80 => 154,
84 => 154, 90 => 154, 96 => 154, 101 => 154,
102 => 154, others => 0),
4238 =>
(85 => 37476, others => 0),
4239 =>
(1 => 160, 4 => 160, 15 => 160, 18 => 160,
19 => 160, 24 => 160, 25 => 160, 32 => 160,
33 => 160, 34 => 160, 37 => 160, 38 => 160,
39 => 160, 42 => 160, 46 => 160, 47 => 160,
52 => 160, 57 => 160, 61 => 160, 64 => 160,
70 => 160, 74 => 160, 79 => 160, 80 => 160,
84 => 160, 90 => 160, 96 => 160, 101 => 160,
102 => 160, others => 0),
4240 =>
(85 => 37477, others => 0),
4241 =>
(34 => 363, 101 => 363, others => 0),
4242 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4243 =>
(15 => 1590, 34 => 1590, 39 => 1590, 40 => 1590,
41 => 1590, 46 => 1590, 60 => 1590, 67 => 1590,
68 => 1590, 70 => 1590, 71 => 1590, 72 => 1590,
73 => 1590, 91 => 1590, 94 => 1590, 97 => 1590,
99 => 1590, others => 0),
4244 =>
(13 => 223, 85 => 223, 103 => 223, others => 0),
4245 =>
(13 => 2197, 85 => 2197, 103 => 2197, others => 0),
4246 =>
(15 => 1568, 34 => 1568, 39 => 1568, 40 => 1568,
41 => 1568, 46 => 1568, 60 => 1568, 67 => 1568,
68 => 1568, 70 => 1568, 71 => 1568, 72 => 1568,
73 => 1568, 91 => 1568, 94 => 1568, 97 => 1568,
99 => 1568, others => 0),
4247 =>
(0 => 1887, 15 => 1887, 34 => 1887, 35 => 1887,
39 => 1887, 40 => 1887, 41 => 1887, 46 => 1887,
56 => 1887, 60 => 1887, 67 => 1887, 68 => 1887,
70 => 1887, 71 => 1887, 72 => 1887, 73 => 1887,
86 => 1887, 91 => 1887, 94 => 1887, 97 => 1887,
99 => 1887, 103 => 1887, others => 0),
4248 =>
(3 => 37074, 53 => 32938, 86 => 37071, others => 0),
4249 =>
(85 => 37077, others => 0),
4250 =>
(51 => 37479, 78 => 37167, 85 => 37166, 103 => 32885,
others => 0),
4251 =>
(9 => 33243, 32 => 287, 33 => 287, 64 => 33242,
83 => 287, 104 => 33241, others => 0),
4252 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
4253 =>
(0 => 1611, 15 => 1611, 34 => 1611, 39 => 1611,
40 => 1611, 41 => 1611, 46 => 1611, 56 => 1611,
60 => 1611, 67 => 1611, 68 => 1611, 70 => 1611,
71 => 1611, 72 => 1611, 73 => 1611, 86 => 1611,
91 => 1611, 94 => 1611, 97 => 1611, 99 => 1611,
103 => 1611, others => 0),
4254 =>
(0 => 1605, 15 => 1605, 34 => 1605, 39 => 1605,
40 => 1605, 41 => 1605, 46 => 1605, 56 => 1605,
60 => 1605, 67 => 1605, 68 => 1605, 70 => 1605,
71 => 1605, 72 => 1605, 73 => 1605, 86 => 1605,
91 => 1605, 94 => 1605, 97 => 1605, 99 => 1605,
103 => 1605, others => 0),
4255 =>
(0 => 1600, 15 => 1600, 34 => 1600, 39 => 1600,
40 => 1600, 41 => 1600, 46 => 1600, 56 => 1600,
60 => 1600, 67 => 1600, 68 => 1600, 70 => 1600,
71 => 1600, 72 => 1600, 73 => 1600, 86 => 1600,
91 => 1600, 94 => 1600, 97 => 1600, 99 => 1600,
103 => 1600, others => 0),
4256 =>
(29 => 32865, 85 => 37482, others => 0),
4257 =>
(46 => 32807, 85 => 37483, others => 0),
4258 =>
(0 => 1835, 15 => 1835, 34 => 1835, 35 => 1835,
39 => 1835, 40 => 1835, 41 => 1835, 46 => 1835,
56 => 1835, 60 => 1835, 67 => 1835, 68 => 1835,
70 => 1835, 71 => 1835, 72 => 1835, 73 => 1835,
86 => 1835, 91 => 1835, 94 => 1835, 97 => 1835,
99 => 1835, 103 => 1835, others => 0),
4259 =>
(34 => 37485, others => 0),
4260 =>
(0 => 1830, 15 => 1830, 34 => 1830, 35 => 1830,
39 => 1830, 40 => 1830, 41 => 1830, 46 => 1830,
56 => 1830, 60 => 1830, 67 => 1830, 68 => 1830,
70 => 1830, 71 => 1830, 72 => 1830, 73 => 1830,
86 => 1830, 91 => 1830, 94 => 1830, 97 => 1830,
99 => 1830, 103 => 1830, others => 0),
4261 =>
(29 => 32865, 85 => 37486, others => 0),
4262 =>
(34 => 37487, others => 0),
4263 =>
(0 => 1824, 15 => 1824, 34 => 1824, 35 => 1824,
39 => 1824, 40 => 1824, 41 => 1824, 46 => 1824,
56 => 1824, 60 => 1824, 67 => 1824, 68 => 1824,
70 => 1824, 71 => 1824, 72 => 1824, 73 => 1824,
86 => 1824, 91 => 1824, 94 => 1824, 97 => 1824,
99 => 1824, 103 => 1824, others => 0),
4264 =>
(29 => 32865, 85 => 37488, others => 0),
4265 =>
(0 => 1819, 15 => 1819, 34 => 1819, 35 => 1819,
39 => 1819, 40 => 1819, 41 => 1819, 46 => 1819,
56 => 1819, 60 => 1819, 67 => 1819, 68 => 1819,
70 => 1819, 71 => 1819, 72 => 1819, 73 => 1819,
86 => 1819, 91 => 1819, 94 => 1819, 97 => 1819,
99 => 1819, 103 => 1819, others => 0),
4266 =>
(101 => 33976, others => 0),
4267 =>
(46 => 32807, 85 => 37490, others => 0),
4268 =>
(0 => 1851, 15 => 1851, 34 => 1851, 35 => 1851,
39 => 1851, 40 => 1851, 41 => 1851, 46 => 1851,
56 => 1851, 60 => 1851, 67 => 1851, 68 => 1851,
70 => 1851, 71 => 1851, 72 => 1851, 73 => 1851,
86 => 1851, 91 => 1851, 94 => 1851, 97 => 1851,
99 => 1851, 103 => 1851, others => 0),
4269 =>
(0 => 1845, 15 => 1845, 34 => 1845, 35 => 1845,
39 => 1845, 40 => 1845, 41 => 1845, 46 => 1845,
56 => 1845, 60 => 1845, 67 => 1845, 68 => 1845,
70 => 1845, 71 => 1845, 72 => 1845, 73 => 1845,
86 => 1845, 91 => 1845, 94 => 1845, 97 => 1845,
99 => 1845, 103 => 1845, others => 0),
4270 =>
(0 => 1840, 15 => 1840, 34 => 1840, 35 => 1840,
39 => 1840, 40 => 1840, 41 => 1840, 46 => 1840,
56 => 1840, 60 => 1840, 67 => 1840, 68 => 1840,
70 => 1840, 71 => 1840, 72 => 1840, 73 => 1840,
86 => 1840, 91 => 1840, 94 => 1840, 97 => 1840,
99 => 1840, 103 => 1840, others => 0),
4271 =>
(29 => 32865, 85 => 37492, others => 0),
4272 =>
(34 => 37493, others => 0),
4273 =>
(0 => 893, 15 => 893, 34 => 893, 35 => 893,
39 => 893, 40 => 893, 41 => 893, 46 => 893,
56 => 893, 60 => 893, 67 => 893, 68 => 893,
70 => 893, 71 => 893, 72 => 893, 73 => 893,
86 => 893, 91 => 893, 94 => 893, 97 => 893,
99 => 893, 103 => 893, others => 0),
4274 =>
(85 => 37494, others => 0),
4275 =>
(0 => 888, 15 => 888, 34 => 888, 35 => 888,
39 => 888, 40 => 888, 41 => 888, 46 => 888,
56 => 888, 60 => 888, 67 => 888, 68 => 888,
70 => 888, 71 => 888, 72 => 888, 73 => 888,
86 => 888, 91 => 888, 94 => 888, 97 => 888,
99 => 888, 103 => 888, others => 0),
4276 =>
(101 => 33976, others => 0),
4277 =>
(46 => 32807, 85 => 37496, 90 => 32868, others => 0),
4278 =>
(0 => 882, 15 => 882, 34 => 882, 35 => 882,
39 => 882, 40 => 882, 41 => 882, 46 => 882,
56 => 882, 60 => 882, 67 => 882, 68 => 882,
70 => 882, 71 => 882, 72 => 882, 73 => 882,
86 => 882, 91 => 882, 94 => 882, 97 => 882,
99 => 882, 103 => 882, others => 0),
4279 =>
(101 => 33976, others => 0),
4280 =>
(46 => 32807, 85 => 37499, 90 => 32868, others => 0),
4281 =>
(0 => 877, 15 => 877, 34 => 877, 35 => 877,
39 => 877, 40 => 877, 41 => 877, 46 => 877,
56 => 877, 60 => 877, 67 => 877, 68 => 877,
70 => 877, 71 => 877, 72 => 877, 73 => 877,
86 => 877, 91 => 877, 94 => 877, 97 => 877,
99 => 877, 103 => 877, others => 0),
4282 =>
(85 => 37501, others => 0),
4283 =>
(34 => 37503, 37 => 37502, others => 0),
4284 =>
(0 => 1107, 15 => 1107, 34 => 1107, 35 => 1107,
39 => 1107, 40 => 1107, 41 => 1107, 46 => 1107,
56 => 1107, 60 => 1107, 67 => 1107, 68 => 1107,
70 => 1107, 71 => 1107, 72 => 1107, 73 => 1107,
86 => 1107, 91 => 1107, 94 => 1107, 97 => 1107,
99 => 1107, 103 => 1107, others => 0),
4285 =>
(85 => 37504, others => 0),
4286 =>
(46 => 32807, 85 => 37505, 90 => 32868, others => 0),
4287 =>
(0 => 1102, 15 => 1102, 34 => 1102, 35 => 1102,
39 => 1102, 40 => 1102, 41 => 1102, 46 => 1102,
56 => 1102, 60 => 1102, 67 => 1102, 68 => 1102,
70 => 1102, 71 => 1102, 72 => 1102, 73 => 1102,
86 => 1102, 91 => 1102, 94 => 1102, 97 => 1102,
99 => 1102, 103 => 1102, others => 0),
4288 =>
(46 => 32807, 85 => 37507, 90 => 32868, others => 0),
4289 =>
(0 => 1096, 15 => 1096, 34 => 1096, 35 => 1096,
39 => 1096, 40 => 1096, 41 => 1096, 46 => 1096,
56 => 1096, 60 => 1096, 67 => 1096, 68 => 1096,
70 => 1096, 71 => 1096, 72 => 1096, 73 => 1096,
86 => 1096, 91 => 1096, 94 => 1096, 97 => 1096,
99 => 1096, 103 => 1096, others => 0),
4290 =>
(34 => 37509, others => 0),
4291 =>
(0 => 1091, 15 => 1091, 34 => 1091, 35 => 1091,
39 => 1091, 40 => 1091, 41 => 1091, 46 => 1091,
56 => 1091, 60 => 1091, 67 => 1091, 68 => 1091,
70 => 1091, 71 => 1091, 72 => 1091, 73 => 1091,
86 => 1091, 91 => 1091, 94 => 1091, 97 => 1091,
99 => 1091, 103 => 1091, others => 0),
4292 =>
(85 => 37510, others => 0),
4293 =>
(0 => 915, 15 => 915, 34 => 915, 35 => 915,
39 => 915, 40 => 915, 41 => 915, 46 => 915,
56 => 915, 60 => 915, 67 => 915, 68 => 915,
70 => 915, 71 => 915, 72 => 915, 73 => 915,
86 => 915, 91 => 915, 94 => 915, 97 => 915,
99 => 915, 103 => 915, others => 0),
4294 =>
(85 => 37511, others => 0),
4295 =>
(46 => 32807, 85 => 37512, 90 => 32868, others => 0),
4296 =>
(0 => 910, 15 => 910, 34 => 910, 35 => 910,
39 => 910, 40 => 910, 41 => 910, 46 => 910,
56 => 910, 60 => 910, 67 => 910, 68 => 910,
70 => 910, 71 => 910, 72 => 910, 73 => 910,
86 => 910, 91 => 910, 94 => 910, 97 => 910,
99 => 910, 103 => 910, others => 0),
4297 =>
(46 => 32807, 85 => 37514, 90 => 32868, others => 0),
4298 =>
(0 => 904, 15 => 904, 34 => 904, 35 => 904,
39 => 904, 40 => 904, 41 => 904, 46 => 904,
56 => 904, 60 => 904, 67 => 904, 68 => 904,
70 => 904, 71 => 904, 72 => 904, 73 => 904,
86 => 904, 91 => 904, 94 => 904, 97 => 904,
99 => 904, 103 => 904, others => 0),
4299 =>
(34 => 37516, others => 0),
4300 =>
(0 => 899, 15 => 899, 34 => 899, 35 => 899,
39 => 899, 40 => 899, 41 => 899, 46 => 899,
56 => 899, 60 => 899, 67 => 899, 68 => 899,
70 => 899, 71 => 899, 72 => 899, 73 => 899,
86 => 899, 91 => 899, 94 => 899, 97 => 899,
99 => 899, 103 => 899, others => 0),
4301 =>
(85 => 37517, others => 0),
4302 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37518,
103 => 32885, others => 0),
4303 =>
(85 => 37520, 103 => 32885, others => 0),
4304 =>
(46 => 32807, 85 => 37522, 90 => 32868, others => 0),
4305 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4306 =>
(85 => 37525, 103 => 32885, others => 0),
4307 =>
(85 => 37527, 103 => 32885, others => 0),
4308 =>
(15 => 37530, 34 => 37529, others => 0),
4309 =>
(0 => 1209, 15 => 1209, 34 => 1209, 35 => 1209,
39 => 1209, 40 => 1209, 41 => 1209, 46 => 1209,
56 => 1209, 60 => 1209, 67 => 1209, 68 => 1209,
70 => 1209, 71 => 1209, 72 => 1209, 73 => 1209,
86 => 1209, 91 => 1209, 94 => 1209, 97 => 1209,
99 => 1209, 103 => 1209, others => 0),
4310 =>
(15 => 37532, 34 => 37531, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4311 =>
(0 => 1305, 15 => 1305, 34 => 1305, 35 => 1305,
39 => 1305, 40 => 1305, 41 => 1305, 46 => 1305,
56 => 1305, 60 => 1305, 67 => 1305, 68 => 1305,
70 => 1305, 71 => 1305, 72 => 1305, 73 => 1305,
86 => 1305, 91 => 1305, 94 => 1305, 97 => 1305,
99 => 1305, 103 => 1305, others => 0),
4312 =>
(0 => 1307, 15 => 1307, 34 => 1307, 35 => 1307,
39 => 1307, 40 => 1307, 41 => 1307, 46 => 1307,
56 => 1307, 60 => 1307, 67 => 1307, 68 => 1307,
70 => 1307, 71 => 1307, 72 => 1307, 73 => 1307,
86 => 1307, 91 => 1307, 94 => 1307, 97 => 1307,
99 => 1307, 103 => 1307, others => 0),
4313 =>
(0 => 1086, 15 => 1086, 34 => 1086, 35 => 1086,
39 => 1086, 40 => 1086, 41 => 1086, 46 => 1086,
56 => 1086, 60 => 1086, 67 => 1086, 68 => 1086,
70 => 1086, 71 => 1086, 72 => 1086, 73 => 1086,
86 => 1086, 91 => 1086, 94 => 1086, 97 => 1086,
99 => 1086, 103 => 1086, others => 0),
4314 =>
(101 => 33976, others => 0),
4315 =>
(46 => 32807, 85 => 37535, 90 => 32868, others => 0),
4316 =>
(0 => 1301, 15 => 1301, 34 => 1301, 35 => 1301,
39 => 1301, 40 => 1301, 41 => 1301, 46 => 1301,
56 => 1301, 60 => 1301, 67 => 1301, 68 => 1301,
70 => 1301, 71 => 1301, 72 => 1301, 73 => 1301,
86 => 1301, 91 => 1301, 94 => 1301, 97 => 1301,
99 => 1301, 103 => 1301, others => 0),
4317 =>
(0 => 1303, 15 => 1303, 34 => 1303, 35 => 1303,
39 => 1303, 40 => 1303, 41 => 1303, 46 => 1303,
56 => 1303, 60 => 1303, 67 => 1303, 68 => 1303,
70 => 1303, 71 => 1303, 72 => 1303, 73 => 1303,
86 => 1303, 91 => 1303, 94 => 1303, 97 => 1303,
99 => 1303, 103 => 1303, others => 0),
4318 =>
(0 => 1081, 15 => 1081, 34 => 1081, 35 => 1081,
39 => 1081, 40 => 1081, 41 => 1081, 46 => 1081,
56 => 1081, 60 => 1081, 67 => 1081, 68 => 1081,
70 => 1081, 71 => 1081, 72 => 1081, 73 => 1081,
86 => 1081, 91 => 1081, 94 => 1081, 97 => 1081,
99 => 1081, 103 => 1081, others => 0),
4319 =>
(85 => 37537, others => 0),
4320 =>
(34 => 37539, 37 => 37538, others => 0),
4321 =>
(0 => 1075, 15 => 1075, 34 => 1075, 35 => 1075,
39 => 1075, 40 => 1075, 41 => 1075, 46 => 1075,
56 => 1075, 60 => 1075, 67 => 1075, 68 => 1075,
70 => 1075, 71 => 1075, 72 => 1075, 73 => 1075,
86 => 1075, 91 => 1075, 94 => 1075, 97 => 1075,
99 => 1075, 103 => 1075, others => 0),
4322 =>
(85 => 37540, others => 0),
4323 =>
(34 => 37542, 37 => 37541, others => 0),
4324 =>
(46 => 32807, 85 => 37543, 90 => 32868, others => 0),
4325 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4326 =>
(0 => 1215, 15 => 1215, 34 => 1215, 35 => 1215,
39 => 1215, 40 => 1215, 41 => 1215, 46 => 1215,
56 => 1215, 60 => 1215, 67 => 1215, 68 => 1215,
70 => 1215, 71 => 1215, 72 => 1215, 73 => 1215,
86 => 1215, 91 => 1215, 94 => 1215, 97 => 1215,
99 => 1215, 103 => 1215, others => 0),
4327 =>
(0 => 1217, 15 => 1217, 34 => 1217, 35 => 1217,
39 => 1217, 40 => 1217, 41 => 1217, 46 => 1217,
56 => 1217, 60 => 1217, 67 => 1217, 68 => 1217,
70 => 1217, 71 => 1217, 72 => 1217, 73 => 1217,
86 => 1217, 91 => 1217, 94 => 1217, 97 => 1217,
99 => 1217, 103 => 1217, others => 0),
4328 =>
(0 => 870, 15 => 870, 34 => 870, 35 => 870,
39 => 870, 40 => 870, 41 => 870, 46 => 870,
56 => 870, 60 => 870, 67 => 870, 68 => 870,
70 => 870, 71 => 870, 72 => 870, 73 => 870,
86 => 870, 91 => 870, 94 => 870, 97 => 870,
99 => 870, 103 => 870, others => 0),
4329 =>
(101 => 33976, others => 0),
4330 =>
(46 => 32807, 85 => 37547, 90 => 32868, others => 0),
4331 =>
(0 => 1211, 15 => 1211, 34 => 1211, 35 => 1211,
39 => 1211, 40 => 1211, 41 => 1211, 46 => 1211,
56 => 1211, 60 => 1211, 67 => 1211, 68 => 1211,
70 => 1211, 71 => 1211, 72 => 1211, 73 => 1211,
86 => 1211, 91 => 1211, 94 => 1211, 97 => 1211,
99 => 1211, 103 => 1211, others => 0),
4332 =>
(0 => 1213, 15 => 1213, 34 => 1213, 35 => 1213,
39 => 1213, 40 => 1213, 41 => 1213, 46 => 1213,
56 => 1213, 60 => 1213, 67 => 1213, 68 => 1213,
70 => 1213, 71 => 1213, 72 => 1213, 73 => 1213,
86 => 1213, 91 => 1213, 94 => 1213, 97 => 1213,
99 => 1213, 103 => 1213, others => 0),
4333 =>
(0 => 865, 15 => 865, 34 => 865, 35 => 865,
39 => 865, 40 => 865, 41 => 865, 46 => 865,
56 => 865, 60 => 865, 67 => 865, 68 => 865,
70 => 865, 71 => 865, 72 => 865, 73 => 865,
86 => 865, 91 => 865, 94 => 865, 97 => 865,
99 => 865, 103 => 865, others => 0),
4334 =>
(85 => 37549, others => 0),
4335 =>
(34 => 37551, 37 => 37550, others => 0),
4336 =>
(0 => 859, 15 => 859, 34 => 859, 35 => 859,
39 => 859, 40 => 859, 41 => 859, 46 => 859,
56 => 859, 60 => 859, 67 => 859, 68 => 859,
70 => 859, 71 => 859, 72 => 859, 73 => 859,
86 => 859, 91 => 859, 94 => 859, 97 => 859,
99 => 859, 103 => 859, others => 0),
4337 =>
(85 => 37552, others => 0),
4338 =>
(34 => 37554, 37 => 37553, others => 0),
4339 =>
(46 => 32807, 85 => 37555, 90 => 32868, others => 0),
4340 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4341 =>
(34 => 37558, others => 0),
4342 =>
(0 => 1788, 15 => 1788, 34 => 1788, 35 => 1788,
39 => 1788, 40 => 1788, 41 => 1788, 46 => 1788,
56 => 1788, 60 => 1788, 67 => 1788, 68 => 1788,
70 => 1788, 71 => 1788, 72 => 1788, 73 => 1788,
86 => 1788, 91 => 1788, 94 => 1788, 97 => 1788,
99 => 1788, 103 => 1788, others => 0),
4343 =>
(29 => 32865, 85 => 37559, others => 0),
4344 =>
(0 => 1783, 15 => 1783, 34 => 1783, 35 => 1783,
39 => 1783, 40 => 1783, 41 => 1783, 46 => 1783,
56 => 1783, 60 => 1783, 67 => 1783, 68 => 1783,
70 => 1783, 71 => 1783, 72 => 1783, 73 => 1783,
86 => 1783, 91 => 1783, 94 => 1783, 97 => 1783,
99 => 1783, 103 => 1783, others => 0),
4345 =>
(101 => 33976, others => 0),
4346 =>
(46 => 32807, 85 => 37561, others => 0),
4347 =>
(0 => 1777, 15 => 1777, 34 => 1777, 35 => 1777,
39 => 1777, 40 => 1777, 41 => 1777, 46 => 1777,
56 => 1777, 60 => 1777, 67 => 1777, 68 => 1777,
70 => 1777, 71 => 1777, 72 => 1777, 73 => 1777,
86 => 1777, 91 => 1777, 94 => 1777, 97 => 1777,
99 => 1777, 103 => 1777, others => 0),
4348 =>
(101 => 33976, others => 0),
4349 =>
(46 => 32807, 85 => 37564, others => 0),
4350 =>
(0 => 1772, 15 => 1772, 34 => 1772, 35 => 1772,
39 => 1772, 40 => 1772, 41 => 1772, 46 => 1772,
56 => 1772, 60 => 1772, 67 => 1772, 68 => 1772,
70 => 1772, 71 => 1772, 72 => 1772, 73 => 1772,
86 => 1772, 91 => 1772, 94 => 1772, 97 => 1772,
99 => 1772, 103 => 1772, others => 0),
4351 =>
(29 => 32865, 85 => 37566, others => 0),
4352 =>
(34 => 37568, 37 => 37567, others => 0),
4353 =>
(0 => 1396, 15 => 1396, 34 => 1396, 39 => 1396,
40 => 1396, 41 => 1396, 46 => 1396, 56 => 1396,
60 => 1396, 67 => 1396, 68 => 1396, 70 => 1396,
71 => 1396, 72 => 1396, 73 => 1396, 86 => 1396,
91 => 1396, 94 => 1396, 97 => 1396, 99 => 1396,
103 => 1396, others => 0),
4354 =>
(0 => 1809, 15 => 1809, 34 => 1809, 35 => 1809,
39 => 1809, 40 => 1809, 41 => 1809, 46 => 1809,
56 => 1809, 60 => 1809, 67 => 1809, 68 => 1809,
70 => 1809, 71 => 1809, 72 => 1809, 73 => 1809,
86 => 1809, 91 => 1809, 94 => 1809, 97 => 1809,
99 => 1809, 103 => 1809, others => 0),
4355 =>
(0 => 1804, 15 => 1804, 34 => 1804, 35 => 1804,
39 => 1804, 40 => 1804, 41 => 1804, 46 => 1804,
56 => 1804, 60 => 1804, 67 => 1804, 68 => 1804,
70 => 1804, 71 => 1804, 72 => 1804, 73 => 1804,
86 => 1804, 91 => 1804, 94 => 1804, 97 => 1804,
99 => 1804, 103 => 1804, others => 0),
4356 =>
(29 => 32865, 85 => 37569, others => 0),
4357 =>
(0 => 1798, 15 => 1798, 34 => 1798, 35 => 1798,
39 => 1798, 40 => 1798, 41 => 1798, 46 => 1798,
56 => 1798, 60 => 1798, 67 => 1798, 68 => 1798,
70 => 1798, 71 => 1798, 72 => 1798, 73 => 1798,
86 => 1798, 91 => 1798, 94 => 1798, 97 => 1798,
99 => 1798, 103 => 1798, others => 0),
4358 =>
(29 => 32865, 85 => 37570, others => 0),
4359 =>
(46 => 32807, 85 => 37571, others => 0),
4360 =>
(0 => 1793, 15 => 1793, 34 => 1793, 35 => 1793,
39 => 1793, 40 => 1793, 41 => 1793, 46 => 1793,
56 => 1793, 60 => 1793, 67 => 1793, 68 => 1793,
70 => 1793, 71 => 1793, 72 => 1793, 73 => 1793,
86 => 1793, 91 => 1793, 94 => 1793, 97 => 1793,
99 => 1793, 103 => 1793, others => 0),
4361 =>
(0 => 1185, 15 => 1185, 34 => 1185, 35 => 1185,
39 => 1185, 40 => 1185, 41 => 1185, 46 => 1185,
56 => 1185, 60 => 1185, 67 => 1185, 68 => 1185,
70 => 1185, 71 => 1185, 72 => 1185, 73 => 1185,
86 => 1185, 91 => 1185, 94 => 1185, 97 => 1185,
99 => 1185, 103 => 1185, others => 0),
4362 =>
(0 => 1187, 15 => 1187, 34 => 1187, 35 => 1187,
39 => 1187, 40 => 1187, 41 => 1187, 46 => 1187,
56 => 1187, 60 => 1187, 67 => 1187, 68 => 1187,
70 => 1187, 71 => 1187, 72 => 1187, 73 => 1187,
86 => 1187, 91 => 1187, 94 => 1187, 97 => 1187,
99 => 1187, 103 => 1187, others => 0),
4363 =>
(0 => 798, 15 => 798, 34 => 798, 35 => 798,
39 => 798, 40 => 798, 41 => 798, 46 => 798,
56 => 798, 60 => 798, 67 => 798, 68 => 798,
70 => 798, 71 => 798, 72 => 798, 73 => 798,
86 => 798, 91 => 798, 94 => 798, 97 => 798,
99 => 798, 103 => 798, others => 0),
4364 =>
(101 => 33976, others => 0),
4365 =>
(46 => 32807, 85 => 37574, 90 => 32868, others => 0),
4366 =>
(0 => 1181, 15 => 1181, 34 => 1181, 35 => 1181,
39 => 1181, 40 => 1181, 41 => 1181, 46 => 1181,
56 => 1181, 60 => 1181, 67 => 1181, 68 => 1181,
70 => 1181, 71 => 1181, 72 => 1181, 73 => 1181,
86 => 1181, 91 => 1181, 94 => 1181, 97 => 1181,
99 => 1181, 103 => 1181, others => 0),
4367 =>
(0 => 1183, 15 => 1183, 34 => 1183, 35 => 1183,
39 => 1183, 40 => 1183, 41 => 1183, 46 => 1183,
56 => 1183, 60 => 1183, 67 => 1183, 68 => 1183,
70 => 1183, 71 => 1183, 72 => 1183, 73 => 1183,
86 => 1183, 91 => 1183, 94 => 1183, 97 => 1183,
99 => 1183, 103 => 1183, others => 0),
4368 =>
(0 => 793, 15 => 793, 34 => 793, 35 => 793,
39 => 793, 40 => 793, 41 => 793, 46 => 793,
56 => 793, 60 => 793, 67 => 793, 68 => 793,
70 => 793, 71 => 793, 72 => 793, 73 => 793,
86 => 793, 91 => 793, 94 => 793, 97 => 793,
99 => 793, 103 => 793, others => 0),
4369 =>
(85 => 37576, others => 0),
4370 =>
(34 => 37578, 37 => 37577, others => 0),
4371 =>
(0 => 787, 15 => 787, 34 => 787, 35 => 787,
39 => 787, 40 => 787, 41 => 787, 46 => 787,
56 => 787, 60 => 787, 67 => 787, 68 => 787,
70 => 787, 71 => 787, 72 => 787, 73 => 787,
86 => 787, 91 => 787, 94 => 787, 97 => 787,
99 => 787, 103 => 787, others => 0),
4372 =>
(85 => 37579, others => 0),
4373 =>
(34 => 37581, 37 => 37580, others => 0),
4374 =>
(46 => 32807, 85 => 37582, 90 => 32868, others => 0),
4375 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4376 =>
(46 => 32807, 85 => 37585, 90 => 32868, others => 0),
4377 =>
(0 => 1060, 15 => 1060, 34 => 1060, 35 => 1060,
39 => 1060, 40 => 1060, 41 => 1060, 46 => 1060,
56 => 1060, 60 => 1060, 67 => 1060, 68 => 1060,
70 => 1060, 71 => 1060, 72 => 1060, 73 => 1060,
86 => 1060, 91 => 1060, 94 => 1060, 97 => 1060,
99 => 1060, 103 => 1060, others => 0),
4378 =>
(34 => 37587, others => 0),
4379 =>
(0 => 1055, 15 => 1055, 34 => 1055, 35 => 1055,
39 => 1055, 40 => 1055, 41 => 1055, 46 => 1055,
56 => 1055, 60 => 1055, 67 => 1055, 68 => 1055,
70 => 1055, 71 => 1055, 72 => 1055, 73 => 1055,
86 => 1055, 91 => 1055, 94 => 1055, 97 => 1055,
99 => 1055, 103 => 1055, others => 0),
4380 =>
(85 => 37588, others => 0),
4381 =>
(34 => 37589, others => 0),
4382 =>
(0 => 1049, 15 => 1049, 34 => 1049, 35 => 1049,
39 => 1049, 40 => 1049, 41 => 1049, 46 => 1049,
56 => 1049, 60 => 1049, 67 => 1049, 68 => 1049,
70 => 1049, 71 => 1049, 72 => 1049, 73 => 1049,
86 => 1049, 91 => 1049, 94 => 1049, 97 => 1049,
99 => 1049, 103 => 1049, others => 0),
4383 =>
(85 => 37590, others => 0),
4384 =>
(0 => 1044, 15 => 1044, 34 => 1044, 35 => 1044,
39 => 1044, 40 => 1044, 41 => 1044, 46 => 1044,
56 => 1044, 60 => 1044, 67 => 1044, 68 => 1044,
70 => 1044, 71 => 1044, 72 => 1044, 73 => 1044,
86 => 1044, 91 => 1044, 94 => 1044, 97 => 1044,
99 => 1044, 103 => 1044, others => 0),
4385 =>
(101 => 33976, others => 0),
4386 =>
(46 => 32807, 85 => 37592, 90 => 32868, others => 0),
4387 =>
(46 => 32807, 85 => 37594, 90 => 32868, others => 0),
4388 =>
(0 => 820, 15 => 820, 34 => 820, 35 => 820,
39 => 820, 40 => 820, 41 => 820, 46 => 820,
56 => 820, 60 => 820, 67 => 820, 68 => 820,
70 => 820, 71 => 820, 72 => 820, 73 => 820,
86 => 820, 91 => 820, 94 => 820, 97 => 820,
99 => 820, 103 => 820, others => 0),
4389 =>
(34 => 37596, others => 0),
4390 =>
(0 => 815, 15 => 815, 34 => 815, 35 => 815,
39 => 815, 40 => 815, 41 => 815, 46 => 815,
56 => 815, 60 => 815, 67 => 815, 68 => 815,
70 => 815, 71 => 815, 72 => 815, 73 => 815,
86 => 815, 91 => 815, 94 => 815, 97 => 815,
99 => 815, 103 => 815, others => 0),
4391 =>
(85 => 37597, others => 0),
4392 =>
(34 => 37598, others => 0),
4393 =>
(0 => 809, 15 => 809, 34 => 809, 35 => 809,
39 => 809, 40 => 809, 41 => 809, 46 => 809,
56 => 809, 60 => 809, 67 => 809, 68 => 809,
70 => 809, 71 => 809, 72 => 809, 73 => 809,
86 => 809, 91 => 809, 94 => 809, 97 => 809,
99 => 809, 103 => 809, others => 0),
4394 =>
(85 => 37599, others => 0),
4395 =>
(0 => 804, 15 => 804, 34 => 804, 35 => 804,
39 => 804, 40 => 804, 41 => 804, 46 => 804,
56 => 804, 60 => 804, 67 => 804, 68 => 804,
70 => 804, 71 => 804, 72 => 804, 73 => 804,
86 => 804, 91 => 804, 94 => 804, 97 => 804,
99 => 804, 103 => 804, others => 0),
4396 =>
(101 => 33976, others => 0),
4397 =>
(46 => 32807, 85 => 37601, 90 => 32868, others => 0),
4398 =>
(0 => 1170, 15 => 1170, 34 => 1170, 35 => 1170,
39 => 1170, 40 => 1170, 41 => 1170, 46 => 1170,
56 => 1170, 60 => 1170, 67 => 1170, 68 => 1170,
70 => 1170, 71 => 1170, 72 => 1170, 73 => 1170,
86 => 1170, 91 => 1170, 94 => 1170, 97 => 1170,
99 => 1170, 103 => 1170, others => 0),
4399 =>
(19 => 32869, 46 => 32807, 90 => 32868, others => 0),
4400 =>
(3 => 37607, 15 => 37606, 34 => 37605, 39 => 32961,
40 => 32781, 41 => 32780, 46 => 32838, 53 => 32938,
60 => 32778, 67 => 32777, 68 => 32958, 70 => 32775,
72 => 32773, 73 => 32957, 86 => 37604, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
4401 =>
(51 => 37611, 85 => 37610, others => 0),
4402 =>
(0 => 1286, 15 => 1286, 34 => 1286, 35 => 1286,
39 => 1286, 40 => 1286, 41 => 1286, 46 => 1286,
56 => 1286, 60 => 1286, 67 => 1286, 68 => 1286,
70 => 1286, 71 => 1286, 72 => 1286, 73 => 1286,
86 => 1286, 91 => 1286, 94 => 1286, 97 => 1286,
99 => 1286, 103 => 1286, others => 0),
4403 =>
(85 => 37612, others => 0),
4404 =>
(0 => 1288, 15 => 1288, 34 => 1288, 35 => 1288,
39 => 1288, 40 => 1288, 41 => 1288, 46 => 1288,
56 => 1288, 60 => 1288, 67 => 1288, 68 => 1288,
70 => 1288, 71 => 1288, 72 => 1288, 73 => 1288,
86 => 1288, 91 => 1288, 94 => 1288, 97 => 1288,
99 => 1288, 103 => 1288, others => 0),
4405 =>
(85 => 37613, others => 0),
4406 =>
(0 => 1039, 15 => 1039, 34 => 1039, 35 => 1039,
39 => 1039, 40 => 1039, 41 => 1039, 46 => 1039,
56 => 1039, 60 => 1039, 67 => 1039, 68 => 1039,
70 => 1039, 71 => 1039, 72 => 1039, 73 => 1039,
86 => 1039, 91 => 1039, 94 => 1039, 97 => 1039,
99 => 1039, 103 => 1039, others => 0),
4407 =>
(85 => 37614, others => 0),
4408 =>
(34 => 37616, 37 => 37615, others => 0),
4409 =>
(0 => 1282, 15 => 1282, 34 => 1282, 35 => 1282,
39 => 1282, 40 => 1282, 41 => 1282, 46 => 1282,
56 => 1282, 60 => 1282, 67 => 1282, 68 => 1282,
70 => 1282, 71 => 1282, 72 => 1282, 73 => 1282,
86 => 1282, 91 => 1282, 94 => 1282, 97 => 1282,
99 => 1282, 103 => 1282, others => 0),
4410 =>
(85 => 37617, others => 0),
4411 =>
(0 => 1284, 15 => 1284, 34 => 1284, 35 => 1284,
39 => 1284, 40 => 1284, 41 => 1284, 46 => 1284,
56 => 1284, 60 => 1284, 67 => 1284, 68 => 1284,
70 => 1284, 71 => 1284, 72 => 1284, 73 => 1284,
86 => 1284, 91 => 1284, 94 => 1284, 97 => 1284,
99 => 1284, 103 => 1284, others => 0),
4412 =>
(85 => 37618, others => 0),
4413 =>
(46 => 32807, 85 => 37619, 90 => 32868, others => 0),
4414 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4415 =>
(46 => 32807, 85 => 37622, 90 => 32868, others => 0),
4416 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4417 =>
(15 => 37626, 34 => 37625, others => 0),
4418 =>
(0 => 1176, 15 => 1176, 34 => 1176, 35 => 1176,
39 => 1176, 40 => 1176, 41 => 1176, 46 => 1176,
56 => 1176, 60 => 1176, 67 => 1176, 68 => 1176,
70 => 1176, 71 => 1176, 72 => 1176, 73 => 1176,
86 => 1176, 91 => 1176, 94 => 1176, 97 => 1176,
99 => 1176, 103 => 1176, others => 0),
4419 =>
(85 => 37627, others => 0),
4420 =>
(0 => 1178, 15 => 1178, 34 => 1178, 35 => 1178,
39 => 1178, 40 => 1178, 41 => 1178, 46 => 1178,
56 => 1178, 60 => 1178, 67 => 1178, 68 => 1178,
70 => 1178, 71 => 1178, 72 => 1178, 73 => 1178,
86 => 1178, 91 => 1178, 94 => 1178, 97 => 1178,
99 => 1178, 103 => 1178, others => 0),
4421 =>
(85 => 37628, others => 0),
4422 =>
(0 => 775, 15 => 775, 34 => 775, 35 => 775,
39 => 775, 40 => 775, 41 => 775, 46 => 775,
56 => 775, 60 => 775, 67 => 775, 68 => 775,
70 => 775, 71 => 775, 72 => 775, 73 => 775,
86 => 775, 91 => 775, 94 => 775, 97 => 775,
99 => 775, 103 => 775, others => 0),
4423 =>
(85 => 37629, others => 0),
4424 =>
(34 => 37631, 37 => 37630, others => 0),
4425 =>
(0 => 1172, 15 => 1172, 34 => 1172, 35 => 1172,
39 => 1172, 40 => 1172, 41 => 1172, 46 => 1172,
56 => 1172, 60 => 1172, 67 => 1172, 68 => 1172,
70 => 1172, 71 => 1172, 72 => 1172, 73 => 1172,
86 => 1172, 91 => 1172, 94 => 1172, 97 => 1172,
99 => 1172, 103 => 1172, others => 0),
4426 =>
(85 => 37632, others => 0),
4427 =>
(0 => 1174, 15 => 1174, 34 => 1174, 35 => 1174,
39 => 1174, 40 => 1174, 41 => 1174, 46 => 1174,
56 => 1174, 60 => 1174, 67 => 1174, 68 => 1174,
70 => 1174, 71 => 1174, 72 => 1174, 73 => 1174,
86 => 1174, 91 => 1174, 94 => 1174, 97 => 1174,
99 => 1174, 103 => 1174, others => 0),
4428 =>
(85 => 37633, others => 0),
4429 =>
(46 => 32807, 85 => 37634, 90 => 32868, others => 0),
4430 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4431 =>
(46 => 32807, 85 => 37637, 90 => 32868, others => 0),
4432 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4433 =>
(15 => 37641, 34 => 37640, others => 0),
4434 =>
(0 => 1384, 15 => 1384, 34 => 1384, 39 => 1384,
40 => 1384, 41 => 1384, 46 => 1384, 56 => 1384,
60 => 1384, 67 => 1384, 68 => 1384, 70 => 1384,
71 => 1384, 72 => 1384, 73 => 1384, 86 => 1384,
91 => 1384, 94 => 1384, 97 => 1384, 99 => 1384,
103 => 1384, others => 0),
4435 =>
(40 => 634, 46 => 634, 68 => 634, 70 => 634,
72 => 634, 97 => 634, 99 => 634, 103 => 634,
others => 0),
4436 =>
(40 => 632, 46 => 632, 68 => 632, 70 => 632,
72 => 632, 97 => 632, 99 => 632, 103 => 632,
others => 0),
4437 =>
(40 => 630, 46 => 630, 68 => 630, 70 => 630,
72 => 630, 97 => 630, 99 => 630, 103 => 630,
others => 0),
4438 =>
(40 => 618, 46 => 618, 68 => 618, 70 => 618,
72 => 618, 97 => 618, 99 => 618, 103 => 618,
others => 0),
4439 =>
(40 => 510, 46 => 510, 68 => 510, 70 => 510,
72 => 510, 97 => 510, 99 => 510, 103 => 510,
others => 0),
4440 =>
(40 => 505, 46 => 505, 68 => 505, 70 => 505,
72 => 505, 97 => 505, 99 => 505, 103 => 505,
others => 0),
4441 =>
(85 => 37642, others => 0),
4442 =>
(40 => 506, 46 => 506, 68 => 506, 70 => 506,
72 => 506, 97 => 506, 99 => 506, 103 => 506,
others => 0),
4443 =>
(40 => 503, 46 => 503, 68 => 503, 70 => 503,
72 => 503, 97 => 503, 99 => 503, 103 => 503,
others => 0),
4444 =>
(85 => 37643, others => 0),
4445 =>
(40 => 508, 46 => 508, 68 => 508, 70 => 508,
72 => 508, 97 => 508, 99 => 508, 103 => 508,
others => 0),
4446 =>
(40 => 489, 46 => 489, 68 => 489, 70 => 489,
72 => 489, 97 => 489, 99 => 489, 103 => 489,
others => 0),
4447 =>
(3 => 37645, 17 => 37644, 19 => 32869, 46 => 32807,
90 => 32868, others => 0),
4448 =>
(85 => 37647, others => 0),
4449 =>
(40 => 535, 46 => 535, 68 => 535, 70 => 535,
72 => 535, 97 => 535, 99 => 535, 103 => 535,
others => 0),
4450 =>
(85 => 37648, others => 0),
4451 =>
(40 => 531, 46 => 531, 68 => 531, 70 => 531,
72 => 531, 97 => 531, 99 => 531, 103 => 531,
others => 0),
4452 =>
(85 => 37649, 103 => 32885, others => 0),
4453 =>
(85 => 37651, others => 0),
4454 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37652,
103 => 32885, others => 0),
4455 =>
(40 => 533, 46 => 533, 68 => 533, 70 => 533,
72 => 533, 97 => 533, 99 => 533, 103 => 533,
others => 0),
4456 =>
(85 => 37654, others => 0),
4457 =>
(40 => 499, 46 => 499, 68 => 499, 70 => 499,
72 => 499, 97 => 499, 99 => 499, 103 => 499,
others => 0),
4458 =>
(85 => 37655, others => 0),
4459 =>
(40 => 495, 46 => 495, 68 => 495, 70 => 495,
72 => 495, 97 => 495, 99 => 495, 103 => 495,
others => 0),
4460 =>
(85 => 37656, 103 => 32885, others => 0),
4461 =>
(85 => 37658, others => 0),
4462 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37659,
103 => 32885, others => 0),
4463 =>
(40 => 497, 46 => 497, 68 => 497, 70 => 497,
72 => 497, 97 => 497, 99 => 497, 103 => 497,
others => 0),
4464 =>
(85 => 37661, others => 0),
4465 =>
(85 => 464, others => 0),
4466 =>
(85 => 399, 103 => 399, others => 0),
4467 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4468 =>
(80 => 37663, others => 0),
4469 =>
(85 => 413, 103 => 413, others => 0),
4470 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37664,
90 => 32868, others => 0),
4471 =>
(85 => 458, others => 0),
4472 =>
(61 => 37667, others => 0),
4473 =>
(85 => 427, 103 => 427, others => 0),
4474 =>
(85 => 416, 103 => 416, others => 0),
4475 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4476 =>
(85 => 447, 103 => 32885, others => 0),
4477 =>
(85 => 452, others => 0),
4478 =>
(85 => 441, 103 => 32885, others => 0),
4479 =>
(0 => 1364, 15 => 1364, 34 => 1364, 39 => 1364,
40 => 1364, 41 => 1364, 46 => 1364, 56 => 1364,
60 => 1364, 67 => 1364, 68 => 1364, 70 => 1364,
71 => 1364, 72 => 1364, 73 => 1364, 86 => 1364,
91 => 1364, 94 => 1364, 97 => 1364, 99 => 1364,
103 => 1364, others => 0),
4480 =>
(13 => 43, 51 => 43, 78 => 43, 83 => 43,
85 => 43, 103 => 43, others => 0),
4481 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37671,
90 => 32868, others => 0),
4482 =>
(61 => 37674, others => 0),
4483 =>
(13 => 59, 51 => 59, 78 => 59, 83 => 59,
85 => 59, 103 => 59, others => 0),
4484 =>
(13 => 46, 51 => 46, 78 => 46, 83 => 46,
85 => 46, 103 => 46, others => 0),
4485 =>
(40 => 559, 46 => 559, 68 => 559, 70 => 559,
72 => 559, 97 => 559, 99 => 559, 103 => 559,
others => 0),
4486 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4487 =>
(13 => 53, 51 => 53, 78 => 53, 83 => 53,
85 => 53, 103 => 53, others => 0),
4488 =>
(0 => 1408, 15 => 1408, 34 => 1408, 39 => 1408,
40 => 1408, 41 => 1408, 46 => 1408, 56 => 1408,
60 => 1408, 67 => 1408, 68 => 1408, 70 => 1408,
71 => 1408, 72 => 1408, 73 => 1408, 86 => 1408,
91 => 1408, 94 => 1408, 97 => 1408, 99 => 1408,
103 => 1408, others => 0),
4489 =>
(0 => 1357, 15 => 1357, 34 => 1357, 39 => 1357,
40 => 1357, 41 => 1357, 46 => 1357, 56 => 1357,
60 => 1357, 67 => 1357, 68 => 1357, 70 => 1357,
71 => 1357, 72 => 1357, 73 => 1357, 86 => 1357,
91 => 1357, 94 => 1357, 97 => 1357, 99 => 1357,
103 => 1357, others => 0),
4490 =>
(85 => 37676, others => 0),
4491 =>
(46 => 32807, 85 => 37677, 90 => 32868, others => 0),
4492 =>
(0 => 988, 15 => 988, 34 => 988, 35 => 988,
39 => 988, 40 => 988, 41 => 988, 46 => 988,
56 => 988, 60 => 988, 67 => 988, 68 => 988,
70 => 988, 71 => 988, 72 => 988, 73 => 988,
86 => 988, 91 => 988, 94 => 988, 97 => 988,
99 => 988, 103 => 988, others => 0),
4493 =>
(34 => 37679, others => 0),
4494 =>
(0 => 983, 15 => 983, 34 => 983, 35 => 983,
39 => 983, 40 => 983, 41 => 983, 46 => 983,
56 => 983, 60 => 983, 67 => 983, 68 => 983,
70 => 983, 71 => 983, 72 => 983, 73 => 983,
86 => 983, 91 => 983, 94 => 983, 97 => 983,
99 => 983, 103 => 983, others => 0),
4495 =>
(85 => 37680, others => 0),
4496 =>
(34 => 37681, others => 0),
4497 =>
(0 => 977, 15 => 977, 34 => 977, 35 => 977,
39 => 977, 40 => 977, 41 => 977, 46 => 977,
56 => 977, 60 => 977, 67 => 977, 68 => 977,
70 => 977, 71 => 977, 72 => 977, 73 => 977,
86 => 977, 91 => 977, 94 => 977, 97 => 977,
99 => 977, 103 => 977, others => 0),
4498 =>
(85 => 37682, others => 0),
4499 =>
(0 => 972, 15 => 972, 34 => 972, 35 => 972,
39 => 972, 40 => 972, 41 => 972, 46 => 972,
56 => 972, 60 => 972, 67 => 972, 68 => 972,
70 => 972, 71 => 972, 72 => 972, 73 => 972,
86 => 972, 91 => 972, 94 => 972, 97 => 972,
99 => 972, 103 => 972, others => 0),
4500 =>
(101 => 33976, others => 0),
4501 =>
(46 => 32807, 85 => 37684, 90 => 32868, others => 0),
4502 =>
(0 => 1154, 15 => 1154, 34 => 1154, 35 => 1154,
39 => 1154, 40 => 1154, 41 => 1154, 46 => 1154,
56 => 1154, 60 => 1154, 67 => 1154, 68 => 1154,
70 => 1154, 71 => 1154, 72 => 1154, 73 => 1154,
86 => 1154, 91 => 1154, 94 => 1154, 97 => 1154,
99 => 1154, 103 => 1154, others => 0),
4503 =>
(0 => 1149, 15 => 1149, 34 => 1149, 35 => 1149,
39 => 1149, 40 => 1149, 41 => 1149, 46 => 1149,
56 => 1149, 60 => 1149, 67 => 1149, 68 => 1149,
70 => 1149, 71 => 1149, 72 => 1149, 73 => 1149,
86 => 1149, 91 => 1149, 94 => 1149, 97 => 1149,
99 => 1149, 103 => 1149, others => 0),
4504 =>
(85 => 37686, others => 0),
4505 =>
(0 => 1143, 15 => 1143, 34 => 1143, 35 => 1143,
39 => 1143, 40 => 1143, 41 => 1143, 46 => 1143,
56 => 1143, 60 => 1143, 67 => 1143, 68 => 1143,
70 => 1143, 71 => 1143, 72 => 1143, 73 => 1143,
86 => 1143, 91 => 1143, 94 => 1143, 97 => 1143,
99 => 1143, 103 => 1143, others => 0),
4506 =>
(85 => 37687, others => 0),
4507 =>
(46 => 32807, 85 => 37688, 90 => 32868, others => 0),
4508 =>
(0 => 1138, 15 => 1138, 34 => 1138, 35 => 1138,
39 => 1138, 40 => 1138, 41 => 1138, 46 => 1138,
56 => 1138, 60 => 1138, 67 => 1138, 68 => 1138,
70 => 1138, 71 => 1138, 72 => 1138, 73 => 1138,
86 => 1138, 91 => 1138, 94 => 1138, 97 => 1138,
99 => 1138, 103 => 1138, others => 0),
4509 =>
(0 => 1010, 15 => 1010, 34 => 1010, 35 => 1010,
39 => 1010, 40 => 1010, 41 => 1010, 46 => 1010,
56 => 1010, 60 => 1010, 67 => 1010, 68 => 1010,
70 => 1010, 71 => 1010, 72 => 1010, 73 => 1010,
86 => 1010, 91 => 1010, 94 => 1010, 97 => 1010,
99 => 1010, 103 => 1010, others => 0),
4510 =>
(0 => 1005, 15 => 1005, 34 => 1005, 35 => 1005,
39 => 1005, 40 => 1005, 41 => 1005, 46 => 1005,
56 => 1005, 60 => 1005, 67 => 1005, 68 => 1005,
70 => 1005, 71 => 1005, 72 => 1005, 73 => 1005,
86 => 1005, 91 => 1005, 94 => 1005, 97 => 1005,
99 => 1005, 103 => 1005, others => 0),
4511 =>
(85 => 37690, others => 0),
4512 =>
(0 => 999, 15 => 999, 34 => 999, 35 => 999,
39 => 999, 40 => 999, 41 => 999, 46 => 999,
56 => 999, 60 => 999, 67 => 999, 68 => 999,
70 => 999, 71 => 999, 72 => 999, 73 => 999,
86 => 999, 91 => 999, 94 => 999, 97 => 999,
99 => 999, 103 => 999, others => 0),
4513 =>
(85 => 37691, others => 0),
4514 =>
(46 => 32807, 85 => 37692, 90 => 32868, others => 0),
4515 =>
(0 => 994, 15 => 994, 34 => 994, 35 => 994,
39 => 994, 40 => 994, 41 => 994, 46 => 994,
56 => 994, 60 => 994, 67 => 994, 68 => 994,
70 => 994, 71 => 994, 72 => 994, 73 => 994,
86 => 994, 91 => 994, 94 => 994, 97 => 994,
99 => 994, 103 => 994, others => 0),
4516 =>
(0 => 1246, 15 => 1246, 34 => 1246, 35 => 1246,
39 => 1246, 40 => 1246, 41 => 1246, 46 => 1246,
56 => 1246, 60 => 1246, 67 => 1246, 68 => 1246,
70 => 1246, 71 => 1246, 72 => 1246, 73 => 1246,
86 => 1246, 91 => 1246, 94 => 1246, 97 => 1246,
99 => 1246, 103 => 1246, others => 0),
4517 =>
(85 => 37694, others => 0),
4518 =>
(0 => 1248, 15 => 1248, 34 => 1248, 35 => 1248,
39 => 1248, 40 => 1248, 41 => 1248, 46 => 1248,
56 => 1248, 60 => 1248, 67 => 1248, 68 => 1248,
70 => 1248, 71 => 1248, 72 => 1248, 73 => 1248,
86 => 1248, 91 => 1248, 94 => 1248, 97 => 1248,
99 => 1248, 103 => 1248, others => 0),
4519 =>
(85 => 37695, others => 0),
4520 =>
(0 => 943, 15 => 943, 34 => 943, 35 => 943,
39 => 943, 40 => 943, 41 => 943, 46 => 943,
56 => 943, 60 => 943, 67 => 943, 68 => 943,
70 => 943, 71 => 943, 72 => 943, 73 => 943,
86 => 943, 91 => 943, 94 => 943, 97 => 943,
99 => 943, 103 => 943, others => 0),
4521 =>
(85 => 37696, others => 0),
4522 =>
(34 => 37698, 37 => 37697, others => 0),
4523 =>
(0 => 1242, 15 => 1242, 34 => 1242, 35 => 1242,
39 => 1242, 40 => 1242, 41 => 1242, 46 => 1242,
56 => 1242, 60 => 1242, 67 => 1242, 68 => 1242,
70 => 1242, 71 => 1242, 72 => 1242, 73 => 1242,
86 => 1242, 91 => 1242, 94 => 1242, 97 => 1242,
99 => 1242, 103 => 1242, others => 0),
4524 =>
(85 => 37699, others => 0),
4525 =>
(0 => 1244, 15 => 1244, 34 => 1244, 35 => 1244,
39 => 1244, 40 => 1244, 41 => 1244, 46 => 1244,
56 => 1244, 60 => 1244, 67 => 1244, 68 => 1244,
70 => 1244, 71 => 1244, 72 => 1244, 73 => 1244,
86 => 1244, 91 => 1244, 94 => 1244, 97 => 1244,
99 => 1244, 103 => 1244, others => 0),
4526 =>
(85 => 37700, others => 0),
4527 =>
(46 => 32807, 85 => 37701, 90 => 32868, others => 0),
4528 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4529 =>
(46 => 32807, 85 => 37704, 90 => 32868, others => 0),
4530 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4531 =>
(15 => 37708, 34 => 37707, others => 0),
4532 =>
(34 => 37709, others => 0),
4533 =>
(0 => 1133, 15 => 1133, 34 => 1133, 35 => 1133,
39 => 1133, 40 => 1133, 41 => 1133, 46 => 1133,
56 => 1133, 60 => 1133, 67 => 1133, 68 => 1133,
70 => 1133, 71 => 1133, 72 => 1133, 73 => 1133,
86 => 1133, 91 => 1133, 94 => 1133, 97 => 1133,
99 => 1133, 103 => 1133, others => 0),
4534 =>
(85 => 37710, others => 0),
4535 =>
(0 => 1128, 15 => 1128, 34 => 1128, 35 => 1128,
39 => 1128, 40 => 1128, 41 => 1128, 46 => 1128,
56 => 1128, 60 => 1128, 67 => 1128, 68 => 1128,
70 => 1128, 71 => 1128, 72 => 1128, 73 => 1128,
86 => 1128, 91 => 1128, 94 => 1128, 97 => 1128,
99 => 1128, 103 => 1128, others => 0),
4536 =>
(101 => 33976, others => 0),
4537 =>
(46 => 32807, 85 => 37712, 90 => 32868, others => 0),
4538 =>
(0 => 1122, 15 => 1122, 34 => 1122, 35 => 1122,
39 => 1122, 40 => 1122, 41 => 1122, 46 => 1122,
56 => 1122, 60 => 1122, 67 => 1122, 68 => 1122,
70 => 1122, 71 => 1122, 72 => 1122, 73 => 1122,
86 => 1122, 91 => 1122, 94 => 1122, 97 => 1122,
99 => 1122, 103 => 1122, others => 0),
4539 =>
(101 => 33976, others => 0),
4540 =>
(46 => 32807, 85 => 37715, 90 => 32868, others => 0),
4541 =>
(0 => 1117, 15 => 1117, 34 => 1117, 35 => 1117,
39 => 1117, 40 => 1117, 41 => 1117, 46 => 1117,
56 => 1117, 60 => 1117, 67 => 1117, 68 => 1117,
70 => 1117, 71 => 1117, 72 => 1117, 73 => 1117,
86 => 1117, 91 => 1117, 94 => 1117, 97 => 1117,
99 => 1117, 103 => 1117, others => 0),
4542 =>
(85 => 37717, others => 0),
4543 =>
(34 => 37719, 37 => 37718, others => 0),
4544 =>
(34 => 37720, others => 0),
4545 =>
(0 => 965, 15 => 965, 34 => 965, 35 => 965,
39 => 965, 40 => 965, 41 => 965, 46 => 965,
56 => 965, 60 => 965, 67 => 965, 68 => 965,
70 => 965, 71 => 965, 72 => 965, 73 => 965,
86 => 965, 91 => 965, 94 => 965, 97 => 965,
99 => 965, 103 => 965, others => 0),
4546 =>
(85 => 37721, others => 0),
4547 =>
(0 => 960, 15 => 960, 34 => 960, 35 => 960,
39 => 960, 40 => 960, 41 => 960, 46 => 960,
56 => 960, 60 => 960, 67 => 960, 68 => 960,
70 => 960, 71 => 960, 72 => 960, 73 => 960,
86 => 960, 91 => 960, 94 => 960, 97 => 960,
99 => 960, 103 => 960, others => 0),
4548 =>
(101 => 33976, others => 0),
4549 =>
(46 => 32807, 85 => 37723, 90 => 32868, others => 0),
4550 =>
(0 => 954, 15 => 954, 34 => 954, 35 => 954,
39 => 954, 40 => 954, 41 => 954, 46 => 954,
56 => 954, 60 => 954, 67 => 954, 68 => 954,
70 => 954, 71 => 954, 72 => 954, 73 => 954,
86 => 954, 91 => 954, 94 => 954, 97 => 954,
99 => 954, 103 => 954, others => 0),
4551 =>
(101 => 33976, others => 0),
4552 =>
(46 => 32807, 85 => 37726, 90 => 32868, others => 0),
4553 =>
(0 => 949, 15 => 949, 34 => 949, 35 => 949,
39 => 949, 40 => 949, 41 => 949, 46 => 949,
56 => 949, 60 => 949, 67 => 949, 68 => 949,
70 => 949, 71 => 949, 72 => 949, 73 => 949,
86 => 949, 91 => 949, 94 => 949, 97 => 949,
99 => 949, 103 => 949, others => 0),
4554 =>
(85 => 37728, others => 0),
4555 =>
(34 => 37730, 37 => 37729, others => 0),
4556 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4557 =>
(15 => 35970, 34 => 35969, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4558 =>
(51 => 35975, others => 0),
4559 =>
(15 => 35979, 34 => 35978, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4560 =>
(51 => 35984, others => 0),
4561 =>
(15 => 36016, 34 => 36015, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4562 =>
(51 => 36021, others => 0),
4563 =>
(61 => 37732, others => 0),
4564 =>
(51 => 37733, 103 => 32885, others => 0),
4565 =>
(51 => 37735, 103 => 32885, others => 0),
4566 =>
(51 => 37737, 103 => 32885, others => 0),
4567 =>
(9 => 33243, 64 => 33242, 83 => 1651, 85 => 1651,
104 => 33241, others => 0),
4568 =>
(0 => 1881, 15 => 1881, 34 => 1881, 35 => 1881,
39 => 1881, 40 => 1881, 41 => 1881, 46 => 1881,
56 => 1881, 60 => 1881, 67 => 1881, 68 => 1881,
70 => 1881, 71 => 1881, 72 => 1881, 73 => 1881,
86 => 1881, 91 => 1881, 94 => 1881, 97 => 1881,
99 => 1881, 103 => 1881, others => 0),
4569 =>
(0 => 1876, 15 => 1876, 34 => 1876, 35 => 1876,
39 => 1876, 40 => 1876, 41 => 1876, 46 => 1876,
56 => 1876, 60 => 1876, 67 => 1876, 68 => 1876,
70 => 1876, 71 => 1876, 72 => 1876, 73 => 1876,
86 => 1876, 91 => 1876, 94 => 1876, 97 => 1876,
99 => 1876, 103 => 1876, others => 0),
4570 =>
(29 => 32865, 85 => 37739, others => 0),
4571 =>
(0 => 1870, 15 => 1870, 34 => 1870, 35 => 1870,
39 => 1870, 40 => 1870, 41 => 1870, 46 => 1870,
56 => 1870, 60 => 1870, 67 => 1870, 68 => 1870,
70 => 1870, 71 => 1870, 72 => 1870, 73 => 1870,
86 => 1870, 91 => 1870, 94 => 1870, 97 => 1870,
99 => 1870, 103 => 1870, others => 0),
4572 =>
(29 => 32865, 85 => 37740, others => 0),
4573 =>
(46 => 32807, 85 => 37741, others => 0),
4574 =>
(0 => 1865, 15 => 1865, 34 => 1865, 35 => 1865,
39 => 1865, 40 => 1865, 41 => 1865, 46 => 1865,
56 => 1865, 60 => 1865, 67 => 1865, 68 => 1865,
70 => 1865, 71 => 1865, 72 => 1865, 73 => 1865,
86 => 1865, 91 => 1865, 94 => 1865, 97 => 1865,
99 => 1865, 103 => 1865, others => 0),
4575 =>
(15 => 1737, 34 => 1737, 39 => 1737, 40 => 1737,
41 => 1737, 46 => 1737, 60 => 1737, 67 => 1737,
68 => 1737, 70 => 1737, 71 => 1737, 72 => 1737,
73 => 1737, 91 => 1737, 94 => 1737, 97 => 1737,
99 => 1737, others => 0),
4576 =>
(15 => 1736, 34 => 1736, 39 => 1736, 40 => 1736,
41 => 1736, 46 => 1736, 60 => 1736, 67 => 1736,
68 => 1736, 70 => 1736, 71 => 1736, 72 => 1736,
73 => 1736, 91 => 1736, 94 => 1736, 97 => 1736,
99 => 1736, others => 0),
4577 =>
(85 => 37743, others => 0),
4578 =>
(18 => 34386, 39 => 32961, 46 => 32838, 61 => 34385,
70 => 32775, others => 0),
4579 =>
(85 => 37745, others => 0),
4580 =>
(18 => 37746, others => 0),
4581 =>
(34 => 2228, 101 => 2228, others => 0),
4582 =>
(18 => 204, 34 => 204, 35 => 204, 39 => 204,
40 => 204, 46 => 204, 60 => 204, 67 => 204,
70 => 204, 72 => 204, 101 => 204, others => 0),
4583 =>
(85 => 37747, others => 0),
4584 =>
(83 => 37748, others => 0),
4585 =>
(61 => 37749, others => 0),
4586 =>
(85 => 94, 103 => 94, others => 0),
4587 =>
(85 => 80, 103 => 80, others => 0),
4588 =>
(83 => 37750, others => 0),
4589 =>
(85 => 71, 103 => 71, others => 0),
4590 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4591 =>
(80 => 37752, others => 0),
4592 =>
(15 => 1739, 34 => 1739, 39 => 1739, 40 => 1739,
41 => 1739, 46 => 1739, 60 => 1739, 67 => 1739,
68 => 1739, 70 => 1739, 71 => 1739, 72 => 1739,
73 => 1739, 91 => 1739, 94 => 1739, 97 => 1739,
99 => 1739, others => 0),
4593 =>
(15 => 722, 34 => 722, 39 => 722, 40 => 722,
41 => 722, 46 => 722, 60 => 722, 67 => 722,
68 => 722, 70 => 722, 71 => 722, 72 => 722,
73 => 722, 91 => 722, 94 => 722, 97 => 722,
99 => 722, others => 0),
4594 =>
(15 => 1733, 34 => 1733, 39 => 1733, 40 => 1733,
41 => 1733, 46 => 1733, 60 => 1733, 67 => 1733,
68 => 1733, 70 => 1733, 71 => 1733, 72 => 1733,
73 => 1733, 91 => 1733, 94 => 1733, 97 => 1733,
99 => 1733, others => 0),
4595 =>
(15 => 718, 34 => 718, 39 => 718, 40 => 718,
41 => 718, 46 => 718, 60 => 718, 67 => 718,
68 => 718, 70 => 718, 71 => 718, 72 => 718,
73 => 718, 91 => 718, 94 => 718, 97 => 718,
99 => 718, others => 0),
4596 =>
(15 => 1732, 34 => 1732, 39 => 1732, 40 => 1732,
41 => 1732, 46 => 1732, 60 => 1732, 67 => 1732,
68 => 1732, 70 => 1732, 71 => 1732, 72 => 1732,
73 => 1732, 91 => 1732, 94 => 1732, 97 => 1732,
99 => 1732, others => 0),
4597 =>
(85 => 37753, others => 0),
4598 =>
(15 => 717, 34 => 717, 39 => 717, 40 => 717,
41 => 717, 46 => 717, 60 => 717, 67 => 717,
68 => 717, 70 => 717, 71 => 717, 72 => 717,
73 => 717, 91 => 717, 94 => 717, 97 => 717,
99 => 717, others => 0),
4599 =>
(85 => 37754, others => 0),
4600 =>
(85 => 87, 103 => 87, others => 0),
4601 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37755,
90 => 32868, others => 0),
4602 =>
(61 => 37758, others => 0),
4603 =>
(85 => 99, 103 => 99, others => 0),
4604 =>
(85 => 90, 103 => 90, others => 0),
4605 =>
(15 => 1726, 34 => 1726, 39 => 1726, 40 => 1726,
41 => 1726, 46 => 1726, 60 => 1726, 67 => 1726,
68 => 1726, 70 => 1726, 71 => 1726, 72 => 1726,
73 => 1726, 91 => 1726, 94 => 1726, 97 => 1726,
99 => 1726, others => 0),
4606 =>
(85 => 37759, others => 0),
4607 =>
(85 => 37760, 103 => 32885, others => 0),
4608 =>
(15 => 1729, 34 => 1729, 39 => 1729, 40 => 1729,
41 => 1729, 46 => 1729, 60 => 1729, 67 => 1729,
68 => 1729, 70 => 1729, 71 => 1729, 72 => 1729,
73 => 1729, 91 => 1729, 94 => 1729, 97 => 1729,
99 => 1729, others => 0),
4609 =>
(15 => 712, 34 => 712, 39 => 712, 40 => 712,
41 => 712, 46 => 712, 60 => 712, 67 => 712,
68 => 712, 70 => 712, 71 => 712, 72 => 712,
73 => 712, 91 => 712, 94 => 712, 97 => 712,
99 => 712, others => 0),
4610 =>
(15 => 1728, 34 => 1728, 39 => 1728, 40 => 1728,
41 => 1728, 46 => 1728, 60 => 1728, 67 => 1728,
68 => 1728, 70 => 1728, 71 => 1728, 72 => 1728,
73 => 1728, 91 => 1728, 94 => 1728, 97 => 1728,
99 => 1728, others => 0),
4611 =>
(85 => 37762, others => 0),
4612 =>
(15 => 711, 34 => 711, 39 => 711, 40 => 711,
41 => 711, 46 => 711, 60 => 711, 67 => 711,
68 => 711, 70 => 711, 71 => 711, 72 => 711,
73 => 711, 91 => 711, 94 => 711, 97 => 711,
99 => 711, others => 0),
4613 =>
(85 => 37763, others => 0),
4614 =>
(15 => 1722, 34 => 1722, 39 => 1722, 40 => 1722,
41 => 1722, 46 => 1722, 60 => 1722, 67 => 1722,
68 => 1722, 70 => 1722, 71 => 1722, 72 => 1722,
73 => 1722, 91 => 1722, 94 => 1722, 97 => 1722,
99 => 1722, others => 0),
4615 =>
(85 => 37764, others => 0),
4616 =>
(15 => 707, 34 => 707, 39 => 707, 40 => 707,
41 => 707, 46 => 707, 60 => 707, 67 => 707,
68 => 707, 70 => 707, 71 => 707, 72 => 707,
73 => 707, 91 => 707, 94 => 707, 97 => 707,
99 => 707, others => 0),
4617 =>
(85 => 37765, others => 0),
4618 =>
(85 => 37766, 103 => 32885, others => 0),
4619 =>
(85 => 37768, 103 => 32885, others => 0),
4620 =>
(15 => 1714, 34 => 1714, 39 => 1714, 40 => 1714,
41 => 1714, 46 => 1714, 60 => 1714, 67 => 1714,
68 => 1714, 70 => 1714, 71 => 1714, 72 => 1714,
73 => 1714, 91 => 1714, 94 => 1714, 97 => 1714,
99 => 1714, others => 0),
4621 =>
(85 => 37770, others => 0),
4622 =>
(85 => 37771, 103 => 32885, others => 0),
4623 =>
(15 => 1717, 34 => 1717, 39 => 1717, 40 => 1717,
41 => 1717, 46 => 1717, 60 => 1717, 67 => 1717,
68 => 1717, 70 => 1717, 71 => 1717, 72 => 1717,
73 => 1717, 91 => 1717, 94 => 1717, 97 => 1717,
99 => 1717, others => 0),
4624 =>
(15 => 700, 34 => 700, 39 => 700, 40 => 700,
41 => 700, 46 => 700, 60 => 700, 67 => 700,
68 => 700, 70 => 700, 71 => 700, 72 => 700,
73 => 700, 91 => 700, 94 => 700, 97 => 700,
99 => 700, others => 0),
4625 =>
(15 => 1716, 34 => 1716, 39 => 1716, 40 => 1716,
41 => 1716, 46 => 1716, 60 => 1716, 67 => 1716,
68 => 1716, 70 => 1716, 71 => 1716, 72 => 1716,
73 => 1716, 91 => 1716, 94 => 1716, 97 => 1716,
99 => 1716, others => 0),
4626 =>
(85 => 37773, others => 0),
4627 =>
(15 => 699, 34 => 699, 39 => 699, 40 => 699,
41 => 699, 46 => 699, 60 => 699, 67 => 699,
68 => 699, 70 => 699, 71 => 699, 72 => 699,
73 => 699, 91 => 699, 94 => 699, 97 => 699,
99 => 699, others => 0),
4628 =>
(85 => 37774, others => 0),
4629 =>
(15 => 1710, 34 => 1710, 39 => 1710, 40 => 1710,
41 => 1710, 46 => 1710, 60 => 1710, 67 => 1710,
68 => 1710, 70 => 1710, 71 => 1710, 72 => 1710,
73 => 1710, 91 => 1710, 94 => 1710, 97 => 1710,
99 => 1710, others => 0),
4630 =>
(85 => 37775, others => 0),
4631 =>
(15 => 695, 34 => 695, 39 => 695, 40 => 695,
41 => 695, 46 => 695, 60 => 695, 67 => 695,
68 => 695, 70 => 695, 71 => 695, 72 => 695,
73 => 695, 91 => 695, 94 => 695, 97 => 695,
99 => 695, others => 0),
4632 =>
(85 => 37776, others => 0),
4633 =>
(85 => 37777, 103 => 32885, others => 0),
4634 =>
(85 => 37779, 103 => 32885, others => 0),
4635 =>
(15 => 1743, 34 => 1743, 39 => 1743, 40 => 1743,
41 => 1743, 46 => 1743, 60 => 1743, 67 => 1743,
68 => 1743, 70 => 1743, 71 => 1743, 72 => 1743,
73 => 1743, 91 => 1743, 94 => 1743, 97 => 1743,
99 => 1743, others => 0),
4636 =>
(85 => 37781, 103 => 32885, others => 0),
4637 =>
(71 => 37783, others => 0),
4638 =>
(15 => 1706, 34 => 1706, 39 => 1706, 40 => 1706,
41 => 1706, 46 => 1706, 60 => 1706, 67 => 1706,
68 => 1706, 70 => 1706, 71 => 1706, 72 => 1706,
73 => 1706, 91 => 1706, 94 => 1706, 97 => 1706,
99 => 1706, others => 0),
4639 =>
(85 => 37784, others => 0),
4640 =>
(15 => 689, 34 => 689, 39 => 689, 40 => 689,
41 => 689, 46 => 689, 60 => 689, 67 => 689,
68 => 689, 70 => 689, 71 => 689, 72 => 689,
73 => 689, 91 => 689, 94 => 689, 97 => 689,
99 => 689, others => 0),
4641 =>
(85 => 37785, others => 0),
4642 =>
(85 => 37786, 103 => 32885, others => 0),
4643 =>
(85 => 37788, 103 => 32885, others => 0),
4644 =>
(85 => 37790, 103 => 32885, others => 0),
4645 =>
(85 => 37792, 103 => 32885, others => 0),
4646 =>
(61 => 33843, 71 => 37794, 76 => 33840, others => 0),
4647 =>
(15 => 684, 34 => 684, 39 => 684, 40 => 684,
41 => 684, 46 => 684, 60 => 684, 67 => 684,
68 => 684, 70 => 684, 71 => 684, 72 => 684,
73 => 684, 91 => 684, 94 => 684, 97 => 684,
99 => 684, others => 0),
4648 =>
(15 => 2179, 34 => 2179, 39 => 2179, 40 => 2179,
41 => 2179, 46 => 2179, 60 => 2179, 67 => 2179,
68 => 2179, 70 => 2179, 71 => 2179, 72 => 2179,
73 => 2179, 91 => 2179, 94 => 2179, 97 => 2179,
99 => 2179, others => 0),
4649 =>
(15 => 2176, 34 => 2176, 39 => 2176, 40 => 2176,
41 => 2176, 46 => 2176, 60 => 2176, 67 => 2176,
68 => 2176, 70 => 2176, 71 => 2176, 72 => 2176,
73 => 2176, 91 => 2176, 94 => 2176, 97 => 2176,
99 => 2176, others => 0),
4650 =>
(85 => 37796, others => 0),
4651 =>
(0 => 2152, 15 => 2152, 34 => 2152, 39 => 2152,
40 => 2152, 41 => 2152, 46 => 2152, 56 => 2152,
60 => 2152, 67 => 2152, 68 => 2152, 70 => 2152,
71 => 2152, 72 => 2152, 73 => 2152, 86 => 2152,
91 => 2152, 94 => 2152, 97 => 2152, 99 => 2152,
103 => 2152, others => 0),
4652 =>
(85 => 37797, others => 0),
4653 =>
(46 => 37799, 85 => 37798, others => 0),
4654 =>
(0 => 2149, 15 => 2149, 34 => 2149, 39 => 2149,
40 => 2149, 41 => 2149, 46 => 2149, 56 => 2149,
60 => 2149, 67 => 2149, 68 => 2149, 70 => 2149,
71 => 2149, 72 => 2149, 73 => 2149, 86 => 2149,
91 => 2149, 94 => 2149, 97 => 2149, 99 => 2149,
103 => 2149, others => 0),
4655 =>
(46 => 37801, 85 => 37800, others => 0),
4656 =>
(0 => 2145, 15 => 2145, 34 => 2145, 39 => 2145,
40 => 2145, 41 => 2145, 46 => 2145, 56 => 2145,
60 => 2145, 67 => 2145, 68 => 2145, 70 => 2145,
71 => 2145, 72 => 2145, 73 => 2145, 86 => 2145,
91 => 2145, 94 => 2145, 97 => 2145, 99 => 2145,
103 => 2145, others => 0),
4657 =>
(34 => 37802, others => 0),
4658 =>
(0 => 2142, 15 => 2142, 34 => 2142, 39 => 2142,
40 => 2142, 41 => 2142, 46 => 2142, 56 => 2142,
60 => 2142, 67 => 2142, 68 => 2142, 70 => 2142,
71 => 2142, 72 => 2142, 73 => 2142, 86 => 2142,
91 => 2142, 94 => 2142, 97 => 2142, 99 => 2142,
103 => 2142, others => 0),
4659 =>
(85 => 37803, others => 0),
4660 =>
(34 => 336, 35 => 336, 39 => 336, 40 => 336,
46 => 336, 60 => 336, 67 => 336, 70 => 336,
71 => 336, 72 => 336, others => 0),
4661 =>
(46 => 32838, others => 0),
4662 =>
(85 => 37805, others => 0),
4663 =>
(34 => 338, 35 => 338, 39 => 338, 40 => 338,
46 => 338, 60 => 338, 67 => 338, 70 => 338,
71 => 338, 72 => 338, others => 0),
4664 =>
(85 => 37806, others => 0),
4665 =>
(53 => 37808, 85 => 37807, 103 => 32885, others => 0),
4666 =>
(85 => 37810, 103 => 32885, others => 0),
4667 =>
(83 => 37812, others => 0),
4668 =>
(34 => 343, 35 => 343, 39 => 343, 40 => 343,
46 => 343, 60 => 343, 67 => 343, 70 => 343,
71 => 343, 72 => 343, others => 0),
4669 =>
(34 => 345, 35 => 345, 39 => 345, 40 => 345,
46 => 345, 60 => 345, 67 => 345, 70 => 345,
71 => 345, 72 => 345, others => 0),
4670 =>
(15 => 2012, 34 => 2012, 39 => 2012, 40 => 2012,
41 => 2012, 46 => 2012, 60 => 2012, 67 => 2012,
68 => 2012, 70 => 2012, 71 => 2012, 72 => 2012,
73 => 2012, 91 => 2012, 94 => 2012, 97 => 2012,
99 => 2012, others => 0),
4671 =>
(15 => 2010, 34 => 2010, 39 => 2010, 40 => 2010,
41 => 2010, 46 => 2010, 60 => 2010, 67 => 2010,
68 => 2010, 70 => 2010, 71 => 2010, 72 => 2010,
73 => 2010, 91 => 2010, 94 => 2010, 97 => 2010,
99 => 2010, others => 0),
4672 =>
(85 => 37813, others => 0),
4673 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4674 =>
(15 => 37815, others => 0),
4675 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
4676 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
4677 =>
(46 => 32838, others => 0),
4678 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
4679 =>
(85 => 37820, others => 0),
4680 =>
(76 => 37821, others => 0),
4681 =>
(19 => 199, 34 => 199, 46 => 199, 70 => 199,
90 => 199, others => 0),
4682 =>
(85 => 37822, others => 0),
4683 =>
(1 => 2076, 4 => 2076, 15 => 2076, 18 => 2076,
19 => 2076, 24 => 2076, 25 => 2076, 32 => 2076,
33 => 2076, 34 => 2076, 37 => 2076, 38 => 2076,
39 => 2076, 42 => 2076, 46 => 2076, 47 => 2076,
52 => 2076, 57 => 2076, 61 => 2076, 64 => 2076,
70 => 2076, 74 => 2076, 79 => 2076, 80 => 2076,
84 => 2076, 90 => 2076, 96 => 2076, 101 => 2076,
102 => 2076, others => 0),
4684 =>
(84 => 37823, others => 0),
4685 =>
(1 => 389, 4 => 389, 15 => 389, 18 => 389,
19 => 389, 24 => 389, 25 => 389, 32 => 389,
33 => 389, 34 => 389, 37 => 389, 38 => 389,
39 => 389, 42 => 389, 46 => 389, 47 => 389,
52 => 389, 57 => 389, 61 => 389, 64 => 389,
70 => 389, 74 => 389, 79 => 389, 80 => 389,
84 => 389, 90 => 389, 96 => 389, 101 => 389,
102 => 389, others => 0),
4686 =>
(1 => 1484, 4 => 1484, 15 => 1484, 18 => 1484,
19 => 1484, 24 => 1484, 25 => 1484, 32 => 1484,
33 => 1484, 34 => 1484, 37 => 1484, 38 => 1484,
39 => 1484, 42 => 1484, 46 => 1484, 47 => 1484,
52 => 1484, 57 => 1484, 61 => 1484, 64 => 1484,
70 => 1484, 74 => 1484, 79 => 1484, 80 => 1484,
84 => 1484, 90 => 1484, 96 => 1484, 101 => 1484,
102 => 1484, others => 0),
4687 =>
(32 => 288, 33 => 288, 34 => 288, others => 0),
4688 =>
(85 => 37824, others => 0),
4689 =>
(1 => 163, 4 => 163, 15 => 163, 18 => 163,
19 => 163, 24 => 163, 25 => 163, 32 => 163,
33 => 163, 34 => 163, 37 => 163, 38 => 163,
39 => 163, 42 => 163, 46 => 163, 47 => 163,
52 => 163, 57 => 163, 61 => 163, 64 => 163,
70 => 163, 74 => 163, 79 => 163, 80 => 163,
84 => 163, 90 => 163, 96 => 163, 101 => 163,
102 => 163, others => 0),
4690 =>
(1 => 13, 4 => 13, 15 => 13, 18 => 13,
19 => 13, 24 => 13, 25 => 13, 32 => 13,
33 => 13, 34 => 13, 37 => 13, 38 => 13,
39 => 13, 42 => 13, 46 => 13, 47 => 13,
52 => 13, 57 => 13, 61 => 13, 64 => 13,
70 => 13, 74 => 13, 79 => 13, 80 => 13,
84 => 13, 90 => 13, 96 => 13, 101 => 13,
102 => 13, others => 0),
4691 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4692 =>
(34 => 37826, others => 0),
4693 =>
(1 => 17, 4 => 17, 15 => 17, 18 => 17,
19 => 17, 24 => 17, 25 => 17, 32 => 17,
33 => 17, 34 => 17, 37 => 17, 38 => 17,
39 => 17, 42 => 17, 46 => 17, 47 => 17,
52 => 17, 57 => 17, 61 => 17, 64 => 17,
70 => 17, 74 => 17, 79 => 17, 80 => 17,
84 => 17, 90 => 17, 96 => 17, 101 => 17,
102 => 17, others => 0),
4694 =>
(85 => 37827, others => 0),
4695 =>
(34 => 37828, others => 0),
4696 =>
(1 => 22, 4 => 22, 15 => 22, 18 => 22,
19 => 22, 24 => 22, 25 => 22, 32 => 22,
33 => 22, 34 => 22, 37 => 22, 38 => 22,
39 => 22, 42 => 22, 46 => 22, 47 => 22,
52 => 22, 57 => 22, 61 => 22, 64 => 22,
70 => 22, 74 => 22, 79 => 22, 80 => 22,
84 => 22, 90 => 22, 96 => 22, 101 => 22,
102 => 22, others => 0),
4697 =>
(85 => 37829, others => 0),
4698 =>
(1 => 24, 4 => 24, 15 => 24, 18 => 24,
19 => 24, 24 => 24, 25 => 24, 32 => 24,
33 => 24, 34 => 24, 37 => 24, 38 => 24,
39 => 24, 42 => 24, 46 => 24, 47 => 24,
52 => 24, 57 => 24, 61 => 24, 64 => 24,
70 => 24, 74 => 24, 79 => 24, 80 => 24,
84 => 24, 90 => 24, 96 => 24, 101 => 24,
102 => 24, others => 0),
4699 =>
(1 => 1533, 4 => 1533, 15 => 1533, 18 => 1533,
19 => 1533, 24 => 1533, 25 => 1533, 32 => 1533,
33 => 1533, 34 => 1533, 37 => 1533, 38 => 1533,
39 => 1533, 42 => 1533, 46 => 1533, 47 => 1533,
52 => 1533, 57 => 1533, 61 => 1533, 64 => 1533,
70 => 1533, 74 => 1533, 79 => 1533, 80 => 1533,
84 => 1533, 90 => 1533, 96 => 1533, 101 => 1533,
102 => 1533, others => 0),
4700 =>
(85 => 37830, others => 0),
4701 =>
(1 => 1537, 4 => 1537, 15 => 1537, 18 => 1537,
19 => 1537, 24 => 1537, 25 => 1537, 32 => 1537,
33 => 1537, 34 => 1537, 37 => 1537, 38 => 1537,
39 => 1537, 42 => 1537, 46 => 1537, 47 => 1537,
52 => 1537, 57 => 1537, 61 => 1537, 64 => 1537,
70 => 1537, 74 => 1537, 79 => 1537, 80 => 1537,
84 => 1537, 90 => 1537, 96 => 1537, 101 => 1537,
102 => 1537, others => 0),
4702 =>
(85 => 37831, others => 0),
4703 =>
(1 => 1535, 4 => 1535, 15 => 1535, 18 => 1535,
19 => 1535, 24 => 1535, 25 => 1535, 32 => 1535,
33 => 1535, 34 => 1535, 37 => 1535, 38 => 1535,
39 => 1535, 42 => 1535, 46 => 1535, 47 => 1535,
52 => 1535, 57 => 1535, 61 => 1535, 64 => 1535,
70 => 1535, 74 => 1535, 79 => 1535, 80 => 1535,
84 => 1535, 90 => 1535, 96 => 1535, 101 => 1535,
102 => 1535, others => 0),
4704 =>
(85 => 37832, others => 0),
4705 =>
(1 => 156, 4 => 156, 15 => 156, 18 => 156,
19 => 156, 24 => 156, 25 => 156, 32 => 156,
33 => 156, 34 => 156, 37 => 156, 38 => 156,
39 => 156, 42 => 156, 46 => 156, 47 => 156,
52 => 156, 57 => 156, 61 => 156, 64 => 156,
70 => 156, 74 => 156, 79 => 156, 80 => 156,
84 => 156, 90 => 156, 96 => 156, 101 => 156,
102 => 156, others => 0),
4706 =>
(85 => 37833, others => 0),
4707 =>
(46 => 37835, 85 => 37834, others => 0),
4708 =>
(1 => 153, 4 => 153, 15 => 153, 18 => 153,
19 => 153, 24 => 153, 25 => 153, 32 => 153,
33 => 153, 34 => 153, 37 => 153, 38 => 153,
39 => 153, 42 => 153, 46 => 153, 47 => 153,
52 => 153, 57 => 153, 61 => 153, 64 => 153,
70 => 153, 74 => 153, 79 => 153, 80 => 153,
84 => 153, 90 => 153, 96 => 153, 101 => 153,
102 => 153, others => 0),
4709 =>
(1 => 159, 4 => 159, 15 => 159, 18 => 159,
19 => 159, 24 => 159, 25 => 159, 32 => 159,
33 => 159, 34 => 159, 37 => 159, 38 => 159,
39 => 159, 42 => 159, 46 => 159, 47 => 159,
52 => 159, 57 => 159, 61 => 159, 64 => 159,
70 => 159, 74 => 159, 79 => 159, 80 => 159,
84 => 159, 90 => 159, 96 => 159, 101 => 159,
102 => 159, others => 0),
4710 =>
(34 => 362, 101 => 362, others => 0),
4711 =>
(3 => 37607, 53 => 32938, 86 => 37604, others => 0),
4712 =>
(85 => 37610, others => 0),
4713 =>
(9 => 33243, 32 => 286, 33 => 286, 64 => 33242,
83 => 286, 104 => 33241, others => 0),
4714 =>
(0 => 1599, 15 => 1599, 34 => 1599, 39 => 1599,
40 => 1599, 41 => 1599, 46 => 1599, 56 => 1599,
60 => 1599, 67 => 1599, 68 => 1599, 70 => 1599,
71 => 1599, 72 => 1599, 73 => 1599, 86 => 1599,
91 => 1599, 94 => 1599, 97 => 1599, 99 => 1599,
103 => 1599, others => 0),
4715 =>
(0 => 1834, 15 => 1834, 34 => 1834, 35 => 1834,
39 => 1834, 40 => 1834, 41 => 1834, 46 => 1834,
56 => 1834, 60 => 1834, 67 => 1834, 68 => 1834,
70 => 1834, 71 => 1834, 72 => 1834, 73 => 1834,
86 => 1834, 91 => 1834, 94 => 1834, 97 => 1834,
99 => 1834, 103 => 1834, others => 0),
4716 =>
(29 => 32865, 85 => 37836, others => 0),
4717 =>
(46 => 32807, 85 => 37837, others => 0),
4718 =>
(0 => 1829, 15 => 1829, 34 => 1829, 35 => 1829,
39 => 1829, 40 => 1829, 41 => 1829, 46 => 1829,
56 => 1829, 60 => 1829, 67 => 1829, 68 => 1829,
70 => 1829, 71 => 1829, 72 => 1829, 73 => 1829,
86 => 1829, 91 => 1829, 94 => 1829, 97 => 1829,
99 => 1829, 103 => 1829, others => 0),
4719 =>
(46 => 32807, 85 => 37839, others => 0),
4720 =>
(0 => 1823, 15 => 1823, 34 => 1823, 35 => 1823,
39 => 1823, 40 => 1823, 41 => 1823, 46 => 1823,
56 => 1823, 60 => 1823, 67 => 1823, 68 => 1823,
70 => 1823, 71 => 1823, 72 => 1823, 73 => 1823,
86 => 1823, 91 => 1823, 94 => 1823, 97 => 1823,
99 => 1823, 103 => 1823, others => 0),
4721 =>
(34 => 37841, others => 0),
4722 =>
(0 => 1818, 15 => 1818, 34 => 1818, 35 => 1818,
39 => 1818, 40 => 1818, 41 => 1818, 46 => 1818,
56 => 1818, 60 => 1818, 67 => 1818, 68 => 1818,
70 => 1818, 71 => 1818, 72 => 1818, 73 => 1818,
86 => 1818, 91 => 1818, 94 => 1818, 97 => 1818,
99 => 1818, 103 => 1818, others => 0),
4723 =>
(29 => 32865, 85 => 37842, others => 0),
4724 =>
(0 => 1839, 15 => 1839, 34 => 1839, 35 => 1839,
39 => 1839, 40 => 1839, 41 => 1839, 46 => 1839,
56 => 1839, 60 => 1839, 67 => 1839, 68 => 1839,
70 => 1839, 71 => 1839, 72 => 1839, 73 => 1839,
86 => 1839, 91 => 1839, 94 => 1839, 97 => 1839,
99 => 1839, 103 => 1839, others => 0),
4725 =>
(46 => 32807, 85 => 37843, 90 => 32868, others => 0),
4726 =>
(0 => 892, 15 => 892, 34 => 892, 35 => 892,
39 => 892, 40 => 892, 41 => 892, 46 => 892,
56 => 892, 60 => 892, 67 => 892, 68 => 892,
70 => 892, 71 => 892, 72 => 892, 73 => 892,
86 => 892, 91 => 892, 94 => 892, 97 => 892,
99 => 892, 103 => 892, others => 0),
4727 =>
(34 => 37845, others => 0),
4728 =>
(0 => 887, 15 => 887, 34 => 887, 35 => 887,
39 => 887, 40 => 887, 41 => 887, 46 => 887,
56 => 887, 60 => 887, 67 => 887, 68 => 887,
70 => 887, 71 => 887, 72 => 887, 73 => 887,
86 => 887, 91 => 887, 94 => 887, 97 => 887,
99 => 887, 103 => 887, others => 0),
4729 =>
(85 => 37846, others => 0),
4730 =>
(34 => 37847, others => 0),
4731 =>
(0 => 881, 15 => 881, 34 => 881, 35 => 881,
39 => 881, 40 => 881, 41 => 881, 46 => 881,
56 => 881, 60 => 881, 67 => 881, 68 => 881,
70 => 881, 71 => 881, 72 => 881, 73 => 881,
86 => 881, 91 => 881, 94 => 881, 97 => 881,
99 => 881, 103 => 881, others => 0),
4732 =>
(85 => 37848, others => 0),
4733 =>
(0 => 876, 15 => 876, 34 => 876, 35 => 876,
39 => 876, 40 => 876, 41 => 876, 46 => 876,
56 => 876, 60 => 876, 67 => 876, 68 => 876,
70 => 876, 71 => 876, 72 => 876, 73 => 876,
86 => 876, 91 => 876, 94 => 876, 97 => 876,
99 => 876, 103 => 876, others => 0),
4734 =>
(101 => 33976, others => 0),
4735 =>
(46 => 32807, 85 => 37850, 90 => 32868, others => 0),
4736 =>
(0 => 1106, 15 => 1106, 34 => 1106, 35 => 1106,
39 => 1106, 40 => 1106, 41 => 1106, 46 => 1106,
56 => 1106, 60 => 1106, 67 => 1106, 68 => 1106,
70 => 1106, 71 => 1106, 72 => 1106, 73 => 1106,
86 => 1106, 91 => 1106, 94 => 1106, 97 => 1106,
99 => 1106, 103 => 1106, others => 0),
4737 =>
(0 => 1101, 15 => 1101, 34 => 1101, 35 => 1101,
39 => 1101, 40 => 1101, 41 => 1101, 46 => 1101,
56 => 1101, 60 => 1101, 67 => 1101, 68 => 1101,
70 => 1101, 71 => 1101, 72 => 1101, 73 => 1101,
86 => 1101, 91 => 1101, 94 => 1101, 97 => 1101,
99 => 1101, 103 => 1101, others => 0),
4738 =>
(85 => 37852, others => 0),
4739 =>
(0 => 1095, 15 => 1095, 34 => 1095, 35 => 1095,
39 => 1095, 40 => 1095, 41 => 1095, 46 => 1095,
56 => 1095, 60 => 1095, 67 => 1095, 68 => 1095,
70 => 1095, 71 => 1095, 72 => 1095, 73 => 1095,
86 => 1095, 91 => 1095, 94 => 1095, 97 => 1095,
99 => 1095, 103 => 1095, others => 0),
4740 =>
(85 => 37853, others => 0),
4741 =>
(46 => 32807, 85 => 37854, 90 => 32868, others => 0),
4742 =>
(0 => 1090, 15 => 1090, 34 => 1090, 35 => 1090,
39 => 1090, 40 => 1090, 41 => 1090, 46 => 1090,
56 => 1090, 60 => 1090, 67 => 1090, 68 => 1090,
70 => 1090, 71 => 1090, 72 => 1090, 73 => 1090,
86 => 1090, 91 => 1090, 94 => 1090, 97 => 1090,
99 => 1090, 103 => 1090, others => 0),
4743 =>
(0 => 914, 15 => 914, 34 => 914, 35 => 914,
39 => 914, 40 => 914, 41 => 914, 46 => 914,
56 => 914, 60 => 914, 67 => 914, 68 => 914,
70 => 914, 71 => 914, 72 => 914, 73 => 914,
86 => 914, 91 => 914, 94 => 914, 97 => 914,
99 => 914, 103 => 914, others => 0),
4744 =>
(0 => 909, 15 => 909, 34 => 909, 35 => 909,
39 => 909, 40 => 909, 41 => 909, 46 => 909,
56 => 909, 60 => 909, 67 => 909, 68 => 909,
70 => 909, 71 => 909, 72 => 909, 73 => 909,
86 => 909, 91 => 909, 94 => 909, 97 => 909,
99 => 909, 103 => 909, others => 0),
4745 =>
(85 => 37856, others => 0),
4746 =>
(0 => 903, 15 => 903, 34 => 903, 35 => 903,
39 => 903, 40 => 903, 41 => 903, 46 => 903,
56 => 903, 60 => 903, 67 => 903, 68 => 903,
70 => 903, 71 => 903, 72 => 903, 73 => 903,
86 => 903, 91 => 903, 94 => 903, 97 => 903,
99 => 903, 103 => 903, others => 0),
4747 =>
(85 => 37857, others => 0),
4748 =>
(46 => 32807, 85 => 37858, 90 => 32868, others => 0),
4749 =>
(0 => 898, 15 => 898, 34 => 898, 35 => 898,
39 => 898, 40 => 898, 41 => 898, 46 => 898,
56 => 898, 60 => 898, 67 => 898, 68 => 898,
70 => 898, 71 => 898, 72 => 898, 73 => 898,
86 => 898, 91 => 898, 94 => 898, 97 => 898,
99 => 898, 103 => 898, others => 0),
4750 =>
(0 => 1206, 15 => 1206, 34 => 1206, 35 => 1206,
39 => 1206, 40 => 1206, 41 => 1206, 46 => 1206,
56 => 1206, 60 => 1206, 67 => 1206, 68 => 1206,
70 => 1206, 71 => 1206, 72 => 1206, 73 => 1206,
86 => 1206, 91 => 1206, 94 => 1206, 97 => 1206,
99 => 1206, 103 => 1206, others => 0),
4751 =>
(85 => 37860, others => 0),
4752 =>
(0 => 1208, 15 => 1208, 34 => 1208, 35 => 1208,
39 => 1208, 40 => 1208, 41 => 1208, 46 => 1208,
56 => 1208, 60 => 1208, 67 => 1208, 68 => 1208,
70 => 1208, 71 => 1208, 72 => 1208, 73 => 1208,
86 => 1208, 91 => 1208, 94 => 1208, 97 => 1208,
99 => 1208, 103 => 1208, others => 0),
4753 =>
(85 => 37861, others => 0),
4754 =>
(0 => 847, 15 => 847, 34 => 847, 35 => 847,
39 => 847, 40 => 847, 41 => 847, 46 => 847,
56 => 847, 60 => 847, 67 => 847, 68 => 847,
70 => 847, 71 => 847, 72 => 847, 73 => 847,
86 => 847, 91 => 847, 94 => 847, 97 => 847,
99 => 847, 103 => 847, others => 0),
4755 =>
(85 => 37862, others => 0),
4756 =>
(34 => 37864, 37 => 37863, others => 0),
4757 =>
(0 => 1202, 15 => 1202, 34 => 1202, 35 => 1202,
39 => 1202, 40 => 1202, 41 => 1202, 46 => 1202,
56 => 1202, 60 => 1202, 67 => 1202, 68 => 1202,
70 => 1202, 71 => 1202, 72 => 1202, 73 => 1202,
86 => 1202, 91 => 1202, 94 => 1202, 97 => 1202,
99 => 1202, 103 => 1202, others => 0),
4758 =>
(85 => 37865, others => 0),
4759 =>
(0 => 1204, 15 => 1204, 34 => 1204, 35 => 1204,
39 => 1204, 40 => 1204, 41 => 1204, 46 => 1204,
56 => 1204, 60 => 1204, 67 => 1204, 68 => 1204,
70 => 1204, 71 => 1204, 72 => 1204, 73 => 1204,
86 => 1204, 91 => 1204, 94 => 1204, 97 => 1204,
99 => 1204, 103 => 1204, others => 0),
4760 =>
(85 => 37866, others => 0),
4761 =>
(46 => 32807, 85 => 37867, 90 => 32868, others => 0),
4762 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4763 =>
(46 => 32807, 85 => 37870, 90 => 32868, others => 0),
4764 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4765 =>
(15 => 37874, 34 => 37873, others => 0),
4766 =>
(34 => 37875, others => 0),
4767 =>
(0 => 1085, 15 => 1085, 34 => 1085, 35 => 1085,
39 => 1085, 40 => 1085, 41 => 1085, 46 => 1085,
56 => 1085, 60 => 1085, 67 => 1085, 68 => 1085,
70 => 1085, 71 => 1085, 72 => 1085, 73 => 1085,
86 => 1085, 91 => 1085, 94 => 1085, 97 => 1085,
99 => 1085, 103 => 1085, others => 0),
4768 =>
(85 => 37876, others => 0),
4769 =>
(0 => 1080, 15 => 1080, 34 => 1080, 35 => 1080,
39 => 1080, 40 => 1080, 41 => 1080, 46 => 1080,
56 => 1080, 60 => 1080, 67 => 1080, 68 => 1080,
70 => 1080, 71 => 1080, 72 => 1080, 73 => 1080,
86 => 1080, 91 => 1080, 94 => 1080, 97 => 1080,
99 => 1080, 103 => 1080, others => 0),
4770 =>
(101 => 33976, others => 0),
4771 =>
(46 => 32807, 85 => 37878, 90 => 32868, others => 0),
4772 =>
(0 => 1074, 15 => 1074, 34 => 1074, 35 => 1074,
39 => 1074, 40 => 1074, 41 => 1074, 46 => 1074,
56 => 1074, 60 => 1074, 67 => 1074, 68 => 1074,
70 => 1074, 71 => 1074, 72 => 1074, 73 => 1074,
86 => 1074, 91 => 1074, 94 => 1074, 97 => 1074,
99 => 1074, 103 => 1074, others => 0),
4773 =>
(101 => 33976, others => 0),
4774 =>
(46 => 32807, 85 => 37881, 90 => 32868, others => 0),
4775 =>
(0 => 1069, 15 => 1069, 34 => 1069, 35 => 1069,
39 => 1069, 40 => 1069, 41 => 1069, 46 => 1069,
56 => 1069, 60 => 1069, 67 => 1069, 68 => 1069,
70 => 1069, 71 => 1069, 72 => 1069, 73 => 1069,
86 => 1069, 91 => 1069, 94 => 1069, 97 => 1069,
99 => 1069, 103 => 1069, others => 0),
4776 =>
(85 => 37883, others => 0),
4777 =>
(34 => 37885, 37 => 37884, others => 0),
4778 =>
(34 => 37886, others => 0),
4779 =>
(0 => 869, 15 => 869, 34 => 869, 35 => 869,
39 => 869, 40 => 869, 41 => 869, 46 => 869,
56 => 869, 60 => 869, 67 => 869, 68 => 869,
70 => 869, 71 => 869, 72 => 869, 73 => 869,
86 => 869, 91 => 869, 94 => 869, 97 => 869,
99 => 869, 103 => 869, others => 0),
4780 =>
(85 => 37887, others => 0),
4781 =>
(0 => 864, 15 => 864, 34 => 864, 35 => 864,
39 => 864, 40 => 864, 41 => 864, 46 => 864,
56 => 864, 60 => 864, 67 => 864, 68 => 864,
70 => 864, 71 => 864, 72 => 864, 73 => 864,
86 => 864, 91 => 864, 94 => 864, 97 => 864,
99 => 864, 103 => 864, others => 0),
4782 =>
(101 => 33976, others => 0),
4783 =>
(46 => 32807, 85 => 37889, 90 => 32868, others => 0),
4784 =>
(0 => 858, 15 => 858, 34 => 858, 35 => 858,
39 => 858, 40 => 858, 41 => 858, 46 => 858,
56 => 858, 60 => 858, 67 => 858, 68 => 858,
70 => 858, 71 => 858, 72 => 858, 73 => 858,
86 => 858, 91 => 858, 94 => 858, 97 => 858,
99 => 858, 103 => 858, others => 0),
4785 =>
(101 => 33976, others => 0),
4786 =>
(46 => 32807, 85 => 37892, 90 => 32868, others => 0),
4787 =>
(0 => 853, 15 => 853, 34 => 853, 35 => 853,
39 => 853, 40 => 853, 41 => 853, 46 => 853,
56 => 853, 60 => 853, 67 => 853, 68 => 853,
70 => 853, 71 => 853, 72 => 853, 73 => 853,
86 => 853, 91 => 853, 94 => 853, 97 => 853,
99 => 853, 103 => 853, others => 0),
4788 =>
(85 => 37894, others => 0),
4789 =>
(34 => 37896, 37 => 37895, others => 0),
4790 =>
(46 => 32807, 85 => 37897, others => 0),
4791 =>
(0 => 1787, 15 => 1787, 34 => 1787, 35 => 1787,
39 => 1787, 40 => 1787, 41 => 1787, 46 => 1787,
56 => 1787, 60 => 1787, 67 => 1787, 68 => 1787,
70 => 1787, 71 => 1787, 72 => 1787, 73 => 1787,
86 => 1787, 91 => 1787, 94 => 1787, 97 => 1787,
99 => 1787, 103 => 1787, others => 0),
4792 =>
(34 => 37899, others => 0),
4793 =>
(0 => 1782, 15 => 1782, 34 => 1782, 35 => 1782,
39 => 1782, 40 => 1782, 41 => 1782, 46 => 1782,
56 => 1782, 60 => 1782, 67 => 1782, 68 => 1782,
70 => 1782, 71 => 1782, 72 => 1782, 73 => 1782,
86 => 1782, 91 => 1782, 94 => 1782, 97 => 1782,
99 => 1782, 103 => 1782, others => 0),
4794 =>
(29 => 32865, 85 => 37900, others => 0),
4795 =>
(34 => 37901, others => 0),
4796 =>
(0 => 1776, 15 => 1776, 34 => 1776, 35 => 1776,
39 => 1776, 40 => 1776, 41 => 1776, 46 => 1776,
56 => 1776, 60 => 1776, 67 => 1776, 68 => 1776,
70 => 1776, 71 => 1776, 72 => 1776, 73 => 1776,
86 => 1776, 91 => 1776, 94 => 1776, 97 => 1776,
99 => 1776, 103 => 1776, others => 0),
4797 =>
(29 => 32865, 85 => 37902, others => 0),
4798 =>
(0 => 1771, 15 => 1771, 34 => 1771, 35 => 1771,
39 => 1771, 40 => 1771, 41 => 1771, 46 => 1771,
56 => 1771, 60 => 1771, 67 => 1771, 68 => 1771,
70 => 1771, 71 => 1771, 72 => 1771, 73 => 1771,
86 => 1771, 91 => 1771, 94 => 1771, 97 => 1771,
99 => 1771, 103 => 1771, others => 0),
4799 =>
(101 => 33976, others => 0),
4800 =>
(46 => 32807, 85 => 37904, others => 0),
4801 =>
(0 => 1803, 15 => 1803, 34 => 1803, 35 => 1803,
39 => 1803, 40 => 1803, 41 => 1803, 46 => 1803,
56 => 1803, 60 => 1803, 67 => 1803, 68 => 1803,
70 => 1803, 71 => 1803, 72 => 1803, 73 => 1803,
86 => 1803, 91 => 1803, 94 => 1803, 97 => 1803,
99 => 1803, 103 => 1803, others => 0),
4802 =>
(0 => 1797, 15 => 1797, 34 => 1797, 35 => 1797,
39 => 1797, 40 => 1797, 41 => 1797, 46 => 1797,
56 => 1797, 60 => 1797, 67 => 1797, 68 => 1797,
70 => 1797, 71 => 1797, 72 => 1797, 73 => 1797,
86 => 1797, 91 => 1797, 94 => 1797, 97 => 1797,
99 => 1797, 103 => 1797, others => 0),
4803 =>
(0 => 1792, 15 => 1792, 34 => 1792, 35 => 1792,
39 => 1792, 40 => 1792, 41 => 1792, 46 => 1792,
56 => 1792, 60 => 1792, 67 => 1792, 68 => 1792,
70 => 1792, 71 => 1792, 72 => 1792, 73 => 1792,
86 => 1792, 91 => 1792, 94 => 1792, 97 => 1792,
99 => 1792, 103 => 1792, others => 0),
4804 =>
(29 => 32865, 85 => 37906, others => 0),
4805 =>
(34 => 37907, others => 0),
4806 =>
(0 => 797, 15 => 797, 34 => 797, 35 => 797,
39 => 797, 40 => 797, 41 => 797, 46 => 797,
56 => 797, 60 => 797, 67 => 797, 68 => 797,
70 => 797, 71 => 797, 72 => 797, 73 => 797,
86 => 797, 91 => 797, 94 => 797, 97 => 797,
99 => 797, 103 => 797, others => 0),
4807 =>
(85 => 37908, others => 0),
4808 =>
(0 => 792, 15 => 792, 34 => 792, 35 => 792,
39 => 792, 40 => 792, 41 => 792, 46 => 792,
56 => 792, 60 => 792, 67 => 792, 68 => 792,
70 => 792, 71 => 792, 72 => 792, 73 => 792,
86 => 792, 91 => 792, 94 => 792, 97 => 792,
99 => 792, 103 => 792, others => 0),
4809 =>
(101 => 33976, others => 0),
4810 =>
(46 => 32807, 85 => 37910, 90 => 32868, others => 0),
4811 =>
(0 => 786, 15 => 786, 34 => 786, 35 => 786,
39 => 786, 40 => 786, 41 => 786, 46 => 786,
56 => 786, 60 => 786, 67 => 786, 68 => 786,
70 => 786, 71 => 786, 72 => 786, 73 => 786,
86 => 786, 91 => 786, 94 => 786, 97 => 786,
99 => 786, 103 => 786, others => 0),
4812 =>
(101 => 33976, others => 0),
4813 =>
(46 => 32807, 85 => 37913, 90 => 32868, others => 0),
4814 =>
(0 => 781, 15 => 781, 34 => 781, 35 => 781,
39 => 781, 40 => 781, 41 => 781, 46 => 781,
56 => 781, 60 => 781, 67 => 781, 68 => 781,
70 => 781, 71 => 781, 72 => 781, 73 => 781,
86 => 781, 91 => 781, 94 => 781, 97 => 781,
99 => 781, 103 => 781, others => 0),
4815 =>
(85 => 37915, others => 0),
4816 =>
(34 => 37917, 37 => 37916, others => 0),
4817 =>
(0 => 1059, 15 => 1059, 34 => 1059, 35 => 1059,
39 => 1059, 40 => 1059, 41 => 1059, 46 => 1059,
56 => 1059, 60 => 1059, 67 => 1059, 68 => 1059,
70 => 1059, 71 => 1059, 72 => 1059, 73 => 1059,
86 => 1059, 91 => 1059, 94 => 1059, 97 => 1059,
99 => 1059, 103 => 1059, others => 0),
4818 =>
(85 => 37918, others => 0),
4819 =>
(46 => 32807, 85 => 37919, 90 => 32868, others => 0),
4820 =>
(0 => 1054, 15 => 1054, 34 => 1054, 35 => 1054,
39 => 1054, 40 => 1054, 41 => 1054, 46 => 1054,
56 => 1054, 60 => 1054, 67 => 1054, 68 => 1054,
70 => 1054, 71 => 1054, 72 => 1054, 73 => 1054,
86 => 1054, 91 => 1054, 94 => 1054, 97 => 1054,
99 => 1054, 103 => 1054, others => 0),
4821 =>
(46 => 32807, 85 => 37921, 90 => 32868, others => 0),
4822 =>
(0 => 1048, 15 => 1048, 34 => 1048, 35 => 1048,
39 => 1048, 40 => 1048, 41 => 1048, 46 => 1048,
56 => 1048, 60 => 1048, 67 => 1048, 68 => 1048,
70 => 1048, 71 => 1048, 72 => 1048, 73 => 1048,
86 => 1048, 91 => 1048, 94 => 1048, 97 => 1048,
99 => 1048, 103 => 1048, others => 0),
4823 =>
(34 => 37923, others => 0),
4824 =>
(0 => 1043, 15 => 1043, 34 => 1043, 35 => 1043,
39 => 1043, 40 => 1043, 41 => 1043, 46 => 1043,
56 => 1043, 60 => 1043, 67 => 1043, 68 => 1043,
70 => 1043, 71 => 1043, 72 => 1043, 73 => 1043,
86 => 1043, 91 => 1043, 94 => 1043, 97 => 1043,
99 => 1043, 103 => 1043, others => 0),
4825 =>
(85 => 37924, others => 0),
4826 =>
(0 => 819, 15 => 819, 34 => 819, 35 => 819,
39 => 819, 40 => 819, 41 => 819, 46 => 819,
56 => 819, 60 => 819, 67 => 819, 68 => 819,
70 => 819, 71 => 819, 72 => 819, 73 => 819,
86 => 819, 91 => 819, 94 => 819, 97 => 819,
99 => 819, 103 => 819, others => 0),
4827 =>
(85 => 37925, others => 0),
4828 =>
(46 => 32807, 85 => 37926, 90 => 32868, others => 0),
4829 =>
(0 => 814, 15 => 814, 34 => 814, 35 => 814,
39 => 814, 40 => 814, 41 => 814, 46 => 814,
56 => 814, 60 => 814, 67 => 814, 68 => 814,
70 => 814, 71 => 814, 72 => 814, 73 => 814,
86 => 814, 91 => 814, 94 => 814, 97 => 814,
99 => 814, 103 => 814, others => 0),
4830 =>
(46 => 32807, 85 => 37928, 90 => 32868, others => 0),
4831 =>
(0 => 808, 15 => 808, 34 => 808, 35 => 808,
39 => 808, 40 => 808, 41 => 808, 46 => 808,
56 => 808, 60 => 808, 67 => 808, 68 => 808,
70 => 808, 71 => 808, 72 => 808, 73 => 808,
86 => 808, 91 => 808, 94 => 808, 97 => 808,
99 => 808, 103 => 808, others => 0),
4832 =>
(34 => 37930, others => 0),
4833 =>
(0 => 803, 15 => 803, 34 => 803, 35 => 803,
39 => 803, 40 => 803, 41 => 803, 46 => 803,
56 => 803, 60 => 803, 67 => 803, 68 => 803,
70 => 803, 71 => 803, 72 => 803, 73 => 803,
86 => 803, 91 => 803, 94 => 803, 97 => 803,
99 => 803, 103 => 803, others => 0),
4834 =>
(85 => 37931, others => 0),
4835 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37932,
103 => 32885, others => 0),
4836 =>
(85 => 37934, 103 => 32885, others => 0),
4837 =>
(46 => 32807, 85 => 37936, 90 => 32868, others => 0),
4838 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4839 =>
(85 => 37939, 103 => 32885, others => 0),
4840 =>
(85 => 37941, 103 => 32885, others => 0),
4841 =>
(15 => 37944, 34 => 37943, others => 0),
4842 =>
(0 => 1169, 15 => 1169, 34 => 1169, 35 => 1169,
39 => 1169, 40 => 1169, 41 => 1169, 46 => 1169,
56 => 1169, 60 => 1169, 67 => 1169, 68 => 1169,
70 => 1169, 71 => 1169, 72 => 1169, 73 => 1169,
86 => 1169, 91 => 1169, 94 => 1169, 97 => 1169,
99 => 1169, 103 => 1169, others => 0),
4843 =>
(15 => 37946, 34 => 37945, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4844 =>
(0 => 1285, 15 => 1285, 34 => 1285, 35 => 1285,
39 => 1285, 40 => 1285, 41 => 1285, 46 => 1285,
56 => 1285, 60 => 1285, 67 => 1285, 68 => 1285,
70 => 1285, 71 => 1285, 72 => 1285, 73 => 1285,
86 => 1285, 91 => 1285, 94 => 1285, 97 => 1285,
99 => 1285, 103 => 1285, others => 0),
4845 =>
(0 => 1287, 15 => 1287, 34 => 1287, 35 => 1287,
39 => 1287, 40 => 1287, 41 => 1287, 46 => 1287,
56 => 1287, 60 => 1287, 67 => 1287, 68 => 1287,
70 => 1287, 71 => 1287, 72 => 1287, 73 => 1287,
86 => 1287, 91 => 1287, 94 => 1287, 97 => 1287,
99 => 1287, 103 => 1287, others => 0),
4846 =>
(0 => 1038, 15 => 1038, 34 => 1038, 35 => 1038,
39 => 1038, 40 => 1038, 41 => 1038, 46 => 1038,
56 => 1038, 60 => 1038, 67 => 1038, 68 => 1038,
70 => 1038, 71 => 1038, 72 => 1038, 73 => 1038,
86 => 1038, 91 => 1038, 94 => 1038, 97 => 1038,
99 => 1038, 103 => 1038, others => 0),
4847 =>
(101 => 33976, others => 0),
4848 =>
(46 => 32807, 85 => 37949, 90 => 32868, others => 0),
4849 =>
(0 => 1281, 15 => 1281, 34 => 1281, 35 => 1281,
39 => 1281, 40 => 1281, 41 => 1281, 46 => 1281,
56 => 1281, 60 => 1281, 67 => 1281, 68 => 1281,
70 => 1281, 71 => 1281, 72 => 1281, 73 => 1281,
86 => 1281, 91 => 1281, 94 => 1281, 97 => 1281,
99 => 1281, 103 => 1281, others => 0),
4850 =>
(0 => 1283, 15 => 1283, 34 => 1283, 35 => 1283,
39 => 1283, 40 => 1283, 41 => 1283, 46 => 1283,
56 => 1283, 60 => 1283, 67 => 1283, 68 => 1283,
70 => 1283, 71 => 1283, 72 => 1283, 73 => 1283,
86 => 1283, 91 => 1283, 94 => 1283, 97 => 1283,
99 => 1283, 103 => 1283, others => 0),
4851 =>
(0 => 1033, 15 => 1033, 34 => 1033, 35 => 1033,
39 => 1033, 40 => 1033, 41 => 1033, 46 => 1033,
56 => 1033, 60 => 1033, 67 => 1033, 68 => 1033,
70 => 1033, 71 => 1033, 72 => 1033, 73 => 1033,
86 => 1033, 91 => 1033, 94 => 1033, 97 => 1033,
99 => 1033, 103 => 1033, others => 0),
4852 =>
(85 => 37951, others => 0),
4853 =>
(34 => 37953, 37 => 37952, others => 0),
4854 =>
(0 => 1027, 15 => 1027, 34 => 1027, 35 => 1027,
39 => 1027, 40 => 1027, 41 => 1027, 46 => 1027,
56 => 1027, 60 => 1027, 67 => 1027, 68 => 1027,
70 => 1027, 71 => 1027, 72 => 1027, 73 => 1027,
86 => 1027, 91 => 1027, 94 => 1027, 97 => 1027,
99 => 1027, 103 => 1027, others => 0),
4855 =>
(85 => 37954, others => 0),
4856 =>
(34 => 37956, 37 => 37955, others => 0),
4857 =>
(46 => 32807, 85 => 37957, 90 => 32868, others => 0),
4858 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4859 =>
(0 => 1175, 15 => 1175, 34 => 1175, 35 => 1175,
39 => 1175, 40 => 1175, 41 => 1175, 46 => 1175,
56 => 1175, 60 => 1175, 67 => 1175, 68 => 1175,
70 => 1175, 71 => 1175, 72 => 1175, 73 => 1175,
86 => 1175, 91 => 1175, 94 => 1175, 97 => 1175,
99 => 1175, 103 => 1175, others => 0),
4860 =>
(0 => 1177, 15 => 1177, 34 => 1177, 35 => 1177,
39 => 1177, 40 => 1177, 41 => 1177, 46 => 1177,
56 => 1177, 60 => 1177, 67 => 1177, 68 => 1177,
70 => 1177, 71 => 1177, 72 => 1177, 73 => 1177,
86 => 1177, 91 => 1177, 94 => 1177, 97 => 1177,
99 => 1177, 103 => 1177, others => 0),
4861 =>
(0 => 774, 15 => 774, 34 => 774, 35 => 774,
39 => 774, 40 => 774, 41 => 774, 46 => 774,
56 => 774, 60 => 774, 67 => 774, 68 => 774,
70 => 774, 71 => 774, 72 => 774, 73 => 774,
86 => 774, 91 => 774, 94 => 774, 97 => 774,
99 => 774, 103 => 774, others => 0),
4862 =>
(101 => 33976, others => 0),
4863 =>
(46 => 32807, 85 => 37961, 90 => 32868, others => 0),
4864 =>
(0 => 1171, 15 => 1171, 34 => 1171, 35 => 1171,
39 => 1171, 40 => 1171, 41 => 1171, 46 => 1171,
56 => 1171, 60 => 1171, 67 => 1171, 68 => 1171,
70 => 1171, 71 => 1171, 72 => 1171, 73 => 1171,
86 => 1171, 91 => 1171, 94 => 1171, 97 => 1171,
99 => 1171, 103 => 1171, others => 0),
4865 =>
(0 => 1173, 15 => 1173, 34 => 1173, 35 => 1173,
39 => 1173, 40 => 1173, 41 => 1173, 46 => 1173,
56 => 1173, 60 => 1173, 67 => 1173, 68 => 1173,
70 => 1173, 71 => 1173, 72 => 1173, 73 => 1173,
86 => 1173, 91 => 1173, 94 => 1173, 97 => 1173,
99 => 1173, 103 => 1173, others => 0),
4866 =>
(0 => 769, 15 => 769, 34 => 769, 35 => 769,
39 => 769, 40 => 769, 41 => 769, 46 => 769,
56 => 769, 60 => 769, 67 => 769, 68 => 769,
70 => 769, 71 => 769, 72 => 769, 73 => 769,
86 => 769, 91 => 769, 94 => 769, 97 => 769,
99 => 769, 103 => 769, others => 0),
4867 =>
(85 => 37963, others => 0),
4868 =>
(34 => 37965, 37 => 37964, others => 0),
4869 =>
(0 => 763, 15 => 763, 34 => 763, 35 => 763,
39 => 763, 40 => 763, 41 => 763, 46 => 763,
56 => 763, 60 => 763, 67 => 763, 68 => 763,
70 => 763, 71 => 763, 72 => 763, 73 => 763,
86 => 763, 91 => 763, 94 => 763, 97 => 763,
99 => 763, 103 => 763, others => 0),
4870 =>
(85 => 37966, others => 0),
4871 =>
(34 => 37968, 37 => 37967, others => 0),
4872 =>
(46 => 32807, 85 => 37969, 90 => 32868, others => 0),
4873 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4874 =>
(40 => 504, 46 => 504, 68 => 504, 70 => 504,
72 => 504, 97 => 504, 99 => 504, 103 => 504,
others => 0),
4875 =>
(40 => 502, 46 => 502, 68 => 502, 70 => 502,
72 => 502, 97 => 502, 99 => 502, 103 => 502,
others => 0),
4876 =>
(85 => 37972, 103 => 32885, others => 0),
4877 =>
(17 => 37975, 19 => 32869, 46 => 32807, 85 => 37974,
90 => 32868, 103 => 32885, others => 0),
4878 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 37978,
103 => 32885, others => 0),
4879 =>
(40 => 488, 46 => 488, 68 => 488, 70 => 488,
72 => 488, 97 => 488, 99 => 488, 103 => 488,
others => 0),
4880 =>
(40 => 534, 46 => 534, 68 => 534, 70 => 534,
72 => 534, 97 => 534, 99 => 534, 103 => 534,
others => 0),
4881 =>
(40 => 529, 46 => 529, 68 => 529, 70 => 529,
72 => 529, 97 => 529, 99 => 529, 103 => 529,
others => 0),
4882 =>
(85 => 37980, others => 0),
4883 =>
(40 => 530, 46 => 530, 68 => 530, 70 => 530,
72 => 530, 97 => 530, 99 => 530, 103 => 530,
others => 0),
4884 =>
(40 => 527, 46 => 527, 68 => 527, 70 => 527,
72 => 527, 97 => 527, 99 => 527, 103 => 527,
others => 0),
4885 =>
(85 => 37981, others => 0),
4886 =>
(40 => 532, 46 => 532, 68 => 532, 70 => 532,
72 => 532, 97 => 532, 99 => 532, 103 => 532,
others => 0),
4887 =>
(40 => 498, 46 => 498, 68 => 498, 70 => 498,
72 => 498, 97 => 498, 99 => 498, 103 => 498,
others => 0),
4888 =>
(40 => 493, 46 => 493, 68 => 493, 70 => 493,
72 => 493, 97 => 493, 99 => 493, 103 => 493,
others => 0),
4889 =>
(85 => 37982, others => 0),
4890 =>
(40 => 494, 46 => 494, 68 => 494, 70 => 494,
72 => 494, 97 => 494, 99 => 494, 103 => 494,
others => 0),
4891 =>
(40 => 491, 46 => 491, 68 => 491, 70 => 491,
72 => 491, 97 => 491, 99 => 491, 103 => 491,
others => 0),
4892 =>
(85 => 37983, others => 0),
4893 =>
(40 => 496, 46 => 496, 68 => 496, 70 => 496,
72 => 496, 97 => 496, 99 => 496, 103 => 496,
others => 0),
4894 =>
(85 => 409, 103 => 409, others => 0),
4895 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 37984,
90 => 32868, others => 0),
4896 =>
(61 => 37987, others => 0),
4897 =>
(85 => 425, 103 => 425, others => 0),
4898 =>
(85 => 412, 103 => 412, others => 0),
4899 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4900 =>
(85 => 419, 103 => 419, others => 0),
4901 =>
(85 => 446, others => 0),
4902 =>
(85 => 440, others => 0),
4903 =>
(61 => 37989, others => 0),
4904 =>
(13 => 57, 51 => 57, 78 => 57, 83 => 57,
85 => 57, 103 => 57, others => 0),
4905 =>
(13 => 42, 51 => 42, 78 => 42, 83 => 42,
85 => 42, 103 => 42, others => 0),
4906 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4907 =>
(13 => 49, 51 => 49, 78 => 49, 83 => 49,
85 => 49, 103 => 49, others => 0),
4908 =>
(0 => 1356, 15 => 1356, 34 => 1356, 39 => 1356,
40 => 1356, 41 => 1356, 46 => 1356, 56 => 1356,
60 => 1356, 67 => 1356, 68 => 1356, 70 => 1356,
71 => 1356, 72 => 1356, 73 => 1356, 86 => 1356,
91 => 1356, 94 => 1356, 97 => 1356, 99 => 1356,
103 => 1356, others => 0),
4909 =>
(0 => 987, 15 => 987, 34 => 987, 35 => 987,
39 => 987, 40 => 987, 41 => 987, 46 => 987,
56 => 987, 60 => 987, 67 => 987, 68 => 987,
70 => 987, 71 => 987, 72 => 987, 73 => 987,
86 => 987, 91 => 987, 94 => 987, 97 => 987,
99 => 987, 103 => 987, others => 0),
4910 =>
(85 => 37991, others => 0),
4911 =>
(46 => 32807, 85 => 37992, 90 => 32868, others => 0),
4912 =>
(0 => 982, 15 => 982, 34 => 982, 35 => 982,
39 => 982, 40 => 982, 41 => 982, 46 => 982,
56 => 982, 60 => 982, 67 => 982, 68 => 982,
70 => 982, 71 => 982, 72 => 982, 73 => 982,
86 => 982, 91 => 982, 94 => 982, 97 => 982,
99 => 982, 103 => 982, others => 0),
4913 =>
(46 => 32807, 85 => 37994, 90 => 32868, others => 0),
4914 =>
(0 => 976, 15 => 976, 34 => 976, 35 => 976,
39 => 976, 40 => 976, 41 => 976, 46 => 976,
56 => 976, 60 => 976, 67 => 976, 68 => 976,
70 => 976, 71 => 976, 72 => 976, 73 => 976,
86 => 976, 91 => 976, 94 => 976, 97 => 976,
99 => 976, 103 => 976, others => 0),
4915 =>
(34 => 37996, others => 0),
4916 =>
(0 => 971, 15 => 971, 34 => 971, 35 => 971,
39 => 971, 40 => 971, 41 => 971, 46 => 971,
56 => 971, 60 => 971, 67 => 971, 68 => 971,
70 => 971, 71 => 971, 72 => 971, 73 => 971,
86 => 971, 91 => 971, 94 => 971, 97 => 971,
99 => 971, 103 => 971, others => 0),
4917 =>
(85 => 37997, others => 0),
4918 =>
(0 => 1148, 15 => 1148, 34 => 1148, 35 => 1148,
39 => 1148, 40 => 1148, 41 => 1148, 46 => 1148,
56 => 1148, 60 => 1148, 67 => 1148, 68 => 1148,
70 => 1148, 71 => 1148, 72 => 1148, 73 => 1148,
86 => 1148, 91 => 1148, 94 => 1148, 97 => 1148,
99 => 1148, 103 => 1148, others => 0),
4919 =>
(0 => 1142, 15 => 1142, 34 => 1142, 35 => 1142,
39 => 1142, 40 => 1142, 41 => 1142, 46 => 1142,
56 => 1142, 60 => 1142, 67 => 1142, 68 => 1142,
70 => 1142, 71 => 1142, 72 => 1142, 73 => 1142,
86 => 1142, 91 => 1142, 94 => 1142, 97 => 1142,
99 => 1142, 103 => 1142, others => 0),
4920 =>
(0 => 1137, 15 => 1137, 34 => 1137, 35 => 1137,
39 => 1137, 40 => 1137, 41 => 1137, 46 => 1137,
56 => 1137, 60 => 1137, 67 => 1137, 68 => 1137,
70 => 1137, 71 => 1137, 72 => 1137, 73 => 1137,
86 => 1137, 91 => 1137, 94 => 1137, 97 => 1137,
99 => 1137, 103 => 1137, others => 0),
4921 =>
(85 => 37998, others => 0),
4922 =>
(0 => 1004, 15 => 1004, 34 => 1004, 35 => 1004,
39 => 1004, 40 => 1004, 41 => 1004, 46 => 1004,
56 => 1004, 60 => 1004, 67 => 1004, 68 => 1004,
70 => 1004, 71 => 1004, 72 => 1004, 73 => 1004,
86 => 1004, 91 => 1004, 94 => 1004, 97 => 1004,
99 => 1004, 103 => 1004, others => 0),
4923 =>
(0 => 998, 15 => 998, 34 => 998, 35 => 998,
39 => 998, 40 => 998, 41 => 998, 46 => 998,
56 => 998, 60 => 998, 67 => 998, 68 => 998,
70 => 998, 71 => 998, 72 => 998, 73 => 998,
86 => 998, 91 => 998, 94 => 998, 97 => 998,
99 => 998, 103 => 998, others => 0),
4924 =>
(0 => 993, 15 => 993, 34 => 993, 35 => 993,
39 => 993, 40 => 993, 41 => 993, 46 => 993,
56 => 993, 60 => 993, 67 => 993, 68 => 993,
70 => 993, 71 => 993, 72 => 993, 73 => 993,
86 => 993, 91 => 993, 94 => 993, 97 => 993,
99 => 993, 103 => 993, others => 0),
4925 =>
(85 => 37999, others => 0),
4926 =>
(0 => 1245, 15 => 1245, 34 => 1245, 35 => 1245,
39 => 1245, 40 => 1245, 41 => 1245, 46 => 1245,
56 => 1245, 60 => 1245, 67 => 1245, 68 => 1245,
70 => 1245, 71 => 1245, 72 => 1245, 73 => 1245,
86 => 1245, 91 => 1245, 94 => 1245, 97 => 1245,
99 => 1245, 103 => 1245, others => 0),
4927 =>
(0 => 1247, 15 => 1247, 34 => 1247, 35 => 1247,
39 => 1247, 40 => 1247, 41 => 1247, 46 => 1247,
56 => 1247, 60 => 1247, 67 => 1247, 68 => 1247,
70 => 1247, 71 => 1247, 72 => 1247, 73 => 1247,
86 => 1247, 91 => 1247, 94 => 1247, 97 => 1247,
99 => 1247, 103 => 1247, others => 0),
4928 =>
(0 => 942, 15 => 942, 34 => 942, 35 => 942,
39 => 942, 40 => 942, 41 => 942, 46 => 942,
56 => 942, 60 => 942, 67 => 942, 68 => 942,
70 => 942, 71 => 942, 72 => 942, 73 => 942,
86 => 942, 91 => 942, 94 => 942, 97 => 942,
99 => 942, 103 => 942, others => 0),
4929 =>
(101 => 33976, others => 0),
4930 =>
(46 => 32807, 85 => 38001, 90 => 32868, others => 0),
4931 =>
(0 => 1241, 15 => 1241, 34 => 1241, 35 => 1241,
39 => 1241, 40 => 1241, 41 => 1241, 46 => 1241,
56 => 1241, 60 => 1241, 67 => 1241, 68 => 1241,
70 => 1241, 71 => 1241, 72 => 1241, 73 => 1241,
86 => 1241, 91 => 1241, 94 => 1241, 97 => 1241,
99 => 1241, 103 => 1241, others => 0),
4932 =>
(0 => 1243, 15 => 1243, 34 => 1243, 35 => 1243,
39 => 1243, 40 => 1243, 41 => 1243, 46 => 1243,
56 => 1243, 60 => 1243, 67 => 1243, 68 => 1243,
70 => 1243, 71 => 1243, 72 => 1243, 73 => 1243,
86 => 1243, 91 => 1243, 94 => 1243, 97 => 1243,
99 => 1243, 103 => 1243, others => 0),
4933 =>
(0 => 937, 15 => 937, 34 => 937, 35 => 937,
39 => 937, 40 => 937, 41 => 937, 46 => 937,
56 => 937, 60 => 937, 67 => 937, 68 => 937,
70 => 937, 71 => 937, 72 => 937, 73 => 937,
86 => 937, 91 => 937, 94 => 937, 97 => 937,
99 => 937, 103 => 937, others => 0),
4934 =>
(85 => 38003, others => 0),
4935 =>
(34 => 38005, 37 => 38004, others => 0),
4936 =>
(0 => 931, 15 => 931, 34 => 931, 35 => 931,
39 => 931, 40 => 931, 41 => 931, 46 => 931,
56 => 931, 60 => 931, 67 => 931, 68 => 931,
70 => 931, 71 => 931, 72 => 931, 73 => 931,
86 => 931, 91 => 931, 94 => 931, 97 => 931,
99 => 931, 103 => 931, others => 0),
4937 =>
(85 => 38006, others => 0),
4938 =>
(34 => 38008, 37 => 38007, others => 0),
4939 =>
(46 => 32807, 85 => 38009, 90 => 32868, others => 0),
4940 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
4941 =>
(46 => 32807, 85 => 38012, 90 => 32868, others => 0),
4942 =>
(0 => 1132, 15 => 1132, 34 => 1132, 35 => 1132,
39 => 1132, 40 => 1132, 41 => 1132, 46 => 1132,
56 => 1132, 60 => 1132, 67 => 1132, 68 => 1132,
70 => 1132, 71 => 1132, 72 => 1132, 73 => 1132,
86 => 1132, 91 => 1132, 94 => 1132, 97 => 1132,
99 => 1132, 103 => 1132, others => 0),
4943 =>
(34 => 38014, others => 0),
4944 =>
(0 => 1127, 15 => 1127, 34 => 1127, 35 => 1127,
39 => 1127, 40 => 1127, 41 => 1127, 46 => 1127,
56 => 1127, 60 => 1127, 67 => 1127, 68 => 1127,
70 => 1127, 71 => 1127, 72 => 1127, 73 => 1127,
86 => 1127, 91 => 1127, 94 => 1127, 97 => 1127,
99 => 1127, 103 => 1127, others => 0),
4945 =>
(85 => 38015, others => 0),
4946 =>
(34 => 38016, others => 0),
4947 =>
(0 => 1121, 15 => 1121, 34 => 1121, 35 => 1121,
39 => 1121, 40 => 1121, 41 => 1121, 46 => 1121,
56 => 1121, 60 => 1121, 67 => 1121, 68 => 1121,
70 => 1121, 71 => 1121, 72 => 1121, 73 => 1121,
86 => 1121, 91 => 1121, 94 => 1121, 97 => 1121,
99 => 1121, 103 => 1121, others => 0),
4948 =>
(85 => 38017, others => 0),
4949 =>
(0 => 1116, 15 => 1116, 34 => 1116, 35 => 1116,
39 => 1116, 40 => 1116, 41 => 1116, 46 => 1116,
56 => 1116, 60 => 1116, 67 => 1116, 68 => 1116,
70 => 1116, 71 => 1116, 72 => 1116, 73 => 1116,
86 => 1116, 91 => 1116, 94 => 1116, 97 => 1116,
99 => 1116, 103 => 1116, others => 0),
4950 =>
(101 => 33976, others => 0),
4951 =>
(46 => 32807, 85 => 38019, 90 => 32868, others => 0),
4952 =>
(46 => 32807, 85 => 38021, 90 => 32868, others => 0),
4953 =>
(0 => 964, 15 => 964, 34 => 964, 35 => 964,
39 => 964, 40 => 964, 41 => 964, 46 => 964,
56 => 964, 60 => 964, 67 => 964, 68 => 964,
70 => 964, 71 => 964, 72 => 964, 73 => 964,
86 => 964, 91 => 964, 94 => 964, 97 => 964,
99 => 964, 103 => 964, others => 0),
4954 =>
(34 => 38023, others => 0),
4955 =>
(0 => 959, 15 => 959, 34 => 959, 35 => 959,
39 => 959, 40 => 959, 41 => 959, 46 => 959,
56 => 959, 60 => 959, 67 => 959, 68 => 959,
70 => 959, 71 => 959, 72 => 959, 73 => 959,
86 => 959, 91 => 959, 94 => 959, 97 => 959,
99 => 959, 103 => 959, others => 0),
4956 =>
(85 => 38024, others => 0),
4957 =>
(34 => 38025, others => 0),
4958 =>
(0 => 953, 15 => 953, 34 => 953, 35 => 953,
39 => 953, 40 => 953, 41 => 953, 46 => 953,
56 => 953, 60 => 953, 67 => 953, 68 => 953,
70 => 953, 71 => 953, 72 => 953, 73 => 953,
86 => 953, 91 => 953, 94 => 953, 97 => 953,
99 => 953, 103 => 953, others => 0),
4959 =>
(85 => 38026, others => 0),
4960 =>
(0 => 948, 15 => 948, 34 => 948, 35 => 948,
39 => 948, 40 => 948, 41 => 948, 46 => 948,
56 => 948, 60 => 948, 67 => 948, 68 => 948,
70 => 948, 71 => 948, 72 => 948, 73 => 948,
86 => 948, 91 => 948, 94 => 948, 97 => 948,
99 => 948, 103 => 948, others => 0),
4961 =>
(101 => 33976, others => 0),
4962 =>
(46 => 32807, 85 => 38028, 90 => 32868, others => 0),
4963 =>
(51 => 38030, 103 => 32885, others => 0),
4964 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4965 =>
(15 => 36662, 34 => 36661, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4966 =>
(51 => 36667, others => 0),
4967 =>
(15 => 36671, 34 => 36670, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4968 =>
(51 => 36676, others => 0),
4969 =>
(15 => 36793, 34 => 36792, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
4970 =>
(51 => 36798, others => 0),
4971 =>
(0 => 1875, 15 => 1875, 34 => 1875, 35 => 1875,
39 => 1875, 40 => 1875, 41 => 1875, 46 => 1875,
56 => 1875, 60 => 1875, 67 => 1875, 68 => 1875,
70 => 1875, 71 => 1875, 72 => 1875, 73 => 1875,
86 => 1875, 91 => 1875, 94 => 1875, 97 => 1875,
99 => 1875, 103 => 1875, others => 0),
4972 =>
(0 => 1869, 15 => 1869, 34 => 1869, 35 => 1869,
39 => 1869, 40 => 1869, 41 => 1869, 46 => 1869,
56 => 1869, 60 => 1869, 67 => 1869, 68 => 1869,
70 => 1869, 71 => 1869, 72 => 1869, 73 => 1869,
86 => 1869, 91 => 1869, 94 => 1869, 97 => 1869,
99 => 1869, 103 => 1869, others => 0),
4973 =>
(0 => 1864, 15 => 1864, 34 => 1864, 35 => 1864,
39 => 1864, 40 => 1864, 41 => 1864, 46 => 1864,
56 => 1864, 60 => 1864, 67 => 1864, 68 => 1864,
70 => 1864, 71 => 1864, 72 => 1864, 73 => 1864,
86 => 1864, 91 => 1864, 94 => 1864, 97 => 1864,
99 => 1864, 103 => 1864, others => 0),
4974 =>
(29 => 32865, 85 => 38033, others => 0),
4975 =>
(15 => 1735, 34 => 1735, 39 => 1735, 40 => 1735,
41 => 1735, 46 => 1735, 60 => 1735, 67 => 1735,
68 => 1735, 70 => 1735, 71 => 1735, 72 => 1735,
73 => 1735, 91 => 1735, 94 => 1735, 97 => 1735,
99 => 1735, others => 0),
4976 =>
(34 => 2227, 101 => 2227, others => 0),
4977 =>
(34 => 2231, 101 => 2231, others => 0),
4978 =>
(85 => 38034, others => 0),
4979 =>
(18 => 203, 34 => 203, 35 => 203, 39 => 203,
40 => 203, 46 => 203, 60 => 203, 67 => 203,
70 => 203, 72 => 203, 101 => 203, others => 0),
4980 =>
(85 => 69, 103 => 69, others => 0),
4981 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4982 =>
(80 => 38036, others => 0),
4983 =>
(85 => 83, 103 => 83, others => 0),
4984 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 38037,
90 => 32868, others => 0),
4985 =>
(15 => 1731, 34 => 1731, 39 => 1731, 40 => 1731,
41 => 1731, 46 => 1731, 60 => 1731, 67 => 1731,
68 => 1731, 70 => 1731, 71 => 1731, 72 => 1731,
73 => 1731, 91 => 1731, 94 => 1731, 97 => 1731,
99 => 1731, others => 0),
4986 =>
(15 => 716, 34 => 716, 39 => 716, 40 => 716,
41 => 716, 46 => 716, 60 => 716, 67 => 716,
68 => 716, 70 => 716, 71 => 716, 72 => 716,
73 => 716, 91 => 716, 94 => 716, 97 => 716,
99 => 716, others => 0),
4987 =>
(61 => 38040, others => 0),
4988 =>
(85 => 97, 103 => 97, others => 0),
4989 =>
(85 => 86, 103 => 86, others => 0),
4990 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
4991 =>
(15 => 1725, 34 => 1725, 39 => 1725, 40 => 1725,
41 => 1725, 46 => 1725, 60 => 1725, 67 => 1725,
68 => 1725, 70 => 1725, 71 => 1725, 72 => 1725,
73 => 1725, 91 => 1725, 94 => 1725, 97 => 1725,
99 => 1725, others => 0),
4992 =>
(15 => 1724, 34 => 1724, 39 => 1724, 40 => 1724,
41 => 1724, 46 => 1724, 60 => 1724, 67 => 1724,
68 => 1724, 70 => 1724, 71 => 1724, 72 => 1724,
73 => 1724, 91 => 1724, 94 => 1724, 97 => 1724,
99 => 1724, others => 0),
4993 =>
(85 => 38042, others => 0),
4994 =>
(15 => 1727, 34 => 1727, 39 => 1727, 40 => 1727,
41 => 1727, 46 => 1727, 60 => 1727, 67 => 1727,
68 => 1727, 70 => 1727, 71 => 1727, 72 => 1727,
73 => 1727, 91 => 1727, 94 => 1727, 97 => 1727,
99 => 1727, others => 0),
4995 =>
(15 => 710, 34 => 710, 39 => 710, 40 => 710,
41 => 710, 46 => 710, 60 => 710, 67 => 710,
68 => 710, 70 => 710, 71 => 710, 72 => 710,
73 => 710, 91 => 710, 94 => 710, 97 => 710,
99 => 710, others => 0),
4996 =>
(15 => 1721, 34 => 1721, 39 => 1721, 40 => 1721,
41 => 1721, 46 => 1721, 60 => 1721, 67 => 1721,
68 => 1721, 70 => 1721, 71 => 1721, 72 => 1721,
73 => 1721, 91 => 1721, 94 => 1721, 97 => 1721,
99 => 1721, others => 0),
4997 =>
(15 => 706, 34 => 706, 39 => 706, 40 => 706,
41 => 706, 46 => 706, 60 => 706, 67 => 706,
68 => 706, 70 => 706, 71 => 706, 72 => 706,
73 => 706, 91 => 706, 94 => 706, 97 => 706,
99 => 706, others => 0),
4998 =>
(15 => 1720, 34 => 1720, 39 => 1720, 40 => 1720,
41 => 1720, 46 => 1720, 60 => 1720, 67 => 1720,
68 => 1720, 70 => 1720, 71 => 1720, 72 => 1720,
73 => 1720, 91 => 1720, 94 => 1720, 97 => 1720,
99 => 1720, others => 0),
4999 =>
(85 => 38043, others => 0),
5000 =>
(15 => 705, 34 => 705, 39 => 705, 40 => 705,
41 => 705, 46 => 705, 60 => 705, 67 => 705,
68 => 705, 70 => 705, 71 => 705, 72 => 705,
73 => 705, 91 => 705, 94 => 705, 97 => 705,
99 => 705, others => 0),
5001 =>
(85 => 38044, others => 0),
5002 =>
(15 => 1713, 34 => 1713, 39 => 1713, 40 => 1713,
41 => 1713, 46 => 1713, 60 => 1713, 67 => 1713,
68 => 1713, 70 => 1713, 71 => 1713, 72 => 1713,
73 => 1713, 91 => 1713, 94 => 1713, 97 => 1713,
99 => 1713, others => 0),
5003 =>
(15 => 1712, 34 => 1712, 39 => 1712, 40 => 1712,
41 => 1712, 46 => 1712, 60 => 1712, 67 => 1712,
68 => 1712, 70 => 1712, 71 => 1712, 72 => 1712,
73 => 1712, 91 => 1712, 94 => 1712, 97 => 1712,
99 => 1712, others => 0),
5004 =>
(85 => 38045, others => 0),
5005 =>
(15 => 1715, 34 => 1715, 39 => 1715, 40 => 1715,
41 => 1715, 46 => 1715, 60 => 1715, 67 => 1715,
68 => 1715, 70 => 1715, 71 => 1715, 72 => 1715,
73 => 1715, 91 => 1715, 94 => 1715, 97 => 1715,
99 => 1715, others => 0),
5006 =>
(15 => 698, 34 => 698, 39 => 698, 40 => 698,
41 => 698, 46 => 698, 60 => 698, 67 => 698,
68 => 698, 70 => 698, 71 => 698, 72 => 698,
73 => 698, 91 => 698, 94 => 698, 97 => 698,
99 => 698, others => 0),
5007 =>
(15 => 1709, 34 => 1709, 39 => 1709, 40 => 1709,
41 => 1709, 46 => 1709, 60 => 1709, 67 => 1709,
68 => 1709, 70 => 1709, 71 => 1709, 72 => 1709,
73 => 1709, 91 => 1709, 94 => 1709, 97 => 1709,
99 => 1709, others => 0),
5008 =>
(15 => 694, 34 => 694, 39 => 694, 40 => 694,
41 => 694, 46 => 694, 60 => 694, 67 => 694,
68 => 694, 70 => 694, 71 => 694, 72 => 694,
73 => 694, 91 => 694, 94 => 694, 97 => 694,
99 => 694, others => 0),
5009 =>
(15 => 1708, 34 => 1708, 39 => 1708, 40 => 1708,
41 => 1708, 46 => 1708, 60 => 1708, 67 => 1708,
68 => 1708, 70 => 1708, 71 => 1708, 72 => 1708,
73 => 1708, 91 => 1708, 94 => 1708, 97 => 1708,
99 => 1708, others => 0),
5010 =>
(85 => 38046, others => 0),
5011 =>
(15 => 693, 34 => 693, 39 => 693, 40 => 693,
41 => 693, 46 => 693, 60 => 693, 67 => 693,
68 => 693, 70 => 693, 71 => 693, 72 => 693,
73 => 693, 91 => 693, 94 => 693, 97 => 693,
99 => 693, others => 0),
5012 =>
(85 => 38047, others => 0),
5013 =>
(15 => 1702, 34 => 1702, 39 => 1702, 40 => 1702,
41 => 1702, 46 => 1702, 60 => 1702, 67 => 1702,
68 => 1702, 70 => 1702, 71 => 1702, 72 => 1702,
73 => 1702, 91 => 1702, 94 => 1702, 97 => 1702,
99 => 1702, others => 0),
5014 =>
(85 => 38048, others => 0),
5015 =>
(85 => 38049, 103 => 32885, others => 0),
5016 =>
(15 => 1705, 34 => 1705, 39 => 1705, 40 => 1705,
41 => 1705, 46 => 1705, 60 => 1705, 67 => 1705,
68 => 1705, 70 => 1705, 71 => 1705, 72 => 1705,
73 => 1705, 91 => 1705, 94 => 1705, 97 => 1705,
99 => 1705, others => 0),
5017 =>
(15 => 688, 34 => 688, 39 => 688, 40 => 688,
41 => 688, 46 => 688, 60 => 688, 67 => 688,
68 => 688, 70 => 688, 71 => 688, 72 => 688,
73 => 688, 91 => 688, 94 => 688, 97 => 688,
99 => 688, others => 0),
5018 =>
(15 => 1704, 34 => 1704, 39 => 1704, 40 => 1704,
41 => 1704, 46 => 1704, 60 => 1704, 67 => 1704,
68 => 1704, 70 => 1704, 71 => 1704, 72 => 1704,
73 => 1704, 91 => 1704, 94 => 1704, 97 => 1704,
99 => 1704, others => 0),
5019 =>
(85 => 38051, others => 0),
5020 =>
(15 => 687, 34 => 687, 39 => 687, 40 => 687,
41 => 687, 46 => 687, 60 => 687, 67 => 687,
68 => 687, 70 => 687, 71 => 687, 72 => 687,
73 => 687, 91 => 687, 94 => 687, 97 => 687,
99 => 687, others => 0),
5021 =>
(85 => 38052, others => 0),
5022 =>
(15 => 1698, 34 => 1698, 39 => 1698, 40 => 1698,
41 => 1698, 46 => 1698, 60 => 1698, 67 => 1698,
68 => 1698, 70 => 1698, 71 => 1698, 72 => 1698,
73 => 1698, 91 => 1698, 94 => 1698, 97 => 1698,
99 => 1698, others => 0),
5023 =>
(85 => 38053, others => 0),
5024 =>
(15 => 683, 34 => 683, 39 => 683, 40 => 683,
41 => 683, 46 => 683, 60 => 683, 67 => 683,
68 => 683, 70 => 683, 71 => 683, 72 => 683,
73 => 683, 91 => 683, 94 => 683, 97 => 683,
99 => 683, others => 0),
5025 =>
(85 => 38054, others => 0),
5026 =>
(85 => 38055, 103 => 32885, others => 0),
5027 =>
(85 => 38057, 103 => 32885, others => 0),
5028 =>
(15 => 2173, 34 => 2173, 39 => 2173, 40 => 2173,
41 => 2173, 46 => 2173, 60 => 2173, 67 => 2173,
68 => 2173, 70 => 2173, 71 => 2173, 72 => 2173,
73 => 2173, 91 => 2173, 94 => 2173, 97 => 2173,
99 => 2173, others => 0),
5029 =>
(0 => 2151, 15 => 2151, 34 => 2151, 39 => 2151,
40 => 2151, 41 => 2151, 46 => 2151, 56 => 2151,
60 => 2151, 67 => 2151, 68 => 2151, 70 => 2151,
71 => 2151, 72 => 2151, 73 => 2151, 86 => 2151,
91 => 2151, 94 => 2151, 97 => 2151, 99 => 2151,
103 => 2151, others => 0),
5030 =>
(0 => 2148, 15 => 2148, 34 => 2148, 39 => 2148,
40 => 2148, 41 => 2148, 46 => 2148, 56 => 2148,
60 => 2148, 67 => 2148, 68 => 2148, 70 => 2148,
71 => 2148, 72 => 2148, 73 => 2148, 86 => 2148,
91 => 2148, 94 => 2148, 97 => 2148, 99 => 2148,
103 => 2148, others => 0),
5031 =>
(85 => 38059, others => 0),
5032 =>
(0 => 2144, 15 => 2144, 34 => 2144, 39 => 2144,
40 => 2144, 41 => 2144, 46 => 2144, 56 => 2144,
60 => 2144, 67 => 2144, 68 => 2144, 70 => 2144,
71 => 2144, 72 => 2144, 73 => 2144, 86 => 2144,
91 => 2144, 94 => 2144, 97 => 2144, 99 => 2144,
103 => 2144, others => 0),
5033 =>
(85 => 38060, others => 0),
5034 =>
(46 => 38062, 85 => 38061, others => 0),
5035 =>
(0 => 2141, 15 => 2141, 34 => 2141, 39 => 2141,
40 => 2141, 41 => 2141, 46 => 2141, 56 => 2141,
60 => 2141, 67 => 2141, 68 => 2141, 70 => 2141,
71 => 2141, 72 => 2141, 73 => 2141, 86 => 2141,
91 => 2141, 94 => 2141, 97 => 2141, 99 => 2141,
103 => 2141, others => 0),
5036 =>
(83 => 38063, others => 0),
5037 =>
(34 => 335, 35 => 335, 39 => 335, 40 => 335,
46 => 335, 60 => 335, 67 => 335, 70 => 335,
71 => 335, 72 => 335, others => 0),
5038 =>
(34 => 337, 35 => 337, 39 => 337, 40 => 337,
46 => 337, 60 => 337, 67 => 337, 70 => 337,
71 => 337, 72 => 337, others => 0),
5039 =>
(34 => 328, 35 => 328, 39 => 328, 40 => 328,
46 => 328, 60 => 328, 67 => 328, 70 => 328,
71 => 328, 72 => 328, others => 0),
5040 =>
(46 => 32838, others => 0),
5041 =>
(85 => 38065, others => 0),
5042 =>
(34 => 330, 35 => 330, 39 => 330, 40 => 330,
46 => 330, 60 => 330, 67 => 330, 70 => 330,
71 => 330, 72 => 330, others => 0),
5043 =>
(85 => 38066, others => 0),
5044 =>
(85 => 38067, 103 => 32885, others => 0),
5045 =>
(15 => 2008, 34 => 2008, 39 => 2008, 40 => 2008,
41 => 2008, 46 => 2008, 60 => 2008, 67 => 2008,
68 => 2008, 70 => 2008, 71 => 2008, 72 => 2008,
73 => 2008, 91 => 2008, 94 => 2008, 97 => 2008,
99 => 2008, others => 0),
5046 =>
(34 => 38070, 37 => 38069, others => 0),
5047 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5048 =>
(83 => 349, others => 0),
5049 =>
(9 => 33243, 51 => 38072, 64 => 33242, 104 => 33241,
others => 0),
5050 =>
(83 => 38073, others => 0),
5051 =>
(9 => 33243, 51 => 38074, 64 => 33242, 104 => 33241,
others => 0),
5052 =>
(15 => 2041, 18 => 2041, 34 => 2041, 35 => 2041,
39 => 2041, 40 => 2041, 41 => 2041, 46 => 2041,
60 => 2041, 67 => 2041, 68 => 2041, 70 => 2041,
71 => 2041, 72 => 2041, 73 => 2041, 91 => 2041,
94 => 2041, 97 => 2041, 99 => 2041, 101 => 2041,
others => 0),
5053 =>
(85 => 38075, others => 0),
5054 =>
(1 => 2077, 4 => 2077, 15 => 2077, 18 => 2077,
19 => 2077, 24 => 2077, 25 => 2077, 32 => 2077,
33 => 2077, 34 => 2077, 37 => 2077, 38 => 2077,
39 => 2077, 42 => 2077, 46 => 2077, 47 => 2077,
52 => 2077, 57 => 2077, 61 => 2077, 64 => 2077,
70 => 2077, 74 => 2077, 79 => 2077, 80 => 2077,
84 => 2077, 90 => 2077, 96 => 2077, 101 => 2077,
102 => 2077, others => 0),
5055 =>
(85 => 38076, others => 0),
5056 =>
(1 => 1482, 4 => 1482, 15 => 1482, 18 => 1482,
19 => 1482, 24 => 1482, 25 => 1482, 32 => 1482,
33 => 1482, 34 => 1482, 37 => 1482, 38 => 1482,
39 => 1482, 42 => 1482, 46 => 1482, 47 => 1482,
52 => 1482, 57 => 1482, 61 => 1482, 64 => 1482,
70 => 1482, 74 => 1482, 79 => 1482, 80 => 1482,
84 => 1482, 90 => 1482, 96 => 1482, 101 => 1482,
102 => 1482, others => 0),
5057 =>
(34 => 38078, 37 => 38077, others => 0),
5058 =>
(46 => 38080, 85 => 38079, others => 0),
5059 =>
(1 => 16, 4 => 16, 15 => 16, 18 => 16,
19 => 16, 24 => 16, 25 => 16, 32 => 16,
33 => 16, 34 => 16, 37 => 16, 38 => 16,
39 => 16, 42 => 16, 46 => 16, 47 => 16,
52 => 16, 57 => 16, 61 => 16, 64 => 16,
70 => 16, 74 => 16, 79 => 16, 80 => 16,
84 => 16, 90 => 16, 96 => 16, 101 => 16,
102 => 16, others => 0),
5060 =>
(46 => 38082, 85 => 38081, others => 0),
5061 =>
(1 => 21, 4 => 21, 15 => 21, 18 => 21,
19 => 21, 24 => 21, 25 => 21, 32 => 21,
33 => 21, 34 => 21, 37 => 21, 38 => 21,
39 => 21, 42 => 21, 46 => 21, 47 => 21,
52 => 21, 57 => 21, 61 => 21, 64 => 21,
70 => 21, 74 => 21, 79 => 21, 80 => 21,
84 => 21, 90 => 21, 96 => 21, 101 => 21,
102 => 21, others => 0),
5062 =>
(1 => 1532, 4 => 1532, 15 => 1532, 18 => 1532,
19 => 1532, 24 => 1532, 25 => 1532, 32 => 1532,
33 => 1532, 34 => 1532, 37 => 1532, 38 => 1532,
39 => 1532, 42 => 1532, 46 => 1532, 47 => 1532,
52 => 1532, 57 => 1532, 61 => 1532, 64 => 1532,
70 => 1532, 74 => 1532, 79 => 1532, 80 => 1532,
84 => 1532, 90 => 1532, 96 => 1532, 101 => 1532,
102 => 1532, others => 0),
5063 =>
(1 => 1536, 4 => 1536, 15 => 1536, 18 => 1536,
19 => 1536, 24 => 1536, 25 => 1536, 32 => 1536,
33 => 1536, 34 => 1536, 37 => 1536, 38 => 1536,
39 => 1536, 42 => 1536, 46 => 1536, 47 => 1536,
52 => 1536, 57 => 1536, 61 => 1536, 64 => 1536,
70 => 1536, 74 => 1536, 79 => 1536, 80 => 1536,
84 => 1536, 90 => 1536, 96 => 1536, 101 => 1536,
102 => 1536, others => 0),
5064 =>
(1 => 1534, 4 => 1534, 15 => 1534, 18 => 1534,
19 => 1534, 24 => 1534, 25 => 1534, 32 => 1534,
33 => 1534, 34 => 1534, 37 => 1534, 38 => 1534,
39 => 1534, 42 => 1534, 46 => 1534, 47 => 1534,
52 => 1534, 57 => 1534, 61 => 1534, 64 => 1534,
70 => 1534, 74 => 1534, 79 => 1534, 80 => 1534,
84 => 1534, 90 => 1534, 96 => 1534, 101 => 1534,
102 => 1534, others => 0),
5065 =>
(1 => 155, 4 => 155, 15 => 155, 18 => 155,
19 => 155, 24 => 155, 25 => 155, 32 => 155,
33 => 155, 34 => 155, 37 => 155, 38 => 155,
39 => 155, 42 => 155, 46 => 155, 47 => 155,
52 => 155, 57 => 155, 61 => 155, 64 => 155,
70 => 155, 74 => 155, 79 => 155, 80 => 155,
84 => 155, 90 => 155, 96 => 155, 101 => 155,
102 => 155, others => 0),
5066 =>
(1 => 152, 4 => 152, 15 => 152, 18 => 152,
19 => 152, 24 => 152, 25 => 152, 32 => 152,
33 => 152, 34 => 152, 37 => 152, 38 => 152,
39 => 152, 42 => 152, 46 => 152, 47 => 152,
52 => 152, 57 => 152, 61 => 152, 64 => 152,
70 => 152, 74 => 152, 79 => 152, 80 => 152,
84 => 152, 90 => 152, 96 => 152, 101 => 152,
102 => 152, others => 0),
5067 =>
(85 => 38083, others => 0),
5068 =>
(0 => 1833, 15 => 1833, 34 => 1833, 35 => 1833,
39 => 1833, 40 => 1833, 41 => 1833, 46 => 1833,
56 => 1833, 60 => 1833, 67 => 1833, 68 => 1833,
70 => 1833, 71 => 1833, 72 => 1833, 73 => 1833,
86 => 1833, 91 => 1833, 94 => 1833, 97 => 1833,
99 => 1833, 103 => 1833, others => 0),
5069 =>
(0 => 1828, 15 => 1828, 34 => 1828, 35 => 1828,
39 => 1828, 40 => 1828, 41 => 1828, 46 => 1828,
56 => 1828, 60 => 1828, 67 => 1828, 68 => 1828,
70 => 1828, 71 => 1828, 72 => 1828, 73 => 1828,
86 => 1828, 91 => 1828, 94 => 1828, 97 => 1828,
99 => 1828, 103 => 1828, others => 0),
5070 =>
(29 => 32865, 85 => 38084, others => 0),
5071 =>
(0 => 1822, 15 => 1822, 34 => 1822, 35 => 1822,
39 => 1822, 40 => 1822, 41 => 1822, 46 => 1822,
56 => 1822, 60 => 1822, 67 => 1822, 68 => 1822,
70 => 1822, 71 => 1822, 72 => 1822, 73 => 1822,
86 => 1822, 91 => 1822, 94 => 1822, 97 => 1822,
99 => 1822, 103 => 1822, others => 0),
5072 =>
(29 => 32865, 85 => 38085, others => 0),
5073 =>
(46 => 32807, 85 => 38086, others => 0),
5074 =>
(0 => 1817, 15 => 1817, 34 => 1817, 35 => 1817,
39 => 1817, 40 => 1817, 41 => 1817, 46 => 1817,
56 => 1817, 60 => 1817, 67 => 1817, 68 => 1817,
70 => 1817, 71 => 1817, 72 => 1817, 73 => 1817,
86 => 1817, 91 => 1817, 94 => 1817, 97 => 1817,
99 => 1817, 103 => 1817, others => 0),
5075 =>
(0 => 891, 15 => 891, 34 => 891, 35 => 891,
39 => 891, 40 => 891, 41 => 891, 46 => 891,
56 => 891, 60 => 891, 67 => 891, 68 => 891,
70 => 891, 71 => 891, 72 => 891, 73 => 891,
86 => 891, 91 => 891, 94 => 891, 97 => 891,
99 => 891, 103 => 891, others => 0),
5076 =>
(85 => 38088, others => 0),
5077 =>
(46 => 32807, 85 => 38089, 90 => 32868, others => 0),
5078 =>
(0 => 886, 15 => 886, 34 => 886, 35 => 886,
39 => 886, 40 => 886, 41 => 886, 46 => 886,
56 => 886, 60 => 886, 67 => 886, 68 => 886,
70 => 886, 71 => 886, 72 => 886, 73 => 886,
86 => 886, 91 => 886, 94 => 886, 97 => 886,
99 => 886, 103 => 886, others => 0),
5079 =>
(46 => 32807, 85 => 38091, 90 => 32868, others => 0),
5080 =>
(0 => 880, 15 => 880, 34 => 880, 35 => 880,
39 => 880, 40 => 880, 41 => 880, 46 => 880,
56 => 880, 60 => 880, 67 => 880, 68 => 880,
70 => 880, 71 => 880, 72 => 880, 73 => 880,
86 => 880, 91 => 880, 94 => 880, 97 => 880,
99 => 880, 103 => 880, others => 0),
5081 =>
(34 => 38093, others => 0),
5082 =>
(0 => 875, 15 => 875, 34 => 875, 35 => 875,
39 => 875, 40 => 875, 41 => 875, 46 => 875,
56 => 875, 60 => 875, 67 => 875, 68 => 875,
70 => 875, 71 => 875, 72 => 875, 73 => 875,
86 => 875, 91 => 875, 94 => 875, 97 => 875,
99 => 875, 103 => 875, others => 0),
5083 =>
(85 => 38094, others => 0),
5084 =>
(0 => 1100, 15 => 1100, 34 => 1100, 35 => 1100,
39 => 1100, 40 => 1100, 41 => 1100, 46 => 1100,
56 => 1100, 60 => 1100, 67 => 1100, 68 => 1100,
70 => 1100, 71 => 1100, 72 => 1100, 73 => 1100,
86 => 1100, 91 => 1100, 94 => 1100, 97 => 1100,
99 => 1100, 103 => 1100, others => 0),
5085 =>
(0 => 1094, 15 => 1094, 34 => 1094, 35 => 1094,
39 => 1094, 40 => 1094, 41 => 1094, 46 => 1094,
56 => 1094, 60 => 1094, 67 => 1094, 68 => 1094,
70 => 1094, 71 => 1094, 72 => 1094, 73 => 1094,
86 => 1094, 91 => 1094, 94 => 1094, 97 => 1094,
99 => 1094, 103 => 1094, others => 0),
5086 =>
(0 => 1089, 15 => 1089, 34 => 1089, 35 => 1089,
39 => 1089, 40 => 1089, 41 => 1089, 46 => 1089,
56 => 1089, 60 => 1089, 67 => 1089, 68 => 1089,
70 => 1089, 71 => 1089, 72 => 1089, 73 => 1089,
86 => 1089, 91 => 1089, 94 => 1089, 97 => 1089,
99 => 1089, 103 => 1089, others => 0),
5087 =>
(85 => 38095, others => 0),
5088 =>
(0 => 908, 15 => 908, 34 => 908, 35 => 908,
39 => 908, 40 => 908, 41 => 908, 46 => 908,
56 => 908, 60 => 908, 67 => 908, 68 => 908,
70 => 908, 71 => 908, 72 => 908, 73 => 908,
86 => 908, 91 => 908, 94 => 908, 97 => 908,
99 => 908, 103 => 908, others => 0),
5089 =>
(0 => 902, 15 => 902, 34 => 902, 35 => 902,
39 => 902, 40 => 902, 41 => 902, 46 => 902,
56 => 902, 60 => 902, 67 => 902, 68 => 902,
70 => 902, 71 => 902, 72 => 902, 73 => 902,
86 => 902, 91 => 902, 94 => 902, 97 => 902,
99 => 902, 103 => 902, others => 0),
5090 =>
(0 => 897, 15 => 897, 34 => 897, 35 => 897,
39 => 897, 40 => 897, 41 => 897, 46 => 897,
56 => 897, 60 => 897, 67 => 897, 68 => 897,
70 => 897, 71 => 897, 72 => 897, 73 => 897,
86 => 897, 91 => 897, 94 => 897, 97 => 897,
99 => 897, 103 => 897, others => 0),
5091 =>
(85 => 38096, others => 0),
5092 =>
(0 => 1205, 15 => 1205, 34 => 1205, 35 => 1205,
39 => 1205, 40 => 1205, 41 => 1205, 46 => 1205,
56 => 1205, 60 => 1205, 67 => 1205, 68 => 1205,
70 => 1205, 71 => 1205, 72 => 1205, 73 => 1205,
86 => 1205, 91 => 1205, 94 => 1205, 97 => 1205,
99 => 1205, 103 => 1205, others => 0),
5093 =>
(0 => 1207, 15 => 1207, 34 => 1207, 35 => 1207,
39 => 1207, 40 => 1207, 41 => 1207, 46 => 1207,
56 => 1207, 60 => 1207, 67 => 1207, 68 => 1207,
70 => 1207, 71 => 1207, 72 => 1207, 73 => 1207,
86 => 1207, 91 => 1207, 94 => 1207, 97 => 1207,
99 => 1207, 103 => 1207, others => 0),
5094 =>
(0 => 846, 15 => 846, 34 => 846, 35 => 846,
39 => 846, 40 => 846, 41 => 846, 46 => 846,
56 => 846, 60 => 846, 67 => 846, 68 => 846,
70 => 846, 71 => 846, 72 => 846, 73 => 846,
86 => 846, 91 => 846, 94 => 846, 97 => 846,
99 => 846, 103 => 846, others => 0),
5095 =>
(101 => 33976, others => 0),
5096 =>
(46 => 32807, 85 => 38098, 90 => 32868, others => 0),
5097 =>
(0 => 1201, 15 => 1201, 34 => 1201, 35 => 1201,
39 => 1201, 40 => 1201, 41 => 1201, 46 => 1201,
56 => 1201, 60 => 1201, 67 => 1201, 68 => 1201,
70 => 1201, 71 => 1201, 72 => 1201, 73 => 1201,
86 => 1201, 91 => 1201, 94 => 1201, 97 => 1201,
99 => 1201, 103 => 1201, others => 0),
5098 =>
(0 => 1203, 15 => 1203, 34 => 1203, 35 => 1203,
39 => 1203, 40 => 1203, 41 => 1203, 46 => 1203,
56 => 1203, 60 => 1203, 67 => 1203, 68 => 1203,
70 => 1203, 71 => 1203, 72 => 1203, 73 => 1203,
86 => 1203, 91 => 1203, 94 => 1203, 97 => 1203,
99 => 1203, 103 => 1203, others => 0),
5099 =>
(0 => 841, 15 => 841, 34 => 841, 35 => 841,
39 => 841, 40 => 841, 41 => 841, 46 => 841,
56 => 841, 60 => 841, 67 => 841, 68 => 841,
70 => 841, 71 => 841, 72 => 841, 73 => 841,
86 => 841, 91 => 841, 94 => 841, 97 => 841,
99 => 841, 103 => 841, others => 0),
5100 =>
(85 => 38100, others => 0),
5101 =>
(34 => 38102, 37 => 38101, others => 0),
5102 =>
(0 => 835, 15 => 835, 34 => 835, 35 => 835,
39 => 835, 40 => 835, 41 => 835, 46 => 835,
56 => 835, 60 => 835, 67 => 835, 68 => 835,
70 => 835, 71 => 835, 72 => 835, 73 => 835,
86 => 835, 91 => 835, 94 => 835, 97 => 835,
99 => 835, 103 => 835, others => 0),
5103 =>
(85 => 38103, others => 0),
5104 =>
(34 => 38105, 37 => 38104, others => 0),
5105 =>
(46 => 32807, 85 => 38106, 90 => 32868, others => 0),
5106 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5107 =>
(46 => 32807, 85 => 38109, 90 => 32868, others => 0),
5108 =>
(0 => 1084, 15 => 1084, 34 => 1084, 35 => 1084,
39 => 1084, 40 => 1084, 41 => 1084, 46 => 1084,
56 => 1084, 60 => 1084, 67 => 1084, 68 => 1084,
70 => 1084, 71 => 1084, 72 => 1084, 73 => 1084,
86 => 1084, 91 => 1084, 94 => 1084, 97 => 1084,
99 => 1084, 103 => 1084, others => 0),
5109 =>
(34 => 38111, others => 0),
5110 =>
(0 => 1079, 15 => 1079, 34 => 1079, 35 => 1079,
39 => 1079, 40 => 1079, 41 => 1079, 46 => 1079,
56 => 1079, 60 => 1079, 67 => 1079, 68 => 1079,
70 => 1079, 71 => 1079, 72 => 1079, 73 => 1079,
86 => 1079, 91 => 1079, 94 => 1079, 97 => 1079,
99 => 1079, 103 => 1079, others => 0),
5111 =>
(85 => 38112, others => 0),
5112 =>
(34 => 38113, others => 0),
5113 =>
(0 => 1073, 15 => 1073, 34 => 1073, 35 => 1073,
39 => 1073, 40 => 1073, 41 => 1073, 46 => 1073,
56 => 1073, 60 => 1073, 67 => 1073, 68 => 1073,
70 => 1073, 71 => 1073, 72 => 1073, 73 => 1073,
86 => 1073, 91 => 1073, 94 => 1073, 97 => 1073,
99 => 1073, 103 => 1073, others => 0),
5114 =>
(85 => 38114, others => 0),
5115 =>
(0 => 1068, 15 => 1068, 34 => 1068, 35 => 1068,
39 => 1068, 40 => 1068, 41 => 1068, 46 => 1068,
56 => 1068, 60 => 1068, 67 => 1068, 68 => 1068,
70 => 1068, 71 => 1068, 72 => 1068, 73 => 1068,
86 => 1068, 91 => 1068, 94 => 1068, 97 => 1068,
99 => 1068, 103 => 1068, others => 0),
5116 =>
(101 => 33976, others => 0),
5117 =>
(46 => 32807, 85 => 38116, 90 => 32868, others => 0),
5118 =>
(46 => 32807, 85 => 38118, 90 => 32868, others => 0),
5119 =>
(0 => 868, 15 => 868, 34 => 868, 35 => 868,
39 => 868, 40 => 868, 41 => 868, 46 => 868,
56 => 868, 60 => 868, 67 => 868, 68 => 868,
70 => 868, 71 => 868, 72 => 868, 73 => 868,
86 => 868, 91 => 868, 94 => 868, 97 => 868,
99 => 868, 103 => 868, others => 0),
5120 =>
(34 => 38120, others => 0),
5121 =>
(0 => 863, 15 => 863, 34 => 863, 35 => 863,
39 => 863, 40 => 863, 41 => 863, 46 => 863,
56 => 863, 60 => 863, 67 => 863, 68 => 863,
70 => 863, 71 => 863, 72 => 863, 73 => 863,
86 => 863, 91 => 863, 94 => 863, 97 => 863,
99 => 863, 103 => 863, others => 0),
5122 =>
(85 => 38121, others => 0),
5123 =>
(34 => 38122, others => 0),
5124 =>
(0 => 857, 15 => 857, 34 => 857, 35 => 857,
39 => 857, 40 => 857, 41 => 857, 46 => 857,
56 => 857, 60 => 857, 67 => 857, 68 => 857,
70 => 857, 71 => 857, 72 => 857, 73 => 857,
86 => 857, 91 => 857, 94 => 857, 97 => 857,
99 => 857, 103 => 857, others => 0),
5125 =>
(85 => 38123, others => 0),
5126 =>
(0 => 852, 15 => 852, 34 => 852, 35 => 852,
39 => 852, 40 => 852, 41 => 852, 46 => 852,
56 => 852, 60 => 852, 67 => 852, 68 => 852,
70 => 852, 71 => 852, 72 => 852, 73 => 852,
86 => 852, 91 => 852, 94 => 852, 97 => 852,
99 => 852, 103 => 852, others => 0),
5127 =>
(101 => 33976, others => 0),
5128 =>
(46 => 32807, 85 => 38125, 90 => 32868, others => 0),
5129 =>
(0 => 1786, 15 => 1786, 34 => 1786, 35 => 1786,
39 => 1786, 40 => 1786, 41 => 1786, 46 => 1786,
56 => 1786, 60 => 1786, 67 => 1786, 68 => 1786,
70 => 1786, 71 => 1786, 72 => 1786, 73 => 1786,
86 => 1786, 91 => 1786, 94 => 1786, 97 => 1786,
99 => 1786, 103 => 1786, others => 0),
5130 =>
(29 => 32865, 85 => 38127, others => 0),
5131 =>
(46 => 32807, 85 => 38128, others => 0),
5132 =>
(0 => 1781, 15 => 1781, 34 => 1781, 35 => 1781,
39 => 1781, 40 => 1781, 41 => 1781, 46 => 1781,
56 => 1781, 60 => 1781, 67 => 1781, 68 => 1781,
70 => 1781, 71 => 1781, 72 => 1781, 73 => 1781,
86 => 1781, 91 => 1781, 94 => 1781, 97 => 1781,
99 => 1781, 103 => 1781, others => 0),
5133 =>
(46 => 32807, 85 => 38130, others => 0),
5134 =>
(0 => 1775, 15 => 1775, 34 => 1775, 35 => 1775,
39 => 1775, 40 => 1775, 41 => 1775, 46 => 1775,
56 => 1775, 60 => 1775, 67 => 1775, 68 => 1775,
70 => 1775, 71 => 1775, 72 => 1775, 73 => 1775,
86 => 1775, 91 => 1775, 94 => 1775, 97 => 1775,
99 => 1775, 103 => 1775, others => 0),
5135 =>
(34 => 38132, others => 0),
5136 =>
(0 => 1770, 15 => 1770, 34 => 1770, 35 => 1770,
39 => 1770, 40 => 1770, 41 => 1770, 46 => 1770,
56 => 1770, 60 => 1770, 67 => 1770, 68 => 1770,
70 => 1770, 71 => 1770, 72 => 1770, 73 => 1770,
86 => 1770, 91 => 1770, 94 => 1770, 97 => 1770,
99 => 1770, 103 => 1770, others => 0),
5137 =>
(29 => 32865, 85 => 38133, others => 0),
5138 =>
(0 => 1791, 15 => 1791, 34 => 1791, 35 => 1791,
39 => 1791, 40 => 1791, 41 => 1791, 46 => 1791,
56 => 1791, 60 => 1791, 67 => 1791, 68 => 1791,
70 => 1791, 71 => 1791, 72 => 1791, 73 => 1791,
86 => 1791, 91 => 1791, 94 => 1791, 97 => 1791,
99 => 1791, 103 => 1791, others => 0),
5139 =>
(46 => 32807, 85 => 38134, 90 => 32868, others => 0),
5140 =>
(0 => 796, 15 => 796, 34 => 796, 35 => 796,
39 => 796, 40 => 796, 41 => 796, 46 => 796,
56 => 796, 60 => 796, 67 => 796, 68 => 796,
70 => 796, 71 => 796, 72 => 796, 73 => 796,
86 => 796, 91 => 796, 94 => 796, 97 => 796,
99 => 796, 103 => 796, others => 0),
5141 =>
(34 => 38136, others => 0),
5142 =>
(0 => 791, 15 => 791, 34 => 791, 35 => 791,
39 => 791, 40 => 791, 41 => 791, 46 => 791,
56 => 791, 60 => 791, 67 => 791, 68 => 791,
70 => 791, 71 => 791, 72 => 791, 73 => 791,
86 => 791, 91 => 791, 94 => 791, 97 => 791,
99 => 791, 103 => 791, others => 0),
5143 =>
(85 => 38137, others => 0),
5144 =>
(34 => 38138, others => 0),
5145 =>
(0 => 785, 15 => 785, 34 => 785, 35 => 785,
39 => 785, 40 => 785, 41 => 785, 46 => 785,
56 => 785, 60 => 785, 67 => 785, 68 => 785,
70 => 785, 71 => 785, 72 => 785, 73 => 785,
86 => 785, 91 => 785, 94 => 785, 97 => 785,
99 => 785, 103 => 785, others => 0),
5146 =>
(85 => 38139, others => 0),
5147 =>
(0 => 780, 15 => 780, 34 => 780, 35 => 780,
39 => 780, 40 => 780, 41 => 780, 46 => 780,
56 => 780, 60 => 780, 67 => 780, 68 => 780,
70 => 780, 71 => 780, 72 => 780, 73 => 780,
86 => 780, 91 => 780, 94 => 780, 97 => 780,
99 => 780, 103 => 780, others => 0),
5148 =>
(101 => 33976, others => 0),
5149 =>
(46 => 32807, 85 => 38141, 90 => 32868, others => 0),
5150 =>
(0 => 1058, 15 => 1058, 34 => 1058, 35 => 1058,
39 => 1058, 40 => 1058, 41 => 1058, 46 => 1058,
56 => 1058, 60 => 1058, 67 => 1058, 68 => 1058,
70 => 1058, 71 => 1058, 72 => 1058, 73 => 1058,
86 => 1058, 91 => 1058, 94 => 1058, 97 => 1058,
99 => 1058, 103 => 1058, others => 0),
5151 =>
(0 => 1053, 15 => 1053, 34 => 1053, 35 => 1053,
39 => 1053, 40 => 1053, 41 => 1053, 46 => 1053,
56 => 1053, 60 => 1053, 67 => 1053, 68 => 1053,
70 => 1053, 71 => 1053, 72 => 1053, 73 => 1053,
86 => 1053, 91 => 1053, 94 => 1053, 97 => 1053,
99 => 1053, 103 => 1053, others => 0),
5152 =>
(85 => 38143, others => 0),
5153 =>
(0 => 1047, 15 => 1047, 34 => 1047, 35 => 1047,
39 => 1047, 40 => 1047, 41 => 1047, 46 => 1047,
56 => 1047, 60 => 1047, 67 => 1047, 68 => 1047,
70 => 1047, 71 => 1047, 72 => 1047, 73 => 1047,
86 => 1047, 91 => 1047, 94 => 1047, 97 => 1047,
99 => 1047, 103 => 1047, others => 0),
5154 =>
(85 => 38144, others => 0),
5155 =>
(46 => 32807, 85 => 38145, 90 => 32868, others => 0),
5156 =>
(0 => 1042, 15 => 1042, 34 => 1042, 35 => 1042,
39 => 1042, 40 => 1042, 41 => 1042, 46 => 1042,
56 => 1042, 60 => 1042, 67 => 1042, 68 => 1042,
70 => 1042, 71 => 1042, 72 => 1042, 73 => 1042,
86 => 1042, 91 => 1042, 94 => 1042, 97 => 1042,
99 => 1042, 103 => 1042, others => 0),
5157 =>
(0 => 818, 15 => 818, 34 => 818, 35 => 818,
39 => 818, 40 => 818, 41 => 818, 46 => 818,
56 => 818, 60 => 818, 67 => 818, 68 => 818,
70 => 818, 71 => 818, 72 => 818, 73 => 818,
86 => 818, 91 => 818, 94 => 818, 97 => 818,
99 => 818, 103 => 818, others => 0),
5158 =>
(0 => 813, 15 => 813, 34 => 813, 35 => 813,
39 => 813, 40 => 813, 41 => 813, 46 => 813,
56 => 813, 60 => 813, 67 => 813, 68 => 813,
70 => 813, 71 => 813, 72 => 813, 73 => 813,
86 => 813, 91 => 813, 94 => 813, 97 => 813,
99 => 813, 103 => 813, others => 0),
5159 =>
(85 => 38147, others => 0),
5160 =>
(0 => 807, 15 => 807, 34 => 807, 35 => 807,
39 => 807, 40 => 807, 41 => 807, 46 => 807,
56 => 807, 60 => 807, 67 => 807, 68 => 807,
70 => 807, 71 => 807, 72 => 807, 73 => 807,
86 => 807, 91 => 807, 94 => 807, 97 => 807,
99 => 807, 103 => 807, others => 0),
5161 =>
(85 => 38148, others => 0),
5162 =>
(46 => 32807, 85 => 38149, 90 => 32868, others => 0),
5163 =>
(0 => 802, 15 => 802, 34 => 802, 35 => 802,
39 => 802, 40 => 802, 41 => 802, 46 => 802,
56 => 802, 60 => 802, 67 => 802, 68 => 802,
70 => 802, 71 => 802, 72 => 802, 73 => 802,
86 => 802, 91 => 802, 94 => 802, 97 => 802,
99 => 802, 103 => 802, others => 0),
5164 =>
(0 => 1166, 15 => 1166, 34 => 1166, 35 => 1166,
39 => 1166, 40 => 1166, 41 => 1166, 46 => 1166,
56 => 1166, 60 => 1166, 67 => 1166, 68 => 1166,
70 => 1166, 71 => 1166, 72 => 1166, 73 => 1166,
86 => 1166, 91 => 1166, 94 => 1166, 97 => 1166,
99 => 1166, 103 => 1166, others => 0),
5165 =>
(85 => 38151, others => 0),
5166 =>
(0 => 1168, 15 => 1168, 34 => 1168, 35 => 1168,
39 => 1168, 40 => 1168, 41 => 1168, 46 => 1168,
56 => 1168, 60 => 1168, 67 => 1168, 68 => 1168,
70 => 1168, 71 => 1168, 72 => 1168, 73 => 1168,
86 => 1168, 91 => 1168, 94 => 1168, 97 => 1168,
99 => 1168, 103 => 1168, others => 0),
5167 =>
(85 => 38152, others => 0),
5168 =>
(0 => 751, 15 => 751, 34 => 751, 35 => 751,
39 => 751, 40 => 751, 41 => 751, 46 => 751,
56 => 751, 60 => 751, 67 => 751, 68 => 751,
70 => 751, 71 => 751, 72 => 751, 73 => 751,
86 => 751, 91 => 751, 94 => 751, 97 => 751,
99 => 751, 103 => 751, others => 0),
5169 =>
(85 => 38153, others => 0),
5170 =>
(34 => 38155, 37 => 38154, others => 0),
5171 =>
(0 => 1162, 15 => 1162, 34 => 1162, 35 => 1162,
39 => 1162, 40 => 1162, 41 => 1162, 46 => 1162,
56 => 1162, 60 => 1162, 67 => 1162, 68 => 1162,
70 => 1162, 71 => 1162, 72 => 1162, 73 => 1162,
86 => 1162, 91 => 1162, 94 => 1162, 97 => 1162,
99 => 1162, 103 => 1162, others => 0),
5172 =>
(85 => 38156, others => 0),
5173 =>
(0 => 1164, 15 => 1164, 34 => 1164, 35 => 1164,
39 => 1164, 40 => 1164, 41 => 1164, 46 => 1164,
56 => 1164, 60 => 1164, 67 => 1164, 68 => 1164,
70 => 1164, 71 => 1164, 72 => 1164, 73 => 1164,
86 => 1164, 91 => 1164, 94 => 1164, 97 => 1164,
99 => 1164, 103 => 1164, others => 0),
5174 =>
(85 => 38157, others => 0),
5175 =>
(46 => 32807, 85 => 38158, 90 => 32868, others => 0),
5176 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5177 =>
(46 => 32807, 85 => 38161, 90 => 32868, others => 0),
5178 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5179 =>
(15 => 38165, 34 => 38164, others => 0),
5180 =>
(34 => 38166, others => 0),
5181 =>
(0 => 1037, 15 => 1037, 34 => 1037, 35 => 1037,
39 => 1037, 40 => 1037, 41 => 1037, 46 => 1037,
56 => 1037, 60 => 1037, 67 => 1037, 68 => 1037,
70 => 1037, 71 => 1037, 72 => 1037, 73 => 1037,
86 => 1037, 91 => 1037, 94 => 1037, 97 => 1037,
99 => 1037, 103 => 1037, others => 0),
5182 =>
(85 => 38167, others => 0),
5183 =>
(0 => 1032, 15 => 1032, 34 => 1032, 35 => 1032,
39 => 1032, 40 => 1032, 41 => 1032, 46 => 1032,
56 => 1032, 60 => 1032, 67 => 1032, 68 => 1032,
70 => 1032, 71 => 1032, 72 => 1032, 73 => 1032,
86 => 1032, 91 => 1032, 94 => 1032, 97 => 1032,
99 => 1032, 103 => 1032, others => 0),
5184 =>
(101 => 33976, others => 0),
5185 =>
(46 => 32807, 85 => 38169, 90 => 32868, others => 0),
5186 =>
(0 => 1026, 15 => 1026, 34 => 1026, 35 => 1026,
39 => 1026, 40 => 1026, 41 => 1026, 46 => 1026,
56 => 1026, 60 => 1026, 67 => 1026, 68 => 1026,
70 => 1026, 71 => 1026, 72 => 1026, 73 => 1026,
86 => 1026, 91 => 1026, 94 => 1026, 97 => 1026,
99 => 1026, 103 => 1026, others => 0),
5187 =>
(101 => 33976, others => 0),
5188 =>
(46 => 32807, 85 => 38172, 90 => 32868, others => 0),
5189 =>
(0 => 1021, 15 => 1021, 34 => 1021, 35 => 1021,
39 => 1021, 40 => 1021, 41 => 1021, 46 => 1021,
56 => 1021, 60 => 1021, 67 => 1021, 68 => 1021,
70 => 1021, 71 => 1021, 72 => 1021, 73 => 1021,
86 => 1021, 91 => 1021, 94 => 1021, 97 => 1021,
99 => 1021, 103 => 1021, others => 0),
5190 =>
(85 => 38174, others => 0),
5191 =>
(34 => 38176, 37 => 38175, others => 0),
5192 =>
(34 => 38177, others => 0),
5193 =>
(0 => 773, 15 => 773, 34 => 773, 35 => 773,
39 => 773, 40 => 773, 41 => 773, 46 => 773,
56 => 773, 60 => 773, 67 => 773, 68 => 773,
70 => 773, 71 => 773, 72 => 773, 73 => 773,
86 => 773, 91 => 773, 94 => 773, 97 => 773,
99 => 773, 103 => 773, others => 0),
5194 =>
(85 => 38178, others => 0),
5195 =>
(0 => 768, 15 => 768, 34 => 768, 35 => 768,
39 => 768, 40 => 768, 41 => 768, 46 => 768,
56 => 768, 60 => 768, 67 => 768, 68 => 768,
70 => 768, 71 => 768, 72 => 768, 73 => 768,
86 => 768, 91 => 768, 94 => 768, 97 => 768,
99 => 768, 103 => 768, others => 0),
5196 =>
(101 => 33976, others => 0),
5197 =>
(46 => 32807, 85 => 38180, 90 => 32868, others => 0),
5198 =>
(0 => 762, 15 => 762, 34 => 762, 35 => 762,
39 => 762, 40 => 762, 41 => 762, 46 => 762,
56 => 762, 60 => 762, 67 => 762, 68 => 762,
70 => 762, 71 => 762, 72 => 762, 73 => 762,
86 => 762, 91 => 762, 94 => 762, 97 => 762,
99 => 762, 103 => 762, others => 0),
5199 =>
(101 => 33976, others => 0),
5200 =>
(46 => 32807, 85 => 38183, 90 => 32868, others => 0),
5201 =>
(0 => 757, 15 => 757, 34 => 757, 35 => 757,
39 => 757, 40 => 757, 41 => 757, 46 => 757,
56 => 757, 60 => 757, 67 => 757, 68 => 757,
70 => 757, 71 => 757, 72 => 757, 73 => 757,
86 => 757, 91 => 757, 94 => 757, 97 => 757,
99 => 757, 103 => 757, others => 0),
5202 =>
(85 => 38185, others => 0),
5203 =>
(34 => 38187, 37 => 38186, others => 0),
5204 =>
(40 => 487, 46 => 487, 68 => 487, 70 => 487,
72 => 487, 97 => 487, 99 => 487, 103 => 487,
others => 0),
5205 =>
(85 => 38188, others => 0),
5206 =>
(40 => 483, 46 => 483, 68 => 483, 70 => 483,
72 => 483, 97 => 483, 99 => 483, 103 => 483,
others => 0),
5207 =>
(85 => 38189, 103 => 32885, others => 0),
5208 =>
(85 => 38191, others => 0),
5209 =>
(10 => 1694, 29 => 1694, 53 => 1694, 85 => 38192,
103 => 32885, others => 0),
5210 =>
(40 => 485, 46 => 485, 68 => 485, 70 => 485,
72 => 485, 97 => 485, 99 => 485, 103 => 485,
others => 0),
5211 =>
(85 => 38194, others => 0),
5212 =>
(40 => 528, 46 => 528, 68 => 528, 70 => 528,
72 => 528, 97 => 528, 99 => 528, 103 => 528,
others => 0),
5213 =>
(40 => 526, 46 => 526, 68 => 526, 70 => 526,
72 => 526, 97 => 526, 99 => 526, 103 => 526,
others => 0),
5214 =>
(40 => 492, 46 => 492, 68 => 492, 70 => 492,
72 => 492, 97 => 492, 99 => 492, 103 => 492,
others => 0),
5215 =>
(40 => 490, 46 => 490, 68 => 490, 70 => 490,
72 => 490, 97 => 490, 99 => 490, 103 => 490,
others => 0),
5216 =>
(61 => 38195, others => 0),
5217 =>
(85 => 423, 103 => 423, others => 0),
5218 =>
(85 => 408, 103 => 408, others => 0),
5219 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
5220 =>
(85 => 415, 103 => 415, others => 0),
5221 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
5222 =>
(13 => 45, 51 => 45, 78 => 45, 83 => 45,
85 => 45, 103 => 45, others => 0),
5223 =>
(0 => 986, 15 => 986, 34 => 986, 35 => 986,
39 => 986, 40 => 986, 41 => 986, 46 => 986,
56 => 986, 60 => 986, 67 => 986, 68 => 986,
70 => 986, 71 => 986, 72 => 986, 73 => 986,
86 => 986, 91 => 986, 94 => 986, 97 => 986,
99 => 986, 103 => 986, others => 0),
5224 =>
(0 => 981, 15 => 981, 34 => 981, 35 => 981,
39 => 981, 40 => 981, 41 => 981, 46 => 981,
56 => 981, 60 => 981, 67 => 981, 68 => 981,
70 => 981, 71 => 981, 72 => 981, 73 => 981,
86 => 981, 91 => 981, 94 => 981, 97 => 981,
99 => 981, 103 => 981, others => 0),
5225 =>
(85 => 38198, others => 0),
5226 =>
(0 => 975, 15 => 975, 34 => 975, 35 => 975,
39 => 975, 40 => 975, 41 => 975, 46 => 975,
56 => 975, 60 => 975, 67 => 975, 68 => 975,
70 => 975, 71 => 975, 72 => 975, 73 => 975,
86 => 975, 91 => 975, 94 => 975, 97 => 975,
99 => 975, 103 => 975, others => 0),
5227 =>
(85 => 38199, others => 0),
5228 =>
(46 => 32807, 85 => 38200, 90 => 32868, others => 0),
5229 =>
(0 => 970, 15 => 970, 34 => 970, 35 => 970,
39 => 970, 40 => 970, 41 => 970, 46 => 970,
56 => 970, 60 => 970, 67 => 970, 68 => 970,
70 => 970, 71 => 970, 72 => 970, 73 => 970,
86 => 970, 91 => 970, 94 => 970, 97 => 970,
99 => 970, 103 => 970, others => 0),
5230 =>
(0 => 1136, 15 => 1136, 34 => 1136, 35 => 1136,
39 => 1136, 40 => 1136, 41 => 1136, 46 => 1136,
56 => 1136, 60 => 1136, 67 => 1136, 68 => 1136,
70 => 1136, 71 => 1136, 72 => 1136, 73 => 1136,
86 => 1136, 91 => 1136, 94 => 1136, 97 => 1136,
99 => 1136, 103 => 1136, others => 0),
5231 =>
(0 => 992, 15 => 992, 34 => 992, 35 => 992,
39 => 992, 40 => 992, 41 => 992, 46 => 992,
56 => 992, 60 => 992, 67 => 992, 68 => 992,
70 => 992, 71 => 992, 72 => 992, 73 => 992,
86 => 992, 91 => 992, 94 => 992, 97 => 992,
99 => 992, 103 => 992, others => 0),
5232 =>
(34 => 38202, others => 0),
5233 =>
(0 => 941, 15 => 941, 34 => 941, 35 => 941,
39 => 941, 40 => 941, 41 => 941, 46 => 941,
56 => 941, 60 => 941, 67 => 941, 68 => 941,
70 => 941, 71 => 941, 72 => 941, 73 => 941,
86 => 941, 91 => 941, 94 => 941, 97 => 941,
99 => 941, 103 => 941, others => 0),
5234 =>
(85 => 38203, others => 0),
5235 =>
(0 => 936, 15 => 936, 34 => 936, 35 => 936,
39 => 936, 40 => 936, 41 => 936, 46 => 936,
56 => 936, 60 => 936, 67 => 936, 68 => 936,
70 => 936, 71 => 936, 72 => 936, 73 => 936,
86 => 936, 91 => 936, 94 => 936, 97 => 936,
99 => 936, 103 => 936, others => 0),
5236 =>
(101 => 33976, others => 0),
5237 =>
(46 => 32807, 85 => 38205, 90 => 32868, others => 0),
5238 =>
(0 => 930, 15 => 930, 34 => 930, 35 => 930,
39 => 930, 40 => 930, 41 => 930, 46 => 930,
56 => 930, 60 => 930, 67 => 930, 68 => 930,
70 => 930, 71 => 930, 72 => 930, 73 => 930,
86 => 930, 91 => 930, 94 => 930, 97 => 930,
99 => 930, 103 => 930, others => 0),
5239 =>
(101 => 33976, others => 0),
5240 =>
(46 => 32807, 85 => 38208, 90 => 32868, others => 0),
5241 =>
(0 => 925, 15 => 925, 34 => 925, 35 => 925,
39 => 925, 40 => 925, 41 => 925, 46 => 925,
56 => 925, 60 => 925, 67 => 925, 68 => 925,
70 => 925, 71 => 925, 72 => 925, 73 => 925,
86 => 925, 91 => 925, 94 => 925, 97 => 925,
99 => 925, 103 => 925, others => 0),
5242 =>
(85 => 38210, others => 0),
5243 =>
(34 => 38212, 37 => 38211, others => 0),
5244 =>
(0 => 1131, 15 => 1131, 34 => 1131, 35 => 1131,
39 => 1131, 40 => 1131, 41 => 1131, 46 => 1131,
56 => 1131, 60 => 1131, 67 => 1131, 68 => 1131,
70 => 1131, 71 => 1131, 72 => 1131, 73 => 1131,
86 => 1131, 91 => 1131, 94 => 1131, 97 => 1131,
99 => 1131, 103 => 1131, others => 0),
5245 =>
(85 => 38213, others => 0),
5246 =>
(46 => 32807, 85 => 38214, 90 => 32868, others => 0),
5247 =>
(0 => 1126, 15 => 1126, 34 => 1126, 35 => 1126,
39 => 1126, 40 => 1126, 41 => 1126, 46 => 1126,
56 => 1126, 60 => 1126, 67 => 1126, 68 => 1126,
70 => 1126, 71 => 1126, 72 => 1126, 73 => 1126,
86 => 1126, 91 => 1126, 94 => 1126, 97 => 1126,
99 => 1126, 103 => 1126, others => 0),
5248 =>
(46 => 32807, 85 => 38216, 90 => 32868, others => 0),
5249 =>
(0 => 1120, 15 => 1120, 34 => 1120, 35 => 1120,
39 => 1120, 40 => 1120, 41 => 1120, 46 => 1120,
56 => 1120, 60 => 1120, 67 => 1120, 68 => 1120,
70 => 1120, 71 => 1120, 72 => 1120, 73 => 1120,
86 => 1120, 91 => 1120, 94 => 1120, 97 => 1120,
99 => 1120, 103 => 1120, others => 0),
5250 =>
(34 => 38218, others => 0),
5251 =>
(0 => 1115, 15 => 1115, 34 => 1115, 35 => 1115,
39 => 1115, 40 => 1115, 41 => 1115, 46 => 1115,
56 => 1115, 60 => 1115, 67 => 1115, 68 => 1115,
70 => 1115, 71 => 1115, 72 => 1115, 73 => 1115,
86 => 1115, 91 => 1115, 94 => 1115, 97 => 1115,
99 => 1115, 103 => 1115, others => 0),
5252 =>
(85 => 38219, others => 0),
5253 =>
(0 => 963, 15 => 963, 34 => 963, 35 => 963,
39 => 963, 40 => 963, 41 => 963, 46 => 963,
56 => 963, 60 => 963, 67 => 963, 68 => 963,
70 => 963, 71 => 963, 72 => 963, 73 => 963,
86 => 963, 91 => 963, 94 => 963, 97 => 963,
99 => 963, 103 => 963, others => 0),
5254 =>
(85 => 38220, others => 0),
5255 =>
(46 => 32807, 85 => 38221, 90 => 32868, others => 0),
5256 =>
(0 => 958, 15 => 958, 34 => 958, 35 => 958,
39 => 958, 40 => 958, 41 => 958, 46 => 958,
56 => 958, 60 => 958, 67 => 958, 68 => 958,
70 => 958, 71 => 958, 72 => 958, 73 => 958,
86 => 958, 91 => 958, 94 => 958, 97 => 958,
99 => 958, 103 => 958, others => 0),
5257 =>
(46 => 32807, 85 => 38223, 90 => 32868, others => 0),
5258 =>
(0 => 952, 15 => 952, 34 => 952, 35 => 952,
39 => 952, 40 => 952, 41 => 952, 46 => 952,
56 => 952, 60 => 952, 67 => 952, 68 => 952,
70 => 952, 71 => 952, 72 => 952, 73 => 952,
86 => 952, 91 => 952, 94 => 952, 97 => 952,
99 => 952, 103 => 952, others => 0),
5259 =>
(34 => 38225, others => 0),
5260 =>
(0 => 947, 15 => 947, 34 => 947, 35 => 947,
39 => 947, 40 => 947, 41 => 947, 46 => 947,
56 => 947, 60 => 947, 67 => 947, 68 => 947,
70 => 947, 71 => 947, 72 => 947, 73 => 947,
86 => 947, 91 => 947, 94 => 947, 97 => 947,
99 => 947, 103 => 947, others => 0),
5261 =>
(85 => 38226, others => 0),
5262 =>
(15 => 37073, 34 => 37072, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
5263 =>
(51 => 37078, others => 0),
5264 =>
(51 => 38227, 103 => 32885, others => 0),
5265 =>
(0 => 1863, 15 => 1863, 34 => 1863, 35 => 1863,
39 => 1863, 40 => 1863, 41 => 1863, 46 => 1863,
56 => 1863, 60 => 1863, 67 => 1863, 68 => 1863,
70 => 1863, 71 => 1863, 72 => 1863, 73 => 1863,
86 => 1863, 91 => 1863, 94 => 1863, 97 => 1863,
99 => 1863, 103 => 1863, others => 0),
5266 =>
(34 => 2230, 101 => 2230, others => 0),
5267 =>
(85 => 79, 103 => 79, others => 0),
5268 =>
(5 => 33091, 19 => 32869, 46 => 32807, 60 => 38229,
90 => 32868, others => 0),
5269 =>
(61 => 38232, others => 0),
5270 =>
(85 => 95, 103 => 95, others => 0),
5271 =>
(85 => 82, 103 => 82, others => 0),
5272 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
5273 =>
(85 => 89, 103 => 89, others => 0),
5274 =>
(15 => 1723, 34 => 1723, 39 => 1723, 40 => 1723,
41 => 1723, 46 => 1723, 60 => 1723, 67 => 1723,
68 => 1723, 70 => 1723, 71 => 1723, 72 => 1723,
73 => 1723, 91 => 1723, 94 => 1723, 97 => 1723,
99 => 1723, others => 0),
5275 =>
(15 => 1719, 34 => 1719, 39 => 1719, 40 => 1719,
41 => 1719, 46 => 1719, 60 => 1719, 67 => 1719,
68 => 1719, 70 => 1719, 71 => 1719, 72 => 1719,
73 => 1719, 91 => 1719, 94 => 1719, 97 => 1719,
99 => 1719, others => 0),
5276 =>
(15 => 704, 34 => 704, 39 => 704, 40 => 704,
41 => 704, 46 => 704, 60 => 704, 67 => 704,
68 => 704, 70 => 704, 71 => 704, 72 => 704,
73 => 704, 91 => 704, 94 => 704, 97 => 704,
99 => 704, others => 0),
5277 =>
(15 => 1711, 34 => 1711, 39 => 1711, 40 => 1711,
41 => 1711, 46 => 1711, 60 => 1711, 67 => 1711,
68 => 1711, 70 => 1711, 71 => 1711, 72 => 1711,
73 => 1711, 91 => 1711, 94 => 1711, 97 => 1711,
99 => 1711, others => 0),
5278 =>
(15 => 1707, 34 => 1707, 39 => 1707, 40 => 1707,
41 => 1707, 46 => 1707, 60 => 1707, 67 => 1707,
68 => 1707, 70 => 1707, 71 => 1707, 72 => 1707,
73 => 1707, 91 => 1707, 94 => 1707, 97 => 1707,
99 => 1707, others => 0),
5279 =>
(15 => 692, 34 => 692, 39 => 692, 40 => 692,
41 => 692, 46 => 692, 60 => 692, 67 => 692,
68 => 692, 70 => 692, 71 => 692, 72 => 692,
73 => 692, 91 => 692, 94 => 692, 97 => 692,
99 => 692, others => 0),
5280 =>
(15 => 1701, 34 => 1701, 39 => 1701, 40 => 1701,
41 => 1701, 46 => 1701, 60 => 1701, 67 => 1701,
68 => 1701, 70 => 1701, 71 => 1701, 72 => 1701,
73 => 1701, 91 => 1701, 94 => 1701, 97 => 1701,
99 => 1701, others => 0),
5281 =>
(15 => 1700, 34 => 1700, 39 => 1700, 40 => 1700,
41 => 1700, 46 => 1700, 60 => 1700, 67 => 1700,
68 => 1700, 70 => 1700, 71 => 1700, 72 => 1700,
73 => 1700, 91 => 1700, 94 => 1700, 97 => 1700,
99 => 1700, others => 0),
5282 =>
(85 => 38234, others => 0),
5283 =>
(15 => 1703, 34 => 1703, 39 => 1703, 40 => 1703,
41 => 1703, 46 => 1703, 60 => 1703, 67 => 1703,
68 => 1703, 70 => 1703, 71 => 1703, 72 => 1703,
73 => 1703, 91 => 1703, 94 => 1703, 97 => 1703,
99 => 1703, others => 0),
5284 =>
(15 => 686, 34 => 686, 39 => 686, 40 => 686,
41 => 686, 46 => 686, 60 => 686, 67 => 686,
68 => 686, 70 => 686, 71 => 686, 72 => 686,
73 => 686, 91 => 686, 94 => 686, 97 => 686,
99 => 686, others => 0),
5285 =>
(15 => 1697, 34 => 1697, 39 => 1697, 40 => 1697,
41 => 1697, 46 => 1697, 60 => 1697, 67 => 1697,
68 => 1697, 70 => 1697, 71 => 1697, 72 => 1697,
73 => 1697, 91 => 1697, 94 => 1697, 97 => 1697,
99 => 1697, others => 0),
5286 =>
(15 => 682, 34 => 682, 39 => 682, 40 => 682,
41 => 682, 46 => 682, 60 => 682, 67 => 682,
68 => 682, 70 => 682, 71 => 682, 72 => 682,
73 => 682, 91 => 682, 94 => 682, 97 => 682,
99 => 682, others => 0),
5287 =>
(15 => 1696, 34 => 1696, 39 => 1696, 40 => 1696,
41 => 1696, 46 => 1696, 60 => 1696, 67 => 1696,
68 => 1696, 70 => 1696, 71 => 1696, 72 => 1696,
73 => 1696, 91 => 1696, 94 => 1696, 97 => 1696,
99 => 1696, others => 0),
5288 =>
(85 => 38235, others => 0),
5289 =>
(15 => 681, 34 => 681, 39 => 681, 40 => 681,
41 => 681, 46 => 681, 60 => 681, 67 => 681,
68 => 681, 70 => 681, 71 => 681, 72 => 681,
73 => 681, 91 => 681, 94 => 681, 97 => 681,
99 => 681, others => 0),
5290 =>
(85 => 38236, others => 0),
5291 =>
(0 => 2147, 15 => 2147, 34 => 2147, 39 => 2147,
40 => 2147, 41 => 2147, 46 => 2147, 56 => 2147,
60 => 2147, 67 => 2147, 68 => 2147, 70 => 2147,
71 => 2147, 72 => 2147, 73 => 2147, 86 => 2147,
91 => 2147, 94 => 2147, 97 => 2147, 99 => 2147,
103 => 2147, others => 0),
5292 =>
(0 => 2143, 15 => 2143, 34 => 2143, 39 => 2143,
40 => 2143, 41 => 2143, 46 => 2143, 56 => 2143,
60 => 2143, 67 => 2143, 68 => 2143, 70 => 2143,
71 => 2143, 72 => 2143, 73 => 2143, 86 => 2143,
91 => 2143, 94 => 2143, 97 => 2143, 99 => 2143,
103 => 2143, others => 0),
5293 =>
(0 => 2140, 15 => 2140, 34 => 2140, 39 => 2140,
40 => 2140, 41 => 2140, 46 => 2140, 56 => 2140,
60 => 2140, 67 => 2140, 68 => 2140, 70 => 2140,
71 => 2140, 72 => 2140, 73 => 2140, 86 => 2140,
91 => 2140, 94 => 2140, 97 => 2140, 99 => 2140,
103 => 2140, others => 0),
5294 =>
(85 => 38237, others => 0),
5295 =>
(85 => 38238, 103 => 32885, others => 0),
5296 =>
(83 => 38240, others => 0),
5297 =>
(34 => 327, 35 => 327, 39 => 327, 40 => 327,
46 => 327, 60 => 327, 67 => 327, 70 => 327,
71 => 327, 72 => 327, others => 0),
5298 =>
(34 => 329, 35 => 329, 39 => 329, 40 => 329,
46 => 329, 60 => 329, 67 => 329, 70 => 329,
71 => 329, 72 => 329, others => 0),
5299 =>
(34 => 342, 35 => 342, 39 => 342, 40 => 342,
46 => 342, 60 => 342, 67 => 342, 70 => 342,
71 => 342, 72 => 342, others => 0),
5300 =>
(85 => 38241, others => 0),
5301 =>
(101 => 33976, others => 0),
5302 =>
(46 => 38244, 85 => 38243, others => 0),
5303 =>
(34 => 38246, 37 => 38245, others => 0),
5304 =>
(15 => 38247, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
5305 =>
(101 => 38249, others => 0),
5306 =>
(15 => 38250, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
5307 =>
(15 => 2040, 18 => 2040, 34 => 2040, 35 => 2040,
39 => 2040, 40 => 2040, 41 => 2040, 46 => 2040,
60 => 2040, 67 => 2040, 68 => 2040, 70 => 2040,
71 => 2040, 72 => 2040, 73 => 2040, 91 => 2040,
94 => 2040, 97 => 2040, 99 => 2040, 101 => 2040,
others => 0),
5308 =>
(1 => 2075, 4 => 2075, 15 => 2075, 18 => 2075,
19 => 2075, 24 => 2075, 25 => 2075, 32 => 2075,
33 => 2075, 34 => 2075, 37 => 2075, 38 => 2075,
39 => 2075, 42 => 2075, 46 => 2075, 47 => 2075,
52 => 2075, 57 => 2075, 61 => 2075, 64 => 2075,
70 => 2075, 74 => 2075, 79 => 2075, 80 => 2075,
84 => 2075, 90 => 2075, 96 => 2075, 101 => 2075,
102 => 2075, others => 0),
5309 =>
(101 => 33976, others => 0),
5310 =>
(46 => 38254, 85 => 38253, others => 0),
5311 =>
(1 => 15, 4 => 15, 15 => 15, 18 => 15,
19 => 15, 24 => 15, 25 => 15, 32 => 15,
33 => 15, 34 => 15, 37 => 15, 38 => 15,
39 => 15, 42 => 15, 46 => 15, 47 => 15,
52 => 15, 57 => 15, 61 => 15, 64 => 15,
70 => 15, 74 => 15, 79 => 15, 80 => 15,
84 => 15, 90 => 15, 96 => 15, 101 => 15,
102 => 15, others => 0),
5312 =>
(85 => 38255, others => 0),
5313 =>
(1 => 20, 4 => 20, 15 => 20, 18 => 20,
19 => 20, 24 => 20, 25 => 20, 32 => 20,
33 => 20, 34 => 20, 37 => 20, 38 => 20,
39 => 20, 42 => 20, 46 => 20, 47 => 20,
52 => 20, 57 => 20, 61 => 20, 64 => 20,
70 => 20, 74 => 20, 79 => 20, 80 => 20,
84 => 20, 90 => 20, 96 => 20, 101 => 20,
102 => 20, others => 0),
5314 =>
(85 => 38256, others => 0),
5315 =>
(1 => 151, 4 => 151, 15 => 151, 18 => 151,
19 => 151, 24 => 151, 25 => 151, 32 => 151,
33 => 151, 34 => 151, 37 => 151, 38 => 151,
39 => 151, 42 => 151, 46 => 151, 47 => 151,
52 => 151, 57 => 151, 61 => 151, 64 => 151,
70 => 151, 74 => 151, 79 => 151, 80 => 151,
84 => 151, 90 => 151, 96 => 151, 101 => 151,
102 => 151, others => 0),
5316 =>
(0 => 1827, 15 => 1827, 34 => 1827, 35 => 1827,
39 => 1827, 40 => 1827, 41 => 1827, 46 => 1827,
56 => 1827, 60 => 1827, 67 => 1827, 68 => 1827,
70 => 1827, 71 => 1827, 72 => 1827, 73 => 1827,
86 => 1827, 91 => 1827, 94 => 1827, 97 => 1827,
99 => 1827, 103 => 1827, others => 0),
5317 =>
(0 => 1821, 15 => 1821, 34 => 1821, 35 => 1821,
39 => 1821, 40 => 1821, 41 => 1821, 46 => 1821,
56 => 1821, 60 => 1821, 67 => 1821, 68 => 1821,
70 => 1821, 71 => 1821, 72 => 1821, 73 => 1821,
86 => 1821, 91 => 1821, 94 => 1821, 97 => 1821,
99 => 1821, 103 => 1821, others => 0),
5318 =>
(0 => 1816, 15 => 1816, 34 => 1816, 35 => 1816,
39 => 1816, 40 => 1816, 41 => 1816, 46 => 1816,
56 => 1816, 60 => 1816, 67 => 1816, 68 => 1816,
70 => 1816, 71 => 1816, 72 => 1816, 73 => 1816,
86 => 1816, 91 => 1816, 94 => 1816, 97 => 1816,
99 => 1816, 103 => 1816, others => 0),
5319 =>
(29 => 32865, 85 => 38257, others => 0),
5320 =>
(0 => 890, 15 => 890, 34 => 890, 35 => 890,
39 => 890, 40 => 890, 41 => 890, 46 => 890,
56 => 890, 60 => 890, 67 => 890, 68 => 890,
70 => 890, 71 => 890, 72 => 890, 73 => 890,
86 => 890, 91 => 890, 94 => 890, 97 => 890,
99 => 890, 103 => 890, others => 0),
5321 =>
(0 => 885, 15 => 885, 34 => 885, 35 => 885,
39 => 885, 40 => 885, 41 => 885, 46 => 885,
56 => 885, 60 => 885, 67 => 885, 68 => 885,
70 => 885, 71 => 885, 72 => 885, 73 => 885,
86 => 885, 91 => 885, 94 => 885, 97 => 885,
99 => 885, 103 => 885, others => 0),
5322 =>
(85 => 38258, others => 0),
5323 =>
(0 => 879, 15 => 879, 34 => 879, 35 => 879,
39 => 879, 40 => 879, 41 => 879, 46 => 879,
56 => 879, 60 => 879, 67 => 879, 68 => 879,
70 => 879, 71 => 879, 72 => 879, 73 => 879,
86 => 879, 91 => 879, 94 => 879, 97 => 879,
99 => 879, 103 => 879, others => 0),
5324 =>
(85 => 38259, others => 0),
5325 =>
(46 => 32807, 85 => 38260, 90 => 32868, others => 0),
5326 =>
(0 => 874, 15 => 874, 34 => 874, 35 => 874,
39 => 874, 40 => 874, 41 => 874, 46 => 874,
56 => 874, 60 => 874, 67 => 874, 68 => 874,
70 => 874, 71 => 874, 72 => 874, 73 => 874,
86 => 874, 91 => 874, 94 => 874, 97 => 874,
99 => 874, 103 => 874, others => 0),
5327 =>
(0 => 1088, 15 => 1088, 34 => 1088, 35 => 1088,
39 => 1088, 40 => 1088, 41 => 1088, 46 => 1088,
56 => 1088, 60 => 1088, 67 => 1088, 68 => 1088,
70 => 1088, 71 => 1088, 72 => 1088, 73 => 1088,
86 => 1088, 91 => 1088, 94 => 1088, 97 => 1088,
99 => 1088, 103 => 1088, others => 0),
5328 =>
(0 => 896, 15 => 896, 34 => 896, 35 => 896,
39 => 896, 40 => 896, 41 => 896, 46 => 896,
56 => 896, 60 => 896, 67 => 896, 68 => 896,
70 => 896, 71 => 896, 72 => 896, 73 => 896,
86 => 896, 91 => 896, 94 => 896, 97 => 896,
99 => 896, 103 => 896, others => 0),
5329 =>
(34 => 38262, others => 0),
5330 =>
(0 => 845, 15 => 845, 34 => 845, 35 => 845,
39 => 845, 40 => 845, 41 => 845, 46 => 845,
56 => 845, 60 => 845, 67 => 845, 68 => 845,
70 => 845, 71 => 845, 72 => 845, 73 => 845,
86 => 845, 91 => 845, 94 => 845, 97 => 845,
99 => 845, 103 => 845, others => 0),
5331 =>
(85 => 38263, others => 0),
5332 =>
(0 => 840, 15 => 840, 34 => 840, 35 => 840,
39 => 840, 40 => 840, 41 => 840, 46 => 840,
56 => 840, 60 => 840, 67 => 840, 68 => 840,
70 => 840, 71 => 840, 72 => 840, 73 => 840,
86 => 840, 91 => 840, 94 => 840, 97 => 840,
99 => 840, 103 => 840, others => 0),
5333 =>
(101 => 33976, others => 0),
5334 =>
(46 => 32807, 85 => 38265, 90 => 32868, others => 0),
5335 =>
(0 => 834, 15 => 834, 34 => 834, 35 => 834,
39 => 834, 40 => 834, 41 => 834, 46 => 834,
56 => 834, 60 => 834, 67 => 834, 68 => 834,
70 => 834, 71 => 834, 72 => 834, 73 => 834,
86 => 834, 91 => 834, 94 => 834, 97 => 834,
99 => 834, 103 => 834, others => 0),
5336 =>
(101 => 33976, others => 0),
5337 =>
(46 => 32807, 85 => 38268, 90 => 32868, others => 0),
5338 =>
(0 => 829, 15 => 829, 34 => 829, 35 => 829,
39 => 829, 40 => 829, 41 => 829, 46 => 829,
56 => 829, 60 => 829, 67 => 829, 68 => 829,
70 => 829, 71 => 829, 72 => 829, 73 => 829,
86 => 829, 91 => 829, 94 => 829, 97 => 829,
99 => 829, 103 => 829, others => 0),
5339 =>
(85 => 38270, others => 0),
5340 =>
(34 => 38272, 37 => 38271, others => 0),
5341 =>
(0 => 1083, 15 => 1083, 34 => 1083, 35 => 1083,
39 => 1083, 40 => 1083, 41 => 1083, 46 => 1083,
56 => 1083, 60 => 1083, 67 => 1083, 68 => 1083,
70 => 1083, 71 => 1083, 72 => 1083, 73 => 1083,
86 => 1083, 91 => 1083, 94 => 1083, 97 => 1083,
99 => 1083, 103 => 1083, others => 0),
5342 =>
(85 => 38273, others => 0),
5343 =>
(46 => 32807, 85 => 38274, 90 => 32868, others => 0),
5344 =>
(0 => 1078, 15 => 1078, 34 => 1078, 35 => 1078,
39 => 1078, 40 => 1078, 41 => 1078, 46 => 1078,
56 => 1078, 60 => 1078, 67 => 1078, 68 => 1078,
70 => 1078, 71 => 1078, 72 => 1078, 73 => 1078,
86 => 1078, 91 => 1078, 94 => 1078, 97 => 1078,
99 => 1078, 103 => 1078, others => 0),
5345 =>
(46 => 32807, 85 => 38276, 90 => 32868, others => 0),
5346 =>
(0 => 1072, 15 => 1072, 34 => 1072, 35 => 1072,
39 => 1072, 40 => 1072, 41 => 1072, 46 => 1072,
56 => 1072, 60 => 1072, 67 => 1072, 68 => 1072,
70 => 1072, 71 => 1072, 72 => 1072, 73 => 1072,
86 => 1072, 91 => 1072, 94 => 1072, 97 => 1072,
99 => 1072, 103 => 1072, others => 0),
5347 =>
(34 => 38278, others => 0),
5348 =>
(0 => 1067, 15 => 1067, 34 => 1067, 35 => 1067,
39 => 1067, 40 => 1067, 41 => 1067, 46 => 1067,
56 => 1067, 60 => 1067, 67 => 1067, 68 => 1067,
70 => 1067, 71 => 1067, 72 => 1067, 73 => 1067,
86 => 1067, 91 => 1067, 94 => 1067, 97 => 1067,
99 => 1067, 103 => 1067, others => 0),
5349 =>
(85 => 38279, others => 0),
5350 =>
(0 => 867, 15 => 867, 34 => 867, 35 => 867,
39 => 867, 40 => 867, 41 => 867, 46 => 867,
56 => 867, 60 => 867, 67 => 867, 68 => 867,
70 => 867, 71 => 867, 72 => 867, 73 => 867,
86 => 867, 91 => 867, 94 => 867, 97 => 867,
99 => 867, 103 => 867, others => 0),
5351 =>
(85 => 38280, others => 0),
5352 =>
(46 => 32807, 85 => 38281, 90 => 32868, others => 0),
5353 =>
(0 => 862, 15 => 862, 34 => 862, 35 => 862,
39 => 862, 40 => 862, 41 => 862, 46 => 862,
56 => 862, 60 => 862, 67 => 862, 68 => 862,
70 => 862, 71 => 862, 72 => 862, 73 => 862,
86 => 862, 91 => 862, 94 => 862, 97 => 862,
99 => 862, 103 => 862, others => 0),
5354 =>
(46 => 32807, 85 => 38283, 90 => 32868, others => 0),
5355 =>
(0 => 856, 15 => 856, 34 => 856, 35 => 856,
39 => 856, 40 => 856, 41 => 856, 46 => 856,
56 => 856, 60 => 856, 67 => 856, 68 => 856,
70 => 856, 71 => 856, 72 => 856, 73 => 856,
86 => 856, 91 => 856, 94 => 856, 97 => 856,
99 => 856, 103 => 856, others => 0),
5356 =>
(34 => 38285, others => 0),
5357 =>
(0 => 851, 15 => 851, 34 => 851, 35 => 851,
39 => 851, 40 => 851, 41 => 851, 46 => 851,
56 => 851, 60 => 851, 67 => 851, 68 => 851,
70 => 851, 71 => 851, 72 => 851, 73 => 851,
86 => 851, 91 => 851, 94 => 851, 97 => 851,
99 => 851, 103 => 851, others => 0),
5358 =>
(85 => 38286, others => 0),
5359 =>
(0 => 1785, 15 => 1785, 34 => 1785, 35 => 1785,
39 => 1785, 40 => 1785, 41 => 1785, 46 => 1785,
56 => 1785, 60 => 1785, 67 => 1785, 68 => 1785,
70 => 1785, 71 => 1785, 72 => 1785, 73 => 1785,
86 => 1785, 91 => 1785, 94 => 1785, 97 => 1785,
99 => 1785, 103 => 1785, others => 0),
5360 =>
(0 => 1780, 15 => 1780, 34 => 1780, 35 => 1780,
39 => 1780, 40 => 1780, 41 => 1780, 46 => 1780,
56 => 1780, 60 => 1780, 67 => 1780, 68 => 1780,
70 => 1780, 71 => 1780, 72 => 1780, 73 => 1780,
86 => 1780, 91 => 1780, 94 => 1780, 97 => 1780,
99 => 1780, 103 => 1780, others => 0),
5361 =>
(29 => 32865, 85 => 38287, others => 0),
5362 =>
(0 => 1774, 15 => 1774, 34 => 1774, 35 => 1774,
39 => 1774, 40 => 1774, 41 => 1774, 46 => 1774,
56 => 1774, 60 => 1774, 67 => 1774, 68 => 1774,
70 => 1774, 71 => 1774, 72 => 1774, 73 => 1774,
86 => 1774, 91 => 1774, 94 => 1774, 97 => 1774,
99 => 1774, 103 => 1774, others => 0),
5363 =>
(29 => 32865, 85 => 38288, others => 0),
5364 =>
(46 => 32807, 85 => 38289, others => 0),
5365 =>
(0 => 1769, 15 => 1769, 34 => 1769, 35 => 1769,
39 => 1769, 40 => 1769, 41 => 1769, 46 => 1769,
56 => 1769, 60 => 1769, 67 => 1769, 68 => 1769,
70 => 1769, 71 => 1769, 72 => 1769, 73 => 1769,
86 => 1769, 91 => 1769, 94 => 1769, 97 => 1769,
99 => 1769, 103 => 1769, others => 0),
5366 =>
(0 => 795, 15 => 795, 34 => 795, 35 => 795,
39 => 795, 40 => 795, 41 => 795, 46 => 795,
56 => 795, 60 => 795, 67 => 795, 68 => 795,
70 => 795, 71 => 795, 72 => 795, 73 => 795,
86 => 795, 91 => 795, 94 => 795, 97 => 795,
99 => 795, 103 => 795, others => 0),
5367 =>
(85 => 38291, others => 0),
5368 =>
(46 => 32807, 85 => 38292, 90 => 32868, others => 0),
5369 =>
(0 => 790, 15 => 790, 34 => 790, 35 => 790,
39 => 790, 40 => 790, 41 => 790, 46 => 790,
56 => 790, 60 => 790, 67 => 790, 68 => 790,
70 => 790, 71 => 790, 72 => 790, 73 => 790,
86 => 790, 91 => 790, 94 => 790, 97 => 790,
99 => 790, 103 => 790, others => 0),
5370 =>
(46 => 32807, 85 => 38294, 90 => 32868, others => 0),
5371 =>
(0 => 784, 15 => 784, 34 => 784, 35 => 784,
39 => 784, 40 => 784, 41 => 784, 46 => 784,
56 => 784, 60 => 784, 67 => 784, 68 => 784,
70 => 784, 71 => 784, 72 => 784, 73 => 784,
86 => 784, 91 => 784, 94 => 784, 97 => 784,
99 => 784, 103 => 784, others => 0),
5372 =>
(34 => 38296, others => 0),
5373 =>
(0 => 779, 15 => 779, 34 => 779, 35 => 779,
39 => 779, 40 => 779, 41 => 779, 46 => 779,
56 => 779, 60 => 779, 67 => 779, 68 => 779,
70 => 779, 71 => 779, 72 => 779, 73 => 779,
86 => 779, 91 => 779, 94 => 779, 97 => 779,
99 => 779, 103 => 779, others => 0),
5374 =>
(85 => 38297, others => 0),
5375 =>
(0 => 1052, 15 => 1052, 34 => 1052, 35 => 1052,
39 => 1052, 40 => 1052, 41 => 1052, 46 => 1052,
56 => 1052, 60 => 1052, 67 => 1052, 68 => 1052,
70 => 1052, 71 => 1052, 72 => 1052, 73 => 1052,
86 => 1052, 91 => 1052, 94 => 1052, 97 => 1052,
99 => 1052, 103 => 1052, others => 0),
5376 =>
(0 => 1046, 15 => 1046, 34 => 1046, 35 => 1046,
39 => 1046, 40 => 1046, 41 => 1046, 46 => 1046,
56 => 1046, 60 => 1046, 67 => 1046, 68 => 1046,
70 => 1046, 71 => 1046, 72 => 1046, 73 => 1046,
86 => 1046, 91 => 1046, 94 => 1046, 97 => 1046,
99 => 1046, 103 => 1046, others => 0),
5377 =>
(0 => 1041, 15 => 1041, 34 => 1041, 35 => 1041,
39 => 1041, 40 => 1041, 41 => 1041, 46 => 1041,
56 => 1041, 60 => 1041, 67 => 1041, 68 => 1041,
70 => 1041, 71 => 1041, 72 => 1041, 73 => 1041,
86 => 1041, 91 => 1041, 94 => 1041, 97 => 1041,
99 => 1041, 103 => 1041, others => 0),
5378 =>
(85 => 38298, others => 0),
5379 =>
(0 => 812, 15 => 812, 34 => 812, 35 => 812,
39 => 812, 40 => 812, 41 => 812, 46 => 812,
56 => 812, 60 => 812, 67 => 812, 68 => 812,
70 => 812, 71 => 812, 72 => 812, 73 => 812,
86 => 812, 91 => 812, 94 => 812, 97 => 812,
99 => 812, 103 => 812, others => 0),
5380 =>
(0 => 806, 15 => 806, 34 => 806, 35 => 806,
39 => 806, 40 => 806, 41 => 806, 46 => 806,
56 => 806, 60 => 806, 67 => 806, 68 => 806,
70 => 806, 71 => 806, 72 => 806, 73 => 806,
86 => 806, 91 => 806, 94 => 806, 97 => 806,
99 => 806, 103 => 806, others => 0),
5381 =>
(0 => 801, 15 => 801, 34 => 801, 35 => 801,
39 => 801, 40 => 801, 41 => 801, 46 => 801,
56 => 801, 60 => 801, 67 => 801, 68 => 801,
70 => 801, 71 => 801, 72 => 801, 73 => 801,
86 => 801, 91 => 801, 94 => 801, 97 => 801,
99 => 801, 103 => 801, others => 0),
5382 =>
(85 => 38299, others => 0),
5383 =>
(0 => 1165, 15 => 1165, 34 => 1165, 35 => 1165,
39 => 1165, 40 => 1165, 41 => 1165, 46 => 1165,
56 => 1165, 60 => 1165, 67 => 1165, 68 => 1165,
70 => 1165, 71 => 1165, 72 => 1165, 73 => 1165,
86 => 1165, 91 => 1165, 94 => 1165, 97 => 1165,
99 => 1165, 103 => 1165, others => 0),
5384 =>
(0 => 1167, 15 => 1167, 34 => 1167, 35 => 1167,
39 => 1167, 40 => 1167, 41 => 1167, 46 => 1167,
56 => 1167, 60 => 1167, 67 => 1167, 68 => 1167,
70 => 1167, 71 => 1167, 72 => 1167, 73 => 1167,
86 => 1167, 91 => 1167, 94 => 1167, 97 => 1167,
99 => 1167, 103 => 1167, others => 0),
5385 =>
(0 => 750, 15 => 750, 34 => 750, 35 => 750,
39 => 750, 40 => 750, 41 => 750, 46 => 750,
56 => 750, 60 => 750, 67 => 750, 68 => 750,
70 => 750, 71 => 750, 72 => 750, 73 => 750,
86 => 750, 91 => 750, 94 => 750, 97 => 750,
99 => 750, 103 => 750, others => 0),
5386 =>
(101 => 33976, others => 0),
5387 =>
(46 => 32807, 85 => 38301, 90 => 32868, others => 0),
5388 =>
(0 => 1161, 15 => 1161, 34 => 1161, 35 => 1161,
39 => 1161, 40 => 1161, 41 => 1161, 46 => 1161,
56 => 1161, 60 => 1161, 67 => 1161, 68 => 1161,
70 => 1161, 71 => 1161, 72 => 1161, 73 => 1161,
86 => 1161, 91 => 1161, 94 => 1161, 97 => 1161,
99 => 1161, 103 => 1161, others => 0),
5389 =>
(0 => 1163, 15 => 1163, 34 => 1163, 35 => 1163,
39 => 1163, 40 => 1163, 41 => 1163, 46 => 1163,
56 => 1163, 60 => 1163, 67 => 1163, 68 => 1163,
70 => 1163, 71 => 1163, 72 => 1163, 73 => 1163,
86 => 1163, 91 => 1163, 94 => 1163, 97 => 1163,
99 => 1163, 103 => 1163, others => 0),
5390 =>
(0 => 745, 15 => 745, 34 => 745, 35 => 745,
39 => 745, 40 => 745, 41 => 745, 46 => 745,
56 => 745, 60 => 745, 67 => 745, 68 => 745,
70 => 745, 71 => 745, 72 => 745, 73 => 745,
86 => 745, 91 => 745, 94 => 745, 97 => 745,
99 => 745, 103 => 745, others => 0),
5391 =>
(85 => 38303, others => 0),
5392 =>
(34 => 38305, 37 => 38304, others => 0),
5393 =>
(0 => 739, 15 => 739, 34 => 739, 35 => 739,
39 => 739, 40 => 739, 41 => 739, 46 => 739,
56 => 739, 60 => 739, 67 => 739, 68 => 739,
70 => 739, 71 => 739, 72 => 739, 73 => 739,
86 => 739, 91 => 739, 94 => 739, 97 => 739,
99 => 739, 103 => 739, others => 0),
5394 =>
(85 => 38306, others => 0),
5395 =>
(34 => 38308, 37 => 38307, others => 0),
5396 =>
(46 => 32807, 85 => 38309, 90 => 32868, others => 0),
5397 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5398 =>
(46 => 32807, 85 => 38312, 90 => 32868, others => 0),
5399 =>
(0 => 1036, 15 => 1036, 34 => 1036, 35 => 1036,
39 => 1036, 40 => 1036, 41 => 1036, 46 => 1036,
56 => 1036, 60 => 1036, 67 => 1036, 68 => 1036,
70 => 1036, 71 => 1036, 72 => 1036, 73 => 1036,
86 => 1036, 91 => 1036, 94 => 1036, 97 => 1036,
99 => 1036, 103 => 1036, others => 0),
5400 =>
(34 => 38314, others => 0),
5401 =>
(0 => 1031, 15 => 1031, 34 => 1031, 35 => 1031,
39 => 1031, 40 => 1031, 41 => 1031, 46 => 1031,
56 => 1031, 60 => 1031, 67 => 1031, 68 => 1031,
70 => 1031, 71 => 1031, 72 => 1031, 73 => 1031,
86 => 1031, 91 => 1031, 94 => 1031, 97 => 1031,
99 => 1031, 103 => 1031, others => 0),
5402 =>
(85 => 38315, others => 0),
5403 =>
(34 => 38316, others => 0),
5404 =>
(0 => 1025, 15 => 1025, 34 => 1025, 35 => 1025,
39 => 1025, 40 => 1025, 41 => 1025, 46 => 1025,
56 => 1025, 60 => 1025, 67 => 1025, 68 => 1025,
70 => 1025, 71 => 1025, 72 => 1025, 73 => 1025,
86 => 1025, 91 => 1025, 94 => 1025, 97 => 1025,
99 => 1025, 103 => 1025, others => 0),
5405 =>
(85 => 38317, others => 0),
5406 =>
(0 => 1020, 15 => 1020, 34 => 1020, 35 => 1020,
39 => 1020, 40 => 1020, 41 => 1020, 46 => 1020,
56 => 1020, 60 => 1020, 67 => 1020, 68 => 1020,
70 => 1020, 71 => 1020, 72 => 1020, 73 => 1020,
86 => 1020, 91 => 1020, 94 => 1020, 97 => 1020,
99 => 1020, 103 => 1020, others => 0),
5407 =>
(101 => 33976, others => 0),
5408 =>
(46 => 32807, 85 => 38319, 90 => 32868, others => 0),
5409 =>
(46 => 32807, 85 => 38321, 90 => 32868, others => 0),
5410 =>
(0 => 772, 15 => 772, 34 => 772, 35 => 772,
39 => 772, 40 => 772, 41 => 772, 46 => 772,
56 => 772, 60 => 772, 67 => 772, 68 => 772,
70 => 772, 71 => 772, 72 => 772, 73 => 772,
86 => 772, 91 => 772, 94 => 772, 97 => 772,
99 => 772, 103 => 772, others => 0),
5411 =>
(34 => 38323, others => 0),
5412 =>
(0 => 767, 15 => 767, 34 => 767, 35 => 767,
39 => 767, 40 => 767, 41 => 767, 46 => 767,
56 => 767, 60 => 767, 67 => 767, 68 => 767,
70 => 767, 71 => 767, 72 => 767, 73 => 767,
86 => 767, 91 => 767, 94 => 767, 97 => 767,
99 => 767, 103 => 767, others => 0),
5413 =>
(85 => 38324, others => 0),
5414 =>
(34 => 38325, others => 0),
5415 =>
(0 => 761, 15 => 761, 34 => 761, 35 => 761,
39 => 761, 40 => 761, 41 => 761, 46 => 761,
56 => 761, 60 => 761, 67 => 761, 68 => 761,
70 => 761, 71 => 761, 72 => 761, 73 => 761,
86 => 761, 91 => 761, 94 => 761, 97 => 761,
99 => 761, 103 => 761, others => 0),
5416 =>
(85 => 38326, others => 0),
5417 =>
(0 => 756, 15 => 756, 34 => 756, 35 => 756,
39 => 756, 40 => 756, 41 => 756, 46 => 756,
56 => 756, 60 => 756, 67 => 756, 68 => 756,
70 => 756, 71 => 756, 72 => 756, 73 => 756,
86 => 756, 91 => 756, 94 => 756, 97 => 756,
99 => 756, 103 => 756, others => 0),
5418 =>
(101 => 33976, others => 0),
5419 =>
(46 => 32807, 85 => 38328, 90 => 32868, others => 0),
5420 =>
(40 => 486, 46 => 486, 68 => 486, 70 => 486,
72 => 486, 97 => 486, 99 => 486, 103 => 486,
others => 0),
5421 =>
(40 => 481, 46 => 481, 68 => 481, 70 => 481,
72 => 481, 97 => 481, 99 => 481, 103 => 481,
others => 0),
5422 =>
(85 => 38330, others => 0),
5423 =>
(40 => 482, 46 => 482, 68 => 482, 70 => 482,
72 => 482, 97 => 482, 99 => 482, 103 => 482,
others => 0),
5424 =>
(40 => 479, 46 => 479, 68 => 479, 70 => 479,
72 => 479, 97 => 479, 99 => 479, 103 => 479,
others => 0),
5425 =>
(85 => 38331, others => 0),
5426 =>
(40 => 484, 46 => 484, 68 => 484, 70 => 484,
72 => 484, 97 => 484, 99 => 484, 103 => 484,
others => 0),
5427 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
5428 =>
(85 => 411, 103 => 411, others => 0),
5429 =>
(13 => 41, 51 => 41, 78 => 41, 83 => 41,
85 => 41, 103 => 41, others => 0),
5430 =>
(0 => 980, 15 => 980, 34 => 980, 35 => 980,
39 => 980, 40 => 980, 41 => 980, 46 => 980,
56 => 980, 60 => 980, 67 => 980, 68 => 980,
70 => 980, 71 => 980, 72 => 980, 73 => 980,
86 => 980, 91 => 980, 94 => 980, 97 => 980,
99 => 980, 103 => 980, others => 0),
5431 =>
(0 => 974, 15 => 974, 34 => 974, 35 => 974,
39 => 974, 40 => 974, 41 => 974, 46 => 974,
56 => 974, 60 => 974, 67 => 974, 68 => 974,
70 => 974, 71 => 974, 72 => 974, 73 => 974,
86 => 974, 91 => 974, 94 => 974, 97 => 974,
99 => 974, 103 => 974, others => 0),
5432 =>
(0 => 969, 15 => 969, 34 => 969, 35 => 969,
39 => 969, 40 => 969, 41 => 969, 46 => 969,
56 => 969, 60 => 969, 67 => 969, 68 => 969,
70 => 969, 71 => 969, 72 => 969, 73 => 969,
86 => 969, 91 => 969, 94 => 969, 97 => 969,
99 => 969, 103 => 969, others => 0),
5433 =>
(85 => 38333, others => 0),
5434 =>
(46 => 32807, 85 => 38334, 90 => 32868, others => 0),
5435 =>
(0 => 940, 15 => 940, 34 => 940, 35 => 940,
39 => 940, 40 => 940, 41 => 940, 46 => 940,
56 => 940, 60 => 940, 67 => 940, 68 => 940,
70 => 940, 71 => 940, 72 => 940, 73 => 940,
86 => 940, 91 => 940, 94 => 940, 97 => 940,
99 => 940, 103 => 940, others => 0),
5436 =>
(34 => 38336, others => 0),
5437 =>
(0 => 935, 15 => 935, 34 => 935, 35 => 935,
39 => 935, 40 => 935, 41 => 935, 46 => 935,
56 => 935, 60 => 935, 67 => 935, 68 => 935,
70 => 935, 71 => 935, 72 => 935, 73 => 935,
86 => 935, 91 => 935, 94 => 935, 97 => 935,
99 => 935, 103 => 935, others => 0),
5438 =>
(85 => 38337, others => 0),
5439 =>
(34 => 38338, others => 0),
5440 =>
(0 => 929, 15 => 929, 34 => 929, 35 => 929,
39 => 929, 40 => 929, 41 => 929, 46 => 929,
56 => 929, 60 => 929, 67 => 929, 68 => 929,
70 => 929, 71 => 929, 72 => 929, 73 => 929,
86 => 929, 91 => 929, 94 => 929, 97 => 929,
99 => 929, 103 => 929, others => 0),
5441 =>
(85 => 38339, others => 0),
5442 =>
(0 => 924, 15 => 924, 34 => 924, 35 => 924,
39 => 924, 40 => 924, 41 => 924, 46 => 924,
56 => 924, 60 => 924, 67 => 924, 68 => 924,
70 => 924, 71 => 924, 72 => 924, 73 => 924,
86 => 924, 91 => 924, 94 => 924, 97 => 924,
99 => 924, 103 => 924, others => 0),
5443 =>
(101 => 33976, others => 0),
5444 =>
(46 => 32807, 85 => 38341, 90 => 32868, others => 0),
5445 =>
(0 => 1130, 15 => 1130, 34 => 1130, 35 => 1130,
39 => 1130, 40 => 1130, 41 => 1130, 46 => 1130,
56 => 1130, 60 => 1130, 67 => 1130, 68 => 1130,
70 => 1130, 71 => 1130, 72 => 1130, 73 => 1130,
86 => 1130, 91 => 1130, 94 => 1130, 97 => 1130,
99 => 1130, 103 => 1130, others => 0),
5446 =>
(0 => 1125, 15 => 1125, 34 => 1125, 35 => 1125,
39 => 1125, 40 => 1125, 41 => 1125, 46 => 1125,
56 => 1125, 60 => 1125, 67 => 1125, 68 => 1125,
70 => 1125, 71 => 1125, 72 => 1125, 73 => 1125,
86 => 1125, 91 => 1125, 94 => 1125, 97 => 1125,
99 => 1125, 103 => 1125, others => 0),
5447 =>
(85 => 38343, others => 0),
5448 =>
(0 => 1119, 15 => 1119, 34 => 1119, 35 => 1119,
39 => 1119, 40 => 1119, 41 => 1119, 46 => 1119,
56 => 1119, 60 => 1119, 67 => 1119, 68 => 1119,
70 => 1119, 71 => 1119, 72 => 1119, 73 => 1119,
86 => 1119, 91 => 1119, 94 => 1119, 97 => 1119,
99 => 1119, 103 => 1119, others => 0),
5449 =>
(85 => 38344, others => 0),
5450 =>
(46 => 32807, 85 => 38345, 90 => 32868, others => 0),
5451 =>
(0 => 1114, 15 => 1114, 34 => 1114, 35 => 1114,
39 => 1114, 40 => 1114, 41 => 1114, 46 => 1114,
56 => 1114, 60 => 1114, 67 => 1114, 68 => 1114,
70 => 1114, 71 => 1114, 72 => 1114, 73 => 1114,
86 => 1114, 91 => 1114, 94 => 1114, 97 => 1114,
99 => 1114, 103 => 1114, others => 0),
5452 =>
(0 => 962, 15 => 962, 34 => 962, 35 => 962,
39 => 962, 40 => 962, 41 => 962, 46 => 962,
56 => 962, 60 => 962, 67 => 962, 68 => 962,
70 => 962, 71 => 962, 72 => 962, 73 => 962,
86 => 962, 91 => 962, 94 => 962, 97 => 962,
99 => 962, 103 => 962, others => 0),
5453 =>
(0 => 957, 15 => 957, 34 => 957, 35 => 957,
39 => 957, 40 => 957, 41 => 957, 46 => 957,
56 => 957, 60 => 957, 67 => 957, 68 => 957,
70 => 957, 71 => 957, 72 => 957, 73 => 957,
86 => 957, 91 => 957, 94 => 957, 97 => 957,
99 => 957, 103 => 957, others => 0),
5454 =>
(85 => 38347, others => 0),
5455 =>
(0 => 951, 15 => 951, 34 => 951, 35 => 951,
39 => 951, 40 => 951, 41 => 951, 46 => 951,
56 => 951, 60 => 951, 67 => 951, 68 => 951,
70 => 951, 71 => 951, 72 => 951, 73 => 951,
86 => 951, 91 => 951, 94 => 951, 97 => 951,
99 => 951, 103 => 951, others => 0),
5456 =>
(85 => 38348, others => 0),
5457 =>
(46 => 32807, 85 => 38349, 90 => 32868, others => 0),
5458 =>
(0 => 946, 15 => 946, 34 => 946, 35 => 946,
39 => 946, 40 => 946, 41 => 946, 46 => 946,
56 => 946, 60 => 946, 67 => 946, 68 => 946,
70 => 946, 71 => 946, 72 => 946, 73 => 946,
86 => 946, 91 => 946, 94 => 946, 97 => 946,
99 => 946, 103 => 946, others => 0),
5459 =>
(15 => 37606, 34 => 37605, 39 => 32961, 40 => 32781,
41 => 32780, 46 => 32838, 60 => 32778, 67 => 32777,
68 => 32958, 70 => 32775, 72 => 32773, 73 => 32957,
91 => 32955, 94 => 32954, 97 => 32953, 99 => 32771,
others => 0),
5460 =>
(51 => 37611, others => 0),
5461 =>
(61 => 38351, others => 0),
5462 =>
(85 => 93, 103 => 93, others => 0),
5463 =>
(85 => 78, 103 => 78, others => 0),
5464 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
5465 =>
(85 => 85, 103 => 85, others => 0),
5466 =>
(15 => 1699, 34 => 1699, 39 => 1699, 40 => 1699,
41 => 1699, 46 => 1699, 60 => 1699, 67 => 1699,
68 => 1699, 70 => 1699, 71 => 1699, 72 => 1699,
73 => 1699, 91 => 1699, 94 => 1699, 97 => 1699,
99 => 1699, others => 0),
5467 =>
(15 => 1695, 34 => 1695, 39 => 1695, 40 => 1695,
41 => 1695, 46 => 1695, 60 => 1695, 67 => 1695,
68 => 1695, 70 => 1695, 71 => 1695, 72 => 1695,
73 => 1695, 91 => 1695, 94 => 1695, 97 => 1695,
99 => 1695, others => 0),
5468 =>
(15 => 680, 34 => 680, 39 => 680, 40 => 680,
41 => 680, 46 => 680, 60 => 680, 67 => 680,
68 => 680, 70 => 680, 71 => 680, 72 => 680,
73 => 680, 91 => 680, 94 => 680, 97 => 680,
99 => 680, others => 0),
5469 =>
(0 => 2139, 15 => 2139, 34 => 2139, 39 => 2139,
40 => 2139, 41 => 2139, 46 => 2139, 56 => 2139,
60 => 2139, 67 => 2139, 68 => 2139, 70 => 2139,
71 => 2139, 72 => 2139, 73 => 2139, 86 => 2139,
91 => 2139, 94 => 2139, 97 => 2139, 99 => 2139,
103 => 2139, others => 0),
5470 =>
(34 => 334, 35 => 334, 39 => 334, 40 => 334,
46 => 334, 60 => 334, 67 => 334, 70 => 334,
71 => 334, 72 => 334, others => 0),
5471 =>
(85 => 38353, others => 0),
5472 =>
(85 => 38354, 103 => 32885, others => 0),
5473 =>
(34 => 341, 35 => 341, 39 => 341, 40 => 341,
46 => 341, 60 => 341, 67 => 341, 70 => 341,
71 => 341, 72 => 341, others => 0),
5474 =>
(34 => 38356, others => 0),
5475 =>
(34 => 321, 35 => 321, 39 => 321, 40 => 321,
60 => 321, 67 => 321, 70 => 321, 72 => 321,
others => 0),
5476 =>
(85 => 38357, others => 0),
5477 =>
(101 => 33976, others => 0),
5478 =>
(46 => 38360, 85 => 38359, others => 0),
5479 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5480 =>
(15 => 38362, others => 0),
5481 =>
(2 => 33031, 19 => 32869, 45 => 33030, 46 => 32807,
53 => 33029, 59 => 33028, 60 => 33027, 61 => 33026,
62 => 33025, 69 => 33024, 90 => 32868, others => 0),
5482 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5483 =>
(15 => 38365, others => 0),
5484 =>
(34 => 38366, others => 0),
5485 =>
(1 => 12, 4 => 12, 15 => 12, 18 => 12,
19 => 12, 24 => 12, 25 => 12, 32 => 12,
33 => 12, 34 => 12, 37 => 12, 38 => 12,
39 => 12, 42 => 12, 46 => 12, 47 => 12,
52 => 12, 57 => 12, 61 => 12, 64 => 12,
70 => 12, 74 => 12, 79 => 12, 80 => 12,
84 => 12, 90 => 12, 96 => 12, 101 => 12,
102 => 12, others => 0),
5486 =>
(85 => 38367, others => 0),
5487 =>
(1 => 14, 4 => 14, 15 => 14, 18 => 14,
19 => 14, 24 => 14, 25 => 14, 32 => 14,
33 => 14, 34 => 14, 37 => 14, 38 => 14,
39 => 14, 42 => 14, 46 => 14, 47 => 14,
52 => 14, 57 => 14, 61 => 14, 64 => 14,
70 => 14, 74 => 14, 79 => 14, 80 => 14,
84 => 14, 90 => 14, 96 => 14, 101 => 14,
102 => 14, others => 0),
5488 =>
(1 => 19, 4 => 19, 15 => 19, 18 => 19,
19 => 19, 24 => 19, 25 => 19, 32 => 19,
33 => 19, 34 => 19, 37 => 19, 38 => 19,
39 => 19, 42 => 19, 46 => 19, 47 => 19,
52 => 19, 57 => 19, 61 => 19, 64 => 19,
70 => 19, 74 => 19, 79 => 19, 80 => 19,
84 => 19, 90 => 19, 96 => 19, 101 => 19,
102 => 19, others => 0),
5489 =>
(0 => 1815, 15 => 1815, 34 => 1815, 35 => 1815,
39 => 1815, 40 => 1815, 41 => 1815, 46 => 1815,
56 => 1815, 60 => 1815, 67 => 1815, 68 => 1815,
70 => 1815, 71 => 1815, 72 => 1815, 73 => 1815,
86 => 1815, 91 => 1815, 94 => 1815, 97 => 1815,
99 => 1815, 103 => 1815, others => 0),
5490 =>
(0 => 884, 15 => 884, 34 => 884, 35 => 884,
39 => 884, 40 => 884, 41 => 884, 46 => 884,
56 => 884, 60 => 884, 67 => 884, 68 => 884,
70 => 884, 71 => 884, 72 => 884, 73 => 884,
86 => 884, 91 => 884, 94 => 884, 97 => 884,
99 => 884, 103 => 884, others => 0),
5491 =>
(0 => 878, 15 => 878, 34 => 878, 35 => 878,
39 => 878, 40 => 878, 41 => 878, 46 => 878,
56 => 878, 60 => 878, 67 => 878, 68 => 878,
70 => 878, 71 => 878, 72 => 878, 73 => 878,
86 => 878, 91 => 878, 94 => 878, 97 => 878,
99 => 878, 103 => 878, others => 0),
5492 =>
(0 => 873, 15 => 873, 34 => 873, 35 => 873,
39 => 873, 40 => 873, 41 => 873, 46 => 873,
56 => 873, 60 => 873, 67 => 873, 68 => 873,
70 => 873, 71 => 873, 72 => 873, 73 => 873,
86 => 873, 91 => 873, 94 => 873, 97 => 873,
99 => 873, 103 => 873, others => 0),
5493 =>
(85 => 38368, others => 0),
5494 =>
(46 => 32807, 85 => 38369, 90 => 32868, others => 0),
5495 =>
(0 => 844, 15 => 844, 34 => 844, 35 => 844,
39 => 844, 40 => 844, 41 => 844, 46 => 844,
56 => 844, 60 => 844, 67 => 844, 68 => 844,
70 => 844, 71 => 844, 72 => 844, 73 => 844,
86 => 844, 91 => 844, 94 => 844, 97 => 844,
99 => 844, 103 => 844, others => 0),
5496 =>
(34 => 38371, others => 0),
5497 =>
(0 => 839, 15 => 839, 34 => 839, 35 => 839,
39 => 839, 40 => 839, 41 => 839, 46 => 839,
56 => 839, 60 => 839, 67 => 839, 68 => 839,
70 => 839, 71 => 839, 72 => 839, 73 => 839,
86 => 839, 91 => 839, 94 => 839, 97 => 839,
99 => 839, 103 => 839, others => 0),
5498 =>
(85 => 38372, others => 0),
5499 =>
(34 => 38373, others => 0),
5500 =>
(0 => 833, 15 => 833, 34 => 833, 35 => 833,
39 => 833, 40 => 833, 41 => 833, 46 => 833,
56 => 833, 60 => 833, 67 => 833, 68 => 833,
70 => 833, 71 => 833, 72 => 833, 73 => 833,
86 => 833, 91 => 833, 94 => 833, 97 => 833,
99 => 833, 103 => 833, others => 0),
5501 =>
(85 => 38374, others => 0),
5502 =>
(0 => 828, 15 => 828, 34 => 828, 35 => 828,
39 => 828, 40 => 828, 41 => 828, 46 => 828,
56 => 828, 60 => 828, 67 => 828, 68 => 828,
70 => 828, 71 => 828, 72 => 828, 73 => 828,
86 => 828, 91 => 828, 94 => 828, 97 => 828,
99 => 828, 103 => 828, others => 0),
5503 =>
(101 => 33976, others => 0),
5504 =>
(46 => 32807, 85 => 38376, 90 => 32868, others => 0),
5505 =>
(0 => 1082, 15 => 1082, 34 => 1082, 35 => 1082,
39 => 1082, 40 => 1082, 41 => 1082, 46 => 1082,
56 => 1082, 60 => 1082, 67 => 1082, 68 => 1082,
70 => 1082, 71 => 1082, 72 => 1082, 73 => 1082,
86 => 1082, 91 => 1082, 94 => 1082, 97 => 1082,
99 => 1082, 103 => 1082, others => 0),
5506 =>
(0 => 1077, 15 => 1077, 34 => 1077, 35 => 1077,
39 => 1077, 40 => 1077, 41 => 1077, 46 => 1077,
56 => 1077, 60 => 1077, 67 => 1077, 68 => 1077,
70 => 1077, 71 => 1077, 72 => 1077, 73 => 1077,
86 => 1077, 91 => 1077, 94 => 1077, 97 => 1077,
99 => 1077, 103 => 1077, others => 0),
5507 =>
(85 => 38378, others => 0),
5508 =>
(0 => 1071, 15 => 1071, 34 => 1071, 35 => 1071,
39 => 1071, 40 => 1071, 41 => 1071, 46 => 1071,
56 => 1071, 60 => 1071, 67 => 1071, 68 => 1071,
70 => 1071, 71 => 1071, 72 => 1071, 73 => 1071,
86 => 1071, 91 => 1071, 94 => 1071, 97 => 1071,
99 => 1071, 103 => 1071, others => 0),
5509 =>
(85 => 38379, others => 0),
5510 =>
(46 => 32807, 85 => 38380, 90 => 32868, others => 0),
5511 =>
(0 => 1066, 15 => 1066, 34 => 1066, 35 => 1066,
39 => 1066, 40 => 1066, 41 => 1066, 46 => 1066,
56 => 1066, 60 => 1066, 67 => 1066, 68 => 1066,
70 => 1066, 71 => 1066, 72 => 1066, 73 => 1066,
86 => 1066, 91 => 1066, 94 => 1066, 97 => 1066,
99 => 1066, 103 => 1066, others => 0),
5512 =>
(0 => 866, 15 => 866, 34 => 866, 35 => 866,
39 => 866, 40 => 866, 41 => 866, 46 => 866,
56 => 866, 60 => 866, 67 => 866, 68 => 866,
70 => 866, 71 => 866, 72 => 866, 73 => 866,
86 => 866, 91 => 866, 94 => 866, 97 => 866,
99 => 866, 103 => 866, others => 0),
5513 =>
(0 => 861, 15 => 861, 34 => 861, 35 => 861,
39 => 861, 40 => 861, 41 => 861, 46 => 861,
56 => 861, 60 => 861, 67 => 861, 68 => 861,
70 => 861, 71 => 861, 72 => 861, 73 => 861,
86 => 861, 91 => 861, 94 => 861, 97 => 861,
99 => 861, 103 => 861, others => 0),
5514 =>
(85 => 38382, others => 0),
5515 =>
(0 => 855, 15 => 855, 34 => 855, 35 => 855,
39 => 855, 40 => 855, 41 => 855, 46 => 855,
56 => 855, 60 => 855, 67 => 855, 68 => 855,
70 => 855, 71 => 855, 72 => 855, 73 => 855,
86 => 855, 91 => 855, 94 => 855, 97 => 855,
99 => 855, 103 => 855, others => 0),
5516 =>
(85 => 38383, others => 0),
5517 =>
(46 => 32807, 85 => 38384, 90 => 32868, others => 0),
5518 =>
(0 => 850, 15 => 850, 34 => 850, 35 => 850,
39 => 850, 40 => 850, 41 => 850, 46 => 850,
56 => 850, 60 => 850, 67 => 850, 68 => 850,
70 => 850, 71 => 850, 72 => 850, 73 => 850,
86 => 850, 91 => 850, 94 => 850, 97 => 850,
99 => 850, 103 => 850, others => 0),
5519 =>
(0 => 1779, 15 => 1779, 34 => 1779, 35 => 1779,
39 => 1779, 40 => 1779, 41 => 1779, 46 => 1779,
56 => 1779, 60 => 1779, 67 => 1779, 68 => 1779,
70 => 1779, 71 => 1779, 72 => 1779, 73 => 1779,
86 => 1779, 91 => 1779, 94 => 1779, 97 => 1779,
99 => 1779, 103 => 1779, others => 0),
5520 =>
(0 => 1773, 15 => 1773, 34 => 1773, 35 => 1773,
39 => 1773, 40 => 1773, 41 => 1773, 46 => 1773,
56 => 1773, 60 => 1773, 67 => 1773, 68 => 1773,
70 => 1773, 71 => 1773, 72 => 1773, 73 => 1773,
86 => 1773, 91 => 1773, 94 => 1773, 97 => 1773,
99 => 1773, 103 => 1773, others => 0),
5521 =>
(0 => 1768, 15 => 1768, 34 => 1768, 35 => 1768,
39 => 1768, 40 => 1768, 41 => 1768, 46 => 1768,
56 => 1768, 60 => 1768, 67 => 1768, 68 => 1768,
70 => 1768, 71 => 1768, 72 => 1768, 73 => 1768,
86 => 1768, 91 => 1768, 94 => 1768, 97 => 1768,
99 => 1768, 103 => 1768, others => 0),
5522 =>
(29 => 32865, 85 => 38386, others => 0),
5523 =>
(0 => 794, 15 => 794, 34 => 794, 35 => 794,
39 => 794, 40 => 794, 41 => 794, 46 => 794,
56 => 794, 60 => 794, 67 => 794, 68 => 794,
70 => 794, 71 => 794, 72 => 794, 73 => 794,
86 => 794, 91 => 794, 94 => 794, 97 => 794,
99 => 794, 103 => 794, others => 0),
5524 =>
(0 => 789, 15 => 789, 34 => 789, 35 => 789,
39 => 789, 40 => 789, 41 => 789, 46 => 789,
56 => 789, 60 => 789, 67 => 789, 68 => 789,
70 => 789, 71 => 789, 72 => 789, 73 => 789,
86 => 789, 91 => 789, 94 => 789, 97 => 789,
99 => 789, 103 => 789, others => 0),
5525 =>
(85 => 38387, others => 0),
5526 =>
(0 => 783, 15 => 783, 34 => 783, 35 => 783,
39 => 783, 40 => 783, 41 => 783, 46 => 783,
56 => 783, 60 => 783, 67 => 783, 68 => 783,
70 => 783, 71 => 783, 72 => 783, 73 => 783,
86 => 783, 91 => 783, 94 => 783, 97 => 783,
99 => 783, 103 => 783, others => 0),
5527 =>
(85 => 38388, others => 0),
5528 =>
(46 => 32807, 85 => 38389, 90 => 32868, others => 0),
5529 =>
(0 => 778, 15 => 778, 34 => 778, 35 => 778,
39 => 778, 40 => 778, 41 => 778, 46 => 778,
56 => 778, 60 => 778, 67 => 778, 68 => 778,
70 => 778, 71 => 778, 72 => 778, 73 => 778,
86 => 778, 91 => 778, 94 => 778, 97 => 778,
99 => 778, 103 => 778, others => 0),
5530 =>
(0 => 1040, 15 => 1040, 34 => 1040, 35 => 1040,
39 => 1040, 40 => 1040, 41 => 1040, 46 => 1040,
56 => 1040, 60 => 1040, 67 => 1040, 68 => 1040,
70 => 1040, 71 => 1040, 72 => 1040, 73 => 1040,
86 => 1040, 91 => 1040, 94 => 1040, 97 => 1040,
99 => 1040, 103 => 1040, others => 0),
5531 =>
(0 => 800, 15 => 800, 34 => 800, 35 => 800,
39 => 800, 40 => 800, 41 => 800, 46 => 800,
56 => 800, 60 => 800, 67 => 800, 68 => 800,
70 => 800, 71 => 800, 72 => 800, 73 => 800,
86 => 800, 91 => 800, 94 => 800, 97 => 800,
99 => 800, 103 => 800, others => 0),
5532 =>
(34 => 38391, others => 0),
5533 =>
(0 => 749, 15 => 749, 34 => 749, 35 => 749,
39 => 749, 40 => 749, 41 => 749, 46 => 749,
56 => 749, 60 => 749, 67 => 749, 68 => 749,
70 => 749, 71 => 749, 72 => 749, 73 => 749,
86 => 749, 91 => 749, 94 => 749, 97 => 749,
99 => 749, 103 => 749, others => 0),
5534 =>
(85 => 38392, others => 0),
5535 =>
(0 => 744, 15 => 744, 34 => 744, 35 => 744,
39 => 744, 40 => 744, 41 => 744, 46 => 744,
56 => 744, 60 => 744, 67 => 744, 68 => 744,
70 => 744, 71 => 744, 72 => 744, 73 => 744,
86 => 744, 91 => 744, 94 => 744, 97 => 744,
99 => 744, 103 => 744, others => 0),
5536 =>
(101 => 33976, others => 0),
5537 =>
(46 => 32807, 85 => 38394, 90 => 32868, others => 0),
5538 =>
(0 => 738, 15 => 738, 34 => 738, 35 => 738,
39 => 738, 40 => 738, 41 => 738, 46 => 738,
56 => 738, 60 => 738, 67 => 738, 68 => 738,
70 => 738, 71 => 738, 72 => 738, 73 => 738,
86 => 738, 91 => 738, 94 => 738, 97 => 738,
99 => 738, 103 => 738, others => 0),
5539 =>
(101 => 33976, others => 0),
5540 =>
(46 => 32807, 85 => 38397, 90 => 32868, others => 0),
5541 =>
(0 => 733, 15 => 733, 34 => 733, 35 => 733,
39 => 733, 40 => 733, 41 => 733, 46 => 733,
56 => 733, 60 => 733, 67 => 733, 68 => 733,
70 => 733, 71 => 733, 72 => 733, 73 => 733,
86 => 733, 91 => 733, 94 => 733, 97 => 733,
99 => 733, 103 => 733, others => 0),
5542 =>
(85 => 38399, others => 0),
5543 =>
(34 => 38401, 37 => 38400, others => 0),
5544 =>
(0 => 1035, 15 => 1035, 34 => 1035, 35 => 1035,
39 => 1035, 40 => 1035, 41 => 1035, 46 => 1035,
56 => 1035, 60 => 1035, 67 => 1035, 68 => 1035,
70 => 1035, 71 => 1035, 72 => 1035, 73 => 1035,
86 => 1035, 91 => 1035, 94 => 1035, 97 => 1035,
99 => 1035, 103 => 1035, others => 0),
5545 =>
(85 => 38402, others => 0),
5546 =>
(46 => 32807, 85 => 38403, 90 => 32868, others => 0),
5547 =>
(0 => 1030, 15 => 1030, 34 => 1030, 35 => 1030,
39 => 1030, 40 => 1030, 41 => 1030, 46 => 1030,
56 => 1030, 60 => 1030, 67 => 1030, 68 => 1030,
70 => 1030, 71 => 1030, 72 => 1030, 73 => 1030,
86 => 1030, 91 => 1030, 94 => 1030, 97 => 1030,
99 => 1030, 103 => 1030, others => 0),
5548 =>
(46 => 32807, 85 => 38405, 90 => 32868, others => 0),
5549 =>
(0 => 1024, 15 => 1024, 34 => 1024, 35 => 1024,
39 => 1024, 40 => 1024, 41 => 1024, 46 => 1024,
56 => 1024, 60 => 1024, 67 => 1024, 68 => 1024,
70 => 1024, 71 => 1024, 72 => 1024, 73 => 1024,
86 => 1024, 91 => 1024, 94 => 1024, 97 => 1024,
99 => 1024, 103 => 1024, others => 0),
5550 =>
(34 => 38407, others => 0),
5551 =>
(0 => 1019, 15 => 1019, 34 => 1019, 35 => 1019,
39 => 1019, 40 => 1019, 41 => 1019, 46 => 1019,
56 => 1019, 60 => 1019, 67 => 1019, 68 => 1019,
70 => 1019, 71 => 1019, 72 => 1019, 73 => 1019,
86 => 1019, 91 => 1019, 94 => 1019, 97 => 1019,
99 => 1019, 103 => 1019, others => 0),
5552 =>
(85 => 38408, others => 0),
5553 =>
(0 => 771, 15 => 771, 34 => 771, 35 => 771,
39 => 771, 40 => 771, 41 => 771, 46 => 771,
56 => 771, 60 => 771, 67 => 771, 68 => 771,
70 => 771, 71 => 771, 72 => 771, 73 => 771,
86 => 771, 91 => 771, 94 => 771, 97 => 771,
99 => 771, 103 => 771, others => 0),
5554 =>
(85 => 38409, others => 0),
5555 =>
(46 => 32807, 85 => 38410, 90 => 32868, others => 0),
5556 =>
(0 => 766, 15 => 766, 34 => 766, 35 => 766,
39 => 766, 40 => 766, 41 => 766, 46 => 766,
56 => 766, 60 => 766, 67 => 766, 68 => 766,
70 => 766, 71 => 766, 72 => 766, 73 => 766,
86 => 766, 91 => 766, 94 => 766, 97 => 766,
99 => 766, 103 => 766, others => 0),
5557 =>
(46 => 32807, 85 => 38412, 90 => 32868, others => 0),
5558 =>
(0 => 760, 15 => 760, 34 => 760, 35 => 760,
39 => 760, 40 => 760, 41 => 760, 46 => 760,
56 => 760, 60 => 760, 67 => 760, 68 => 760,
70 => 760, 71 => 760, 72 => 760, 73 => 760,
86 => 760, 91 => 760, 94 => 760, 97 => 760,
99 => 760, 103 => 760, others => 0),
5559 =>
(34 => 38414, others => 0),
5560 =>
(0 => 755, 15 => 755, 34 => 755, 35 => 755,
39 => 755, 40 => 755, 41 => 755, 46 => 755,
56 => 755, 60 => 755, 67 => 755, 68 => 755,
70 => 755, 71 => 755, 72 => 755, 73 => 755,
86 => 755, 91 => 755, 94 => 755, 97 => 755,
99 => 755, 103 => 755, others => 0),
5561 =>
(85 => 38415, others => 0),
5562 =>
(40 => 480, 46 => 480, 68 => 480, 70 => 480,
72 => 480, 97 => 480, 99 => 480, 103 => 480,
others => 0),
5563 =>
(40 => 478, 46 => 478, 68 => 478, 70 => 478,
72 => 478, 97 => 478, 99 => 478, 103 => 478,
others => 0),
5564 =>
(85 => 407, 103 => 407, others => 0),
5565 =>
(0 => 968, 15 => 968, 34 => 968, 35 => 968,
39 => 968, 40 => 968, 41 => 968, 46 => 968,
56 => 968, 60 => 968, 67 => 968, 68 => 968,
70 => 968, 71 => 968, 72 => 968, 73 => 968,
86 => 968, 91 => 968, 94 => 968, 97 => 968,
99 => 968, 103 => 968, others => 0),
5566 =>
(0 => 939, 15 => 939, 34 => 939, 35 => 939,
39 => 939, 40 => 939, 41 => 939, 46 => 939,
56 => 939, 60 => 939, 67 => 939, 68 => 939,
70 => 939, 71 => 939, 72 => 939, 73 => 939,
86 => 939, 91 => 939, 94 => 939, 97 => 939,
99 => 939, 103 => 939, others => 0),
5567 =>
(85 => 38416, others => 0),
5568 =>
(46 => 32807, 85 => 38417, 90 => 32868, others => 0),
5569 =>
(0 => 934, 15 => 934, 34 => 934, 35 => 934,
39 => 934, 40 => 934, 41 => 934, 46 => 934,
56 => 934, 60 => 934, 67 => 934, 68 => 934,
70 => 934, 71 => 934, 72 => 934, 73 => 934,
86 => 934, 91 => 934, 94 => 934, 97 => 934,
99 => 934, 103 => 934, others => 0),
5570 =>
(46 => 32807, 85 => 38419, 90 => 32868, others => 0),
5571 =>
(0 => 928, 15 => 928, 34 => 928, 35 => 928,
39 => 928, 40 => 928, 41 => 928, 46 => 928,
56 => 928, 60 => 928, 67 => 928, 68 => 928,
70 => 928, 71 => 928, 72 => 928, 73 => 928,
86 => 928, 91 => 928, 94 => 928, 97 => 928,
99 => 928, 103 => 928, others => 0),
5572 =>
(34 => 38421, others => 0),
5573 =>
(0 => 923, 15 => 923, 34 => 923, 35 => 923,
39 => 923, 40 => 923, 41 => 923, 46 => 923,
56 => 923, 60 => 923, 67 => 923, 68 => 923,
70 => 923, 71 => 923, 72 => 923, 73 => 923,
86 => 923, 91 => 923, 94 => 923, 97 => 923,
99 => 923, 103 => 923, others => 0),
5574 =>
(85 => 38422, others => 0),
5575 =>
(0 => 1124, 15 => 1124, 34 => 1124, 35 => 1124,
39 => 1124, 40 => 1124, 41 => 1124, 46 => 1124,
56 => 1124, 60 => 1124, 67 => 1124, 68 => 1124,
70 => 1124, 71 => 1124, 72 => 1124, 73 => 1124,
86 => 1124, 91 => 1124, 94 => 1124, 97 => 1124,
99 => 1124, 103 => 1124, others => 0),
5576 =>
(0 => 1118, 15 => 1118, 34 => 1118, 35 => 1118,
39 => 1118, 40 => 1118, 41 => 1118, 46 => 1118,
56 => 1118, 60 => 1118, 67 => 1118, 68 => 1118,
70 => 1118, 71 => 1118, 72 => 1118, 73 => 1118,
86 => 1118, 91 => 1118, 94 => 1118, 97 => 1118,
99 => 1118, 103 => 1118, others => 0),
5577 =>
(0 => 1113, 15 => 1113, 34 => 1113, 35 => 1113,
39 => 1113, 40 => 1113, 41 => 1113, 46 => 1113,
56 => 1113, 60 => 1113, 67 => 1113, 68 => 1113,
70 => 1113, 71 => 1113, 72 => 1113, 73 => 1113,
86 => 1113, 91 => 1113, 94 => 1113, 97 => 1113,
99 => 1113, 103 => 1113, others => 0),
5578 =>
(85 => 38423, others => 0),
5579 =>
(0 => 956, 15 => 956, 34 => 956, 35 => 956,
39 => 956, 40 => 956, 41 => 956, 46 => 956,
56 => 956, 60 => 956, 67 => 956, 68 => 956,
70 => 956, 71 => 956, 72 => 956, 73 => 956,
86 => 956, 91 => 956, 94 => 956, 97 => 956,
99 => 956, 103 => 956, others => 0),
5580 =>
(0 => 950, 15 => 950, 34 => 950, 35 => 950,
39 => 950, 40 => 950, 41 => 950, 46 => 950,
56 => 950, 60 => 950, 67 => 950, 68 => 950,
70 => 950, 71 => 950, 72 => 950, 73 => 950,
86 => 950, 91 => 950, 94 => 950, 97 => 950,
99 => 950, 103 => 950, others => 0),
5581 =>
(0 => 945, 15 => 945, 34 => 945, 35 => 945,
39 => 945, 40 => 945, 41 => 945, 46 => 945,
56 => 945, 60 => 945, 67 => 945, 68 => 945,
70 => 945, 71 => 945, 72 => 945, 73 => 945,
86 => 945, 91 => 945, 94 => 945, 97 => 945,
99 => 945, 103 => 945, others => 0),
5582 =>
(85 => 38424, others => 0),
5583 =>
(5 => 33732, 19 => 32869, 46 => 32807, 90 => 32868,
others => 0),
5584 =>
(85 => 81, 103 => 81, others => 0),
5585 =>
(34 => 333, 35 => 333, 39 => 333, 40 => 333,
46 => 333, 60 => 333, 67 => 333, 70 => 333,
71 => 333, 72 => 333, others => 0),
5586 =>
(34 => 326, 35 => 326, 39 => 326, 40 => 326,
46 => 326, 60 => 326, 67 => 326, 70 => 326,
71 => 326, 72 => 326, others => 0),
5587 =>
(85 => 38426, others => 0),
5588 =>
(46 => 38428, 85 => 38427, others => 0),
5589 =>
(34 => 320, 35 => 320, 39 => 320, 40 => 320,
60 => 320, 67 => 320, 70 => 320, 72 => 320,
others => 0),
5590 =>
(34 => 38429, others => 0),
5591 =>
(34 => 317, 35 => 317, 39 => 317, 40 => 317,
60 => 317, 67 => 317, 70 => 317, 72 => 317,
others => 0),
5592 =>
(85 => 38430, others => 0),
5593 =>
(34 => 38432, 37 => 38431, others => 0),
5594 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5595 =>
(9 => 33243, 51 => 38434, 64 => 33242, 104 => 33241,
others => 0),
5596 =>
(34 => 38436, 37 => 38435, others => 0),
5597 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5598 =>
(46 => 38439, 85 => 38438, others => 0),
5599 =>
(1 => 11, 4 => 11, 15 => 11, 18 => 11,
19 => 11, 24 => 11, 25 => 11, 32 => 11,
33 => 11, 34 => 11, 37 => 11, 38 => 11,
39 => 11, 42 => 11, 46 => 11, 47 => 11,
52 => 11, 57 => 11, 61 => 11, 64 => 11,
70 => 11, 74 => 11, 79 => 11, 80 => 11,
84 => 11, 90 => 11, 96 => 11, 101 => 11,
102 => 11, others => 0),
5600 =>
(0 => 872, 15 => 872, 34 => 872, 35 => 872,
39 => 872, 40 => 872, 41 => 872, 46 => 872,
56 => 872, 60 => 872, 67 => 872, 68 => 872,
70 => 872, 71 => 872, 72 => 872, 73 => 872,
86 => 872, 91 => 872, 94 => 872, 97 => 872,
99 => 872, 103 => 872, others => 0),
5601 =>
(0 => 843, 15 => 843, 34 => 843, 35 => 843,
39 => 843, 40 => 843, 41 => 843, 46 => 843,
56 => 843, 60 => 843, 67 => 843, 68 => 843,
70 => 843, 71 => 843, 72 => 843, 73 => 843,
86 => 843, 91 => 843, 94 => 843, 97 => 843,
99 => 843, 103 => 843, others => 0),
5602 =>
(85 => 38440, others => 0),
5603 =>
(46 => 32807, 85 => 38441, 90 => 32868, others => 0),
5604 =>
(0 => 838, 15 => 838, 34 => 838, 35 => 838,
39 => 838, 40 => 838, 41 => 838, 46 => 838,
56 => 838, 60 => 838, 67 => 838, 68 => 838,
70 => 838, 71 => 838, 72 => 838, 73 => 838,
86 => 838, 91 => 838, 94 => 838, 97 => 838,
99 => 838, 103 => 838, others => 0),
5605 =>
(46 => 32807, 85 => 38443, 90 => 32868, others => 0),
5606 =>
(0 => 832, 15 => 832, 34 => 832, 35 => 832,
39 => 832, 40 => 832, 41 => 832, 46 => 832,
56 => 832, 60 => 832, 67 => 832, 68 => 832,
70 => 832, 71 => 832, 72 => 832, 73 => 832,
86 => 832, 91 => 832, 94 => 832, 97 => 832,
99 => 832, 103 => 832, others => 0),
5607 =>
(34 => 38445, others => 0),
5608 =>
(0 => 827, 15 => 827, 34 => 827, 35 => 827,
39 => 827, 40 => 827, 41 => 827, 46 => 827,
56 => 827, 60 => 827, 67 => 827, 68 => 827,
70 => 827, 71 => 827, 72 => 827, 73 => 827,
86 => 827, 91 => 827, 94 => 827, 97 => 827,
99 => 827, 103 => 827, others => 0),
5609 =>
(85 => 38446, others => 0),
5610 =>
(0 => 1076, 15 => 1076, 34 => 1076, 35 => 1076,
39 => 1076, 40 => 1076, 41 => 1076, 46 => 1076,
56 => 1076, 60 => 1076, 67 => 1076, 68 => 1076,
70 => 1076, 71 => 1076, 72 => 1076, 73 => 1076,
86 => 1076, 91 => 1076, 94 => 1076, 97 => 1076,
99 => 1076, 103 => 1076, others => 0),
5611 =>
(0 => 1070, 15 => 1070, 34 => 1070, 35 => 1070,
39 => 1070, 40 => 1070, 41 => 1070, 46 => 1070,
56 => 1070, 60 => 1070, 67 => 1070, 68 => 1070,
70 => 1070, 71 => 1070, 72 => 1070, 73 => 1070,
86 => 1070, 91 => 1070, 94 => 1070, 97 => 1070,
99 => 1070, 103 => 1070, others => 0),
5612 =>
(0 => 1065, 15 => 1065, 34 => 1065, 35 => 1065,
39 => 1065, 40 => 1065, 41 => 1065, 46 => 1065,
56 => 1065, 60 => 1065, 67 => 1065, 68 => 1065,
70 => 1065, 71 => 1065, 72 => 1065, 73 => 1065,
86 => 1065, 91 => 1065, 94 => 1065, 97 => 1065,
99 => 1065, 103 => 1065, others => 0),
5613 =>
(85 => 38447, others => 0),
5614 =>
(0 => 860, 15 => 860, 34 => 860, 35 => 860,
39 => 860, 40 => 860, 41 => 860, 46 => 860,
56 => 860, 60 => 860, 67 => 860, 68 => 860,
70 => 860, 71 => 860, 72 => 860, 73 => 860,
86 => 860, 91 => 860, 94 => 860, 97 => 860,
99 => 860, 103 => 860, others => 0),
5615 =>
(0 => 854, 15 => 854, 34 => 854, 35 => 854,
39 => 854, 40 => 854, 41 => 854, 46 => 854,
56 => 854, 60 => 854, 67 => 854, 68 => 854,
70 => 854, 71 => 854, 72 => 854, 73 => 854,
86 => 854, 91 => 854, 94 => 854, 97 => 854,
99 => 854, 103 => 854, others => 0),
5616 =>
(0 => 849, 15 => 849, 34 => 849, 35 => 849,
39 => 849, 40 => 849, 41 => 849, 46 => 849,
56 => 849, 60 => 849, 67 => 849, 68 => 849,
70 => 849, 71 => 849, 72 => 849, 73 => 849,
86 => 849, 91 => 849, 94 => 849, 97 => 849,
99 => 849, 103 => 849, others => 0),
5617 =>
(85 => 38448, others => 0),
5618 =>
(0 => 1767, 15 => 1767, 34 => 1767, 35 => 1767,
39 => 1767, 40 => 1767, 41 => 1767, 46 => 1767,
56 => 1767, 60 => 1767, 67 => 1767, 68 => 1767,
70 => 1767, 71 => 1767, 72 => 1767, 73 => 1767,
86 => 1767, 91 => 1767, 94 => 1767, 97 => 1767,
99 => 1767, 103 => 1767, others => 0),
5619 =>
(0 => 788, 15 => 788, 34 => 788, 35 => 788,
39 => 788, 40 => 788, 41 => 788, 46 => 788,
56 => 788, 60 => 788, 67 => 788, 68 => 788,
70 => 788, 71 => 788, 72 => 788, 73 => 788,
86 => 788, 91 => 788, 94 => 788, 97 => 788,
99 => 788, 103 => 788, others => 0),
5620 =>
(0 => 782, 15 => 782, 34 => 782, 35 => 782,
39 => 782, 40 => 782, 41 => 782, 46 => 782,
56 => 782, 60 => 782, 67 => 782, 68 => 782,
70 => 782, 71 => 782, 72 => 782, 73 => 782,
86 => 782, 91 => 782, 94 => 782, 97 => 782,
99 => 782, 103 => 782, others => 0),
5621 =>
(0 => 777, 15 => 777, 34 => 777, 35 => 777,
39 => 777, 40 => 777, 41 => 777, 46 => 777,
56 => 777, 60 => 777, 67 => 777, 68 => 777,
70 => 777, 71 => 777, 72 => 777, 73 => 777,
86 => 777, 91 => 777, 94 => 777, 97 => 777,
99 => 777, 103 => 777, others => 0),
5622 =>
(85 => 38449, others => 0),
5623 =>
(46 => 32807, 85 => 38450, 90 => 32868, others => 0),
5624 =>
(0 => 748, 15 => 748, 34 => 748, 35 => 748,
39 => 748, 40 => 748, 41 => 748, 46 => 748,
56 => 748, 60 => 748, 67 => 748, 68 => 748,
70 => 748, 71 => 748, 72 => 748, 73 => 748,
86 => 748, 91 => 748, 94 => 748, 97 => 748,
99 => 748, 103 => 748, others => 0),
5625 =>
(34 => 38452, others => 0),
5626 =>
(0 => 743, 15 => 743, 34 => 743, 35 => 743,
39 => 743, 40 => 743, 41 => 743, 46 => 743,
56 => 743, 60 => 743, 67 => 743, 68 => 743,
70 => 743, 71 => 743, 72 => 743, 73 => 743,
86 => 743, 91 => 743, 94 => 743, 97 => 743,
99 => 743, 103 => 743, others => 0),
5627 =>
(85 => 38453, others => 0),
5628 =>
(34 => 38454, others => 0),
5629 =>
(0 => 737, 15 => 737, 34 => 737, 35 => 737,
39 => 737, 40 => 737, 41 => 737, 46 => 737,
56 => 737, 60 => 737, 67 => 737, 68 => 737,
70 => 737, 71 => 737, 72 => 737, 73 => 737,
86 => 737, 91 => 737, 94 => 737, 97 => 737,
99 => 737, 103 => 737, others => 0),
5630 =>
(85 => 38455, others => 0),
5631 =>
(0 => 732, 15 => 732, 34 => 732, 35 => 732,
39 => 732, 40 => 732, 41 => 732, 46 => 732,
56 => 732, 60 => 732, 67 => 732, 68 => 732,
70 => 732, 71 => 732, 72 => 732, 73 => 732,
86 => 732, 91 => 732, 94 => 732, 97 => 732,
99 => 732, 103 => 732, others => 0),
5632 =>
(101 => 33976, others => 0),
5633 =>
(46 => 32807, 85 => 38457, 90 => 32868, others => 0),
5634 =>
(0 => 1034, 15 => 1034, 34 => 1034, 35 => 1034,
39 => 1034, 40 => 1034, 41 => 1034, 46 => 1034,
56 => 1034, 60 => 1034, 67 => 1034, 68 => 1034,
70 => 1034, 71 => 1034, 72 => 1034, 73 => 1034,
86 => 1034, 91 => 1034, 94 => 1034, 97 => 1034,
99 => 1034, 103 => 1034, others => 0),
5635 =>
(0 => 1029, 15 => 1029, 34 => 1029, 35 => 1029,
39 => 1029, 40 => 1029, 41 => 1029, 46 => 1029,
56 => 1029, 60 => 1029, 67 => 1029, 68 => 1029,
70 => 1029, 71 => 1029, 72 => 1029, 73 => 1029,
86 => 1029, 91 => 1029, 94 => 1029, 97 => 1029,
99 => 1029, 103 => 1029, others => 0),
5636 =>
(85 => 38459, others => 0),
5637 =>
(0 => 1023, 15 => 1023, 34 => 1023, 35 => 1023,
39 => 1023, 40 => 1023, 41 => 1023, 46 => 1023,
56 => 1023, 60 => 1023, 67 => 1023, 68 => 1023,
70 => 1023, 71 => 1023, 72 => 1023, 73 => 1023,
86 => 1023, 91 => 1023, 94 => 1023, 97 => 1023,
99 => 1023, 103 => 1023, others => 0),
5638 =>
(85 => 38460, others => 0),
5639 =>
(46 => 32807, 85 => 38461, 90 => 32868, others => 0),
5640 =>
(0 => 1018, 15 => 1018, 34 => 1018, 35 => 1018,
39 => 1018, 40 => 1018, 41 => 1018, 46 => 1018,
56 => 1018, 60 => 1018, 67 => 1018, 68 => 1018,
70 => 1018, 71 => 1018, 72 => 1018, 73 => 1018,
86 => 1018, 91 => 1018, 94 => 1018, 97 => 1018,
99 => 1018, 103 => 1018, others => 0),
5641 =>
(0 => 770, 15 => 770, 34 => 770, 35 => 770,
39 => 770, 40 => 770, 41 => 770, 46 => 770,
56 => 770, 60 => 770, 67 => 770, 68 => 770,
70 => 770, 71 => 770, 72 => 770, 73 => 770,
86 => 770, 91 => 770, 94 => 770, 97 => 770,
99 => 770, 103 => 770, others => 0),
5642 =>
(0 => 765, 15 => 765, 34 => 765, 35 => 765,
39 => 765, 40 => 765, 41 => 765, 46 => 765,
56 => 765, 60 => 765, 67 => 765, 68 => 765,
70 => 765, 71 => 765, 72 => 765, 73 => 765,
86 => 765, 91 => 765, 94 => 765, 97 => 765,
99 => 765, 103 => 765, others => 0),
5643 =>
(85 => 38463, others => 0),
5644 =>
(0 => 759, 15 => 759, 34 => 759, 35 => 759,
39 => 759, 40 => 759, 41 => 759, 46 => 759,
56 => 759, 60 => 759, 67 => 759, 68 => 759,
70 => 759, 71 => 759, 72 => 759, 73 => 759,
86 => 759, 91 => 759, 94 => 759, 97 => 759,
99 => 759, 103 => 759, others => 0),
5645 =>
(85 => 38464, others => 0),
5646 =>
(46 => 32807, 85 => 38465, 90 => 32868, others => 0),
5647 =>
(0 => 754, 15 => 754, 34 => 754, 35 => 754,
39 => 754, 40 => 754, 41 => 754, 46 => 754,
56 => 754, 60 => 754, 67 => 754, 68 => 754,
70 => 754, 71 => 754, 72 => 754, 73 => 754,
86 => 754, 91 => 754, 94 => 754, 97 => 754,
99 => 754, 103 => 754, others => 0),
5648 =>
(0 => 938, 15 => 938, 34 => 938, 35 => 938,
39 => 938, 40 => 938, 41 => 938, 46 => 938,
56 => 938, 60 => 938, 67 => 938, 68 => 938,
70 => 938, 71 => 938, 72 => 938, 73 => 938,
86 => 938, 91 => 938, 94 => 938, 97 => 938,
99 => 938, 103 => 938, others => 0),
5649 =>
(0 => 933, 15 => 933, 34 => 933, 35 => 933,
39 => 933, 40 => 933, 41 => 933, 46 => 933,
56 => 933, 60 => 933, 67 => 933, 68 => 933,
70 => 933, 71 => 933, 72 => 933, 73 => 933,
86 => 933, 91 => 933, 94 => 933, 97 => 933,
99 => 933, 103 => 933, others => 0),
5650 =>
(85 => 38467, others => 0),
5651 =>
(0 => 927, 15 => 927, 34 => 927, 35 => 927,
39 => 927, 40 => 927, 41 => 927, 46 => 927,
56 => 927, 60 => 927, 67 => 927, 68 => 927,
70 => 927, 71 => 927, 72 => 927, 73 => 927,
86 => 927, 91 => 927, 94 => 927, 97 => 927,
99 => 927, 103 => 927, others => 0),
5652 =>
(85 => 38468, others => 0),
5653 =>
(46 => 32807, 85 => 38469, 90 => 32868, others => 0),
5654 =>
(0 => 922, 15 => 922, 34 => 922, 35 => 922,
39 => 922, 40 => 922, 41 => 922, 46 => 922,
56 => 922, 60 => 922, 67 => 922, 68 => 922,
70 => 922, 71 => 922, 72 => 922, 73 => 922,
86 => 922, 91 => 922, 94 => 922, 97 => 922,
99 => 922, 103 => 922, others => 0),
5655 =>
(0 => 1112, 15 => 1112, 34 => 1112, 35 => 1112,
39 => 1112, 40 => 1112, 41 => 1112, 46 => 1112,
56 => 1112, 60 => 1112, 67 => 1112, 68 => 1112,
70 => 1112, 71 => 1112, 72 => 1112, 73 => 1112,
86 => 1112, 91 => 1112, 94 => 1112, 97 => 1112,
99 => 1112, 103 => 1112, others => 0),
5656 =>
(0 => 944, 15 => 944, 34 => 944, 35 => 944,
39 => 944, 40 => 944, 41 => 944, 46 => 944,
56 => 944, 60 => 944, 67 => 944, 68 => 944,
70 => 944, 71 => 944, 72 => 944, 73 => 944,
86 => 944, 91 => 944, 94 => 944, 97 => 944,
99 => 944, 103 => 944, others => 0),
5657 =>
(85 => 77, 103 => 77, others => 0),
5658 =>
(34 => 325, 35 => 325, 39 => 325, 40 => 325,
46 => 325, 60 => 325, 67 => 325, 70 => 325,
71 => 325, 72 => 325, others => 0),
5659 =>
(34 => 319, 35 => 319, 39 => 319, 40 => 319,
60 => 319, 67 => 319, 70 => 319, 72 => 319,
others => 0),
5660 =>
(85 => 38471, others => 0),
5661 =>
(46 => 38473, 85 => 38472, others => 0),
5662 =>
(34 => 316, 35 => 316, 39 => 316, 40 => 316,
60 => 316, 67 => 316, 70 => 316, 72 => 316,
others => 0),
5663 =>
(101 => 33976, others => 0),
5664 =>
(46 => 38476, 85 => 38475, others => 0),
5665 =>
(34 => 38478, 37 => 38477, others => 0),
5666 =>
(15 => 38479, 39 => 32961, 40 => 32781, 41 => 32780,
46 => 32838, 60 => 32778, 67 => 32777, 68 => 32958,
70 => 32775, 72 => 32773, 73 => 32957, 91 => 32955,
94 => 32954, 97 => 32953, 99 => 32771, others => 0),
5667 =>
(101 => 33976, others => 0),
5668 =>
(46 => 38483, 85 => 38482, others => 0),
5669 =>
(34 => 38485, 37 => 38484, others => 0),
5670 =>
(1 => 10, 4 => 10, 15 => 10, 18 => 10,
19 => 10, 24 => 10, 25 => 10, 32 => 10,
33 => 10, 34 => 10, 37 => 10, 38 => 10,
39 => 10, 42 => 10, 46 => 10, 47 => 10,
52 => 10, 57 => 10, 61 => 10, 64 => 10,
70 => 10, 74 => 10, 79 => 10, 80 => 10,
84 => 10, 90 => 10, 96 => 10, 101 => 10,
102 => 10, others => 0),
5671 =>
(85 => 38486, others => 0),
5672 =>
(0 => 842, 15 => 842, 34 => 842, 35 => 842,
39 => 842, 40 => 842, 41 => 842, 46 => 842,
56 => 842, 60 => 842, 67 => 842, 68 => 842,
70 => 842, 71 => 842, 72 => 842, 73 => 842,
86 => 842, 91 => 842, 94 => 842, 97 => 842,
99 => 842, 103 => 842, others => 0),
5673 =>
(0 => 837, 15 => 837, 34 => 837, 35 => 837,
39 => 837, 40 => 837, 41 => 837, 46 => 837,
56 => 837, 60 => 837, 67 => 837, 68 => 837,
70 => 837, 71 => 837, 72 => 837, 73 => 837,
86 => 837, 91 => 837, 94 => 837, 97 => 837,
99 => 837, 103 => 837, others => 0),
5674 =>
(85 => 38487, others => 0),
5675 =>
(0 => 831, 15 => 831, 34 => 831, 35 => 831,
39 => 831, 40 => 831, 41 => 831, 46 => 831,
56 => 831, 60 => 831, 67 => 831, 68 => 831,
70 => 831, 71 => 831, 72 => 831, 73 => 831,
86 => 831, 91 => 831, 94 => 831, 97 => 831,
99 => 831, 103 => 831, others => 0),
5676 =>
(85 => 38488, others => 0),
5677 =>
(46 => 32807, 85 => 38489, 90 => 32868, others => 0),
5678 =>
(0 => 826, 15 => 826, 34 => 826, 35 => 826,
39 => 826, 40 => 826, 41 => 826, 46 => 826,
56 => 826, 60 => 826, 67 => 826, 68 => 826,
70 => 826, 71 => 826, 72 => 826, 73 => 826,
86 => 826, 91 => 826, 94 => 826, 97 => 826,
99 => 826, 103 => 826, others => 0),
5679 =>
(0 => 1064, 15 => 1064, 34 => 1064, 35 => 1064,
39 => 1064, 40 => 1064, 41 => 1064, 46 => 1064,
56 => 1064, 60 => 1064, 67 => 1064, 68 => 1064,
70 => 1064, 71 => 1064, 72 => 1064, 73 => 1064,
86 => 1064, 91 => 1064, 94 => 1064, 97 => 1064,
99 => 1064, 103 => 1064, others => 0),
5680 =>
(0 => 848, 15 => 848, 34 => 848, 35 => 848,
39 => 848, 40 => 848, 41 => 848, 46 => 848,
56 => 848, 60 => 848, 67 => 848, 68 => 848,
70 => 848, 71 => 848, 72 => 848, 73 => 848,
86 => 848, 91 => 848, 94 => 848, 97 => 848,
99 => 848, 103 => 848, others => 0),
5681 =>
(0 => 776, 15 => 776, 34 => 776, 35 => 776,
39 => 776, 40 => 776, 41 => 776, 46 => 776,
56 => 776, 60 => 776, 67 => 776, 68 => 776,
70 => 776, 71 => 776, 72 => 776, 73 => 776,
86 => 776, 91 => 776, 94 => 776, 97 => 776,
99 => 776, 103 => 776, others => 0),
5682 =>
(0 => 747, 15 => 747, 34 => 747, 35 => 747,
39 => 747, 40 => 747, 41 => 747, 46 => 747,
56 => 747, 60 => 747, 67 => 747, 68 => 747,
70 => 747, 71 => 747, 72 => 747, 73 => 747,
86 => 747, 91 => 747, 94 => 747, 97 => 747,
99 => 747, 103 => 747, others => 0),
5683 =>
(85 => 38491, others => 0),
5684 =>
(46 => 32807, 85 => 38492, 90 => 32868, others => 0),
5685 =>
(0 => 742, 15 => 742, 34 => 742, 35 => 742,
39 => 742, 40 => 742, 41 => 742, 46 => 742,
56 => 742, 60 => 742, 67 => 742, 68 => 742,
70 => 742, 71 => 742, 72 => 742, 73 => 742,
86 => 742, 91 => 742, 94 => 742, 97 => 742,
99 => 742, 103 => 742, others => 0),
5686 =>
(46 => 32807, 85 => 38494, 90 => 32868, others => 0),
5687 =>
(0 => 736, 15 => 736, 34 => 736, 35 => 736,
39 => 736, 40 => 736, 41 => 736, 46 => 736,
56 => 736, 60 => 736, 67 => 736, 68 => 736,
70 => 736, 71 => 736, 72 => 736, 73 => 736,
86 => 736, 91 => 736, 94 => 736, 97 => 736,
99 => 736, 103 => 736, others => 0),
5688 =>
(34 => 38496, others => 0),
5689 =>
(0 => 731, 15 => 731, 34 => 731, 35 => 731,
39 => 731, 40 => 731, 41 => 731, 46 => 731,
56 => 731, 60 => 731, 67 => 731, 68 => 731,
70 => 731, 71 => 731, 72 => 731, 73 => 731,
86 => 731, 91 => 731, 94 => 731, 97 => 731,
99 => 731, 103 => 731, others => 0),
5690 =>
(85 => 38497, others => 0),
5691 =>
(0 => 1028, 15 => 1028, 34 => 1028, 35 => 1028,
39 => 1028, 40 => 1028, 41 => 1028, 46 => 1028,
56 => 1028, 60 => 1028, 67 => 1028, 68 => 1028,
70 => 1028, 71 => 1028, 72 => 1028, 73 => 1028,
86 => 1028, 91 => 1028, 94 => 1028, 97 => 1028,
99 => 1028, 103 => 1028, others => 0),
5692 =>
(0 => 1022, 15 => 1022, 34 => 1022, 35 => 1022,
39 => 1022, 40 => 1022, 41 => 1022, 46 => 1022,
56 => 1022, 60 => 1022, 67 => 1022, 68 => 1022,
70 => 1022, 71 => 1022, 72 => 1022, 73 => 1022,
86 => 1022, 91 => 1022, 94 => 1022, 97 => 1022,
99 => 1022, 103 => 1022, others => 0),
5693 =>
(0 => 1017, 15 => 1017, 34 => 1017, 35 => 1017,
39 => 1017, 40 => 1017, 41 => 1017, 46 => 1017,
56 => 1017, 60 => 1017, 67 => 1017, 68 => 1017,
70 => 1017, 71 => 1017, 72 => 1017, 73 => 1017,
86 => 1017, 91 => 1017, 94 => 1017, 97 => 1017,
99 => 1017, 103 => 1017, others => 0),
5694 =>
(85 => 38498, others => 0),
5695 =>
(0 => 764, 15 => 764, 34 => 764, 35 => 764,
39 => 764, 40 => 764, 41 => 764, 46 => 764,
56 => 764, 60 => 764, 67 => 764, 68 => 764,
70 => 764, 71 => 764, 72 => 764, 73 => 764,
86 => 764, 91 => 764, 94 => 764, 97 => 764,
99 => 764, 103 => 764, others => 0),
5696 =>
(0 => 758, 15 => 758, 34 => 758, 35 => 758,
39 => 758, 40 => 758, 41 => 758, 46 => 758,
56 => 758, 60 => 758, 67 => 758, 68 => 758,
70 => 758, 71 => 758, 72 => 758, 73 => 758,
86 => 758, 91 => 758, 94 => 758, 97 => 758,
99 => 758, 103 => 758, others => 0),
5697 =>
(0 => 753, 15 => 753, 34 => 753, 35 => 753,
39 => 753, 40 => 753, 41 => 753, 46 => 753,
56 => 753, 60 => 753, 67 => 753, 68 => 753,
70 => 753, 71 => 753, 72 => 753, 73 => 753,
86 => 753, 91 => 753, 94 => 753, 97 => 753,
99 => 753, 103 => 753, others => 0),
5698 =>
(85 => 38499, others => 0),
5699 =>
(0 => 932, 15 => 932, 34 => 932, 35 => 932,
39 => 932, 40 => 932, 41 => 932, 46 => 932,
56 => 932, 60 => 932, 67 => 932, 68 => 932,
70 => 932, 71 => 932, 72 => 932, 73 => 932,
86 => 932, 91 => 932, 94 => 932, 97 => 932,
99 => 932, 103 => 932, others => 0),
5700 =>
(0 => 926, 15 => 926, 34 => 926, 35 => 926,
39 => 926, 40 => 926, 41 => 926, 46 => 926,
56 => 926, 60 => 926, 67 => 926, 68 => 926,
70 => 926, 71 => 926, 72 => 926, 73 => 926,
86 => 926, 91 => 926, 94 => 926, 97 => 926,
99 => 926, 103 => 926, others => 0),
5701 =>
(0 => 921, 15 => 921, 34 => 921, 35 => 921,
39 => 921, 40 => 921, 41 => 921, 46 => 921,
56 => 921, 60 => 921, 67 => 921, 68 => 921,
70 => 921, 71 => 921, 72 => 921, 73 => 921,
86 => 921, 91 => 921, 94 => 921, 97 => 921,
99 => 921, 103 => 921, others => 0),
5702 =>
(85 => 38500, others => 0),
5703 =>
(34 => 318, 35 => 318, 39 => 318, 40 => 318,
60 => 318, 67 => 318, 70 => 318, 72 => 318,
others => 0),
5704 =>
(34 => 315, 35 => 315, 39 => 315, 40 => 315,
60 => 315, 67 => 315, 70 => 315, 72 => 315,
others => 0),
5705 =>
(85 => 38501, others => 0),
5706 =>
(34 => 38502, others => 0),
5707 =>
(34 => 305, 35 => 305, 39 => 305, 40 => 305,
60 => 305, 67 => 305, 70 => 305, 72 => 305,
others => 0),
5708 =>
(85 => 38503, others => 0),
5709 =>
(101 => 33976, others => 0),
5710 =>
(46 => 38506, 85 => 38505, others => 0),
5711 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5712 =>
(15 => 38508, others => 0),
5713 =>
(34 => 38509, others => 0),
5714 =>
(34 => 313, 35 => 313, 39 => 313, 40 => 313,
60 => 313, 67 => 313, 70 => 313, 72 => 313,
others => 0),
5715 =>
(85 => 38510, others => 0),
5716 =>
(101 => 33976, others => 0),
5717 =>
(46 => 38513, 85 => 38512, others => 0),
5718 =>
(1 => 9, 4 => 9, 15 => 9, 18 => 9,
19 => 9, 24 => 9, 25 => 9, 32 => 9,
33 => 9, 34 => 9, 37 => 9, 38 => 9,
39 => 9, 42 => 9, 46 => 9, 47 => 9,
52 => 9, 57 => 9, 61 => 9, 64 => 9,
70 => 9, 74 => 9, 79 => 9, 80 => 9,
84 => 9, 90 => 9, 96 => 9, 101 => 9,
102 => 9, others => 0),
5719 =>
(0 => 836, 15 => 836, 34 => 836, 35 => 836,
39 => 836, 40 => 836, 41 => 836, 46 => 836,
56 => 836, 60 => 836, 67 => 836, 68 => 836,
70 => 836, 71 => 836, 72 => 836, 73 => 836,
86 => 836, 91 => 836, 94 => 836, 97 => 836,
99 => 836, 103 => 836, others => 0),
5720 =>
(0 => 830, 15 => 830, 34 => 830, 35 => 830,
39 => 830, 40 => 830, 41 => 830, 46 => 830,
56 => 830, 60 => 830, 67 => 830, 68 => 830,
70 => 830, 71 => 830, 72 => 830, 73 => 830,
86 => 830, 91 => 830, 94 => 830, 97 => 830,
99 => 830, 103 => 830, others => 0),
5721 =>
(0 => 825, 15 => 825, 34 => 825, 35 => 825,
39 => 825, 40 => 825, 41 => 825, 46 => 825,
56 => 825, 60 => 825, 67 => 825, 68 => 825,
70 => 825, 71 => 825, 72 => 825, 73 => 825,
86 => 825, 91 => 825, 94 => 825, 97 => 825,
99 => 825, 103 => 825, others => 0),
5722 =>
(85 => 38514, others => 0),
5723 =>
(0 => 746, 15 => 746, 34 => 746, 35 => 746,
39 => 746, 40 => 746, 41 => 746, 46 => 746,
56 => 746, 60 => 746, 67 => 746, 68 => 746,
70 => 746, 71 => 746, 72 => 746, 73 => 746,
86 => 746, 91 => 746, 94 => 746, 97 => 746,
99 => 746, 103 => 746, others => 0),
5724 =>
(0 => 741, 15 => 741, 34 => 741, 35 => 741,
39 => 741, 40 => 741, 41 => 741, 46 => 741,
56 => 741, 60 => 741, 67 => 741, 68 => 741,
70 => 741, 71 => 741, 72 => 741, 73 => 741,
86 => 741, 91 => 741, 94 => 741, 97 => 741,
99 => 741, 103 => 741, others => 0),
5725 =>
(85 => 38515, others => 0),
5726 =>
(0 => 735, 15 => 735, 34 => 735, 35 => 735,
39 => 735, 40 => 735, 41 => 735, 46 => 735,
56 => 735, 60 => 735, 67 => 735, 68 => 735,
70 => 735, 71 => 735, 72 => 735, 73 => 735,
86 => 735, 91 => 735, 94 => 735, 97 => 735,
99 => 735, 103 => 735, others => 0),
5727 =>
(85 => 38516, others => 0),
5728 =>
(46 => 32807, 85 => 38517, 90 => 32868, others => 0),
5729 =>
(0 => 730, 15 => 730, 34 => 730, 35 => 730,
39 => 730, 40 => 730, 41 => 730, 46 => 730,
56 => 730, 60 => 730, 67 => 730, 68 => 730,
70 => 730, 71 => 730, 72 => 730, 73 => 730,
86 => 730, 91 => 730, 94 => 730, 97 => 730,
99 => 730, 103 => 730, others => 0),
5730 =>
(0 => 1016, 15 => 1016, 34 => 1016, 35 => 1016,
39 => 1016, 40 => 1016, 41 => 1016, 46 => 1016,
56 => 1016, 60 => 1016, 67 => 1016, 68 => 1016,
70 => 1016, 71 => 1016, 72 => 1016, 73 => 1016,
86 => 1016, 91 => 1016, 94 => 1016, 97 => 1016,
99 => 1016, 103 => 1016, others => 0),
5731 =>
(0 => 752, 15 => 752, 34 => 752, 35 => 752,
39 => 752, 40 => 752, 41 => 752, 46 => 752,
56 => 752, 60 => 752, 67 => 752, 68 => 752,
70 => 752, 71 => 752, 72 => 752, 73 => 752,
86 => 752, 91 => 752, 94 => 752, 97 => 752,
99 => 752, 103 => 752, others => 0),
5732 =>
(0 => 920, 15 => 920, 34 => 920, 35 => 920,
39 => 920, 40 => 920, 41 => 920, 46 => 920,
56 => 920, 60 => 920, 67 => 920, 68 => 920,
70 => 920, 71 => 920, 72 => 920, 73 => 920,
86 => 920, 91 => 920, 94 => 920, 97 => 920,
99 => 920, 103 => 920, others => 0),
5733 =>
(34 => 314, 35 => 314, 39 => 314, 40 => 314,
60 => 314, 67 => 314, 70 => 314, 72 => 314,
others => 0),
5734 =>
(46 => 38520, 85 => 38519, others => 0),
5735 =>
(34 => 304, 35 => 304, 39 => 304, 40 => 304,
60 => 304, 67 => 304, 70 => 304, 72 => 304,
others => 0),
5736 =>
(34 => 38521, others => 0),
5737 =>
(34 => 301, 35 => 301, 39 => 301, 40 => 301,
60 => 301, 67 => 301, 70 => 301, 72 => 301,
others => 0),
5738 =>
(85 => 38522, others => 0),
5739 =>
(34 => 38524, 37 => 38523, others => 0),
5740 =>
(1 => 33177, 4 => 33176, 15 => 33175, 18 => 33174,
19 => 32869, 24 => 33173, 25 => 33172, 38 => 33171,
39 => 33170, 42 => 33169, 46 => 33168, 47 => 33167,
52 => 33166, 57 => 33165, 61 => 33164, 70 => 32775,
74 => 33163, 79 => 33162, 80 => 33161, 84 => 33160,
90 => 32868, 102 => 33159, others => 0),
5741 =>
(46 => 38527, 85 => 38526, others => 0),
5742 =>
(34 => 312, 35 => 312, 39 => 312, 40 => 312,
60 => 312, 67 => 312, 70 => 312, 72 => 312,
others => 0),
5743 =>
(34 => 38528, others => 0),
5744 =>
(34 => 309, 35 => 309, 39 => 309, 40 => 309,
60 => 309, 67 => 309, 70 => 309, 72 => 309,
others => 0),
5745 =>
(85 => 38529, others => 0),
5746 =>
(0 => 824, 15 => 824, 34 => 824, 35 => 824,
39 => 824, 40 => 824, 41 => 824, 46 => 824,
56 => 824, 60 => 824, 67 => 824, 68 => 824,
70 => 824, 71 => 824, 72 => 824, 73 => 824,
86 => 824, 91 => 824, 94 => 824, 97 => 824,
99 => 824, 103 => 824, others => 0),
5747 =>
(0 => 740, 15 => 740, 34 => 740, 35 => 740,
39 => 740, 40 => 740, 41 => 740, 46 => 740,
56 => 740, 60 => 740, 67 => 740, 68 => 740,
70 => 740, 71 => 740, 72 => 740, 73 => 740,
86 => 740, 91 => 740, 94 => 740, 97 => 740,
99 => 740, 103 => 740, others => 0),
5748 =>
(0 => 734, 15 => 734, 34 => 734, 35 => 734,
39 => 734, 40 => 734, 41 => 734, 46 => 734,
56 => 734, 60 => 734, 67 => 734, 68 => 734,
70 => 734, 71 => 734, 72 => 734, 73 => 734,
86 => 734, 91 => 734, 94 => 734, 97 => 734,
99 => 734, 103 => 734, others => 0),
5749 =>
(0 => 729, 15 => 729, 34 => 729, 35 => 729,
39 => 729, 40 => 729, 41 => 729, 46 => 729,
56 => 729, 60 => 729, 67 => 729, 68 => 729,
70 => 729, 71 => 729, 72 => 729, 73 => 729,
86 => 729, 91 => 729, 94 => 729, 97 => 729,
99 => 729, 103 => 729, others => 0),
5750 =>
(85 => 38530, others => 0),
5751 =>
(34 => 303, 35 => 303, 39 => 303, 40 => 303,
60 => 303, 67 => 303, 70 => 303, 72 => 303,
others => 0),
5752 =>
(85 => 38531, others => 0),
5753 =>
(46 => 38533, 85 => 38532, others => 0),
5754 =>
(34 => 300, 35 => 300, 39 => 300, 40 => 300,
60 => 300, 67 => 300, 70 => 300, 72 => 300,
others => 0),
5755 =>
(101 => 33976, others => 0),
5756 =>
(46 => 38536, 85 => 38535, others => 0),
5757 =>
(34 => 38538, 37 => 38537, others => 0),
5758 =>
(34 => 311, 35 => 311, 39 => 311, 40 => 311,
60 => 311, 67 => 311, 70 => 311, 72 => 311,
others => 0),
5759 =>
(85 => 38539, others => 0),
5760 =>
(46 => 38541, 85 => 38540, others => 0),
5761 =>
(34 => 308, 35 => 308, 39 => 308, 40 => 308,
60 => 308, 67 => 308, 70 => 308, 72 => 308,
others => 0),
5762 =>
(0 => 728, 15 => 728, 34 => 728, 35 => 728,
39 => 728, 40 => 728, 41 => 728, 46 => 728,
56 => 728, 60 => 728, 67 => 728, 68 => 728,
70 => 728, 71 => 728, 72 => 728, 73 => 728,
86 => 728, 91 => 728, 94 => 728, 97 => 728,
99 => 728, 103 => 728, others => 0),
5763 =>
(34 => 302, 35 => 302, 39 => 302, 40 => 302,
60 => 302, 67 => 302, 70 => 302, 72 => 302,
others => 0),
5764 =>
(34 => 299, 35 => 299, 39 => 299, 40 => 299,
60 => 299, 67 => 299, 70 => 299, 72 => 299,
others => 0),
5765 =>
(85 => 38542, others => 0),
5766 =>
(34 => 38543, others => 0),
5767 =>
(34 => 297, 35 => 297, 39 => 297, 40 => 297,
60 => 297, 67 => 297, 70 => 297, 72 => 297,
others => 0),
5768 =>
(85 => 38544, others => 0),
5769 =>
(101 => 33976, others => 0),
5770 =>
(46 => 38547, 85 => 38546, others => 0),
5771 =>
(34 => 310, 35 => 310, 39 => 310, 40 => 310,
60 => 310, 67 => 310, 70 => 310, 72 => 310,
others => 0),
5772 =>
(34 => 307, 35 => 307, 39 => 307, 40 => 307,
60 => 307, 67 => 307, 70 => 307, 72 => 307,
others => 0),
5773 =>
(85 => 38548, others => 0),
5774 =>
(34 => 298, 35 => 298, 39 => 298, 40 => 298,
60 => 298, 67 => 298, 70 => 298, 72 => 298,
others => 0),
5775 =>
(46 => 38550, 85 => 38549, others => 0),
5776 =>
(34 => 296, 35 => 296, 39 => 296, 40 => 296,
60 => 296, 67 => 296, 70 => 296, 72 => 296,
others => 0),
5777 =>
(34 => 38551, others => 0),
5778 =>
(34 => 293, 35 => 293, 39 => 293, 40 => 293,
60 => 293, 67 => 293, 70 => 293, 72 => 293,
others => 0),
5779 =>
(85 => 38552, others => 0),
5780 =>
(34 => 306, 35 => 306, 39 => 306, 40 => 306,
60 => 306, 67 => 306, 70 => 306, 72 => 306,
others => 0),
5781 =>
(34 => 295, 35 => 295, 39 => 295, 40 => 295,
60 => 295, 67 => 295, 70 => 295, 72 => 295,
others => 0),
5782 =>
(85 => 38553, others => 0),
5783 =>
(46 => 38555, 85 => 38554, others => 0),
5784 =>
(34 => 292, 35 => 292, 39 => 292, 40 => 292,
60 => 292, 67 => 292, 70 => 292, 72 => 292,
others => 0),
5785 =>
(34 => 294, 35 => 294, 39 => 294, 40 => 294,
60 => 294, 67 => 294, 70 => 294, 72 => 294,
others => 0),
5786 =>
(34 => 291, 35 => 291, 39 => 291, 40 => 291,
60 => 291, 67 => 291, 70 => 291, 72 => 291,
others => 0),
5787 =>
(85 => 38556, others => 0),
5788 =>
(34 => 290, 35 => 290, 39 => 290, 40 => 290,
60 => 290, 67 => 290, 70 => 290, 72 => 290,
others => 0));
type Production_Record is record
NT : Anagram.Grammars.Non_Terminal_Index;
Parts : Natural;
end record;
Prods : constant array (Action_Code range 1 .. 2239) of
Production_Record :=
((1, 3), (1, 2), (1, 2), (1, 1), (2, 4), (2, 3),
(3, 2), (3, 1), (4, 15), (4, 14), (4, 13), (4, 12),
(4, 9), (4, 12), (4, 11), (4, 10), (4, 9), (4, 6),
(4, 12), (4, 11), (4, 10), (4, 9), (4, 6), (4, 9),
(4, 8), (4, 7), (4, 6), (4, 3), (5, 5), (5, 4),
(5, 3), (5, 2), (5, 8), (5, 5), (5, 7), (5, 4),
(5, 6), (5, 3), (5, 5), (5, 2), (5, 12), (5, 10),
(5, 9), (5, 7), (5, 11), (5, 9), (5, 8), (5, 6),
(5, 10), (5, 8), (5, 7), (5, 5), (5, 9), (5, 7),
(5, 6), (5, 4), (5, 10), (5, 7), (5, 9), (5, 6),
(5, 8), (5, 5), (5, 7), (5, 4), (6, 5), (6, 4),
(6, 3), (6, 2), (6, 8), (6, 5), (6, 7), (6, 4),
(6, 6), (6, 3), (6, 5), (6, 2), (6, 12), (6, 10),
(6, 9), (6, 7), (6, 11), (6, 9), (6, 8), (6, 6),
(6, 10), (6, 8), (6, 7), (6, 5), (6, 9), (6, 7),
(6, 6), (6, 4), (6, 10), (6, 7), (6, 9), (6, 6),
(6, 8), (6, 5), (6, 7), (6, 4), (7, 1), (7, 1),
(8, 5), (8, 2), (9, 3), (9, 2), (10, 1), (10, 1),
(10, 1), (10, 1), (11, 5), (11, 3), (11, 4), (11, 2),
(12, 5), (12, 4), (12, 3), (12, 2), (13, 4), (14, 3),
(15, 8), (16, 6), (17, 5), (18, 3), (19, 1), (19, 1),
(19, 1), (19, 1), (19, 1), (19, 1), (19, 1), (19, 1),
(19, 1), (19, 1), (19, 1), (19, 1), (19, 1), (19, 1),
(19, 1), (19, 1), (19, 1), (19, 1), (19, 1), (19, 1),
(19, 1), (20, 1), (20, 1), (20, 1), (21, 2), (21, 1),
(22, 11), (22, 10), (22, 9), (22, 8), (22, 10), (22, 9),
(22, 8), (22, 7), (22, 9), (22, 8), (22, 7), (22, 6),
(22, 9), (22, 8), (22, 7), (22, 6), (22, 8), (22, 7),
(22, 6), (22, 5), (22, 7), (22, 6), (22, 5), (22, 4),
(23, 1), (23, 1), (24, 1), (24, 1), (24, 1), (25, 3),
(25, 2), (26, 5), (26, 4), (27, 4), (28, 8), (28, 7),
(29, 4), (30, 2), (30, 1), (31, 3), (31, 2), (32, 1),
(33, 1), (33, 1), (34, 2), (34, 1), (35, 3), (35, 2),
(36, 6), (36, 1), (37, 2), (37, 1), (38, 7), (38, 6),
(38, 5), (38, 4), (39, 2), (39, 1), (39, 2), (39, 1),
(40, 1), (40, 1), (41, 2), (41, 1), (42, 3), (42, 2),
(42, 2), (42, 1), (42, 1), (42, 2), (43, 1), (43, 1),
(44, 7), (44, 6), (45, 1), (45, 1), (45, 1), (46, 2),
(46, 1), (47, 5), (47, 4), (48, 1), (48, 1), (49, 2),
(49, 1), (50, 2), (50, 1), (51, 1), (52, 1), (52, 1),
(53, 1), (54, 3), (54, 2), (55, 1), (56, 2), (56, 1),
(57, 1), (57, 1), (58, 2), (58, 1), (59, 4), (59, 3),
(60, 3), (60, 2), (61, 1), (61, 1), (62, 3), (62, 2),
(63, 1), (63, 1), (64, 1), (64, 1), (64, 1), (65, 2),
(65, 1), (66, 2), (66, 1), (66, 3), (67, 3), (68, 2),
(68, 1), (68, 1), (68, 1), (69, 3), (69, 2), (70, 1),
(70, 1), (71, 3), (71, 2), (72, 7), (72, 5), (72, 5),
(72, 3), (72, 5), (72, 3), (73, 5), (73, 4), (74, 5),
(74, 4), (75, 19), (75, 18), (75, 17), (75, 16), (75, 18),
(75, 17), (75, 16), (75, 15), (75, 16), (75, 15), (75, 14),
(75, 13), (75, 15), (75, 14), (75, 13), (75, 12), (75, 16),
(75, 15), (75, 14), (75, 13), (75, 15), (75, 14), (75, 13),
(75, 12), (75, 13), (75, 12), (75, 11), (75, 10), (75, 12),
(75, 11), (75, 10), (75, 9), (76, 2), (76, 1), (77, 2),
(78, 12), (78, 11), (78, 9), (78, 8), (78, 9), (78, 8),
(78, 6), (78, 5), (78, 11), (78, 10), (78, 8), (78, 7),
(78, 8), (78, 7), (78, 5), (78, 4), (78, 10), (78, 9),
(78, 7), (78, 6), (78, 7), (78, 6), (78, 4), (78, 3),
(79, 4), (80, 3), (80, 2), (81, 1), (81, 1), (82, 4),
(82, 3), (83, 1), (83, 1), (84, 3), (84, 2), (85, 5),
(85, 4), (86, 7), (86, 6), (86, 5), (86, 4), (87, 2),
(87, 1), (88, 7), (88, 6), (89, 5), (89, 3), (89, 4),
(89, 2), (90, 3), (91, 1), (91, 3), (91, 4), (91, 3),
(91, 4), (91, 3), (92, 7), (92, 5), (92, 6), (92, 4),
(92, 6), (92, 4), (92, 5), (92, 3), (93, 9), (93, 7),
(93, 3), (94, 5), (95, 3), (95, 2), (96, 5), (96, 4),
(96, 3), (96, 2), (96, 8), (96, 5), (96, 7), (96, 4),
(96, 6), (96, 3), (96, 5), (96, 2), (96, 12), (96, 10),
(96, 9), (96, 7), (96, 11), (96, 9), (96, 8), (96, 6),
(96, 10), (96, 8), (96, 7), (96, 5), (96, 9), (96, 7),
(96, 6), (96, 4), (96, 10), (96, 7), (96, 9), (96, 6),
(96, 8), (96, 5), (96, 7), (96, 4), (97, 7), (97, 6),
(97, 6), (97, 5), (97, 6), (97, 5), (98, 7), (98, 6),
(99, 4), (100, 9), (100, 8), (100, 7), (100, 6), (100, 5),
(100, 4), (100, 9), (100, 8), (100, 7), (100, 6), (100, 5),
(100, 4), (100, 8), (100, 7), (100, 6), (100, 5), (100, 4),
(100, 3), (100, 8), (100, 7), (100, 6), (100, 5), (100, 4),
(100, 3), (100, 8), (100, 7), (100, 6), (100, 5), (100, 4),
(100, 3), (100, 7), (100, 6), (100, 5), (100, 4), (100, 3),
(100, 2), (101, 3), (102, 2), (103, 15), (103, 14), (103, 15),
(103, 14), (103, 14), (103, 13), (103, 14), (103, 13), (103, 14),
(103, 13), (103, 12), (103, 11), (103, 13), (103, 12), (103, 13),
(103, 12), (103, 12), (103, 11), (103, 12), (103, 11), (103, 12),
(103, 11), (103, 10), (103, 9), (103, 12), (103, 11), (103, 12),
(103, 11), (103, 11), (103, 10), (103, 11), (103, 10), (103, 11),
(103, 10), (103, 9), (103, 8), (103, 10), (103, 9), (103, 10),
(103, 9), (103, 9), (103, 8), (103, 9), (103, 8), (103, 9),
(103, 8), (103, 7), (103, 6), (103, 13), (103, 12), (103, 13),
(103, 12), (103, 12), (103, 11), (103, 12), (103, 11), (103, 12),
(103, 11), (103, 10), (103, 9), (103, 10), (103, 9), (103, 10),
(103, 9), (103, 9), (103, 8), (103, 9), (103, 8), (103, 9),
(103, 8), (103, 7), (103, 6), (104, 6), (104, 4), (104, 5),
(104, 3), (105, 3), (105, 2), (105, 2), (105, 1), (106, 2),
(107, 11), (107, 10), (107, 9), (107, 8), (107, 9), (107, 8),
(107, 7), (107, 6), (107, 10), (107, 9), (107, 8), (107, 7),
(107, 8), (107, 7), (107, 6), (107, 5), (107, 10), (107, 9),
(107, 8), (107, 7), (107, 8), (107, 7), (107, 6), (107, 5),
(107, 9), (107, 8), (107, 7), (107, 6), (107, 7), (107, 6),
(107, 5), (107, 4), (107, 9), (107, 8), (107, 7), (107, 6),
(107, 8), (107, 7), (107, 6), (107, 5), (107, 8), (107, 7),
(107, 6), (107, 5), (107, 7), (107, 6), (107, 5), (107, 4),
(108, 2), (109, 3), (109, 1), (109, 6), (109, 2), (109, 5),
(109, 1), (110, 1), (110, 3), (111, 3), (111, 2), (112, 11),
(112, 10), (112, 8), (112, 7), (113, 2), (113, 1), (114, 4),
(114, 3), (114, 3), (114, 2), (114, 2), (114, 1), (115, 11),
(115, 10), (115, 11), (115, 10), (115, 11), (115, 10), (115, 10),
(115, 9), (115, 10), (115, 9), (115, 10), (115, 9), (115, 10),
(115, 9), (115, 8), (115, 7), (115, 8), (115, 7), (115, 8),
(115, 7), (115, 8), (115, 7), (115, 7), (115, 6), (115, 7),
(115, 6), (115, 7), (115, 6), (115, 7), (115, 6), (115, 5),
(115, 4), (116, 2), (117, 1), (117, 1), (117, 1), (117, 1),
(117, 1), (117, 1), (117, 1), (117, 1), (117, 1), (117, 1),
(117, 1), (118, 7), (118, 6), (119, 7), (119, 6), (119, 6),
(119, 5), (119, 13), (119, 12), (119, 12), (119, 11), (119, 10),
(119, 9), (119, 12), (119, 11), (119, 11), (119, 10), (119, 9),
(119, 8), (119, 12), (119, 11), (119, 11), (119, 10), (119, 9),
(119, 8), (119, 11), (119, 10), (119, 10), (119, 9), (119, 8),
(119, 7), (119, 12), (119, 11), (119, 11), (119, 10), (119, 9),
(119, 8), (119, 11), (119, 10), (119, 10), (119, 9), (119, 8),
(119, 7), (119, 11), (119, 10), (119, 10), (119, 9), (119, 8),
(119, 7), (119, 10), (119, 9), (119, 9), (119, 8), (119, 7),
(119, 6), (120, 21), (120, 20), (120, 19), (120, 18), (120, 17),
(120, 16), (120, 20), (120, 19), (120, 18), (120, 17), (120, 16),
(120, 15), (120, 20), (120, 19), (120, 18), (120, 17), (120, 16),
(120, 15), (120, 19), (120, 18), (120, 17), (120, 16), (120, 15),
(120, 14), (120, 19), (120, 18), (120, 17), (120, 16), (120, 15),
(120, 14), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 20), (120, 19), (120, 18), (120, 17), (120, 16),
(120, 15), (120, 19), (120, 18), (120, 17), (120, 16), (120, 15),
(120, 14), (120, 19), (120, 18), (120, 17), (120, 16), (120, 15),
(120, 14), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 13), (120, 12), (120, 11), (120, 10), (120, 9),
(120, 8), (120, 19), (120, 18), (120, 17), (120, 16), (120, 15),
(120, 14), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 13), (120, 12), (120, 11), (120, 10), (120, 9),
(120, 8), (120, 13), (120, 12), (120, 11), (120, 10), (120, 9),
(120, 8), (120, 12), (120, 11), (120, 10), (120, 9), (120, 8),
(120, 7), (120, 19), (120, 18), (120, 17), (120, 16), (120, 15),
(120, 14), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 18), (120, 17), (120, 16), (120, 15), (120, 14),
(120, 13), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 13), (120, 12), (120, 11), (120, 10), (120, 9),
(120, 8), (120, 17), (120, 16), (120, 15), (120, 14), (120, 13),
(120, 12), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 16), (120, 15), (120, 14), (120, 13), (120, 12),
(120, 11), (120, 15), (120, 14), (120, 13), (120, 12), (120, 11),
(120, 10), (120, 14), (120, 13), (120, 12), (120, 11), (120, 10),
(120, 9), (120, 13), (120, 12), (120, 11), (120, 10), (120, 9),
(120, 8), (120, 13), (120, 12), (120, 11), (120, 10), (120, 9),
(120, 8), (120, 12), (120, 11), (120, 10), (120, 9), (120, 8),
(120, 7), (121, 2), (122, 15), (122, 14), (122, 15), (122, 14),
(122, 15), (122, 14), (122, 15), (122, 14), (122, 13), (122, 12),
(122, 13), (122, 12), (122, 13), (122, 12), (122, 13), (122, 12),
(122, 13), (122, 12), (122, 11), (122, 10), (122, 12), (122, 11),
(122, 12), (122, 11), (122, 12), (122, 11), (122, 12), (122, 11),
(122, 10), (122, 9), (122, 10), (122, 9), (122, 10), (122, 9),
(122, 10), (122, 9), (122, 10), (122, 9), (122, 8), (122, 7),
(122, 14), (122, 13), (122, 14), (122, 13), (122, 14), (122, 13),
(122, 14), (122, 13), (122, 12), (122, 11), (122, 12), (122, 11),
(122, 12), (122, 11), (122, 12), (122, 11), (122, 12), (122, 11),
(122, 10), (122, 9), (122, 11), (122, 10), (122, 11), (122, 10),
(122, 11), (122, 10), (122, 11), (122, 10), (122, 9), (122, 8),
(122, 9), (122, 8), (122, 9), (122, 8), (122, 9), (122, 8),
(122, 9), (122, 8), (122, 7), (122, 6), (122, 13), (122, 12),
(122, 13), (122, 12), (122, 13), (122, 12), (122, 13), (122, 12),
(122, 11), (122, 10), (122, 11), (122, 10), (122, 11), (122, 10),
(122, 11), (122, 10), (122, 11), (122, 10), (122, 9), (122, 8),
(122, 10), (122, 9), (122, 10), (122, 9), (122, 10), (122, 9),
(122, 10), (122, 9), (122, 8), (122, 7), (122, 8), (122, 7),
(122, 8), (122, 7), (122, 8), (122, 7), (122, 8), (122, 7),
(122, 6), (122, 5), (122, 13), (122, 12), (122, 13), (122, 12),
(122, 13), (122, 12), (122, 13), (122, 12), (122, 11), (122, 10),
(122, 10), (122, 9), (122, 10), (122, 9), (122, 10), (122, 9),
(122, 10), (122, 9), (122, 8), (122, 7), (122, 12), (122, 11),
(122, 12), (122, 11), (122, 12), (122, 11), (122, 12), (122, 11),
(122, 10), (122, 9), (122, 9), (122, 8), (122, 9), (122, 8),
(122, 9), (122, 8), (122, 9), (122, 8), (122, 7), (122, 6),
(122, 11), (122, 10), (122, 11), (122, 10), (122, 11), (122, 10),
(122, 11), (122, 10), (122, 9), (122, 8), (122, 8), (122, 7),
(122, 8), (122, 7), (122, 8), (122, 7), (122, 8), (122, 7),
(122, 6), (122, 5), (123, 1), (123, 1), (124, 3), (124, 1),
(125, 1), (125, 1), (125, 1), (126, 2), (126, 1), (127, 1),
(127, 1), (127, 1), (127, 1), (127, 1), (127, 1), (128, 13),
(128, 12), (128, 11), (128, 10), (128, 10), (128, 9), (128, 8),
(128, 7), (128, 12), (128, 11), (128, 10), (128, 9), (128, 9),
(128, 8), (128, 7), (128, 6), (128, 11), (128, 10), (128, 8),
(128, 7), (128, 10), (128, 9), (128, 7), (128, 6), (129, 10),
(129, 9), (129, 7), (129, 6), (129, 12), (129, 11), (129, 9),
(129, 8), (129, 11), (129, 10), (129, 8), (129, 7), (129, 10),
(129, 9), (129, 7), (129, 6), (129, 12), (129, 11), (129, 9),
(129, 8), (129, 11), (129, 10), (129, 8), (129, 7), (129, 10),
(129, 9), (129, 7), (129, 6), (130, 12), (130, 11), (130, 11),
(130, 10), (130, 10), (130, 9), (130, 11), (130, 10), (130, 10),
(130, 9), (130, 9), (130, 8), (130, 11), (130, 10), (130, 10),
(130, 9), (130, 9), (130, 8), (130, 10), (130, 9), (130, 9),
(130, 8), (130, 8), (130, 7), (130, 11), (130, 10), (130, 10),
(130, 9), (130, 9), (130, 8), (130, 10), (130, 9), (130, 9),
(130, 8), (130, 8), (130, 7), (130, 10), (130, 9), (130, 9),
(130, 8), (130, 8), (130, 7), (130, 9), (130, 8), (130, 8),
(130, 7), (130, 7), (130, 6), (131, 9), (131, 8), (131, 6),
(131, 5), (131, 8), (131, 7), (131, 5), (131, 4), (132, 8),
(132, 7), (132, 7), (132, 6), (132, 8), (132, 7), (132, 7),
(132, 6), (132, 8), (132, 7), (132, 7), (132, 6), (133, 3),
(134, 1), (135, 7), (135, 5), (135, 6), (135, 4), (136, 10),
(136, 8), (136, 9), (136, 7), (137, 6), (137, 4), (137, 5),
(137, 3), (138, 3), (139, 3), (139, 2), (140, 1), (140, 1),
(140, 1), (140, 1), (141, 2), (141, 1), (142, 3), (142, 2),
(142, 2), (142, 1), (143, 6), (143, 5), (143, 4), (143, 3),
(144, 4), (144, 3), (145, 3), (146, 2), (146, 1), (147, 3),
(147, 2), (147, 2), (147, 1), (147, 2), (147, 1), (148, 1),
(148, 1), (148, 1), (149, 1), (149, 1), (149, 1), (149, 1),
(149, 1), (149, 1), (149, 1), (149, 1), (149, 1), (150, 4),
(150, 3), (151, 10), (151, 9), (151, 10), (151, 9), (151, 10),
(151, 9), (151, 8), (151, 7), (151, 8), (151, 7), (151, 8),
(151, 7), (151, 8), (151, 7), (151, 6), (151, 5), (152, 3),
(152, 2), (153, 1), (153, 1), (154, 2), (154, 1), (155, 2),
(156, 1), (156, 1), (156, 1), (156, 1), (156, 1), (156, 1),
(156, 1), (157, 3), (157, 2), (158, 1), (158, 1), (159, 2),
(160, 6), (161, 9), (161, 8), (161, 7), (161, 6), (161, 8),
(161, 7), (161, 6), (161, 5), (161, 8), (161, 7), (161, 6),
(161, 5), (161, 7), (161, 6), (161, 5), (161, 4), (161, 1),
(161, 1), (162, 1), (162, 1), (162, 1), (162, 1), (163, 9),
(163, 8), (163, 7), (163, 6), (163, 7), (163, 6), (164, 1),
(165, 3), (166, 1), (167, 13), (167, 12), (167, 11), (167, 10),
(167, 9), (167, 8), (167, 12), (167, 11), (167, 10), (167, 9),
(167, 8), (167, 7), (167, 12), (167, 11), (167, 10), (167, 9),
(167, 8), (167, 7), (167, 11), (167, 10), (167, 9), (167, 8),
(167, 7), (167, 6), (168, 7), (168, 6), (169, 10), (169, 9),
(169, 9), (169, 8), (169, 8), (169, 7), (169, 9), (169, 8),
(169, 8), (169, 7), (169, 7), (169, 6), (169, 9), (169, 8),
(169, 8), (169, 7), (169, 7), (169, 6), (169, 8), (169, 7),
(169, 7), (169, 6), (169, 6), (169, 5), (170, 6), (170, 5),
(171, 10), (171, 8), (171, 8), (171, 6), (171, 9), (171, 7),
(171, 7), (171, 5), (171, 9), (171, 7), (171, 7), (171, 5),
(171, 8), (171, 6), (171, 6), (171, 4), (171, 9), (171, 7),
(171, 7), (171, 5), (171, 8), (171, 6), (171, 6), (171, 4),
(171, 8), (171, 6), (171, 6), (171, 4), (171, 7), (171, 5),
(171, 5), (171, 3), (171, 5), (171, 3), (172, 3), (172, 2),
(173, 7), (173, 6), (173, 3), (174, 3), (174, 1), (175, 3),
(175, 2), (176, 1), (177, 13), (177, 12), (177, 12), (177, 11),
(177, 13), (177, 12), (177, 12), (177, 11), (177, 12), (177, 11),
(177, 11), (177, 10), (177, 12), (177, 11), (177, 11), (177, 10),
(177, 12), (177, 11), (177, 11), (177, 10), (177, 11), (177, 10),
(177, 10), (177, 9), (177, 12), (177, 11), (177, 11), (177, 10),
(177, 12), (177, 11), (177, 11), (177, 10), (177, 11), (177, 10),
(177, 10), (177, 9), (177, 11), (177, 10), (177, 10), (177, 9),
(177, 11), (177, 10), (177, 10), (177, 9), (177, 10), (177, 9),
(177, 9), (177, 8), (178, 10), (178, 9), (178, 9), (178, 8),
(178, 9), (178, 8), (178, 8), (178, 7), (178, 8), (178, 7),
(178, 7), (178, 6), (178, 9), (178, 8), (178, 8), (178, 7),
(178, 8), (178, 7), (178, 7), (178, 6), (178, 7), (178, 6),
(178, 6), (178, 5), (179, 17), (179, 16), (179, 15), (179, 14),
(179, 13), (179, 12), (179, 16), (179, 15), (179, 14), (179, 13),
(179, 12), (179, 11), (179, 16), (179, 15), (179, 14), (179, 13),
(179, 12), (179, 11), (179, 15), (179, 14), (179, 13), (179, 12),
(179, 11), (179, 10), (179, 14), (179, 13), (179, 12), (179, 11),
(179, 10), (179, 9), (179, 13), (179, 12), (179, 11), (179, 10),
(179, 9), (179, 8), (179, 13), (179, 12), (179, 11), (179, 10),
(179, 9), (179, 8), (179, 12), (179, 11), (179, 10), (179, 9),
(179, 8), (179, 7), (179, 16), (179, 15), (179, 14), (179, 13),
(179, 12), (179, 11), (179, 15), (179, 14), (179, 13), (179, 12),
(179, 11), (179, 10), (179, 15), (179, 14), (179, 13), (179, 12),
(179, 11), (179, 10), (179, 14), (179, 13), (179, 12), (179, 11),
(179, 10), (179, 9), (179, 13), (179, 12), (179, 11), (179, 10),
(179, 9), (179, 8), (179, 12), (179, 11), (179, 10), (179, 9),
(179, 8), (179, 7), (179, 12), (179, 11), (179, 10), (179, 9),
(179, 8), (179, 7), (179, 11), (179, 10), (179, 9), (179, 8),
(179, 7), (179, 6), (179, 15), (179, 14), (179, 13), (179, 12),
(179, 11), (179, 10), (179, 14), (179, 13), (179, 12), (179, 11),
(179, 10), (179, 9), (179, 14), (179, 13), (179, 12), (179, 11),
(179, 10), (179, 9), (179, 13), (179, 12), (179, 11), (179, 10),
(179, 9), (179, 8), (179, 12), (179, 11), (179, 10), (179, 9),
(179, 8), (179, 7), (179, 11), (179, 10), (179, 9), (179, 8),
(179, 7), (179, 6), (179, 11), (179, 10), (179, 9), (179, 8),
(179, 7), (179, 6), (179, 10), (179, 9), (179, 8), (179, 7),
(179, 6), (179, 5), (180, 11), (180, 10), (180, 11), (180, 10),
(180, 11), (180, 10), (180, 9), (180, 8), (180, 8), (180, 7),
(180, 8), (180, 7), (180, 8), (180, 7), (180, 6), (180, 5),
(180, 10), (180, 9), (180, 10), (180, 9), (180, 10), (180, 9),
(180, 8), (180, 7), (180, 7), (180, 6), (180, 7), (180, 6),
(180, 7), (180, 6), (180, 5), (180, 4), (180, 9), (180, 8),
(180, 9), (180, 8), (180, 9), (180, 8), (180, 7), (180, 6),
(180, 6), (180, 5), (180, 6), (180, 5), (180, 6), (180, 5),
(180, 4), (180, 3), (181, 1), (181, 1), (182, 3), (182, 2),
(183, 1), (183, 1), (183, 1), (183, 1), (183, 1), (184, 9),
(184, 8), (184, 8), (184, 7), (184, 8), (184, 7), (184, 7),
(184, 6), (185, 7), (185, 6), (186, 5), (186, 4), (186, 4),
(186, 3), (186, 3), (186, 2), (186, 4), (186, 3), (186, 3),
(186, 2), (186, 2), (186, 1), (187, 1), (187, 1), (188, 2),
(188, 1), (189, 1), (189, 1), (189, 1), (189, 1), (190, 2),
(190, 1), (191, 1), (191, 1), (191, 1), (191, 1), (191, 1),
(191, 1), (192, 2), (192, 1), (193, 11), (193, 8), (193, 10),
(193, 7), (193, 10), (193, 7), (193, 9), (193, 6), (194, 3),
(195, 5), (195, 5), (196, 1), (196, 1), (197, 5), (197, 3),
(197, 2), (198, 1), (198, 3), (199, 6), (199, 3), (200, 2),
(201, 4), (202, 1), (203, 3), (203, 1), (203, 3), (203, 1),
(204, 2), (204, 1), (204, 2), (205, 4), (205, 2), (206, 12),
(206, 11), (206, 8), (206, 7), (207, 4), (207, 3), (207, 3),
(207, 2), (207, 2), (207, 1), (208, 3), (208, 1), (208, 4),
(208, 3), (209, 1), (209, 1), (209, 1), (209, 1), (209, 1),
(209, 1), (210, 5), (210, 3), (211, 1), (211, 1), (211, 1),
(212, 1), (212, 1), (212, 1), (212, 1), (213, 6), (213, 3),
(213, 5), (213, 2), (214, 3), (215, 3), (216, 11), (216, 9),
(216, 10), (216, 8), (216, 8), (216, 6), (216, 7), (216, 5),
(217, 1), (217, 1), (217, 1), (218, 2), (218, 1), (219, 3),
(219, 2), (219, 2), (219, 1), (220, 4), (221, 1), (221, 1),
(221, 1), (221, 1), (221, 1), (221, 3), (221, 3), (221, 2),
(221, 2), (221, 3), (221, 3), (221, 3), (221, 3), (221, 3),
(221, 2), (221, 2), (221, 3), (221, 3), (221, 3), (222, 3),
(222, 2), (223, 9), (223, 6), (223, 8), (223, 5), (224, 9),
(224, 6), (224, 4), (224, 8), (224, 5), (224, 3), (225, 2),
(225, 1), (226, 2), (226, 1), (227, 6), (227, 5), (228, 4),
(228, 3), (228, 2), (228, 1), (229, 1), (230, 3), (230, 2),
(231, 6), (231, 5), (232, 13), (232, 12), (232, 11), (232, 10),
(232, 12), (232, 11), (232, 10), (232, 9), (232, 12), (232, 11),
(232, 10), (232, 9), (232, 11), (232, 10), (232, 9), (232, 8),
(233, 7), (233, 6), (234, 5), (234, 4), (234, 4), (234, 3),
(234, 3), (234, 2), (234, 4), (234, 3), (234, 3), (234, 2),
(234, 2), (234, 1), (235, 1), (235, 1), (236, 2), (236, 1),
(237, 11), (237, 8), (237, 6), (237, 10), (237, 7), (237, 5),
(237, 10), (237, 7), (237, 5), (237, 9), (237, 6), (237, 4),
(238, 2), (239, 1), (239, 1), (239, 1), (239, 1), (239, 1),
(239, 1), (239, 1), (239, 1), (239, 1), (239, 1), (239, 1),
(240, 7), (240, 6), (241, 3), (242, 1), (242, 1), (242, 1),
(242, 1), (242, 1), (242, 1), (242, 1), (242, 1), (242, 1),
(242, 1), (242, 1), (242, 1), (242, 1), (242, 1), (242, 1),
(242, 1), (242, 1), (242, 1), (242, 1), (243, 1), (243, 1),
(244, 4), (244, 3), (245, 6), (245, 5), (245, 5), (245, 4),
(246, 4), (247, 2), (247, 1), (248, 8), (248, 7), (249, 6),
(249, 5), (249, 5), (249, 4), (249, 5), (249, 4), (249, 4),
(249, 3));
procedure Next_Action
(State : Anagram.Grammars.LR_Parsers.State_Index;
Token : Anagram.Grammars.Terminal_Count;
Value : out Anagram.Grammars.LR_Parsers.Action)
is
Code : constant Action_Code := Action_Table (State, Token);
begin
if (Code and 16#80_00#) /= 0 then
Value := (Kind => Shift, State => State_Index (Code and 16#7F_FF#));
elsif Code /= 0 then
Value := (Kind => Reduce,
Prod => Anagram.Grammars.Production_Index (Code),
NT => Prods (Code).NT,
Parts => Prods (Code).Parts);
elsif State = 14 then
Value := (Kind => Finish);
else
Value := (Kind => Error);
end if;
end Next_Action;
end Program.Parsers.Data;
|
tum-ei-rcs/StratoX | Ada | 1,857 | ads | -- Project: StratoX
-- Authors: Emanuel Regnath ([email protected])
-- Martin Becker ([email protected])
--
-- Description:
-- allows logging of structured messages at several logging levels.
--
-- Usage:
-- Logger.init -- initializes the Logger
-- Logger.log_console (Logger.INFO, "Program started.") -- writes to console
-- Logger.log_sd (Logger.INFO, gps_msg) -- writes GPS record to SD card
with ULog;
-- @summary Simultaneously writes to UART, and SD card.
-- Write to SD card is done via a queue and a background task,
-- becauuse it can be slow.
package Logger with SPARK_Mode,
Abstract_State => (LogState with External)
-- we need a state here because log() needs Global aspect
-- since protected object is part of the state, and p.o. is
-- by definition synchronous and synchronous objects are
-- by definition external, we need to mark it as such
is
type Init_Error_Code is (SUCCESS, ERROR);
subtype Message_Type is String;
type Log_Level is (SENSOR, ERROR, WARN, INFO, DEBUG, TRACE);
procedure Init (status : out Init_Error_Code);
procedure log (msg_level : Log_Level; message : Message_Type);
-- wrapper for log_console
procedure log_console (msg_level : Log_Level; message : Message_Type);
-- write a new text log message (shown on console, logged to SD)
procedure log_sd (msg_level : Log_Level; message : ULog.Message);
-- write a new ulog message (not shown on console, logged to SD)
procedure Set_Log_Level (level : Log_Level);
procedure Start_SDLog;
-- start a new logfile on the SD card
LOG_QUEUE_LENGTH : constant := 20;
private
-- FIXME: documentation required
package Adapter is
procedure init_adapter (status : out Init_Error_Code);
procedure write (message : Message_Type);
end Adapter;
end Logger;
|
vpodzime/ada-util | Ada | 1,852 | ads | -----------------------------------------------------------------------
-- Logs -- Utility Log Package
-- Copyright (C) 2001, 2002, 2003, 2006, 2008, 2009, 2010, 2011, 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
-- The <b>Util.Log</b> package provides a simple logging framework inspired
-- from the Java Log4j library.
package Util.Log is
pragma Preelaborate;
subtype Level_Type is Natural;
FATAL_LEVEL : constant Level_Type := 0;
ERROR_LEVEL : constant Level_Type := 5;
WARN_LEVEL : constant Level_Type := 7;
INFO_LEVEL : constant Level_Type := 10;
DEBUG_LEVEL : constant Level_Type := 20;
-- Get the log level name.
function Get_Level_Name (Level : Level_Type) return String;
-- Get the log level from the property value
function Get_Level (Value : in String;
Default : in Level_Type := INFO_LEVEL) return Level_Type;
-- The <tt>Logging</tt> interface defines operations that can be implemented for a
-- type to report errors or messages.
type Logging is limited interface;
procedure Error (Log : in out Logging;
Message : in String) is abstract;
end Util.Log;
|
reznikmm/matreshka | Ada | 4,711 | 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.Frame_Margin_Horizontal_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Draw_Frame_Margin_Horizontal_Attribute_Node is
begin
return Self : Draw_Frame_Margin_Horizontal_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_Frame_Margin_Horizontal_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Frame_Margin_Horizontal_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Draw_URI,
Matreshka.ODF_String_Constants.Frame_Margin_Horizontal_Attribute,
Draw_Frame_Margin_Horizontal_Attribute_Node'Tag);
end Matreshka.ODF_Draw.Frame_Margin_Horizontal_Attributes;
|
alvaromb/Compilemon | Ada | 2,275 | ads | -- 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 NFA construction routines
-- AUTHOR: John Self (UCI)
-- DESCRIPTION builds the NFA.
-- NOTES this file mirrors flex as closely as possible.
-- $Header: /co/ua/self/arcadia/aflex/ada/src/RCS/nfaS.a,v 1.4 90/01/12 15:20:30 self Exp Locker: self $
package NFA is
procedure ADD_ACCEPT(MACH : in out INTEGER;
ACCEPTING_NUMBER : in INTEGER);
function COPYSINGL(SINGL, NUM : in INTEGER) return INTEGER;
procedure DUMPNFA(STATE1 : in INTEGER);
function DUPMACHINE(MACH : in INTEGER) return INTEGER;
procedure FINISH_RULE(MACH : in INTEGER;
VARIABLE_TRAIL_RULE : in BOOLEAN;
HEADCNT, TRAILCNT : in INTEGER);
function LINK_MACHINES(FIRST, LAST : in INTEGER) return INTEGER;
procedure MARK_BEGINNING_AS_NORMAL(MACH : in INTEGER);
function MKBRANCH(FIRST, SECOND : in INTEGER) return INTEGER;
function MKCLOS(STATE : in INTEGER) return INTEGER;
function MKOPT(MACH : in INTEGER) return INTEGER;
function MKOR(FIRST, SECOND : in INTEGER) return INTEGER;
function MKPOSCL(STATE : in INTEGER) return INTEGER;
function MKREP(MACH, LB, UB : in INTEGER) return INTEGER;
function MKSTATE(SYM : in INTEGER) return INTEGER;
procedure MKXTION(STATEFROM, STATETO : in INTEGER);
procedure NEW_RULE;
end nfa;
|
AdaCore/libadalang | Ada | 156 | adb | procedure Test is
type I is limited interface;
task type T is new I with
entry E;
end T;
pragma Test_Statement;
begin
null;
end Test;
|
AaronC98/PlaneSystem | Ada | 3,840 | ads | ------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2002-2013, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 3, or (at your option) any --
-- later version. This library is distributed in the hope that it will be --
-- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
------------------------------------------------------------------------------
pragma Ada_2012;
with AWS.Resources.Streams.Memory;
package AWS.Resources.Embedded is
use Ada;
Resource_Error : exception renames Resources.Resource_Error;
subtype Buffer_Access is Streams.Memory.Buffer_Access;
procedure Open
(File : out File_Type;
Name : String;
Form : String := "";
GZip : in out Boolean);
-- Open resource from registered data
procedure Create
(File : out File_Type;
Buffer : Buffer_Access);
-- Create the resource directly from memory data
function Exist (Name : String) return File_Instance;
-- Return GZip if only file Name & ".gz" exists.
-- Return Plain if only file Name exists.
-- Return Both if both file Name and Name & ".gz" exists.
-- Return None if files neither Name nor Name & ".gz" exist.
function Is_Regular_File (Name : String) return Boolean with Inline;
-- Returns True if file named Name has been registered (i.e. it is an
-- in-memory file).
function File_Size (Name : String) return Utils.File_Size_Type;
function File_Timestamp (Name : String) return Ada.Calendar.Time;
procedure Register
(Name : String;
Content : Buffer_Access;
File_Time : Calendar.Time);
-- Register a new file named Name into the embedded resources. The file
-- content is pointed to by Content, the File_Time must be the last
-- modification time stamp for the file. If Name ends with ".gz" the
-- embedded resource registered as compressed. If a file is already
-- registered for this name, Content replace the previous one.
end AWS.Resources.Embedded;
|
MinimSecure/unum-sdk | Ada | 836 | 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/>.
package body Pck is
procedure Increment (I : in out Integer) is
begin
I := I + 1;
end Increment;
end Pck;
|
Tim-Tom/project-euler | Ada | 58 | ads | package Problem_29 is
procedure Solve;
end Problem_29;
|
reznikmm/matreshka | Ada | 3,586 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.Internals.Signals;
package League.Objects.Impl.Internals is
function Get_Connections
(Self : in out Object'Class)
return not null Matreshka.Internals.Signals.Connections_Access;
end League.Objects.Impl.Internals;
|
stcarrez/ada-css | Ada | 1,181 | ads | -----------------------------------------------------------------------
-- css-core-properties-tests -- Unit tests for CSS properties package
-- Copyright (C) 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Tests;
package CSS.Core.Properties.Tests is
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite);
type Test is new Util.Tests.Test with null record;
-- Test appending a property to the list.
procedure Test_Append (T : in out Test);
end CSS.Core.Properties.Tests;
|
annexi-strayline/AURA | Ada | 6,685 | adb | ------------------------------------------------------------------------------
-- --
-- Ada User Repository Annex (AURA) --
-- ANNEXI-STRAYLINE Reference Implementation --
-- --
-- Command Line Interface --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2020, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * Richard Wai (ANNEXI-STRAYLINE) --
-- --
-- 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 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 --
-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with Unit_Names.Hash;
separate (Scheduling)
procedure Report_Incomplete_Subsystems
(Requested_Units: in Registrar.Library_Units.Library_Unit_Sets.Set)
is
Verbose_Output: constant Boolean := Parameters.Output_Style = Verbose;
subtype Count_Type is Ada.Containers.Count_Type;
package Unfulfilled_Subsystem_Maps is new Ada.Containers.Hashed_Maps
(Key_Type => Unit_Names.Unit_Name,
Element_Type => Unit_Names.Sets.Set,
Hash => Unit_Names.Hash,
Equivalent_Keys => Unit_Names."=",
"=" => Unit_Names.Sets."=");
-- Maps a subsystem name (key) to a set of unit names for all missing
-- (requested) units associated with the subsystem
Missing_Map: Unfulfilled_Subsystem_Maps.Map;
procedure Dump_Reverse_Dependency_Trace
(Set_Cursor: in Unfulfilled_Subsystem_Maps.Cursor)
is begin
-- We need to dump a listing of all reverse dependencies associated
-- with each missing unit of the set mapped to via Set_Cursor
for Missing_Unit_Name of Missing_Map(Set_Cursor).Element.all loop
declare
Rev_Deps: constant Unit_Names.Sets.Set
:= Registrar.Queries.Dependent_Units (Missing_Unit_Name);
begin
if not Rev_Deps.Is_Empty then
UI.Put_Empty_Tag;
Put_Line (" - " & Missing_Unit_Name.To_UTF8_String
& ", which is with'ed by:");
end if;
for Rev_Dep_Name of Rev_Deps loop
UI.Put_Empty_Tag;
Put_Line (" -> " & Rev_Dep_Name.To_UTF8_String);
end loop;
end;
end loop;
end Dump_Reverse_Dependency_Trace;
begin
-- Some units are missing. We will build a map which links each
-- missing unit with the subsystem that is missing that subsystem
declare
use Unfulfilled_Subsystem_Maps;
Associated_Subsys_Name: Unit_Names.Unit_Name;
Mapped_Subsys : Cursor;
begin
for Missing_Unit of Requested_Units loop
Associated_Subsys_Name := Missing_Unit.Name.Subsystem_Name;
Mapped_Subsys := Missing_Map.Find (Associated_Subsys_Name);
if Mapped_Subsys = No_Element then
Missing_Map.Insert
(Key => Associated_Subsys_Name,
New_Item => Unit_Names.Sets.To_Set (Missing_Unit.Name));
else
Missing_Map(Mapped_Subsys).Insert (Missing_Unit.Name);
end if;
end loop;
end;
for C in Missing_Map.Iterate loop
UI.Put_Fail_Tag;
Put_Line (" Subsystem """
& Unfulfilled_Subsystem_Maps.Key(C).To_UTF8_String
& """ is missing"
& Count_Type'Image (Missing_Map(C).Length)
& " expected units"
& (if Verbose_Output then ':' else '.'));
if Verbose_Output then
Dump_Reverse_Dependency_Trace (C);
end if;
end loop;
if not Verbose_Output then
UI.Put_Info_Tag;
Put_Line (" Use -v to see dependency details of missing units.");
end if;
end Report_Incomplete_Subsystems;
|
PThierry/ewok-kernel | Ada | 1,021 | ads | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
package ewok.rng
with spark_mode => off
is
procedure random_array
(tab : out unsigned_8_array;
success : out boolean);
procedure random
(rand : out unsigned_32;
success : out boolean);
end ewok.rng;
|
annexi-strayline/AURA | Ada | 6,374 | adb | ------------------------------------------------------------------------------
-- --
-- Ada User Repository Annex (AURA) --
-- ANNEXI-STRAYLINE Reference Implementation --
-- --
-- Core --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2020, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * Richard Wai (ANNEXI-STRAYLINE) --
-- --
-- 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 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 --
-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
package body User_Queries is
protected body Query_Manager is
------------------
-- Query_Active --
------------------
function Query_Active return Boolean is (Active);
-----------------
-- Start_Query --
-----------------
entry Start_Query when not Active is
begin
Active := True;
Stage := Open;
end Start_Query;
---------------
-- End_Query --
---------------
procedure End_Query is
begin
Active := False;
end End_Query;
----------------
-- Post_Query --
----------------
procedure Post_Query (Prompt : in String;
Default : in String;
Response_Size: in Positive)
is
use UBS;
begin
if not Active or else Stage /= Open then
raise Program_Error;
end if;
P_Buffer := To_Unbounded_String (Prompt);
D_Buffer := To_Unbounded_String (Default);
R_Buffer := Response_Size * ' ';
Stage := Pending;
end Post_Query;
-------------------
-- Wait_Response --
-------------------
entry Wait_Response (Response: out String;
Last : out Natural)
when Stage = Closed
is
use UBS;
begin
if Response'Length < UBS.Length (R_Buffer) then
raise Program_Error;
end if;
Last := Response'First + Length (R_Buffer) - 1;
Response(Response'First .. Last) := To_String (R_Buffer);
Stage := Open;
end Wait_Response;
-------------------
-- Query_Pending --
-------------------
function Query_Pending return Boolean is (Stage = Pending);
----------------
-- Take_Query --
----------------
procedure Take_Query (Driver: not null access procedure
(Prompt : in String;
Default : in String;
Response: out String;
Last : out Natural))
is
use UBS;
Response: String (1 .. Length (R_Buffer));
Last : Natural;
begin
if Stage /= Pending then
raise Program_Error with
"Call to Take_Query when no query is pending.";
end if;
Driver (Prompt => To_String (P_Buffer),
Default => To_String (D_Buffer),
Response => Response,
Last => Last);
R_Buffer := To_Unbounded_String (Response (1..Last));
Stage := Closed;
end Take_Query;
end Query_Manager;
end User_Queries;
|
reznikmm/matreshka | Ada | 4,575 | 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_Smil.Values_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Smil_Values_Attribute_Node is
begin
return Self : Smil_Values_Attribute_Node do
Matreshka.ODF_Smil.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Smil_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Smil_Values_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Values_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Smil_URI,
Matreshka.ODF_String_Constants.Values_Attribute,
Smil_Values_Attribute_Node'Tag);
end Matreshka.ODF_Smil.Values_Attributes;
|
PhiTheta/ADLAS_Ada_System | Ada | 3,309 | adb | ------------------------------------------------------------------------------------------------------------------------
--------------------------------------- File Details -------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
-- Project: Project_System
-- File name: <File_Name>
-- Description: This is the description of the test file
--
--
--
------------------------------------------------------------------------------------------------------------------------
--------------------------------------- Change History: ----------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
--
-- Version Date Author Description
-- ------- ---- ------ -----------
-- 1.0 22/08/17 S.Crowther Initial version
------------------------------------------------------------------------------------------------------------------------
--------------------------------------- Parameters: --------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
--
-- Name Direction Description
-- ---- --------- ----
-- Input_1 Input Template array
-- Output_1 Output Template array
--
------------------------------------------------------------------------------------------------------------------------
--------------------------------------- Function Details: --------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
--
-- Function name: <Function_Name>
-- Description:
--
--
-- Equation Logic: If x = 1 then
-- If template_variable = 1 then
-- Test_Failed
-- else
-- Test Passed
-- end if
-- Else
-- Test Passed
-- End if
--
-- Return:
-- Boolean Value
------------------------------------------------------------------------------------------------------------------------
--------------------------------------- Code: --------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
with ada.text_IO; use Ada.Text_IO;
with write_file;
separate(cbit.boost)
procedure disabler is
file_name : data_types.dataString := "20180604_log_file.txt";
Output : File_Type;
begin
write_file(Output, file_name);
end disabler;
|
sungyeon/drake | Ada | 4,296 | adb | -- for Win64 SEH
pragma Check_Policy (Trace => Ignore);
with System.Address_To_Constant_Access_Conversions;
with System.Storage_Elements;
with C.basetsd;
with C.winnt;
separate (System.Unwind.Backtrace)
package body Separated is
pragma Suppress (All_Checks);
use type Storage_Elements.Storage_Offset;
use type C.basetsd.DWORD64;
use type C.winnt.PRUNTIME_FUNCTION;
package DWORD64_const_ptr_Conv is
new Address_To_Constant_Access_Conversions (
C.basetsd.DWORD64,
C.basetsd.DWORD64_const_ptr);
procedure memset (
b : not null access C.winnt.UNWIND_HISTORY_TABLE;
c : Integer;
n : Storage_Elements.Storage_Count)
with Import,
Convention => Intrinsic, External_Name => "__builtin_memset";
procedure memset (
b : not null access C.winnt.KNONVOLATILE_CONTEXT_POINTERS;
c : Integer;
n : Storage_Elements.Storage_Count)
with Import,
Convention => Intrinsic, External_Name => "__builtin_memset";
-- implementation
procedure Backtrace (
Item : aliased out Tracebacks_Array;
Last : out Natural;
Exclude_Min : Address;
Exclude_Max : Address)
is
context : aliased C.winnt.CONTEXT;
history : aliased C.winnt.UNWIND_HISTORY_TABLE := (
Count => <>,
Search => <>,
LowAddress => <>,
HighAddress => <>,
F_Entry => (others => <>));
begin
pragma Check (Trace, Ada.Debug.Put ("start"));
-- Get the context.
C.winnt.RtlCaptureContext (context'Access);
-- Setup unwind history table (a cached to speed-up unwinding).
memset (
history'Access,
0,
C.winnt.UNWIND_HISTORY_TABLE'Size / Standard'Storage_Unit);
Last := Tracebacks_Array'First - 1;
loop
declare
RuntimeFunction : C.winnt.PRUNTIME_FUNCTION;
NvContext : aliased C.winnt.KNONVOLATILE_CONTEXT_POINTERS := (
FloatingContext => (others => <>),
IntegerContext => (others => <>));
ImageBase : aliased C.basetsd.ULONG64;
HandlerData : aliased C.winnt.PVOID;
EstablisherFrame : aliased C.basetsd.ULONG64;
begin
-- Get function metadata.
RuntimeFunction := C.winnt.RtlLookupFunctionEntry (
context.Rip,
ImageBase'Access,
history'Access);
if RuntimeFunction = null then
-- In case of failure, assume this is a leaf function.
context.Rip :=
DWORD64_const_ptr_Conv.To_Pointer (
System'To_Address (context.Rsp))
.all;
context.Rsp := context.Rsp + 8;
else
-- Unwind.
memset (
NvContext'Access,
0,
C.winnt.KNONVOLATILE_CONTEXT_POINTERS'Size
/ Standard'Storage_Unit);
declare
Dummy : C.winnt.PEXCEPTION_ROUTINE;
begin
Dummy := C.winnt.RtlVirtualUnwind (
0,
ImageBase,
context.Rip,
RuntimeFunction,
context'Access,
HandlerData'Access,
EstablisherFrame'Access,
NvContext'Access);
end;
end if;
-- 0 means bottom of the stack.
exit when System'To_Address (context.Rip) = Null_Address;
if System'To_Address (context.Rip) >= Exclude_Min
and then System'To_Address (context.Rip) <= Exclude_Max
then
Last := Tracebacks_Array'First - 1; -- reset
pragma Check (Trace, Ada.Debug.Put ("exclude"));
else
Last := Last + 1;
Item (Last) :=
System'To_Address (context.Rip)
- Storage_Elements.Storage_Offset'(2);
pragma Check (Trace, Ada.Debug.Put ("fill"));
exit when Last >= Tracebacks_Array'Last;
end if;
end;
end loop;
pragma Check (Trace, Ada.Debug.Put ("end"));
end Backtrace;
end Separated;
|
AdaCore/libadalang | Ada | 173 | adb | with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
procedure Test is
X, Y : Unbounded_String;
begin
X := X & Head (Y, 1);
pragma Test_Statement_UID;
end Test;
|
sungyeon/drake | Ada | 1,880 | ads | pragma License (Unrestricted);
with Ada.Numerics.Generic_Complex_Types;
generic
with package Complex_Types is new Generic_Complex_Types (<>);
use Complex_Types;
package Ada.Numerics.Generic_Complex_Elementary_Functions is
pragma Pure;
function Sqrt (X : Complex) return Complex;
function Log (X : Complex) return Complex;
function Exp (X : Complex) return Complex;
function Exp (X : Imaginary) return Complex;
function "**" (Left : Complex; Right : Complex) return Complex;
function "**" (Left : Complex; Right : Real'Base) return Complex;
function "**" (Left : Real'Base; Right : Complex) return Complex;
pragma Inline (Sqrt);
pragma Inline (Log);
pragma Inline (Exp);
pragma Inline ("**");
function Sin (X : Complex) return Complex;
function Cos (X : Complex) return Complex;
function Tan (X : Complex) return Complex;
function Cot (X : Complex) return Complex;
pragma Inline (Sin);
pragma Inline (Cos);
pragma Inline (Tan);
function Arcsin (X : Complex) return Complex;
function Arccos (X : Complex) return Complex;
function Arctan (X : Complex) return Complex;
function Arccot (X : Complex) return Complex;
pragma Inline (Arcsin);
pragma Inline (Arccos);
pragma Inline (Arctan);
function Sinh (X : Complex) return Complex;
function Cosh (X : Complex) return Complex;
function Tanh (X : Complex) return Complex;
function Coth (X : Complex) return Complex;
pragma Inline (Sinh);
pragma Inline (Cosh);
pragma Inline (Tanh);
function Arcsinh (X : Complex) return Complex;
function Arccosh (X : Complex) return Complex;
function Arctanh (X : Complex) return Complex;
function Arccoth (X : Complex) return Complex;
pragma Inline (Arcsinh);
pragma Inline (Arccosh);
pragma Inline (Arctanh);
end Ada.Numerics.Generic_Complex_Elementary_Functions;
|
persan/AdaYaml | Ada | 2,367 | ads | -- part of AdaYaml, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "copying.txt"
private with Yaml.Events.Store;
package Yaml.Transformator.Annotation.For_Loop is
type Instance is limited new Transformator.Instance with private;
overriding procedure Put (Object : in out Instance; E : Event);
overriding function Has_Next (Object : Instance) return Boolean;
overriding function Next (Object : in out Instance) return Event;
function New_For_Loop (Pool : Text.Pool.Reference;
Node_Context : Node_Context_Type;
Processor_Context : Events.Context.Reference;
Swallows_Previous : out Boolean)
return not null Pointer;
private
type State_Type is not null access procedure (Object : in out Instance;
E : Event);
procedure Initial (Object : in out Instance; E : Event);
procedure After_Annotation_Start (Object : in out Instance; E : Event);
procedure After_Variable_Name (Object : in out Instance; E : Event);
procedure In_Sequence_Parameter (Object : in out Instance; E : Event);
procedure After_Sequence_Parameter (Object : in out Instance; E : Event);
procedure After_Annotation_End (Object : in out Instance; E : Event);
procedure In_Body (Object : in out Instance; E : Event);
procedure Emitting (Object : in out Instance; E : Event);
type Emitting_State_Type is (Emit_Sequence_Start, Emit_Sequence_Body_Start,
Emit_Sequence_Body, Emit_Sequence_End,
Emitting_Finished);
type Instance is limited new Transformator.Instance with record
Node_Properties : Properties;
Context : Events.Context.Reference;
Depth : Natural := 0;
State : State_Type := Initial'Access;
Emitting_State : Emitting_State_Type := Emit_Sequence_Start;
Loop_Variable : Events.Context.Symbol_Cursor;
Loop_Variable_Store, Body_Store : Events.Store.Optional_Reference;
Loop_Variable_Target, Body_Start, Next_Event :
Events.Store.Element_Cursor;
Header_Locals, Body_Locals : Events.Context.Local_Scope_Cursor;
end record;
overriding procedure Finalize (Object : in out Instance);
end Yaml.Transformator.Annotation.For_Loop;
|
jquorning/iNow | Ada | 2,201 | adb | --
-- The author disclaims copyright to this source code. In place of
-- a legal notice, here is a blessing:
--
-- May you do good and not evil.
-- May you find forgiveness for yourself and forgive others.
-- May you share freely, not taking more than you give.
--
with Ada.Text_IO;
with Ada.Strings.Unbounded;
with Database.Jobs;
with Database.Events;
with Types;
package body CSV_IO is
procedure Export (File_Name : String) is
use Ada.Text_IO;
Export_File : File_Type;
procedure Put_Row (Col_1, Col_2, Col_3, Col_4 : String);
procedure Put_Row (Col_1, Col_2, Col_3, Col_4 : String) is
begin
Put_Line (Export_File,
Col_1 & ";" & Col_2 & ";" &
Col_3 & ";" & Col_4 & ";");
end Put_Row;
-- Lists : Database.List_Set;
begin
Create (Export_File, Out_File, File_Name);
-- Database.Get_Lists (Lists);
-- for List of Lists.Vector loop
-- Put_Row (List.Ref,
-- Ada.Strings.Unbounded.To_String (List.Name),
-- List.Id'Img,
-- Ada.Strings.Unbounded.To_String (List.Desc));
declare
Jobs : constant Types.Job_Sets.Vector :=
Database.Jobs.Get_Jobs (Top => Database.Jobs.All_Jobs);
begin
for Job of Jobs loop
Put_Row (Col_1 => "RRR", -- Job.Ref,
Col_2 => Ada.Strings.Unbounded.To_String (Job.Title),
Col_3 => Job.Id'Img,
Col_4 => "");
declare
use Database.Events;
Events : constant Event_Lists.Vector :=
Get_Job_Events (Job.Id);
begin
for Event of Events loop
Put_Row ("",
Ada.Strings.Unbounded.To_String (Event.Stamp),
Ada.Strings.Unbounded.To_String (Event.Kind),
"");
end loop;
end;
end loop;
end;
Put_Row ("", "", "", "");
-- end loop;
Close (Export_File);
end Export;
end CSV_IO;
|
szstonelee/redisoo | Ada | 23,813 | adb | with SOCI;
with SOCI.PostgreSQL;
with Ada.Text_IO;
with Ada.Calendar;
with Ada.Exceptions;
with Ada.Numerics.Discrete_Random;
with Ada.Command_Line;
procedure PostgreSQL_Test is
procedure Test_1 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing basic constructor function");
declare
S : SOCI.Session := SOCI.Make_Session (Connection_String);
begin
null;
end;
exception
when E : SOCI.Database_Error =>
Ada.Text_IO.Put_Line ("Database_Error: ");
Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E));
end Test_1;
procedure Test_2 (Connection_String : in String) is
S : SOCI.Session;
begin
Ada.Text_IO.Put_Line ("testing open/close");
S.Close;
S.Open (Connection_String);
S.Close;
end Test_2;
procedure Test_3 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing empty start/commit");
declare
S : SOCI.Session := SOCI.Make_Session (Connection_String);
begin
S.Start;
S.Commit;
end;
end Test_3;
procedure Test_4 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing simple statements");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
begin
SQL.Execute ("create table ada_test ( i integer )");
SQL.Execute ("drop table ada_test");
end;
end Test_4;
procedure Test_5 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing independent statements");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
St_1 : SOCI.Statement := SOCI.Make_Statement (SQL);
St_2 : SOCI.Statement := SOCI.Make_Statement (SQL);
begin
St_1.Prepare ("create table ada_test ( i integer )");
St_2.Prepare ("drop table ada_test");
St_1.Execute;
St_2.Execute;
end;
end Test_5;
procedure Test_6 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing data types and into elements");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
begin
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
begin
Pos := St.Into_String;
St.Prepare ("select 'Hello'");
St.Execute (True);
pragma Assert (St.Get_Into_String (Pos) = "Hello");
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
Value : SOCI.DB_Integer;
use type SOCI.DB_Integer;
begin
Pos := St.Into_Integer;
St.Prepare ("select 123");
St.Execute (True);
Value := St.Get_Into_Integer (Pos);
pragma Assert (Value = 123);
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
Value : SOCI.DB_Long_Long_Integer;
use type SOCI.DB_Long_Long_Integer;
begin
Pos := St.Into_Long_Long_Integer;
St.Prepare ("select 10000000000");
St.Execute (True);
Value := St.Get_Into_Long_Long_Integer (Pos);
pragma Assert (Value = 10_000_000_000);
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
Value : SOCI.DB_Long_Float;
use type SOCI.DB_Long_Float;
begin
Pos := St.Into_Long_Float;
St.Prepare ("select 3.625");
St.Execute (True);
Value := St.Get_Into_Long_Float (Pos);
pragma Assert (Value = SOCI.DB_Long_Float (3.625));
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
Value : Ada.Calendar.Time;
begin
Pos := St.Into_Time;
St.Prepare ("select timestamp '2008-06-30 21:01:02'");
St.Execute (True);
Value := St.Get_Into_Time (Pos);
pragma Assert (Ada.Calendar.Year (Value) = 2008);
pragma Assert (Ada.Calendar.Month (Value) = 6);
pragma Assert (Ada.Calendar.Day (Value) = 30);
pragma Assert
(Ada.Calendar.Seconds (Value) =
Ada.Calendar.Day_Duration (21 * 3_600 + 1 * 60 + 2));
end;
end;
end Test_6;
procedure Test_7 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing types with into vectors");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos_Id : SOCI.Into_Position;
Pos_Str : SOCI.Into_Position;
Pos_LL : SOCI.Into_Position;
Pos_LF : SOCI.Into_Position;
Pos_TM : SOCI.Into_Position;
use type SOCI.Data_State;
use type Ada.Calendar.Time;
use type SOCI.DB_Integer;
use type SOCI.DB_Long_Long_Integer;
use type SOCI.DB_Long_Float;
begin
SQL.Execute ("create table soci_test (" &
" id integer," &
" str varchar (20)," &
" ll bigint," &
" lf double precision," &
" tm timestamp" &
")");
SQL.Execute ("insert into soci_test (id, str, ll, lf, tm)" &
" values (1, 'abc', 10000000000, 3.0, timestamp '2008-06-30 21:01:02')");
SQL.Execute ("insert into soci_test (id, str, ll, lf, tm)" &
" values (2, 'xyz', -10000000001, -3.125, timestamp '2008-07-01 21:01:03')");
SQL.Execute ("insert into soci_test (id, str, ll, lf, tm)" &
" values (3, null, null, null, null)");
Pos_Id := St.Into_Vector_Integer;
Pos_Str := St.Into_Vector_String;
Pos_LL := St.Into_Vector_Long_Long_Integer;
Pos_LF := St.Into_Vector_Long_Float;
Pos_TM := St.Into_Vector_Time;
St.Into_Vectors_Resize (10); -- arbitrary batch size
St.Prepare ("select id, str, ll, lf, tm from soci_test order by id");
St.Execute (True);
pragma Assert (St.Get_Into_Vectors_Size = 3);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 0) = 1);
pragma Assert (St.Get_Into_Vector_State (Pos_Str, 0) = SOCI.Data_Not_Null);
pragma Assert (St.Get_Into_Vector_String (Pos_Str, 0) = "abc");
pragma Assert (St.Get_Into_Vector_Long_Long_Integer (Pos_LL, 0) = 10_000_000_000);
pragma Assert (St.Get_Into_Vector_Long_Float (Pos_LF, 0) = SOCI.DB_Long_Float (3.0));
pragma Assert (St.Get_Into_Vector_Time (Pos_TM, 0) =
Ada.Calendar.Time_Of (2008, 6, 30,
Duration (21 * 3_600 + 1 * 60 + 2)));
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 1) = 2);
pragma Assert (St.Get_Into_Vector_State (Pos_Str, 1) = SOCI.Data_Not_Null);
pragma Assert (St.Get_Into_Vector_String (Pos_Str, 1) = "xyz");
pragma Assert (St.Get_Into_Vector_Long_Long_Integer (Pos_LL, 1) = -10_000_000_001);
pragma Assert (St.Get_Into_Vector_Long_Float (Pos_LF, 1) = SOCI.DB_Long_Float (-3.125));
pragma Assert (St.Get_Into_Vector_Time (Pos_TM, 1) =
Ada.Calendar.Time_Of (2008, 7, 1,
Duration (21 * 3_600 + 1 * 60 + 3)));
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 2) = 3);
pragma Assert (St.Get_Into_Vector_State (Pos_Str, 2) = SOCI.Data_Null);
pragma Assert (St.Get_Into_Vector_State (Pos_LL, 2) = SOCI.Data_Null);
pragma Assert (St.Get_Into_Vector_State (Pos_LF, 2) = SOCI.Data_Null);
pragma Assert (St.Get_Into_Vector_State (Pos_TM, 2) = SOCI.Data_Null);
SQL.Execute ("drop table soci_test");
end;
end Test_7;
procedure Test_8 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing multi-batch operation with into vectors");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos_Id : SOCI.Into_Position;
Got_Data : Boolean;
use type SOCI.DB_Integer;
begin
SQL.Execute ("create table soci_test (" &
" id integer" &
")");
SQL.Execute ("insert into soci_test (id) values (1)");
SQL.Execute ("insert into soci_test (id) values (2)");
SQL.Execute ("insert into soci_test (id) values (3)");
SQL.Execute ("insert into soci_test (id) values (4)");
SQL.Execute ("insert into soci_test (id) values (5)");
SQL.Execute ("insert into soci_test (id) values (6)");
SQL.Execute ("insert into soci_test (id) values (7)");
SQL.Execute ("insert into soci_test (id) values (8)");
SQL.Execute ("insert into soci_test (id) values (9)");
SQL.Execute ("insert into soci_test (id) values (10)");
Pos_Id := St.Into_Vector_Integer;
St.Into_Vectors_Resize (4); -- batch of 4 elements
St.Prepare ("select id from soci_test order by id");
St.Execute;
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Vectors_Size = 4);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 0) = 1);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 1) = 2);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 2) = 3);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 3) = 4);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Vectors_Size = 4);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 0) = 5);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 1) = 6);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 2) = 7);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 3) = 8);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Vectors_Size = 2);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 0) = 9);
pragma Assert (St.Get_Into_Vector_Integer (Pos_Id, 1) = 10);
Got_Data := St.Fetch;
pragma Assert (not Got_Data);
pragma Assert (St.Get_Into_Vectors_Size = 0);
SQL.Execute ("drop table soci_test");
end;
end Test_8;
procedure Test_9 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing data types and use elements");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
use type SOCI.DB_Integer;
use type SOCI.DB_Long_Long_Integer;
use type SOCI.DB_Long_Float;
begin
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
begin
St.Use_String ("value");
St.Set_Use_String ("value", "123");
Pos := St.Into_Integer;
St.Prepare ("select cast(:value as integer)");
St.Execute (True);
pragma Assert (St.Get_Into_Integer (Pos) = 123);
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
begin
St.Use_Integer ("value");
St.Set_Use_Integer ("value", 123);
Pos := St.Into_String;
St.Prepare ("select cast(:value as text)");
St.Execute (True);
pragma Assert (St.Get_Into_String (Pos) = "123");
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
begin
St.Use_Long_Long_Integer ("value");
St.Set_Use_Long_Long_Integer ("value", 10_000_000_000);
Pos := St.Into_String;
St.Prepare ("select cast(:value as text)");
St.Execute (True);
pragma Assert (St.Get_Into_String (Pos) = "10000000000");
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
begin
St.Use_Long_Float ("value");
St.Set_Use_Long_Float ("value", SOCI.DB_Long_Float (5.625));
Pos := St.Into_String;
St.Prepare ("select cast(:value as text)");
St.Execute (True);
pragma Assert (St.Get_Into_String (Pos) = "5.625");
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
begin
St.Use_Time ("value");
St.Set_Use_Time ("value", Ada.Calendar.Time_Of
(2008, 7, 1, Ada.Calendar.Day_Duration (3723)));
Pos := St.Into_String;
St.Prepare ("select cast(:value as text)");
St.Execute (True);
pragma Assert (St.Get_Into_String (Pos) = "2008-07-01 01:02:03");
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos : SOCI.Into_Position;
use type SOCI.Data_State;
begin
St.Use_Integer ("value");
St.Set_Use_State ("value", SOCI.Data_Null);
Pos := St.Into_Integer;
St.Prepare ("select cast(:value as integer)");
St.Execute (True);
pragma Assert (St.Get_Into_State (Pos) = SOCI.Data_Null);
end;
end;
end Test_9;
procedure Test_10 (Connection_String : in String) is
begin
Ada.Text_IO.Put_Line ("testing vector use elements and row traversal with single into elements");
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
Time_1 : constant Ada.Calendar.Time := Ada.Calendar.Time_Of
(2008, 7, 1, Ada.Calendar.Day_Duration (1));
Time_2 : constant Ada.Calendar.Time := Ada.Calendar.Time_Of
(2008, 7, 2, Ada.Calendar.Day_Duration (2));
Time_3 : constant Ada.Calendar.Time := Ada.Calendar.Time_Of
(2008, 7, 3, Ada.Calendar.Day_Duration (3));
Time_4 : constant Ada.Calendar.Time := Ada.Calendar.Time_Of
(2008, 7, 4, Ada.Calendar.Day_Duration (4));
Time_5 : constant Ada.Calendar.Time := Ada.Calendar.Time_Of
(2008, 7, 5, Ada.Calendar.Day_Duration (5));
begin
SQL.Execute ("create table soci_test (" &
" id integer," &
" str varchar (20)," &
" ll bigint," &
" lf double precision," &
" tm timestamp" &
")");
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
begin
St.Use_Vector_Integer ("id");
St.Use_Vector_String ("str");
St.Use_Vector_Long_Long_Integer ("ll");
St.Use_Vector_Long_Float ("lf");
St.Use_Vector_Time ("tm");
St.Use_Vectors_Resize (6);
St.Set_Use_Vector_Integer ("id", 0, 1);
St.Set_Use_Vector_Integer ("id", 1, 2);
St.Set_Use_Vector_Integer ("id", 2, 3);
St.Set_Use_Vector_Integer ("id", 3, 4);
St.Set_Use_Vector_Integer ("id", 4, 5);
St.Set_Use_Vector_Integer ("id", 5, 6);
St.Set_Use_Vector_String ("str", 0, "abc");
St.Set_Use_Vector_String ("str", 1, "def");
St.Set_Use_Vector_String ("str", 2, "ghi");
St.Set_Use_Vector_String ("str", 3, "jklm");
St.Set_Use_Vector_String ("str", 4, "no");
St.Set_Use_Vector_State ("str", 5, SOCI.Data_Null);
St.Set_Use_Vector_Long_Long_Integer ("ll", 0, 10_000_000_000);
St.Set_Use_Vector_Long_Long_Integer ("ll", 1, 10_000_000_001);
St.Set_Use_Vector_Long_Long_Integer ("ll", 2, 10_000_000_002);
St.Set_Use_Vector_Long_Long_Integer ("ll", 3, 10_000_000_003);
St.Set_Use_Vector_Long_Long_Integer ("ll", 4, 10_000_000_004);
St.Set_Use_Vector_State ("ll", 5, SOCI.Data_Null);
St.Set_Use_Vector_Long_Float ("lf", 0, SOCI.DB_Long_Float (0.0));
St.Set_Use_Vector_Long_Float ("lf", 1, SOCI.DB_Long_Float (0.125));
St.Set_Use_Vector_Long_Float ("lf", 2, SOCI.DB_Long_Float (0.25));
St.Set_Use_Vector_Long_Float ("lf", 3, SOCI.DB_Long_Float (0.5));
St.Set_Use_Vector_Long_Float ("lf", 4, SOCI.DB_Long_Float (0.625));
St.Set_Use_Vector_State ("lf", 5, SOCI.Data_Null);
St.Set_Use_Vector_Time ("tm", 0, Time_1);
St.Set_Use_Vector_Time ("tm", 1, Time_2);
St.Set_Use_Vector_Time ("tm", 2, Time_3);
St.Set_Use_Vector_Time ("tm", 3, Time_4);
St.Set_Use_Vector_Time ("tm", 4, Time_5);
St.Set_Use_Vector_State ("tm", 5, SOCI.Data_Null);
St.Prepare ("insert into soci_test (id, str, ll, lf, tm)" &
" values (:id, :str, :ll, :lf, :tm)");
St.Execute (True);
end;
declare
St : SOCI.Statement := SOCI.Make_Statement (SQL);
Pos_Id : SOCI.Into_Position;
Pos_Str : SOCI.Into_Position;
Pos_LL : SOCI.Into_Position;
Pos_LF : SOCI.Into_Position;
Pos_TM : SOCI.Into_Position;
Got_Data : Boolean;
use type Ada.Calendar.Time;
use type SOCI.Data_State;
use type SOCI.DB_Integer;
use type SOCI.DB_Long_Long_Integer;
use type SOCI.DB_Long_Float;
begin
Pos_Id := St.Into_Integer;
Pos_Str := St.Into_String;
Pos_LL := St.Into_Long_Long_Integer;
Pos_LF := St.Into_Long_Float;
Pos_TM := St.Into_Time;
St.Prepare ("select id, str, ll, lf, tm from soci_test order by id");
St.Execute;
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Integer (Pos_Id) = 1);
pragma Assert (St.Get_Into_String (Pos_Str) = "abc");
pragma Assert (St.Get_Into_Long_Long_Integer (Pos_LL) = 10_000_000_000);
pragma Assert (St.Get_Into_Long_Float (Pos_LF) = SOCI.DB_Long_Float (0.0));
pragma Assert (St.Get_Into_Time (Pos_TM) = Time_1);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Integer (Pos_Id) = 2);
pragma Assert (St.Get_Into_String (Pos_Str) = "def");
pragma Assert (St.Get_Into_Long_Long_Integer (Pos_LL) = 10_000_000_001);
pragma Assert (St.Get_Into_Long_Float (Pos_LF) = SOCI.DB_Long_Float (0.125));
pragma Assert (St.Get_Into_Time (Pos_TM) = Time_2);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Integer (Pos_Id) = 3);
pragma Assert (St.Get_Into_String (Pos_Str) = "ghi");
pragma Assert (St.Get_Into_Long_Long_Integer (Pos_LL) = 10_000_000_002);
pragma Assert (St.Get_Into_Long_Float (Pos_LF) = SOCI.DB_Long_Float (0.25));
pragma Assert (St.Get_Into_Time (Pos_TM) = Time_3);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Integer (Pos_Id) = 4);
pragma Assert (St.Get_Into_String (Pos_Str) = "jklm");
pragma Assert (St.Get_Into_Long_Long_Integer (Pos_LL) = 10_000_000_003);
pragma Assert (St.Get_Into_Long_Float (Pos_LF) = SOCI.DB_Long_Float (0.5));
pragma Assert (St.Get_Into_Time (Pos_TM) = Time_4);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_Integer (Pos_Id) = 5);
pragma Assert (St.Get_Into_String (Pos_Str) = "no");
pragma Assert (St.Get_Into_Long_Long_Integer (Pos_LL) = 10_000_000_004);
pragma Assert (St.Get_Into_Long_Float (Pos_LF) = SOCI.DB_Long_Float (0.625));
pragma Assert (St.Get_Into_Time (Pos_TM) = Time_5);
Got_Data := St.Fetch;
pragma Assert (Got_Data);
pragma Assert (St.Get_Into_State (Pos_Id) = SOCI.Data_Not_Null);
pragma Assert (St.Get_Into_Integer (Pos_Id) = 6);
pragma Assert (St.Get_Into_State (Pos_Str) = SOCI.Data_Null);
pragma Assert (St.Get_Into_State (Pos_LL) = SOCI.Data_Null);
pragma Assert (St.Get_Into_State (Pos_LF) = SOCI.Data_Null);
pragma Assert (St.Get_Into_State (Pos_TM) = SOCI.Data_Null);
Got_Data := St.Fetch;
pragma Assert (not Got_Data);
end;
SQL.Execute ("drop table soci_test");
end;
end Test_10;
procedure Test_11 (Connection_String : in String) is
-- test parameters:
Pool_Size : constant := 3;
Number_Of_Tasks : constant := 10;
Iterations_Per_Task : constant := 1000;
type Small_Integer is mod 20;
package My_Random is new Ada.Numerics.Discrete_Random (Small_Integer);
Rand : My_Random.Generator;
Pool : SOCI.Connection_Pool (Pool_Size);
begin
Ada.Text_IO.Put_Line ("testing connection pool");
My_Random.Reset (Rand);
for I in 1 .. Pool_Size loop
Pool.Open (I, Connection_String);
end loop;
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
begin
SQL.Execute ("create table soci_test ( id integer )");
end;
declare
task type Worker;
task body Worker is
begin
for I in 1 .. Iterations_Per_Task loop
declare
SQL : SOCI.Session;
V : Small_Integer;
begin
Pool.Lease (SQL);
V := My_Random.Random (Rand);
SQL.Execute ("insert into soci_test (id) values (" &
Small_Integer'Image (V) & ")");
end;
end loop;
exception
when others =>
Ada.Text_IO.Put_Line ("An exception occured in the worker task.");
end Worker;
W : array (1 .. Number_Of_Tasks) of Worker;
begin
Ada.Text_IO.Put_Line ("--> waiting for the tasks to complete (might take a while)");
end;
declare
SQL : SOCI.Session := SOCI.Make_Session (Connection_String);
begin
SQL.Execute ("drop table soci_test");
end;
end Test_11;
begin
if Ada.Command_Line.Argument_Count /= 1 then
Ada.Text_IO.Put_Line ("Expecting one argument: connection string");
return;
end if;
declare
Connection_String : String := Ada.Command_Line.Argument (1);
begin
Ada.Text_IO.Put_Line ("testing with " & Connection_String);
SOCI.PostgreSQL.Register_Factory_PostgreSQL;
Test_1 (Connection_String);
Test_2 (Connection_String);
Test_3 (Connection_String);
Test_4 (Connection_String);
Test_5 (Connection_String);
Test_6 (Connection_String);
Test_7 (Connection_String);
Test_8 (Connection_String);
Test_9 (Connection_String);
Test_10 (Connection_String);
Test_11 (Connection_String);
end;
end PostgreSQL_Test;
|
caqg/linux-home | Ada | 1,803 | adb | -- Abstract :
--
-- See spec.
--
-- Copyright (C) 2017 - 2019 All Rights Reserved.
--
-- This program is free software; you can redistribute it and/or
-- modify it under terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 3, or (at
-- your option) any later version. This program is distributed in the
-- hope that it will be useful, but WITHOUT ANY WARRANTY; without even
-- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
-- PURPOSE. See the GNU General Public License for more details. You
-- should have received a copy of the GNU General Public License
-- distributed with this program; see file COPYING. If not, write to
-- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston,
-- MA 02110-1335, USA.
pragma License (GPL);
with Ada.Command_Line;
with Ada.Directories;
with Run_Wisi_Common_Parse;
with WisiToken.Text_IO_Trace;
procedure Gen_Run_Wisi_LR_Text_Rep_Parse
is
Trace : aliased WisiToken.Text_IO_Trace.Trace (Descriptor'Unrestricted_Access);
Parser : WisiToken.Parse.LR.Parser.Parser;
Parse_Data : aliased Parse_Data_Type (Parser.Line_Begin_Token'Access);
begin
-- Create parser first so Put_Usage has defaults from Parser.Table,
-- and Get_CL_Params can override them.
declare
use Ada.Command_Line;
begin
-- text_rep file is in same directory as exectuable.
Create_Parser
(Parser, Language_Fixes, Language_Matching_Begin_Tokens, Language_String_ID_Set,
Trace'Unrestricted_Access, Parse_Data'Unchecked_Access,
Ada.Directories.Containing_Directory (Command_Name) & "/" & Text_Rep_File_Name);
Run_Wisi_Common_Parse.Parse_File (Parser, Parse_Data, Descriptor);
end;
end Gen_Run_Wisi_LR_Text_Rep_Parse;
|
reznikmm/matreshka | Ada | 3,945 | 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.Smil_Dur_Attributes;
package Matreshka.ODF_Smil.Dur_Attributes is
type Smil_Dur_Attribute_Node is
new Matreshka.ODF_Smil.Abstract_Smil_Attribute_Node
and ODF.DOM.Smil_Dur_Attributes.ODF_Smil_Dur_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Smil_Dur_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Smil_Dur_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Smil.Dur_Attributes;
|
xeenta/learning-ada | Ada | 1,421 | adb | with Ada.Text_IO; use Ada.Text_IO;
procedure TicTac is
task Count is
entry Start;
entry Stop;
entry Reset;
end Count;
task body Count is
Counter : Natural := 0;
Is_Counting : Boolean := FALSE;
begin
loop
select
when Is_Counting =>
accept Stop do
Is_Counting := FALSE;
end Stop;
-- accept Start do
-- Put_Line ("What?");
-- end Start;
or
when not Is_Counting =>
accept Start do
Is_Counting := TRUE;
end Start;
or
accept Reset do
Put_Line ("RESET");
Counter := 0;
end Reset;
else
if Is_Counting then
Put_Line (Integer'Image (Counter) & ", counting...");
delay 1.0;
Counter := Counter + 1;
end if;
end select;
end loop;
end Count;
begin
Count.Start;
delay 5.5;
Put_Line ("5.5!");
delay 1.5;
Count.Stop;
Put_Line ("Stop");
delay 3.0;
Count.Start;
Put_Line ("Start");
delay 2.5;
Count.Reset;
delay 1.5;
Put_Line ("Start again while counting...?");
Count.Start; -- hang here!
-- never reached
Put_Line ("Restarted?");
delay 3.0;
Put_Line ("End of Main");
end TicTac;
|
stcarrez/ada-util | Ada | 2,286 | ads | -- Generated by utildgen.c from system includes
with Interfaces.C;
package Util.Systems.Types is
subtype dev_t is Long_Long_Integer;
subtype ino_t is Interfaces.C.unsigned;
subtype off_t is Interfaces.C.int;
subtype blksize_t is Interfaces.C.int;
subtype blkcnt_t is Interfaces.C.int;
subtype uid_t is Interfaces.C.unsigned;
subtype gid_t is Interfaces.C.unsigned;
subtype nlink_t is Interfaces.C.unsigned;
subtype mode_t is Interfaces.C.unsigned;
S_IFMT : constant mode_t := 8#00170000#;
S_IFDIR : constant mode_t := 8#00040000#;
S_IFCHR : constant mode_t := 8#00020000#;
S_IFBLK : constant mode_t := 8#00060000#;
S_IFREG : constant mode_t := 8#00100000#;
S_IFIFO : constant mode_t := 8#00010000#;
S_IFLNK : constant mode_t := 8#00120000#;
S_IFSOCK : constant mode_t := 8#00140000#;
S_ISUID : constant mode_t := 8#00004000#;
S_ISGID : constant mode_t := 8#00002000#;
S_IREAD : constant mode_t := 8#00000400#;
S_IWRITE : constant mode_t := 8#00000200#;
S_IEXEC : constant mode_t := 8#00000100#;
type File_Type is new Interfaces.C.int;
subtype Time_Type is Interfaces.C.unsigned;
type Timespec is record
tv_sec : Time_Type;
tv_nsec : Interfaces.C.int;
end record;
pragma Convention (C_Pass_By_Copy, Timespec);
type Seek_Mode is (SEEK_SET, SEEK_CUR, SEEK_END);
for Seek_Mode use (SEEK_SET => 0, SEEK_CUR => 1, SEEK_END => 2);
STAT_NAME : constant String := "stat";
FSTAT_NAME : constant String := "fstat";
LSTAT_NAME : constant String := "lstat";
type Stat_Type is record
st_dev : dev_t;
pad1 : Interfaces.C.unsigned_short;
st_ino : ino_t;
st_mode : mode_t;
st_nlink : nlink_t;
st_uid : uid_t;
st_gid : gid_t;
st_rdev : dev_t;
pad2 : Interfaces.C.unsigned_short;
st_size : off_t;
st_blksize : blksize_t;
st_blocks : blkcnt_t;
pad3_1 : Interfaces.C.unsigned_long;
st_atim : Timespec;
st_mtim : Timespec;
st_ctim : Timespec;
pad3 : Interfaces.C.unsigned_long;
pad4 : Interfaces.C.unsigned_long;
end record;
pragma Convention (C_Pass_By_Copy, Stat_Type);
end Util.Systems.Types;
|
AdaCore/libadalang | Ada | 110 | ads | generic
with function F return Integer;
package Pkg_G is
function Baz return Integer is (F);
end Pkg_G;
|
AdaCore/libadalang | Ada | 56 | ads | package Pkg_A.Pkg_B is
I : Integer;
end Pkg_A.Pkg_B;
|
zhmu/ananas | Ada | 322 | adb | -- { dg-do compile }
with System.Storage_Elements; use System.Storage_Elements;
procedure Address_Conv is
subtype My_Address is System.Address;
type Rec is record
A : My_Address;
end record;
Addr : constant My_Address := To_Address (16#FACEFACE#);
R : constant Rec := (A => Addr);
begin
null;
end;
|
sparre/Command-Line-Parser-Generator | Ada | 766 | adb | -- Copyright: JSA Research & Innovation <[email protected]>
-- License: Beer Ware
pragma License (Unrestricted);
package body Command_Line_Parser_Generator.Procedure_Declaration is
function Image (Item : in Instance) return Wide_String is
begin
return
" procedure " & (+Item.Name) & Item.Formal_Parameters.Image & ";";
end Image;
function Number_Of_Optional_Parameters (Item : in Instance) return Natural
is
Result : Natural := 0;
begin
for Parameter of Item.Formal_Parameters loop
if Parameter.Has_Default_Value then
Result := Result + 1;
end if;
end loop;
return Result;
end Number_Of_Optional_Parameters;
end Command_Line_Parser_Generator.Procedure_Declaration;
|
stcarrez/ada-servlet | Ada | 2,578 | adb | -----------------------------------------------------------------------
-- servlet-parts-mockup -- Mockup servlet parts (ie, local files)
-- 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 Ada.Directories;
package body Servlet.Parts.Mockup is
-- ------------------------------
-- Get the size of the mime part.
-- ------------------------------
overriding
function Get_Size (Data : in Part) return Natural is
begin
return Natural (Ada.Directories.Size (To_String (Data.Path)));
end Get_Size;
-- ------------------------------
-- Get the content name submitted in the mime part.
-- ------------------------------
overriding
function Get_Name (Data : in Part) return String is
begin
return To_String (Data.Name);
end Get_Name;
-- ------------------------------
-- Get the path of the local file which contains the part.
-- ------------------------------
overriding
function Get_Local_Filename (Data : in Part) return String is
begin
return To_String (Data.Path);
end Get_Local_Filename;
-- ------------------------------
-- Get the content type of the part.
-- ------------------------------
overriding
function Get_Content_Type (Data : in Part) return String is
begin
return To_String (Data.Content_Type);
end Get_Content_Type;
-- ------------------------------
-- Create the part content by using a local file path.
-- ------------------------------
procedure Create (Into : out Part;
Name : in String;
Path : in String;
Content_Type : in String) is
begin
Into.Name := To_Unbounded_String (Name);
Into.Path := To_Unbounded_String (Path);
Into.Content_Type := To_Unbounded_String (Content_Type);
end Create;
end Servlet.Parts.Mockup;
|
reznikmm/matreshka | Ada | 6,740 | 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_Form.Item_Elements is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Form_Item_Element_Node is
begin
return Self : Form_Item_Element_Node do
Matreshka.ODF_Form.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Form_Prefix);
end return;
end Create;
----------------
-- Enter_Node --
----------------
overriding procedure Enter_Node
(Self : not null access Form_Item_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_Form_Item
(ODF.DOM.Form_Item_Elements.ODF_Form_Item_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 Form_Item_Element_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Item_Element;
end Get_Local_Name;
----------------
-- Leave_Node --
----------------
overriding procedure Leave_Node
(Self : not null access Form_Item_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_Form_Item
(ODF.DOM.Form_Item_Elements.ODF_Form_Item_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 Form_Item_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_Form_Item
(Visitor,
ODF.DOM.Form_Item_Elements.ODF_Form_Item_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.Form_URI,
Matreshka.ODF_String_Constants.Item_Element,
Form_Item_Element_Node'Tag);
end Matreshka.ODF_Form.Item_Elements;
|
AdaCore/libadalang | Ada | 364 | adb | procedure Test is
function "-" (X : Integer) return Integer renames Standard."+";
function "+" (X : Integer) return Integer is
begin
return X;
end "+";
function "+" (X : Float) return Float is
begin
return X;
end "+";
B : Boolean;
begin
B := (+2) ** (-2) < "-" (-1); -- 2**2 < 1
pragma Test_Statement;
end Test;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.