Several minor ANSI C fixes.
authorMartin Baulig <baulig@suse.de>
Fri, 29 Sep 2000 13:37:01 +0000 (13:37 +0000)
committerMartin Baulig <martin@src.gnome.org>
Fri, 29 Sep 2000 13:37:01 +0000 (13:37 +0000)
2000-09-29  Martin Baulig  <baulig@suse.de>

Several minor ANSI C fixes.

Added missing casts:
* gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
* gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
(g_idle_add_full): `(gpointer) function' in call to g_source_add().
* gstrfuncs.c (g_strdown): `s = (guchar *) string' and
`return (gchar *) string'.
(g_strup): Likewise.
(g_strchug): `start = (guchar*) string' in 1st for() argument;
`strlen ((gchar *) start)' in call to g_memmove().
* gstring.c (g_string_down): `s = (guchar *) string->str'.
(g_string_up): Likewise.
* gthreadpool.c (stop_this_thread_marker):
`(gpointer) &g_thread_pool_new'.
* gunidecomp.h (decomp_table[]): Cast all the strings to
`unsigned char *'.

Put text following #endif into comments:
* gmain.c: here.

20 files changed:
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdate.c
glib/gdate.c
glib/gmain.c
glib/gstrfuncs.c
glib/gstring.c
glib/gthreadpool.c
glib/gunidecomp.h
gmain.c
gstrfuncs.c
gstring.c
gthreadpool.c
gunidecomp.h

index b3b2632..2b0c060 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
index b3b2632..2b0c060 100644 (file)
@@ -1,3 +1,26 @@
+2000-09-29  Martin Baulig  <baulig@suse.de>
+
+       Several minor ANSI C fixes.
+
+       Added missing casts:
+       * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
+       * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
+       (g_idle_add_full): `(gpointer) function' in call to g_source_add().
+       * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
+       `return (gchar *) string'.
+       (g_strup): Likewise.
+       (g_strchug): `start = (guchar*) string' in 1st for() argument;
+       `strlen ((gchar *) start)' in call to g_memmove().
+       * gstring.c (g_string_down): `s = (guchar *) string->str'.
+       (g_string_up): Likewise.
+       * gthreadpool.c (stop_this_thread_marker):
+       `(gpointer) &g_thread_pool_new'.
+       * gunidecomp.h (decomp_table[]): Cast all the strings to
+       `unsigned char *'.
+
+       Put text following #endif into comments:
+       * gmain.c: here.
+
 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: Added errorcheck mutexes. These are
diff --git a/gdate.c b/gdate.c
index d287fb4..ac59927 100644 (file)
--- a/gdate.c
+++ b/gdate.c
@@ -465,7 +465,7 @@ g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
    */
   num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
   
-  s = str;
+  s = (const guchar *) str;
   pt->num_ints = 0;
   while (*s && pt->num_ints < 4) 
     {
index d287fb4..ac59927 100644 (file)
@@ -465,7 +465,7 @@ g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
    */
   num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
   
-  s = str;
+  s = (const guchar *) str;
   pt->num_ints = 0;
   while (*s && pt->num_ints < 4) 
     {
index 53bb219..ad03a35 100644 (file)
@@ -744,7 +744,7 @@ g_main_iterate (gboolean block,
       G_UNLOCK (main_loop);
       return FALSE;
     }
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
   
   /* If recursing, finish up current dispatch, before starting over */
   if (pending_dispatches)
@@ -1403,7 +1403,7 @@ g_idle_dispatch (gpointer source_data,
                 GTimeVal *dispatch_time,
                 gpointer user_data)
 {
-  GSourceFunc func = source_data;
+  GSourceFunc func = (GSourceFunc) source_data;
 
   return func (user_data);
 }
@@ -1416,7 +1416,7 @@ g_idle_add_full (gint           priority,
 {
   g_return_val_if_fail (function != NULL, 0);
 
-  return g_source_add (priority, FALSE, &idle_funcs, function, data, notify);
+  return g_source_add (priority, FALSE, &idle_funcs, (gpointer) function, data, notify);
 }
 
 guint 
index 21dc259..032343a 100644 (file)
@@ -933,7 +933,7 @@ g_strdown (gchar *string)
   
   g_return_val_if_fail (string != NULL, NULL);
   
-  s = string;
+  s = (guchar *) string;
   
   while (*s)
     {
@@ -941,7 +941,7 @@ g_strdown (gchar *string)
       s++;
     }
   
-  return string;
+  return (gchar *) string;
 }
 
 gchar*
@@ -951,7 +951,7 @@ g_strup (gchar *string)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  s = string;
+  s = (guchar *) string;
 
   while (*s)
     {
@@ -959,7 +959,7 @@ g_strup (gchar *string)
       s++;
     }
 
-  return string;
+  return (gchar *) string;
 }
 
 gchar*
@@ -1455,10 +1455,10 @@ g_strchug (gchar *string)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  for (start = string; *start && isspace (*start); start++)
+  for (start = (guchar*) string; *start && isspace (*start); start++)
     ;
 
-  g_memmove (string, start, strlen( start) + 1);
+  g_memmove (string, start, strlen ((gchar *) start) + 1);
 
   return string;
 }
index 70a7666..cd5f13b 100644 (file)
@@ -512,7 +512,7 @@ g_string_down (GString *fstring)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  s = string->str;
+  s = (guchar *) string->str;
 
   while (n)
     {
@@ -533,7 +533,7 @@ g_string_up (GString *fstring)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  s = string->str;
+  s = (guchar *) string->str;
 
   while (n)
     {
index b281e7c..d1a4d2c 100644 (file)
@@ -42,7 +42,7 @@ struct _GRealThreadPool
 /* The following is just an address to mark the stop order for a
  * thread, it could be any address (as long, as it isn;t a valid
  * GThreadPool address) */
-static const gpointer stop_this_thread_marker = &g_thread_pool_new;
+static const gpointer stop_this_thread_marker = (gpointer) &g_thread_pool_new;
 
 /* Here all unused threads are waiting, depending on their priority */
 static GAsyncQueue *unused_thread_queue[G_THREAD_PRIORITY_URGENT + 1];
index fb4774f..27186ed 100644 (file)
@@ -484,1272 +484,1272 @@ typedef struct
 
 static decomposition decomp_table[] =
 {
-  { 0x00c0, "\x00\x41\x03\x00\0" },
-  { 0x00c1, "\x00\x41\x03\x01\0" },
-  { 0x00c2, "\x00\x41\x03\x02\0" },
-  { 0x00c3, "\x00\x41\x03\x03\0" },
-  { 0x00c4, "\x00\x41\x03\x08\0" },
-  { 0x00c5, "\x00\x41\x03\x0a\0" },
-  { 0x00c7, "\x00\x43\x03\x27\0" },
-  { 0x00c8, "\x00\x45\x03\x00\0" },
-  { 0x00c9, "\x00\x45\x03\x01\0" },
-  { 0x00ca, "\x00\x45\x03\x02\0" },
-  { 0x00cb, "\x00\x45\x03\x08\0" },
-  { 0x00cc, "\x00\x49\x03\x00\0" },
-  { 0x00cd, "\x00\x49\x03\x01\0" },
-  { 0x00ce, "\x00\x49\x03\x02\0" },
-  { 0x00cf, "\x00\x49\x03\x08\0" },
-  { 0x00d1, "\x00\x4e\x03\x03\0" },
-  { 0x00d2, "\x00\x4f\x03\x00\0" },
-  { 0x00d3, "\x00\x4f\x03\x01\0" },
-  { 0x00d4, "\x00\x4f\x03\x02\0" },
-  { 0x00d5, "\x00\x4f\x03\x03\0" },
-  { 0x00d6, "\x00\x4f\x03\x08\0" },
-  { 0x00d9, "\x00\x55\x03\x00\0" },
-  { 0x00da, "\x00\x55\x03\x01\0" },
-  { 0x00db, "\x00\x55\x03\x02\0" },
-  { 0x00dc, "\x00\x55\x03\x08\0" },
-  { 0x00dd, "\x00\x59\x03\x01\0" },
-  { 0x00e0, "\x00\x61\x03\x00\0" },
-  { 0x00e1, "\x00\x61\x03\x01\0" },
-  { 0x00e2, "\x00\x61\x03\x02\0" },
-  { 0x00e3, "\x00\x61\x03\x03\0" },
-  { 0x00e4, "\x00\x61\x03\x08\0" },
-  { 0x00e5, "\x00\x61\x03\x0a\0" },
-  { 0x00e7, "\x00\x63\x03\x27\0" },
-  { 0x00e8, "\x00\x65\x03\x00\0" },
-  { 0x00e9, "\x00\x65\x03\x01\0" },
-  { 0x00ea, "\x00\x65\x03\x02\0" },
-  { 0x00eb, "\x00\x65\x03\x08\0" },
-  { 0x00ec, "\x00\x69\x03\x00\0" },
-  { 0x00ed, "\x00\x69\x03\x01\0" },
-  { 0x00ee, "\x00\x69\x03\x02\0" },
-  { 0x00ef, "\x00\x69\x03\x08\0" },
-  { 0x00f1, "\x00\x6e\x03\x03\0" },
-  { 0x00f2, "\x00\x6f\x03\x00\0" },
-  { 0x00f3, "\x00\x6f\x03\x01\0" },
-  { 0x00f4, "\x00\x6f\x03\x02\0" },
-  { 0x00f5, "\x00\x6f\x03\x03\0" },
-  { 0x00f6, "\x00\x6f\x03\x08\0" },
-  { 0x00f9, "\x00\x75\x03\x00\0" },
-  { 0x00fa, "\x00\x75\x03\x01\0" },
-  { 0x00fb, "\x00\x75\x03\x02\0" },
-  { 0x00fc, "\x00\x75\x03\x08\0" },
-  { 0x00fd, "\x00\x79\x03\x01\0" },
-  { 0x00ff, "\x00\x79\x03\x08\0" },
-  { 0x0100, "\x00\x41\x03\x04\0" },
-  { 0x0101, "\x00\x61\x03\x04\0" },
-  { 0x0102, "\x00\x41\x03\x06\0" },
-  { 0x0103, "\x00\x61\x03\x06\0" },
-  { 0x0104, "\x00\x41\x03\x28\0" },
-  { 0x0105, "\x00\x61\x03\x28\0" },
-  { 0x0106, "\x00\x43\x03\x01\0" },
-  { 0x0107, "\x00\x63\x03\x01\0" },
-  { 0x0108, "\x00\x43\x03\x02\0" },
-  { 0x0109, "\x00\x63\x03\x02\0" },
-  { 0x010a, "\x00\x43\x03\x07\0" },
-  { 0x010b, "\x00\x63\x03\x07\0" },
-  { 0x010c, "\x00\x43\x03\x0c\0" },
-  { 0x010d, "\x00\x63\x03\x0c\0" },
-  { 0x010e, "\x00\x44\x03\x0c\0" },
-  { 0x010f, "\x00\x64\x03\x0c\0" },
-  { 0x0112, "\x00\x45\x03\x04\0" },
-  { 0x0113, "\x00\x65\x03\x04\0" },
-  { 0x0114, "\x00\x45\x03\x06\0" },
-  { 0x0115, "\x00\x65\x03\x06\0" },
-  { 0x0116, "\x00\x45\x03\x07\0" },
-  { 0x0117, "\x00\x65\x03\x07\0" },
-  { 0x0118, "\x00\x45\x03\x28\0" },
-  { 0x0119, "\x00\x65\x03\x28\0" },
-  { 0x011a, "\x00\x45\x03\x0c\0" },
-  { 0x011b, "\x00\x65\x03\x0c\0" },
-  { 0x011c, "\x00\x47\x03\x02\0" },
-  { 0x011d, "\x00\x67\x03\x02\0" },
-  { 0x011e, "\x00\x47\x03\x06\0" },
-  { 0x011f, "\x00\x67\x03\x06\0" },
-  { 0x0120, "\x00\x47\x03\x07\0" },
-  { 0x0121, "\x00\x67\x03\x07\0" },
-  { 0x0122, "\x00\x47\x03\x27\0" },
-  { 0x0123, "\x00\x67\x03\x27\0" },
-  { 0x0124, "\x00\x48\x03\x02\0" },
-  { 0x0125, "\x00\x68\x03\x02\0" },
-  { 0x0128, "\x00\x49\x03\x03\0" },
-  { 0x0129, "\x00\x69\x03\x03\0" },
-  { 0x012a, "\x00\x49\x03\x04\0" },
-  { 0x012b, "\x00\x69\x03\x04\0" },
-  { 0x012c, "\x00\x49\x03\x06\0" },
-  { 0x012d, "\x00\x69\x03\x06\0" },
-  { 0x012e, "\x00\x49\x03\x28\0" },
-  { 0x012f, "\x00\x69\x03\x28\0" },
-  { 0x0130, "\x00\x49\x03\x07\0" },
-  { 0x0134, "\x00\x4a\x03\x02\0" },
-  { 0x0135, "\x00\x6a\x03\x02\0" },
-  { 0x0136, "\x00\x4b\x03\x27\0" },
-  { 0x0137, "\x00\x6b\x03\x27\0" },
-  { 0x0139, "\x00\x4c\x03\x01\0" },
-  { 0x013a, "\x00\x6c\x03\x01\0" },
-  { 0x013b, "\x00\x4c\x03\x27\0" },
-  { 0x013c, "\x00\x6c\x03\x27\0" },
-  { 0x013d, "\x00\x4c\x03\x0c\0" },
-  { 0x013e, "\x00\x6c\x03\x0c\0" },
-  { 0x0143, "\x00\x4e\x03\x01\0" },
-  { 0x0144, "\x00\x6e\x03\x01\0" },
-  { 0x0145, "\x00\x4e\x03\x27\0" },
-  { 0x0146, "\x00\x6e\x03\x27\0" },
-  { 0x0147, "\x00\x4e\x03\x0c\0" },
-  { 0x0148, "\x00\x6e\x03\x0c\0" },
-  { 0x014c, "\x00\x4f\x03\x04\0" },
-  { 0x014d, "\x00\x6f\x03\x04\0" },
-  { 0x014e, "\x00\x4f\x03\x06\0" },
-  { 0x014f, "\x00\x6f\x03\x06\0" },
-  { 0x0150, "\x00\x4f\x03\x0b\0" },
-  { 0x0151, "\x00\x6f\x03\x0b\0" },
-  { 0x0154, "\x00\x52\x03\x01\0" },
-  { 0x0155, "\x00\x72\x03\x01\0" },
-  { 0x0156, "\x00\x52\x03\x27\0" },
-  { 0x0157, "\x00\x72\x03\x27\0" },
-  { 0x0158, "\x00\x52\x03\x0c\0" },
-  { 0x0159, "\x00\x72\x03\x0c\0" },
-  { 0x015a, "\x00\x53\x03\x01\0" },
-  { 0x015b, "\x00\x73\x03\x01\0" },
-  { 0x015c, "\x00\x53\x03\x02\0" },
-  { 0x015d, "\x00\x73\x03\x02\0" },
-  { 0x015e, "\x00\x53\x03\x27\0" },
-  { 0x015f, "\x00\x73\x03\x27\0" },
-  { 0x0160, "\x00\x53\x03\x0c\0" },
-  { 0x0161, "\x00\x73\x03\x0c\0" },
-  { 0x0162, "\x00\x54\x03\x27\0" },
-  { 0x0163, "\x00\x74\x03\x27\0" },
-  { 0x0164, "\x00\x54\x03\x0c\0" },
-  { 0x0165, "\x00\x74\x03\x0c\0" },
-  { 0x0168, "\x00\x55\x03\x03\0" },
-  { 0x0169, "\x00\x75\x03\x03\0" },
-  { 0x016a, "\x00\x55\x03\x04\0" },
-  { 0x016b, "\x00\x75\x03\x04\0" },
-  { 0x016c, "\x00\x55\x03\x06\0" },
-  { 0x016d, "\x00\x75\x03\x06\0" },
-  { 0x016e, "\x00\x55\x03\x0a\0" },
-  { 0x016f, "\x00\x75\x03\x0a\0" },
-  { 0x0170, "\x00\x55\x03\x0b\0" },
-  { 0x0171, "\x00\x75\x03\x0b\0" },
-  { 0x0172, "\x00\x55\x03\x28\0" },
-  { 0x0173, "\x00\x75\x03\x28\0" },
-  { 0x0174, "\x00\x57\x03\x02\0" },
-  { 0x0175, "\x00\x77\x03\x02\0" },
-  { 0x0176, "\x00\x59\x03\x02\0" },
-  { 0x0177, "\x00\x79\x03\x02\0" },
-  { 0x0178, "\x00\x59\x03\x08\0" },
-  { 0x0179, "\x00\x5a\x03\x01\0" },
-  { 0x017a, "\x00\x7a\x03\x01\0" },
-  { 0x017b, "\x00\x5a\x03\x07\0" },
-  { 0x017c, "\x00\x7a\x03\x07\0" },
-  { 0x017d, "\x00\x5a\x03\x0c\0" },
-  { 0x017e, "\x00\x7a\x03\x0c\0" },
-  { 0x01a0, "\x00\x4f\x03\x1b\0" },
-  { 0x01a1, "\x00\x6f\x03\x1b\0" },
-  { 0x01af, "\x00\x55\x03\x1b\0" },
-  { 0x01b0, "\x00\x75\x03\x1b\0" },
-  { 0x01cd, "\x00\x41\x03\x0c\0" },
-  { 0x01ce, "\x00\x61\x03\x0c\0" },
-  { 0x01cf, "\x00\x49\x03\x0c\0" },
-  { 0x01d0, "\x00\x69\x03\x0c\0" },
-  { 0x01d1, "\x00\x4f\x03\x0c\0" },
-  { 0x01d2, "\x00\x6f\x03\x0c\0" },
-  { 0x01d3, "\x00\x55\x03\x0c\0" },
-  { 0x01d4, "\x00\x75\x03\x0c\0" },
-  { 0x01d5, "\x00\x55\x03\x08\x03\x04\0" },
-  { 0x01d6, "\x00\x75\x03\x08\x03\x04\0" },
-  { 0x01d7, "\x00\x55\x03\x08\x03\x01\0" },
-  { 0x01d8, "\x00\x75\x03\x08\x03\x01\0" },
-  { 0x01d9, "\x00\x55\x03\x08\x03\x0c\0" },
-  { 0x01da, "\x00\x75\x03\x08\x03\x0c\0" },
-  { 0x01db, "\x00\x55\x03\x08\x03\x00\0" },
-  { 0x01dc, "\x00\x75\x03\x08\x03\x00\0" },
-  { 0x01de, "\x00\x41\x03\x08\x03\x04\0" },
-  { 0x01df, "\x00\x61\x03\x08\x03\x04\0" },
-  { 0x01e0, "\x00\x41\x03\x07\x03\x04\0" },
-  { 0x01e1, "\x00\x61\x03\x07\x03\x04\0" },
-  { 0x01e2, "\x00\xc6\x03\x04\0" },
-  { 0x01e3, "\x00\xe6\x03\x04\0" },
-  { 0x01e6, "\x00\x47\x03\x0c\0" },
-  { 0x01e7, "\x00\x67\x03\x0c\0" },
-  { 0x01e8, "\x00\x4b\x03\x0c\0" },
-  { 0x01e9, "\x00\x6b\x03\x0c\0" },
-  { 0x01ea, "\x00\x4f\x03\x28\0" },
-  { 0x01eb, "\x00\x6f\x03\x28\0" },
-  { 0x01ec, "\x00\x4f\x03\x28\x03\x04\0" },
-  { 0x01ed, "\x00\x6f\x03\x28\x03\x04\0" },
-  { 0x01ee, "\x01\xb7\x03\x0c\0" },
-  { 0x01ef, "\x02\x92\x03\x0c\0" },
-  { 0x01f0, "\x00\x6a\x03\x0c\0" },
-  { 0x01f4, "\x00\x47\x03\x01\0" },
-  { 0x01f5, "\x00\x67\x03\x01\0" },
-  { 0x01fa, "\x00\x41\x03\x0a\x03\x01\0" },
-  { 0x01fb, "\x00\x61\x03\x0a\x03\x01\0" },
-  { 0x01fc, "\x00\xc6\x03\x01\0" },
-  { 0x01fd, "\x00\xe6\x03\x01\0" },
-  { 0x01fe, "\x00\xd8\x03\x01\0" },
-  { 0x01ff, "\x00\xf8\x03\x01\0" },
-  { 0x0200, "\x00\x41\x03\x0f\0" },
-  { 0x0201, "\x00\x61\x03\x0f\0" },
-  { 0x0202, "\x00\x41\x03\x11\0" },
-  { 0x0203, "\x00\x61\x03\x11\0" },
-  { 0x0204, "\x00\x45\x03\x0f\0" },
-  { 0x0205, "\x00\x65\x03\x0f\0" },
-  { 0x0206, "\x00\x45\x03\x11\0" },
-  { 0x0207, "\x00\x65\x03\x11\0" },
-  { 0x0208, "\x00\x49\x03\x0f\0" },
-  { 0x0209, "\x00\x69\x03\x0f\0" },
-  { 0x020a, "\x00\x49\x03\x11\0" },
-  { 0x020b, "\x00\x69\x03\x11\0" },
-  { 0x020c, "\x00\x4f\x03\x0f\0" },
-  { 0x020d, "\x00\x6f\x03\x0f\0" },
-  { 0x020e, "\x00\x4f\x03\x11\0" },
-  { 0x020f, "\x00\x6f\x03\x11\0" },
-  { 0x0210, "\x00\x52\x03\x0f\0" },
-  { 0x0211, "\x00\x72\x03\x0f\0" },
-  { 0x0212, "\x00\x52\x03\x11\0" },
-  { 0x0213, "\x00\x72\x03\x11\0" },
-  { 0x0214, "\x00\x55\x03\x0f\0" },
-  { 0x0215, "\x00\x75\x03\x0f\0" },
-  { 0x0216, "\x00\x55\x03\x11\0" },
-  { 0x0217, "\x00\x75\x03\x11\0" },
-  { 0x0340, "\x03\x00\0" },
-  { 0x0341, "\x03\x01\0" },
-  { 0x0343, "\x03\x13\0" },
-  { 0x0344, "\x03\x08\x03\x01\0" },
-  { 0x0374, "\x02\xb9\0" },
-  { 0x037e, "\x00\x3b\0" },
-  { 0x0385, "\x00\xa8\x03\x01\0" },
-  { 0x0386, "\x03\x91\x03\x01\0" },
-  { 0x0387, "\x00\xb7\0" },
-  { 0x0388, "\x03\x95\x03\x01\0" },
-  { 0x0389, "\x03\x97\x03\x01\0" },
-  { 0x038a, "\x03\x99\x03\x01\0" },
-  { 0x038c, "\x03\x9f\x03\x01\0" },
-  { 0x038e, "\x03\xa5\x03\x01\0" },
-  { 0x038f, "\x03\xa9\x03\x01\0" },
-  { 0x0390, "\x03\xb9\x03\x08\x03\x01\0" },
-  { 0x03aa, "\x03\x99\x03\x08\0" },
-  { 0x03ab, "\x03\xa5\x03\x08\0" },
-  { 0x03ac, "\x03\xb1\x03\x01\0" },
-  { 0x03ad, "\x03\xb5\x03\x01\0" },
-  { 0x03ae, "\x03\xb7\x03\x01\0" },
-  { 0x03af, "\x03\xb9\x03\x01\0" },
-  { 0x03b0, "\x03\xc5\x03\x08\x03\x01\0" },
-  { 0x03ca, "\x03\xb9\x03\x08\0" },
-  { 0x03cb, "\x03\xc5\x03\x08\0" },
-  { 0x03cc, "\x03\xbf\x03\x01\0" },
-  { 0x03cd, "\x03\xc5\x03\x01\0" },
-  { 0x03ce, "\x03\xc9\x03\x01\0" },
-  { 0x03d3, "\x03\xd2\x03\x01\0" },
-  { 0x03d4, "\x03\xd2\x03\x08\0" },
-  { 0x0401, "\x04\x15\x03\x08\0" },
-  { 0x0403, "\x04\x13\x03\x01\0" },
-  { 0x0407, "\x04\x06\x03\x08\0" },
-  { 0x040c, "\x04\x1a\x03\x01\0" },
-  { 0x040e, "\x04\x23\x03\x06\0" },
-  { 0x0419, "\x04\x18\x03\x06\0" },
-  { 0x0439, "\x04\x38\x03\x06\0" },
-  { 0x0451, "\x04\x35\x03\x08\0" },
-  { 0x0453, "\x04\x33\x03\x01\0" },
-  { 0x0457, "\x04\x56\x03\x08\0" },
-  { 0x045c, "\x04\x3a\x03\x01\0" },
-  { 0x045e, "\x04\x43\x03\x06\0" },
-  { 0x0476, "\x04\x74\x03\x0f\0" },
-  { 0x0477, "\x04\x75\x03\x0f\0" },
-  { 0x04c1, "\x04\x16\x03\x06\0" },
-  { 0x04c2, "\x04\x36\x03\x06\0" },
-  { 0x04d0, "\x04\x10\x03\x06\0" },
-  { 0x04d1, "\x04\x30\x03\x06\0" },
-  { 0x04d2, "\x04\x10\x03\x08\0" },
-  { 0x04d3, "\x04\x30\x03\x08\0" },
-  { 0x04d6, "\x04\x15\x03\x06\0" },
-  { 0x04d7, "\x04\x35\x03\x06\0" },
-  { 0x04da, "\x04\xd8\x03\x08\0" },
-  { 0x04db, "\x04\xd9\x03\x08\0" },
-  { 0x04dc, "\x04\x16\x03\x08\0" },
-  { 0x04dd, "\x04\x36\x03\x08\0" },
-  { 0x04de, "\x04\x17\x03\x08\0" },
-  { 0x04df, "\x04\x37\x03\x08\0" },
-  { 0x04e2, "\x04\x18\x03\x04\0" },
-  { 0x04e3, "\x04\x38\x03\x04\0" },
-  { 0x04e4, "\x04\x18\x03\x08\0" },
-  { 0x04e5, "\x04\x38\x03\x08\0" },
-  { 0x04e6, "\x04\x1e\x03\x08\0" },
-  { 0x04e7, "\x04\x3e\x03\x08\0" },
-  { 0x04ea, "\x04\xe8\x03\x08\0" },
-  { 0x04eb, "\x04\xe9\x03\x08\0" },
-  { 0x04ee, "\x04\x23\x03\x04\0" },
-  { 0x04ef, "\x04\x43\x03\x04\0" },
-  { 0x04f0, "\x04\x23\x03\x08\0" },
-  { 0x04f1, "\x04\x43\x03\x08\0" },
-  { 0x04f2, "\x04\x23\x03\x0b\0" },
-  { 0x04f3, "\x04\x43\x03\x0b\0" },
-  { 0x04f4, "\x04\x27\x03\x08\0" },
-  { 0x04f5, "\x04\x47\x03\x08\0" },
-  { 0x04f8, "\x04\x2b\x03\x08\0" },
-  { 0x04f9, "\x04\x4b\x03\x08\0" },
-  { 0x0929, "\x09\x28\x09\x3c\0" },
-  { 0x0931, "\x09\x30\x09\x3c\0" },
-  { 0x0934, "\x09\x33\x09\x3c\0" },
-  { 0x0958, "\x09\x15\x09\x3c\0" },
-  { 0x0959, "\x09\x16\x09\x3c\0" },
-  { 0x095a, "\x09\x17\x09\x3c\0" },
-  { 0x095b, "\x09\x1c\x09\x3c\0" },
-  { 0x095c, "\x09\x21\x09\x3c\0" },
-  { 0x095d, "\x09\x22\x09\x3c\0" },
-  { 0x095e, "\x09\x2b\x09\x3c\0" },
-  { 0x095f, "\x09\x2f\x09\x3c\0" },
-  { 0x09b0, "\x09\xac\x09\xbc\0" },
-  { 0x09cb, "\x09\xc7\x09\xbe\0" },
-  { 0x09cc, "\x09\xc7\x09\xd7\0" },
-  { 0x09dc, "\x09\xa1\x09\xbc\0" },
-  { 0x09dd, "\x09\xa2\x09\xbc\0" },
-  { 0x09df, "\x09\xaf\x09\xbc\0" },
-  { 0x0a59, "\x0a\x16\x0a\x3c\0" },
-  { 0x0a5a, "\x0a\x17\x0a\x3c\0" },
-  { 0x0a5b, "\x0a\x1c\x0a\x3c\0" },
-  { 0x0a5c, "\x0a\x21\x0a\x3c\0" },
-  { 0x0a5e, "\x0a\x2b\x0a\x3c\0" },
-  { 0x0b48, "\x0b\x47\x0b\x56\0" },
-  { 0x0b4b, "\x0b\x47\x0b\x3e\0" },
-  { 0x0b4c, "\x0b\x47\x0b\x57\0" },
-  { 0x0b5c, "\x0b\x21\x0b\x3c\0" },
-  { 0x0b5d, "\x0b\x22\x0b\x3c\0" },
-  { 0x0b5f, "\x0b\x2f\x0b\x3c\0" },
-  { 0x0b94, "\x0b\x92\x0b\xd7\0" },
-  { 0x0bca, "\x0b\xc6\x0b\xbe\0" },
-  { 0x0bcb, "\x0b\xc7\x0b\xbe\0" },
-  { 0x0bcc, "\x0b\xc6\x0b\xd7\0" },
-  { 0x0c48, "\x0c\x46\x0c\x56\0" },
-  { 0x0cc0, "\x0c\xbf\x0c\xd5\0" },
-  { 0x0cc7, "\x0c\xc6\x0c\xd5\0" },
-  { 0x0cc8, "\x0c\xc6\x0c\xd6\0" },
-  { 0x0cca, "\x0c\xc6\x0c\xc2\0" },
-  { 0x0ccb, "\x0c\xc6\x0c\xc2\x0c\xd5\0" },
-  { 0x0d4a, "\x0d\x46\x0d\x3e\0" },
-  { 0x0d4b, "\x0d\x47\x0d\x3e\0" },
-  { 0x0d4c, "\x0d\x46\x0d\x57\0" },
-  { 0x0e33, "\x0e\x4d\x0e\x32\0" },
-  { 0x0eb3, "\x0e\xcd\x0e\xb2\0" },
-  { 0x0f43, "\x0f\x42\x0f\xb7\0" },
-  { 0x0f4d, "\x0f\x4c\x0f\xb7\0" },
-  { 0x0f52, "\x0f\x51\x0f\xb7\0" },
-  { 0x0f57, "\x0f\x56\x0f\xb7\0" },
-  { 0x0f5c, "\x0f\x5b\x0f\xb7\0" },
-  { 0x0f69, "\x0f\x40\x0f\xb5\0" },
-  { 0x0f73, "\x0f\x71\x0f\x72\0" },
-  { 0x0f75, "\x0f\x71\x0f\x74\0" },
-  { 0x0f76, "\x0f\xb2\x0f\x80\0" },
-  { 0x0f78, "\x0f\xb3\x0f\x80\0" },
-  { 0x0f81, "\x0f\x71\x0f\x80\0" },
-  { 0x0f93, "\x0f\x92\x0f\xb7\0" },
-  { 0x0f9d, "\x0f\x9c\x0f\xb7\0" },
-  { 0x0fa2, "\x0f\xa1\x0f\xb7\0" },
-  { 0x0fa7, "\x0f\xa6\x0f\xb7\0" },
-  { 0x0fac, "\x0f\xab\x0f\xb7\0" },
-  { 0x0fb9, "\x0f\x90\x0f\xb5\0" },
-  { 0x1e00, "\x00\x41\x03\x25\0" },
-  { 0x1e01, "\x00\x61\x03\x25\0" },
-  { 0x1e02, "\x00\x42\x03\x07\0" },
-  { 0x1e03, "\x00\x62\x03\x07\0" },
-  { 0x1e04, "\x00\x42\x03\x23\0" },
-  { 0x1e05, "\x00\x62\x03\x23\0" },
-  { 0x1e06, "\x00\x42\x03\x31\0" },
-  { 0x1e07, "\x00\x62\x03\x31\0" },
-  { 0x1e08, "\x00\x43\x03\x27\x03\x01\0" },
-  { 0x1e09, "\x00\x63\x03\x27\x03\x01\0" },
-  { 0x1e0a, "\x00\x44\x03\x07\0" },
-  { 0x1e0b, "\x00\x64\x03\x07\0" },
-  { 0x1e0c, "\x00\x44\x03\x23\0" },
-  { 0x1e0d, "\x00\x64\x03\x23\0" },
-  { 0x1e0e, "\x00\x44\x03\x31\0" },
-  { 0x1e0f, "\x00\x64\x03\x31\0" },
-  { 0x1e10, "\x00\x44\x03\x27\0" },
-  { 0x1e11, "\x00\x64\x03\x27\0" },
-  { 0x1e12, "\x00\x44\x03\x2d\0" },
-  { 0x1e13, "\x00\x64\x03\x2d\0" },
-  { 0x1e14, "\x00\x45\x03\x04\x03\x00\0" },
-  { 0x1e15, "\x00\x65\x03\x04\x03\x00\0" },
-  { 0x1e16, "\x00\x45\x03\x04\x03\x01\0" },
-  { 0x1e17, "\x00\x65\x03\x04\x03\x01\0" },
-  { 0x1e18, "\x00\x45\x03\x2d\0" },
-  { 0x1e19, "\x00\x65\x03\x2d\0" },
-  { 0x1e1a, "\x00\x45\x03\x30\0" },
-  { 0x1e1b, "\x00\x65\x03\x30\0" },
-  { 0x1e1c, "\x00\x45\x03\x27\x03\x06\0" },
-  { 0x1e1d, "\x00\x65\x03\x27\x03\x06\0" },
-  { 0x1e1e, "\x00\x46\x03\x07\0" },
-  { 0x1e1f, "\x00\x66\x03\x07\0" },
-  { 0x1e20, "\x00\x47\x03\x04\0" },
-  { 0x1e21, "\x00\x67\x03\x04\0" },
-  { 0x1e22, "\x00\x48\x03\x07\0" },
-  { 0x1e23, "\x00\x68\x03\x07\0" },
-  { 0x1e24, "\x00\x48\x03\x23\0" },
-  { 0x1e25, "\x00\x68\x03\x23\0" },
-  { 0x1e26, "\x00\x48\x03\x08\0" },
-  { 0x1e27, "\x00\x68\x03\x08\0" },
-  { 0x1e28, "\x00\x48\x03\x27\0" },
-  { 0x1e29, "\x00\x68\x03\x27\0" },
-  { 0x1e2a, "\x00\x48\x03\x2e\0" },
-  { 0x1e2b, "\x00\x68\x03\x2e\0" },
-  { 0x1e2c, "\x00\x49\x03\x30\0" },
-  { 0x1e2d, "\x00\x69\x03\x30\0" },
-  { 0x1e2e, "\x00\x49\x03\x08\x03\x01\0" },
-  { 0x1e2f, "\x00\x69\x03\x08\x03\x01\0" },
-  { 0x1e30, "\x00\x4b\x03\x01\0" },
-  { 0x1e31, "\x00\x6b\x03\x01\0" },
-  { 0x1e32, "\x00\x4b\x03\x23\0" },
-  { 0x1e33, "\x00\x6b\x03\x23\0" },
-  { 0x1e34, "\x00\x4b\x03\x31\0" },
-  { 0x1e35, "\x00\x6b\x03\x31\0" },
-  { 0x1e36, "\x00\x4c\x03\x23\0" },
-  { 0x1e37, "\x00\x6c\x03\x23\0" },
-  { 0x1e38, "\x00\x4c\x03\x23\x03\x04\0" },
-  { 0x1e39, "\x00\x6c\x03\x23\x03\x04\0" },
-  { 0x1e3a, "\x00\x4c\x03\x31\0" },
-  { 0x1e3b, "\x00\x6c\x03\x31\0" },
-  { 0x1e3c, "\x00\x4c\x03\x2d\0" },
-  { 0x1e3d, "\x00\x6c\x03\x2d\0" },
-  { 0x1e3e, "\x00\x4d\x03\x01\0" },
-  { 0x1e3f, "\x00\x6d\x03\x01\0" },
-  { 0x1e40, "\x00\x4d\x03\x07\0" },
-  { 0x1e41, "\x00\x6d\x03\x07\0" },
-  { 0x1e42, "\x00\x4d\x03\x23\0" },
-  { 0x1e43, "\x00\x6d\x03\x23\0" },
-  { 0x1e44, "\x00\x4e\x03\x07\0" },
-  { 0x1e45, "\x00\x6e\x03\x07\0" },
-  { 0x1e46, "\x00\x4e\x03\x23\0" },
-  { 0x1e47, "\x00\x6e\x03\x23\0" },
-  { 0x1e48, "\x00\x4e\x03\x31\0" },
-  { 0x1e49, "\x00\x6e\x03\x31\0" },
-  { 0x1e4a, "\x00\x4e\x03\x2d\0" },
-  { 0x1e4b, "\x00\x6e\x03\x2d\0" },
-  { 0x1e4c, "\x00\x4f\x03\x03\x03\x01\0" },
-  { 0x1e4d, "\x00\x6f\x03\x03\x03\x01\0" },
-  { 0x1e4e, "\x00\x4f\x03\x03\x03\x08\0" },
-  { 0x1e4f, "\x00\x6f\x03\x03\x03\x08\0" },
-  { 0x1e50, "\x00\x4f\x03\x04\x03\x00\0" },
-  { 0x1e51, "\x00\x6f\x03\x04\x03\x00\0" },
-  { 0x1e52, "\x00\x4f\x03\x04\x03\x01\0" },
-  { 0x1e53, "\x00\x6f\x03\x04\x03\x01\0" },
-  { 0x1e54, "\x00\x50\x03\x01\0" },
-  { 0x1e55, "\x00\x70\x03\x01\0" },
-  { 0x1e56, "\x00\x50\x03\x07\0" },
-  { 0x1e57, "\x00\x70\x03\x07\0" },
-  { 0x1e58, "\x00\x52\x03\x07\0" },
-  { 0x1e59, "\x00\x72\x03\x07\0" },
-  { 0x1e5a, "\x00\x52\x03\x23\0" },
-  { 0x1e5b, "\x00\x72\x03\x23\0" },
-  { 0x1e5c, "\x00\x52\x03\x23\x03\x04\0" },
-  { 0x1e5d, "\x00\x72\x03\x23\x03\x04\0" },
-  { 0x1e5e, "\x00\x52\x03\x31\0" },
-  { 0x1e5f, "\x00\x72\x03\x31\0" },
-  { 0x1e60, "\x00\x53\x03\x07\0" },
-  { 0x1e61, "\x00\x73\x03\x07\0" },
-  { 0x1e62, "\x00\x53\x03\x23\0" },
-  { 0x1e63, "\x00\x73\x03\x23\0" },
-  { 0x1e64, "\x00\x53\x03\x01\x03\x07\0" },
-  { 0x1e65, "\x00\x73\x03\x01\x03\x07\0" },
-  { 0x1e66, "\x00\x53\x03\x0c\x03\x07\0" },
-  { 0x1e67, "\x00\x73\x03\x0c\x03\x07\0" },
-  { 0x1e68, "\x00\x53\x03\x23\x03\x07\0" },
-  { 0x1e69, "\x00\x73\x03\x23\x03\x07\0" },
-  { 0x1e6a, "\x00\x54\x03\x07\0" },
-  { 0x1e6b, "\x00\x74\x03\x07\0" },
-  { 0x1e6c, "\x00\x54\x03\x23\0" },
-  { 0x1e6d, "\x00\x74\x03\x23\0" },
-  { 0x1e6e, "\x00\x54\x03\x31\0" },
-  { 0x1e6f, "\x00\x74\x03\x31\0" },
-  { 0x1e70, "\x00\x54\x03\x2d\0" },
-  { 0x1e71, "\x00\x74\x03\x2d\0" },
-  { 0x1e72, "\x00\x55\x03\x24\0" },
-  { 0x1e73, "\x00\x75\x03\x24\0" },
-  { 0x1e74, "\x00\x55\x03\x30\0" },
-  { 0x1e75, "\x00\x75\x03\x30\0" },
-  { 0x1e76, "\x00\x55\x03\x2d\0" },
-  { 0x1e77, "\x00\x75\x03\x2d\0" },
-  { 0x1e78, "\x00\x55\x03\x03\x03\x01\0" },
-  { 0x1e79, "\x00\x75\x03\x03\x03\x01\0" },
-  { 0x1e7a, "\x00\x55\x03\x04\x03\x08\0" },
-  { 0x1e7b, "\x00\x75\x03\x04\x03\x08\0" },
-  { 0x1e7c, "\x00\x56\x03\x03\0" },
-  { 0x1e7d, "\x00\x76\x03\x03\0" },
-  { 0x1e7e, "\x00\x56\x03\x23\0" },
-  { 0x1e7f, "\x00\x76\x03\x23\0" },
-  { 0x1e80, "\x00\x57\x03\x00\0" },
-  { 0x1e81, "\x00\x77\x03\x00\0" },
-  { 0x1e82, "\x00\x57\x03\x01\0" },
-  { 0x1e83, "\x00\x77\x03\x01\0" },
-  { 0x1e84, "\x00\x57\x03\x08\0" },
-  { 0x1e85, "\x00\x77\x03\x08\0" },
-  { 0x1e86, "\x00\x57\x03\x07\0" },
-  { 0x1e87, "\x00\x77\x03\x07\0" },
-  { 0x1e88, "\x00\x57\x03\x23\0" },
-  { 0x1e89, "\x00\x77\x03\x23\0" },
-  { 0x1e8a, "\x00\x58\x03\x07\0" },
-  { 0x1e8b, "\x00\x78\x03\x07\0" },
-  { 0x1e8c, "\x00\x58\x03\x08\0" },
-  { 0x1e8d, "\x00\x78\x03\x08\0" },
-  { 0x1e8e, "\x00\x59\x03\x07\0" },
-  { 0x1e8f, "\x00\x79\x03\x07\0" },
-  { 0x1e90, "\x00\x5a\x03\x02\0" },
-  { 0x1e91, "\x00\x7a\x03\x02\0" },
-  { 0x1e92, "\x00\x5a\x03\x23\0" },
-  { 0x1e93, "\x00\x7a\x03\x23\0" },
-  { 0x1e94, "\x00\x5a\x03\x31\0" },
-  { 0x1e95, "\x00\x7a\x03\x31\0" },
-  { 0x1e96, "\x00\x68\x03\x31\0" },
-  { 0x1e97, "\x00\x74\x03\x08\0" },
-  { 0x1e98, "\x00\x77\x03\x0a\0" },
-  { 0x1e99, "\x00\x79\x03\x0a\0" },
-  { 0x1e9b, "\x01\x7f\x03\x07\0" },
-  { 0x1ea0, "\x00\x41\x03\x23\0" },
-  { 0x1ea1, "\x00\x61\x03\x23\0" },
-  { 0x1ea2, "\x00\x41\x03\x09\0" },
-  { 0x1ea3, "\x00\x61\x03\x09\0" },
-  { 0x1ea4, "\x00\x41\x03\x02\x03\x01\0" },
-  { 0x1ea5, "\x00\x61\x03\x02\x03\x01\0" },
-  { 0x1ea6, "\x00\x41\x03\x02\x03\x00\0" },
-  { 0x1ea7, "\x00\x61\x03\x02\x03\x00\0" },
-  { 0x1ea8, "\x00\x41\x03\x02\x03\x09\0" },
-  { 0x1ea9, "\x00\x61\x03\x02\x03\x09\0" },
-  { 0x1eaa, "\x00\x41\x03\x02\x03\x03\0" },
-  { 0x1eab, "\x00\x61\x03\x02\x03\x03\0" },
-  { 0x1eac, "\x00\x41\x03\x23\x03\x02\0" },
-  { 0x1ead, "\x00\x61\x03\x23\x03\x02\0" },
-  { 0x1eae, "\x00\x41\x03\x06\x03\x01\0" },
-  { 0x1eaf, "\x00\x61\x03\x06\x03\x01\0" },
-  { 0x1eb0, "\x00\x41\x03\x06\x03\x00\0" },
-  { 0x1eb1, "\x00\x61\x03\x06\x03\x00\0" },
-  { 0x1eb2, "\x00\x41\x03\x06\x03\x09\0" },
-  { 0x1eb3, "\x00\x61\x03\x06\x03\x09\0" },
-  { 0x1eb4, "\x00\x41\x03\x06\x03\x03\0" },
-  { 0x1eb5, "\x00\x61\x03\x06\x03\x03\0" },
-  { 0x1eb6, "\x00\x41\x03\x23\x03\x06\0" },
-  { 0x1eb7, "\x00\x61\x03\x23\x03\x06\0" },
-  { 0x1eb8, "\x00\x45\x03\x23\0" },
-  { 0x1eb9, "\x00\x65\x03\x23\0" },
-  { 0x1eba, "\x00\x45\x03\x09\0" },
-  { 0x1ebb, "\x00\x65\x03\x09\0" },
-  { 0x1ebc, "\x00\x45\x03\x03\0" },
-  { 0x1ebd, "\x00\x65\x03\x03\0" },
-  { 0x1ebe, "\x00\x45\x03\x02\x03\x01\0" },
-  { 0x1ebf, "\x00\x65\x03\x02\x03\x01\0" },
-  { 0x1ec0, "\x00\x45\x03\x02\x03\x00\0" },
-  { 0x1ec1, "\x00\x65\x03\x02\x03\x00\0" },
-  { 0x1ec2, "\x00\x45\x03\x02\x03\x09\0" },
-  { 0x1ec3, "\x00\x65\x03\x02\x03\x09\0" },
-  { 0x1ec4, "\x00\x45\x03\x02\x03\x03\0" },
-  { 0x1ec5, "\x00\x65\x03\x02\x03\x03\0" },
-  { 0x1ec6, "\x00\x45\x03\x23\x03\x02\0" },
-  { 0x1ec7, "\x00\x65\x03\x23\x03\x02\0" },
-  { 0x1ec8, "\x00\x49\x03\x09\0" },
-  { 0x1ec9, "\x00\x69\x03\x09\0" },
-  { 0x1eca, "\x00\x49\x03\x23\0" },
-  { 0x1ecb, "\x00\x69\x03\x23\0" },
-  { 0x1ecc, "\x00\x4f\x03\x23\0" },
-  { 0x1ecd, "\x00\x6f\x03\x23\0" },
-  { 0x1ece, "\x00\x4f\x03\x09\0" },
-  { 0x1ecf, "\x00\x6f\x03\x09\0" },
-  { 0x1ed0, "\x00\x4f\x03\x02\x03\x01\0" },
-  { 0x1ed1, "\x00\x6f\x03\x02\x03\x01\0" },
-  { 0x1ed2, "\x00\x4f\x03\x02\x03\x00\0" },
-  { 0x1ed3, "\x00\x6f\x03\x02\x03\x00\0" },
-  { 0x1ed4, "\x00\x4f\x03\x02\x03\x09\0" },
-  { 0x1ed5, "\x00\x6f\x03\x02\x03\x09\0" },
-  { 0x1ed6, "\x00\x4f\x03\x02\x03\x03\0" },
-  { 0x1ed7, "\x00\x6f\x03\x02\x03\x03\0" },
-  { 0x1ed8, "\x00\x4f\x03\x23\x03\x02\0" },
-  { 0x1ed9, "\x00\x6f\x03\x23\x03\x02\0" },
-  { 0x1eda, "\x00\x4f\x03\x1b\x03\x01\0" },
-  { 0x1edb, "\x00\x6f\x03\x1b\x03\x01\0" },
-  { 0x1edc, "\x00\x4f\x03\x1b\x03\x00\0" },
-  { 0x1edd, "\x00\x6f\x03\x1b\x03\x00\0" },
-  { 0x1ede, "\x00\x4f\x03\x1b\x03\x09\0" },
-  { 0x1edf, "\x00\x6f\x03\x1b\x03\x09\0" },
-  { 0x1ee0, "\x00\x4f\x03\x1b\x03\x03\0" },
-  { 0x1ee1, "\x00\x6f\x03\x1b\x03\x03\0" },
-  { 0x1ee2, "\x00\x4f\x03\x1b\x03\x23\0" },
-  { 0x1ee3, "\x00\x6f\x03\x1b\x03\x23\0" },
-  { 0x1ee4, "\x00\x55\x03\x23\0" },
-  { 0x1ee5, "\x00\x75\x03\x23\0" },
-  { 0x1ee6, "\x00\x55\x03\x09\0" },
-  { 0x1ee7, "\x00\x75\x03\x09\0" },
-  { 0x1ee8, "\x00\x55\x03\x1b\x03\x01\0" },
-  { 0x1ee9, "\x00\x75\x03\x1b\x03\x01\0" },
-  { 0x1eea, "\x00\x55\x03\x1b\x03\x00\0" },
-  { 0x1eeb, "\x00\x75\x03\x1b\x03\x00\0" },
-  { 0x1eec, "\x00\x55\x03\x1b\x03\x09\0" },
-  { 0x1eed, "\x00\x75\x03\x1b\x03\x09\0" },
-  { 0x1eee, "\x00\x55\x03\x1b\x03\x03\0" },
-  { 0x1eef, "\x00\x75\x03\x1b\x03\x03\0" },
-  { 0x1ef0, "\x00\x55\x03\x1b\x03\x23\0" },
-  { 0x1ef1, "\x00\x75\x03\x1b\x03\x23\0" },
-  { 0x1ef2, "\x00\x59\x03\x00\0" },
-  { 0x1ef3, "\x00\x79\x03\x00\0" },
-  { 0x1ef4, "\x00\x59\x03\x23\0" },
-  { 0x1ef5, "\x00\x79\x03\x23\0" },
-  { 0x1ef6, "\x00\x59\x03\x09\0" },
-  { 0x1ef7, "\x00\x79\x03\x09\0" },
-  { 0x1ef8, "\x00\x59\x03\x03\0" },
-  { 0x1ef9, "\x00\x79\x03\x03\0" },
-  { 0x1f00, "\x03\xb1\x03\x13\0" },
-  { 0x1f01, "\x03\xb1\x03\x14\0" },
-  { 0x1f02, "\x03\xb1\x03\x13\x03\x00\0" },
-  { 0x1f03, "\x03\xb1\x03\x14\x03\x00\0" },
-  { 0x1f04, "\x03\xb1\x03\x13\x03\x01\0" },
-  { 0x1f05, "\x03\xb1\x03\x14\x03\x01\0" },
-  { 0x1f06, "\x03\xb1\x03\x13\x03\x42\0" },
-  { 0x1f07, "\x03\xb1\x03\x14\x03\x42\0" },
-  { 0x1f08, "\x03\x91\x03\x13\0" },
-  { 0x1f09, "\x03\x91\x03\x14\0" },
-  { 0x1f0a, "\x03\x91\x03\x13\x03\x00\0" },
-  { 0x1f0b, "\x03\x91\x03\x14\x03\x00\0" },
-  { 0x1f0c, "\x03\x91\x03\x13\x03\x01\0" },
-  { 0x1f0d, "\x03\x91\x03\x14\x03\x01\0" },
-  { 0x1f0e, "\x03\x91\x03\x13\x03\x42\0" },
-  { 0x1f0f, "\x03\x91\x03\x14\x03\x42\0" },
-  { 0x1f10, "\x03\xb5\x03\x13\0" },
-  { 0x1f11, "\x03\xb5\x03\x14\0" },
-  { 0x1f12, "\x03\xb5\x03\x13\x03\x00\0" },
-  { 0x1f13, "\x03\xb5\x03\x14\x03\x00\0" },
-  { 0x1f14, "\x03\xb5\x03\x13\x03\x01\0" },
-  { 0x1f15, "\x03\xb5\x03\x14\x03\x01\0" },
-  { 0x1f18, "\x03\x95\x03\x13\0" },
-  { 0x1f19, "\x03\x95\x03\x14\0" },
-  { 0x1f1a, "\x03\x95\x03\x13\x03\x00\0" },
-  { 0x1f1b, "\x03\x95\x03\x14\x03\x00\0" },
-  { 0x1f1c, "\x03\x95\x03\x13\x03\x01\0" },
-  { 0x1f1d, "\x03\x95\x03\x14\x03\x01\0" },
-  { 0x1f20, "\x03\xb7\x03\x13\0" },
-  { 0x1f21, "\x03\xb7\x03\x14\0" },
-  { 0x1f22, "\x03\xb7\x03\x13\x03\x00\0" },
-  { 0x1f23, "\x03\xb7\x03\x14\x03\x00\0" },
-  { 0x1f24, "\x03\xb7\x03\x13\x03\x01\0" },
-  { 0x1f25, "\x03\xb7\x03\x14\x03\x01\0" },
-  { 0x1f26, "\x03\xb7\x03\x13\x03\x42\0" },
-  { 0x1f27, "\x03\xb7\x03\x14\x03\x42\0" },
-  { 0x1f28, "\x03\x97\x03\x13\0" },
-  { 0x1f29, "\x03\x97\x03\x14\0" },
-  { 0x1f2a, "\x03\x97\x03\x13\x03\x00\0" },
-  { 0x1f2b, "\x03\x97\x03\x14\x03\x00\0" },
-  { 0x1f2c, "\x03\x97\x03\x13\x03\x01\0" },
-  { 0x1f2d, "\x03\x97\x03\x14\x03\x01\0" },
-  { 0x1f2e, "\x03\x97\x03\x13\x03\x42\0" },
-  { 0x1f2f, "\x03\x97\x03\x14\x03\x42\0" },
-  { 0x1f30, "\x03\xb9\x03\x13\0" },
-  { 0x1f31, "\x03\xb9\x03\x14\0" },
-  { 0x1f32, "\x03\xb9\x03\x13\x03\x00\0" },
-  { 0x1f33, "\x03\xb9\x03\x14\x03\x00\0" },
-  { 0x1f34, "\x03\xb9\x03\x13\x03\x01\0" },
-  { 0x1f35, "\x03\xb9\x03\x14\x03\x01\0" },
-  { 0x1f36, "\x03\xb9\x03\x13\x03\x42\0" },
-  { 0x1f37, "\x03\xb9\x03\x14\x03\x42\0" },
-  { 0x1f38, "\x03\x99\x03\x13\0" },
-  { 0x1f39, "\x03\x99\x03\x14\0" },
-  { 0x1f3a, "\x03\x99\x03\x13\x03\x00\0" },
-  { 0x1f3b, "\x03\x99\x03\x14\x03\x00\0" },
-  { 0x1f3c, "\x03\x99\x03\x13\x03\x01\0" },
-  { 0x1f3d, "\x03\x99\x03\x14\x03\x01\0" },
-  { 0x1f3e, "\x03\x99\x03\x13\x03\x42\0" },
-  { 0x1f3f, "\x03\x99\x03\x14\x03\x42\0" },
-  { 0x1f40, "\x03\xbf\x03\x13\0" },
-  { 0x1f41, "\x03\xbf\x03\x14\0" },
-  { 0x1f42, "\x03\xbf\x03\x13\x03\x00\0" },
-  { 0x1f43, "\x03\xbf\x03\x14\x03\x00\0" },
-  { 0x1f44, "\x03\xbf\x03\x13\x03\x01\0" },
-  { 0x1f45, "\x03\xbf\x03\x14\x03\x01\0" },
-  { 0x1f48, "\x03\x9f\x03\x13\0" },
-  { 0x1f49, "\x03\x9f\x03\x14\0" },
-  { 0x1f4a, "\x03\x9f\x03\x13\x03\x00\0" },
-  { 0x1f4b, "\x03\x9f\x03\x14\x03\x00\0" },
-  { 0x1f4c, "\x03\x9f\x03\x13\x03\x01\0" },
-  { 0x1f4d, "\x03\x9f\x03\x14\x03\x01\0" },
-  { 0x1f50, "\x03\xc5\x03\x13\0" },
-  { 0x1f51, "\x03\xc5\x03\x14\0" },
-  { 0x1f52, "\x03\xc5\x03\x13\x03\x00\0" },
-  { 0x1f53, "\x03\xc5\x03\x14\x03\x00\0" },
-  { 0x1f54, "\x03\xc5\x03\x13\x03\x01\0" },
-  { 0x1f55, "\x03\xc5\x03\x14\x03\x01\0" },
-  { 0x1f56, "\x03\xc5\x03\x13\x03\x42\0" },
-  { 0x1f57, "\x03\xc5\x03\x14\x03\x42\0" },
-  { 0x1f59, "\x03\xa5\x03\x14\0" },
-  { 0x1f5b, "\x03\xa5\x03\x14\x03\x00\0" },
-  { 0x1f5d, "\x03\xa5\x03\x14\x03\x01\0" },
-  { 0x1f5f, "\x03\xa5\x03\x14\x03\x42\0" },
-  { 0x1f60, "\x03\xc9\x03\x13\0" },
-  { 0x1f61, "\x03\xc9\x03\x14\0" },
-  { 0x1f62, "\x03\xc9\x03\x13\x03\x00\0" },
-  { 0x1f63, "\x03\xc9\x03\x14\x03\x00\0" },
-  { 0x1f64, "\x03\xc9\x03\x13\x03\x01\0" },
-  { 0x1f65, "\x03\xc9\x03\x14\x03\x01\0" },
-  { 0x1f66, "\x03\xc9\x03\x13\x03\x42\0" },
-  { 0x1f67, "\x03\xc9\x03\x14\x03\x42\0" },
-  { 0x1f68, "\x03\xa9\x03\x13\0" },
-  { 0x1f69, "\x03\xa9\x03\x14\0" },
-  { 0x1f6a, "\x03\xa9\x03\x13\x03\x00\0" },
-  { 0x1f6b, "\x03\xa9\x03\x14\x03\x00\0" },
-  { 0x1f6c, "\x03\xa9\x03\x13\x03\x01\0" },
-  { 0x1f6d, "\x03\xa9\x03\x14\x03\x01\0" },
-  { 0x1f6e, "\x03\xa9\x03\x13\x03\x42\0" },
-  { 0x1f6f, "\x03\xa9\x03\x14\x03\x42\0" },
-  { 0x1f70, "\x03\xb1\x03\x00\0" },
-  { 0x1f71, "\x03\xb1\x03\x01\0" },
-  { 0x1f72, "\x03\xb5\x03\x00\0" },
-  { 0x1f73, "\x03\xb5\x03\x01\0" },
-  { 0x1f74, "\x03\xb7\x03\x00\0" },
-  { 0x1f75, "\x03\xb7\x03\x01\0" },
-  { 0x1f76, "\x03\xb9\x03\x00\0" },
-  { 0x1f77, "\x03\xb9\x03\x01\0" },
-  { 0x1f78, "\x03\xbf\x03\x00\0" },
-  { 0x1f79, "\x03\xbf\x03\x01\0" },
-  { 0x1f7a, "\x03\xc5\x03\x00\0" },
-  { 0x1f7b, "\x03\xc5\x03\x01\0" },
-  { 0x1f7c, "\x03\xc9\x03\x00\0" },
-  { 0x1f7d, "\x03\xc9\x03\x01\0" },
-  { 0x1f80, "\x03\xb1\x03\x13\x03\x45\0" },
-  { 0x1f81, "\x03\xb1\x03\x14\x03\x45\0" },
-  { 0x1f82, "\x03\xb1\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f83, "\x03\xb1\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f84, "\x03\xb1\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f85, "\x03\xb1\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f86, "\x03\xb1\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f87, "\x03\xb1\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1f88, "\x03\x91\x03\x13\x03\x45\0" },
-  { 0x1f89, "\x03\x91\x03\x14\x03\x45\0" },
-  { 0x1f8a, "\x03\x91\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f8b, "\x03\x91\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f8c, "\x03\x91\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f8d, "\x03\x91\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f8e, "\x03\x91\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f8f, "\x03\x91\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1f90, "\x03\xb7\x03\x13\x03\x45\0" },
-  { 0x1f91, "\x03\xb7\x03\x14\x03\x45\0" },
-  { 0x1f92, "\x03\xb7\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f93, "\x03\xb7\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f94, "\x03\xb7\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f95, "\x03\xb7\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f96, "\x03\xb7\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f97, "\x03\xb7\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1f98, "\x03\x97\x03\x13\x03\x45\0" },
-  { 0x1f99, "\x03\x97\x03\x14\x03\x45\0" },
-  { 0x1f9a, "\x03\x97\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f9b, "\x03\x97\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f9c, "\x03\x97\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f9d, "\x03\x97\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f9e, "\x03\x97\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f9f, "\x03\x97\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1fa0, "\x03\xc9\x03\x13\x03\x45\0" },
-  { 0x1fa1, "\x03\xc9\x03\x14\x03\x45\0" },
-  { 0x1fa2, "\x03\xc9\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1fa3, "\x03\xc9\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1fa4, "\x03\xc9\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1fa5, "\x03\xc9\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1fa6, "\x03\xc9\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1fa7, "\x03\xc9\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1fa8, "\x03\xa9\x03\x13\x03\x45\0" },
-  { 0x1fa9, "\x03\xa9\x03\x14\x03\x45\0" },
-  { 0x1faa, "\x03\xa9\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1fab, "\x03\xa9\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1fac, "\x03\xa9\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1fad, "\x03\xa9\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1fae, "\x03\xa9\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1faf, "\x03\xa9\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1fb0, "\x03\xb1\x03\x06\0" },
-  { 0x1fb1, "\x03\xb1\x03\x04\0" },
-  { 0x1fb2, "\x03\xb1\x03\x00\x03\x45\0" },
-  { 0x1fb3, "\x03\xb1\x03\x45\0" },
-  { 0x1fb4, "\x03\xb1\x03\x01\x03\x45\0" },
-  { 0x1fb6, "\x03\xb1\x03\x42\0" },
-  { 0x1fb7, "\x03\xb1\x03\x42\x03\x45\0" },
-  { 0x1fb8, "\x03\x91\x03\x06\0" },
-  { 0x1fb9, "\x03\x91\x03\x04\0" },
-  { 0x1fba, "\x03\x91\x03\x00\0" },
-  { 0x1fbb, "\x03\x91\x03\x01\0" },
-  { 0x1fbc, "\x03\x91\x03\x45\0" },
-  { 0x1fbe, "\x03\xb9\0" },
-  { 0x1fc1, "\x00\xa8\x03\x42\0" },
-  { 0x1fc2, "\x03\xb7\x03\x00\x03\x45\0" },
-  { 0x1fc3, "\x03\xb7\x03\x45\0" },
-  { 0x1fc4, "\x03\xb7\x03\x01\x03\x45\0" },
-  { 0x1fc6, "\x03\xb7\x03\x42\0" },
-  { 0x1fc7, "\x03\xb7\x03\x42\x03\x45\0" },
-  { 0x1fc8, "\x03\x95\x03\x00\0" },
-  { 0x1fc9, "\x03\x95\x03\x01\0" },
-  { 0x1fca, "\x03\x97\x03\x00\0" },
-  { 0x1fcb, "\x03\x97\x03\x01\0" },
-  { 0x1fcc, "\x03\x97\x03\x45\0" },
-  { 0x1fcd, "\x1f\xbf\x03\x00\0" },
-  { 0x1fce, "\x1f\xbf\x03\x01\0" },
-  { 0x1fcf, "\x1f\xbf\x03\x42\0" },
-  { 0x1fd0, "\x03\xb9\x03\x06\0" },
-  { 0x1fd1, "\x03\xb9\x03\x04\0" },
-  { 0x1fd2, "\x03\xb9\x03\x08\x03\x00\0" },
-  { 0x1fd3, "\x03\xb9\x03\x08\x03\x01\0" },
-  { 0x1fd6, "\x03\xb9\x03\x42\0" },
-  { 0x1fd7, "\x03\xb9\x03\x08\x03\x42\0" },
-  { 0x1fd8, "\x03\x99\x03\x06\0" },
-  { 0x1fd9, "\x03\x99\x03\x04\0" },
-  { 0x1fda, "\x03\x99\x03\x00\0" },
-  { 0x1fdb, "\x03\x99\x03\x01\0" },
-  { 0x1fdd, "\x1f\xfe\x03\x00\0" },
-  { 0x1fde, "\x1f\xfe\x03\x01\0" },
-  { 0x1fdf, "\x1f\xfe\x03\x42\0" },
-  { 0x1fe0, "\x03\xc5\x03\x06\0" },
-  { 0x1fe1, "\x03\xc5\x03\x04\0" },
-  { 0x1fe2, "\x03\xc5\x03\x08\x03\x00\0" },
-  { 0x1fe3, "\x03\xc5\x03\x08\x03\x01\0" },
-  { 0x1fe4, "\x03\xc1\x03\x13\0" },
-  { 0x1fe5, "\x03\xc1\x03\x14\0" },
-  { 0x1fe6, "\x03\xc5\x03\x42\0" },
-  { 0x1fe7, "\x03\xc5\x03\x08\x03\x42\0" },
-  { 0x1fe8, "\x03\xa5\x03\x06\0" },
-  { 0x1fe9, "\x03\xa5\x03\x04\0" },
-  { 0x1fea, "\x03\xa5\x03\x00\0" },
-  { 0x1feb, "\x03\xa5\x03\x01\0" },
-  { 0x1fec, "\x03\xa1\x03\x14\0" },
-  { 0x1fed, "\x00\xa8\x03\x00\0" },
-  { 0x1fee, "\x00\xa8\x03\x01\0" },
-  { 0x1fef, "\x00\x60\0" },
-  { 0x1ff2, "\x03\xc9\x03\x00\x03\x45\0" },
-  { 0x1ff3, "\x03\xc9\x03\x45\0" },
-  { 0x1ff4, "\x03\xc9\x03\x01\x03\x45\0" },
-  { 0x1ff6, "\x03\xc9\x03\x42\0" },
-  { 0x1ff7, "\x03\xc9\x03\x42\x03\x45\0" },
-  { 0x1ff8, "\x03\x9f\x03\x00\0" },
-  { 0x1ff9, "\x03\x9f\x03\x01\0" },
-  { 0x1ffa, "\x03\xa9\x03\x00\0" },
-  { 0x1ffb, "\x03\xa9\x03\x01\0" },
-  { 0x1ffc, "\x03\xa9\x03\x45\0" },
-  { 0x1ffd, "\x00\xb4\0" },
-  { 0x2000, "\x20\x02\0" },
-  { 0x2001, "\x20\x03\0" },
-  { 0x2126, "\x03\xa9\0" },
-  { 0x212a, "\x00\x4b\0" },
-  { 0x212b, "\x00\x41\x03\x0a\0" },
-  { 0x2204, "\x22\x03\x03\x38\0" },
-  { 0x2209, "\x22\x08\x03\x38\0" },
-  { 0x220c, "\x22\x0b\x03\x38\0" },
-  { 0x2224, "\x22\x23\x03\x38\0" },
-  { 0x2226, "\x22\x25\x03\x38\0" },
-  { 0x2241, "\x00\x7e\x03\x38\0" },
-  { 0x2244, "\x22\x43\x03\x38\0" },
-  { 0x2247, "\x22\x45\x03\x38\0" },
-  { 0x2249, "\x22\x48\x03\x38\0" },
-  { 0x2260, "\x00\x3d\x03\x38\0" },
-  { 0x2262, "\x22\x61\x03\x38\0" },
-  { 0x226d, "\x22\x4d\x03\x38\0" },
-  { 0x226e, "\x00\x3c\x03\x38\0" },
-  { 0x226f, "\x00\x3e\x03\x38\0" },
-  { 0x2270, "\x22\x64\x03\x38\0" },
-  { 0x2271, "\x22\x65\x03\x38\0" },
-  { 0x2274, "\x22\x72\x03\x38\0" },
-  { 0x2275, "\x22\x73\x03\x38\0" },
-  { 0x2278, "\x22\x76\x03\x38\0" },
-  { 0x2279, "\x22\x77\x03\x38\0" },
-  { 0x2280, "\x22\x7a\x03\x38\0" },
-  { 0x2281, "\x22\x7b\x03\x38\0" },
-  { 0x2284, "\x22\x82\x03\x38\0" },
-  { 0x2285, "\x22\x83\x03\x38\0" },
-  { 0x2288, "\x22\x86\x03\x38\0" },
-  { 0x2289, "\x22\x87\x03\x38\0" },
-  { 0x22ac, "\x22\xa2\x03\x38\0" },
-  { 0x22ad, "\x22\xa8\x03\x38\0" },
-  { 0x22ae, "\x22\xa9\x03\x38\0" },
-  { 0x22af, "\x22\xab\x03\x38\0" },
-  { 0x22e0, "\x22\x7c\x03\x38\0" },
-  { 0x22e1, "\x22\x7d\x03\x38\0" },
-  { 0x22e2, "\x22\x91\x03\x38\0" },
-  { 0x22e3, "\x22\x92\x03\x38\0" },
-  { 0x22ea, "\x22\xb2\x03\x38\0" },
-  { 0x22eb, "\x22\xb3\x03\x38\0" },
-  { 0x22ec, "\x22\xb4\x03\x38\0" },
-  { 0x22ed, "\x22\xb5\x03\x38\0" },
-  { 0x2329, "\x30\x08\0" },
-  { 0x232a, "\x30\x09\0" },
-  { 0x304c, "\x30\x4b\x30\x99\0" },
-  { 0x304e, "\x30\x4d\x30\x99\0" },
-  { 0x3050, "\x30\x4f\x30\x99\0" },
-  { 0x3052, "\x30\x51\x30\x99\0" },
-  { 0x3054, "\x30\x53\x30\x99\0" },
-  { 0x3056, "\x30\x55\x30\x99\0" },
-  { 0x3058, "\x30\x57\x30\x99\0" },
-  { 0x305a, "\x30\x59\x30\x99\0" },
-  { 0x305c, "\x30\x5b\x30\x99\0" },
-  { 0x305e, "\x30\x5d\x30\x99\0" },
-  { 0x3060, "\x30\x5f\x30\x99\0" },
-  { 0x3062, "\x30\x61\x30\x99\0" },
-  { 0x3065, "\x30\x64\x30\x99\0" },
-  { 0x3067, "\x30\x66\x30\x99\0" },
-  { 0x3069, "\x30\x68\x30\x99\0" },
-  { 0x3070, "\x30\x6f\x30\x99\0" },
-  { 0x3071, "\x30\x6f\x30\x9a\0" },
-  { 0x3073, "\x30\x72\x30\x99\0" },
-  { 0x3074, "\x30\x72\x30\x9a\0" },
-  { 0x3076, "\x30\x75\x30\x99\0" },
-  { 0x3077, "\x30\x75\x30\x9a\0" },
-  { 0x3079, "\x30\x78\x30\x99\0" },
-  { 0x307a, "\x30\x78\x30\x9a\0" },
-  { 0x307c, "\x30\x7b\x30\x99\0" },
-  { 0x307d, "\x30\x7b\x30\x9a\0" },
-  { 0x3094, "\x30\x46\x30\x99\0" },
-  { 0x309e, "\x30\x9d\x30\x99\0" },
-  { 0x30ac, "\x30\xab\x30\x99\0" },
-  { 0x30ae, "\x30\xad\x30\x99\0" },
-  { 0x30b0, "\x30\xaf\x30\x99\0" },
-  { 0x30b2, "\x30\xb1\x30\x99\0" },
-  { 0x30b4, "\x30\xb3\x30\x99\0" },
-  { 0x30b6, "\x30\xb5\x30\x99\0" },
-  { 0x30b8, "\x30\xb7\x30\x99\0" },
-  { 0x30ba, "\x30\xb9\x30\x99\0" },
-  { 0x30bc, "\x30\xbb\x30\x99\0" },
-  { 0x30be, "\x30\xbd\x30\x99\0" },
-  { 0x30c0, "\x30\xbf\x30\x99\0" },
-  { 0x30c2, "\x30\xc1\x30\x99\0" },
-  { 0x30c5, "\x30\xc4\x30\x99\0" },
-  { 0x30c7, "\x30\xc6\x30\x99\0" },
-  { 0x30c9, "\x30\xc8\x30\x99\0" },
-  { 0x30d0, "\x30\xcf\x30\x99\0" },
-  { 0x30d1, "\x30\xcf\x30\x9a\0" },
-  { 0x30d3, "\x30\xd2\x30\x99\0" },
-  { 0x30d4, "\x30\xd2\x30\x9a\0" },
-  { 0x30d6, "\x30\xd5\x30\x99\0" },
-  { 0x30d7, "\x30\xd5\x30\x9a\0" },
-  { 0x30d9, "\x30\xd8\x30\x99\0" },
-  { 0x30da, "\x30\xd8\x30\x9a\0" },
-  { 0x30dc, "\x30\xdb\x30\x99\0" },
-  { 0x30dd, "\x30\xdb\x30\x9a\0" },
-  { 0x30f4, "\x30\xa6\x30\x99\0" },
-  { 0x30f7, "\x30\xef\x30\x99\0" },
-  { 0x30f8, "\x30\xf0\x30\x99\0" },
-  { 0x30f9, "\x30\xf1\x30\x99\0" },
-  { 0x30fa, "\x30\xf2\x30\x99\0" },
-  { 0x30fe, "\x30\xfd\x30\x99\0" },
-  { 0xf900, "\x8c\x48\0" },
-  { 0xf901, "\x66\xf4\0" },
-  { 0xf902, "\x8e\xca\0" },
-  { 0xf903, "\x8c\xc8\0" },
-  { 0xf904, "\x6e\xd1\0" },
-  { 0xf905, "\x4e\x32\0" },
-  { 0xf906, "\x53\xe5\0" },
-  { 0xf907, "\x9f\x9c\0" },
-  { 0xf908, "\x9f\x9c\0" },
-  { 0xf909, "\x59\x51\0" },
-  { 0xf90a, "\x91\xd1\0" },
-  { 0xf90b, "\x55\x87\0" },
-  { 0xf90c, "\x59\x48\0" },
-  { 0xf90d, "\x61\xf6\0" },
-  { 0xf90e, "\x76\x69\0" },
-  { 0xf90f, "\x7f\x85\0" },
-  { 0xf910, "\x86\x3f\0" },
-  { 0xf911, "\x87\xba\0" },
-  { 0xf912, "\x88\xf8\0" },
-  { 0xf913, "\x90\x8f\0" },
-  { 0xf914, "\x6a\x02\0" },
-  { 0xf915, "\x6d\x1b\0" },
-  { 0xf916, "\x70\xd9\0" },
-  { 0xf917, "\x73\xde\0" },
-  { 0xf918, "\x84\x3d\0" },
-  { 0xf919, "\x91\x6a\0" },
-  { 0xf91a, "\x99\xf1\0" },
-  { 0xf91b, "\x4e\x82\0" },
-  { 0xf91c, "\x53\x75\0" },
-  { 0xf91d, "\x6b\x04\0" },
-  { 0xf91e, "\x72\x1b\0" },
-  { 0xf91f, "\x86\x2d\0" },
-  { 0xf920, "\x9e\x1e\0" },
-  { 0xf921, "\x5d\x50\0" },
-  { 0xf922, "\x6f\xeb\0" },
-  { 0xf923, "\x85\xcd\0" },
-  { 0xf924, "\x89\x64\0" },
-  { 0xf925, "\x62\xc9\0" },
-  { 0xf926, "\x81\xd8\0" },
-  { 0xf927, "\x88\x1f\0" },
-  { 0xf928, "\x5e\xca\0" },
-  { 0xf929, "\x67\x17\0" },
-  { 0xf92a, "\x6d\x6a\0" },
-  { 0xf92b, "\x72\xfc\0" },
-  { 0xf92c, "\x90\xce\0" },
-  { 0xf92d, "\x4f\x86\0" },
-  { 0xf92e, "\x51\xb7\0" },
-  { 0xf92f, "\x52\xde\0" },
-  { 0xf930, "\x64\xc4\0" },
-  { 0xf931, "\x6a\xd3\0" },
-  { 0xf932, "\x72\x10\0" },
-  { 0xf933, "\x76\xe7\0" },
-  { 0xf934, "\x80\x01\0" },
-  { 0xf935, "\x86\x06\0" },
-  { 0xf936, "\x86\x5c\0" },
-  { 0xf937, "\x8d\xef\0" },
-  { 0xf938, "\x97\x32\0" },
-  { 0xf939, "\x9b\x6f\0" },
-  { 0xf93a, "\x9d\xfa\0" },
-  { 0xf93b, "\x78\x8c\0" },
-  { 0xf93c, "\x79\x7f\0" },
-  { 0xf93d, "\x7d\xa0\0" },
-  { 0xf93e, "\x83\xc9\0" },
-  { 0xf93f, "\x93\x04\0" },
-  { 0xf940, "\x9e\x7f\0" },
-  { 0xf941, "\x8a\xd6\0" },
-  { 0xf942, "\x58\xdf\0" },
-  { 0xf943, "\x5f\x04\0" },
-  { 0xf944, "\x7c\x60\0" },
-  { 0xf945, "\x80\x7e\0" },
-  { 0xf946, "\x72\x62\0" },
-  { 0xf947, "\x78\xca\0" },
-  { 0xf948, "\x8c\xc2\0" },
-  { 0xf949, "\x96\xf7\0" },
-  { 0xf94a, "\x58\xd8\0" },
-  { 0xf94b, "\x5c\x62\0" },
-  { 0xf94c, "\x6a\x13\0" },
-  { 0xf94d, "\x6d\xda\0" },
-  { 0xf94e, "\x6f\x0f\0" },
-  { 0xf94f, "\x7d\x2f\0" },
-  { 0xf950, "\x7e\x37\0" },
-  { 0xf951, "\x96\xfb\0" },
-  { 0xf952, "\x52\xd2\0" },
-  { 0xf953, "\x80\x8b\0" },
-  { 0xf954, "\x51\xdc\0" },
-  { 0xf955, "\x51\xcc\0" },
-  { 0xf956, "\x7a\x1c\0" },
-  { 0xf957, "\x7d\xbe\0" },
-  { 0xf958, "\x83\xf1\0" },
-  { 0xf959, "\x96\x75\0" },
-  { 0xf95a, "\x8b\x80\0" },
-  { 0xf95b, "\x62\xcf\0" },
-  { 0xf95c, "\x6a\x02\0" },
-  { 0xf95d, "\x8a\xfe\0" },
-  { 0xf95e, "\x4e\x39\0" },
-  { 0xf95f, "\x5b\xe7\0" },
-  { 0xf960, "\x60\x12\0" },
-  { 0xf961, "\x73\x87\0" },
-  { 0xf962, "\x75\x70\0" },
-  { 0xf963, "\x53\x17\0" },
-  { 0xf964, "\x78\xfb\0" },
-  { 0xf965, "\x4f\xbf\0" },
-  { 0xf966, "\x5f\xa9\0" },
-  { 0xf967, "\x4e\x0d\0" },
-  { 0xf968, "\x6c\xcc\0" },
-  { 0xf969, "\x65\x78\0" },
-  { 0xf96a, "\x7d\x22\0" },
-  { 0xf96b, "\x53\xc3\0" },
-  { 0xf96c, "\x58\x5e\0" },
-  { 0xf96d, "\x77\x01\0" },
-  { 0xf96e, "\x84\x49\0" },
-  { 0xf96f, "\x8a\xaa\0" },
-  { 0xf970, "\x6b\xba\0" },
-  { 0xf971, "\x8f\xb0\0" },
-  { 0xf972, "\x6c\x88\0" },
-  { 0xf973, "\x62\xfe\0" },
-  { 0xf974, "\x82\xe5\0" },
-  { 0xf975, "\x63\xa0\0" },
-  { 0xf976, "\x75\x65\0" },
-  { 0xf977, "\x4e\xae\0" },
-  { 0xf978, "\x51\x69\0" },
-  { 0xf979, "\x51\xc9\0" },
-  { 0xf97a, "\x68\x81\0" },
-  { 0xf97b, "\x7c\xe7\0" },
-  { 0xf97c, "\x82\x6f\0" },
-  { 0xf97d, "\x8a\xd2\0" },
-  { 0xf97e, "\x91\xcf\0" },
-  { 0xf97f, "\x52\xf5\0" },
-  { 0xf980, "\x54\x42\0" },
-  { 0xf981, "\x59\x73\0" },
-  { 0xf982, "\x5e\xec\0" },
-  { 0xf983, "\x65\xc5\0" },
-  { 0xf984, "\x6f\xfe\0" },
-  { 0xf985, "\x79\x2a\0" },
-  { 0xf986, "\x95\xad\0" },
-  { 0xf987, "\x9a\x6a\0" },
-  { 0xf988, "\x9e\x97\0" },
-  { 0xf989, "\x9e\xce\0" },
-  { 0xf98a, "\x52\x9b\0" },
-  { 0xf98b, "\x66\xc6\0" },
-  { 0xf98c, "\x6b\x77\0" },
-  { 0xf98d, "\x8f\x62\0" },
-  { 0xf98e, "\x5e\x74\0" },
-  { 0xf98f, "\x61\x90\0" },
-  { 0xf990, "\x62\x00\0" },
-  { 0xf991, "\x64\x9a\0" },
-  { 0xf992, "\x6f\x23\0" },
-  { 0xf993, "\x71\x49\0" },
-  { 0xf994, "\x74\x89\0" },
-  { 0xf995, "\x79\xca\0" },
-  { 0xf996, "\x7d\xf4\0" },
-  { 0xf997, "\x80\x6f\0" },
-  { 0xf998, "\x8f\x26\0" },
-  { 0xf999, "\x84\xee\0" },
-  { 0xf99a, "\x90\x23\0" },
-  { 0xf99b, "\x93\x4a\0" },
-  { 0xf99c, "\x52\x17\0" },
-  { 0xf99d, "\x52\xa3\0" },
-  { 0xf99e, "\x54\xbd\0" },
-  { 0xf99f, "\x70\xc8\0" },
-  { 0xf9a0, "\x88\xc2\0" },
-  { 0xf9a1, "\x8a\xaa\0" },
-  { 0xf9a2, "\x5e\xc9\0" },
-  { 0xf9a3, "\x5f\xf5\0" },
-  { 0xf9a4, "\x63\x7b\0" },
-  { 0xf9a5, "\x6b\xae\0" },
-  { 0xf9a6, "\x7c\x3e\0" },
-  { 0xf9a7, "\x73\x75\0" },
-  { 0xf9a8, "\x4e\xe4\0" },
-  { 0xf9a9, "\x56\xf9\0" },
-  { 0xf9aa, "\x5b\xe7\0" },
-  { 0xf9ab, "\x5d\xba\0" },
-  { 0xf9ac, "\x60\x1c\0" },
-  { 0xf9ad, "\x73\xb2\0" },
-  { 0xf9ae, "\x74\x69\0" },
-  { 0xf9af, "\x7f\x9a\0" },
-  { 0xf9b0, "\x80\x46\0" },
-  { 0xf9b1, "\x92\x34\0" },
-  { 0xf9b2, "\x96\xf6\0" },
-  { 0xf9b3, "\x97\x48\0" },
-  { 0xf9b4, "\x98\x18\0" },
-  { 0xf9b5, "\x4f\x8b\0" },
-  { 0xf9b6, "\x79\xae\0" },
-  { 0xf9b7, "\x91\xb4\0" },
-  { 0xf9b8, "\x96\xb8\0" },
-  { 0xf9b9, "\x60\xe1\0" },
-  { 0xf9ba, "\x4e\x86\0" },
-  { 0xf9bb, "\x50\xda\0" },
-  { 0xf9bc, "\x5b\xee\0" },
-  { 0xf9bd, "\x5c\x3f\0" },
-  { 0xf9be, "\x65\x99\0" },
-  { 0xf9bf, "\x6a\x02\0" },
-  { 0xf9c0, "\x71\xce\0" },
-  { 0xf9c1, "\x76\x42\0" },
-  { 0xf9c2, "\x84\xfc\0" },
-  { 0xf9c3, "\x90\x7c\0" },
-  { 0xf9c4, "\x9f\x8d\0" },
-  { 0xf9c5, "\x66\x88\0" },
-  { 0xf9c6, "\x96\x2e\0" },
-  { 0xf9c7, "\x52\x89\0" },
-  { 0xf9c8, "\x67\x7b\0" },
-  { 0xf9c9, "\x67\xf3\0" },
-  { 0xf9ca, "\x6d\x41\0" },
-  { 0xf9cb, "\x6e\x9c\0" },
-  { 0xf9cc, "\x74\x09\0" },
-  { 0xf9cd, "\x75\x59\0" },
-  { 0xf9ce, "\x78\x6b\0" },
-  { 0xf9cf, "\x7d\x10\0" },
-  { 0xf9d0, "\x98\x5e\0" },
-  { 0xf9d1, "\x51\x6d\0" },
-  { 0xf9d2, "\x62\x2e\0" },
-  { 0xf9d3, "\x96\x78\0" },
-  { 0xf9d4, "\x50\x2b\0" },
-  { 0xf9d5, "\x5d\x19\0" },
-  { 0xf9d6, "\x6d\xea\0" },
-  { 0xf9d7, "\x8f\x2a\0" },
-  { 0xf9d8, "\x5f\x8b\0" },
-  { 0xf9d9, "\x61\x44\0" },
-  { 0xf9da, "\x68\x17\0" },
-  { 0xf9db, "\x73\x87\0" },
-  { 0xf9dc, "\x96\x86\0" },
-  { 0xf9dd, "\x52\x29\0" },
-  { 0xf9de, "\x54\x0f\0" },
-  { 0xf9df, "\x5c\x65\0" },
-  { 0xf9e0, "\x66\x13\0" },
-  { 0xf9e1, "\x67\x4e\0" },
-  { 0xf9e2, "\x68\xa8\0" },
-  { 0xf9e3, "\x6c\xe5\0" },
-  { 0xf9e4, "\x74\x06\0" },
-  { 0xf9e5, "\x75\xe2\0" },
-  { 0xf9e6, "\x7f\x79\0" },
-  { 0xf9e7, "\x88\xcf\0" },
-  { 0xf9e8, "\x88\xe1\0" },
-  { 0xf9e9, "\x91\xcc\0" },
-  { 0xf9ea, "\x96\xe2\0" },
-  { 0xf9eb, "\x53\x3f\0" },
-  { 0xf9ec, "\x6e\xba\0" },
-  { 0xf9ed, "\x54\x1d\0" },
-  { 0xf9ee, "\x71\xd0\0" },
-  { 0xf9ef, "\x74\x98\0" },
-  { 0xf9f0, "\x85\xfa\0" },
-  { 0xf9f1, "\x96\xa3\0" },
-  { 0xf9f2, "\x9c\x57\0" },
-  { 0xf9f3, "\x9e\x9f\0" },
-  { 0xf9f4, "\x67\x97\0" },
-  { 0xf9f5, "\x6d\xcb\0" },
-  { 0xf9f6, "\x81\xe8\0" },
-  { 0xf9f7, "\x7a\xcb\0" },
-  { 0xf9f8, "\x7b\x20\0" },
-  { 0xf9f9, "\x7c\x92\0" },
-  { 0xf9fa, "\x72\xc0\0" },
-  { 0xf9fb, "\x70\x99\0" },
-  { 0xf9fc, "\x8b\x58\0" },
-  { 0xf9fd, "\x4e\xc0\0" },
-  { 0xf9fe, "\x83\x36\0" },
-  { 0xf9ff, "\x52\x3a\0" },
-  { 0xfa00, "\x52\x07\0" },
-  { 0xfa01, "\x5e\xa6\0" },
-  { 0xfa02, "\x62\xd3\0" },
-  { 0xfa03, "\x7c\xd6\0" },
-  { 0xfa04, "\x5b\x85\0" },
-  { 0xfa05, "\x6d\x1e\0" },
-  { 0xfa06, "\x66\xb4\0" },
-  { 0xfa07, "\x8f\x3b\0" },
-  { 0xfa08, "\x88\x4c\0" },
-  { 0xfa09, "\x96\x4d\0" },
-  { 0xfa0a, "\x89\x8b\0" },
-  { 0xfa0b, "\x5e\xd3\0" },
-  { 0xfa0c, "\x51\x40\0" },
-  { 0xfa0d, "\x55\xc0\0" },
-  { 0xfa10, "\x58\x5a\0" },
-  { 0xfa12, "\x66\x74\0" },
-  { 0xfa15, "\x51\xde\0" },
-  { 0xfa16, "\x73\x2a\0" },
-  { 0xfa17, "\x76\xca\0" },
-  { 0xfa18, "\x79\x3c\0" },
-  { 0xfa19, "\x79\x5e\0" },
-  { 0xfa1a, "\x79\x65\0" },
-  { 0xfa1b, "\x79\x8f\0" },
-  { 0xfa1c, "\x97\x56\0" },
-  { 0xfa1d, "\x7c\xbe\0" },
-  { 0xfa1e, "\x7f\xbd\0" },
-  { 0xfa20, "\x86\x12\0" },
-  { 0xfa22, "\x8a\xf8\0" },
-  { 0xfa25, "\x90\x38\0" },
-  { 0xfa26, "\x90\xfd\0" },
-  { 0xfa2a, "\x98\xef\0" },
-  { 0xfa2b, "\x98\xfc\0" },
-  { 0xfa2c, "\x99\x28\0" },
-  { 0xfa2d, "\x9d\xb4\0" },
-  { 0xfb1f, "\x05\xf2\x05\xb7\0" },
-  { 0xfb2a, "\x05\xe9\x05\xc1\0" },
-  { 0xfb2b, "\x05\xe9\x05\xc2\0" },
-  { 0xfb2c, "\x05\xe9\x05\xbc\x05\xc1\0" },
-  { 0xfb2d, "\x05\xe9\x05\xbc\x05\xc2\0" },
-  { 0xfb2e, "\x05\xd0\x05\xb7\0" },
-  { 0xfb2f, "\x05\xd0\x05\xb8\0" },
-  { 0xfb30, "\x05\xd0\x05\xbc\0" },
-  { 0xfb31, "\x05\xd1\x05\xbc\0" },
-  { 0xfb32, "\x05\xd2\x05\xbc\0" },
-  { 0xfb33, "\x05\xd3\x05\xbc\0" },
-  { 0xfb34, "\x05\xd4\x05\xbc\0" },
-  { 0xfb35, "\x05\xd5\x05\xbc\0" },
-  { 0xfb36, "\x05\xd6\x05\xbc\0" },
-  { 0xfb38, "\x05\xd8\x05\xbc\0" },
-  { 0xfb39, "\x05\xd9\x05\xbc\0" },
-  { 0xfb3a, "\x05\xda\x05\xbc\0" },
-  { 0xfb3b, "\x05\xdb\x05\xbc\0" },
-  { 0xfb3c, "\x05\xdc\x05\xbc\0" },
-  { 0xfb3e, "\x05\xde\x05\xbc\0" },
-  { 0xfb40, "\x05\xe0\x05\xbc\0" },
-  { 0xfb41, "\x05\xe1\x05\xbc\0" },
-  { 0xfb43, "\x05\xe3\x05\xbc\0" },
-  { 0xfb44, "\x05\xe4\x05\xbc\0" },
-  { 0xfb46, "\x05\xe6\x05\xbc\0" },
-  { 0xfb47, "\x05\xe7\x05\xbc\0" },
-  { 0xfb48, "\x05\xe8\x05\xbc\0" },
-  { 0xfb49, "\x05\xe9\x05\xbc\0" },
-  { 0xfb4a, "\x05\xea\x05\xbc\0" },
-  { 0xfb4b, "\x05\xd5\x05\xb9\0" },
-  { 0xfb4c, "\x05\xd1\x05\xbf\0" },
-  { 0xfb4d, "\x05\xdb\x05\xbf\0" },
-  { 0xfb4e, "\x05\xe4\x05\xbf\0" }
+  { 0x00c0, (unsigned char *) "\x00\x41\x03\x00\0" },
+  { 0x00c1, (unsigned char *) "\x00\x41\x03\x01\0" },
+  { 0x00c2, (unsigned char *) "\x00\x41\x03\x02\0" },
+  { 0x00c3, (unsigned char *) "\x00\x41\x03\x03\0" },
+  { 0x00c4, (unsigned char *) "\x00\x41\x03\x08\0" },
+  { 0x00c5, (unsigned char *) "\x00\x41\x03\x0a\0" },
+  { 0x00c7, (unsigned char *) "\x00\x43\x03\x27\0" },
+  { 0x00c8, (unsigned char *) "\x00\x45\x03\x00\0" },
+  { 0x00c9, (unsigned char *) "\x00\x45\x03\x01\0" },
+  { 0x00ca, (unsigned char *) "\x00\x45\x03\x02\0" },
+  { 0x00cb, (unsigned char *) "\x00\x45\x03\x08\0" },
+  { 0x00cc, (unsigned char *) "\x00\x49\x03\x00\0" },
+  { 0x00cd, (unsigned char *) "\x00\x49\x03\x01\0" },
+  { 0x00ce, (unsigned char *) "\x00\x49\x03\x02\0" },
+  { 0x00cf, (unsigned char *) "\x00\x49\x03\x08\0" },
+  { 0x00d1, (unsigned char *) "\x00\x4e\x03\x03\0" },
+  { 0x00d2, (unsigned char *) "\x00\x4f\x03\x00\0" },
+  { 0x00d3, (unsigned char *) "\x00\x4f\x03\x01\0" },
+  { 0x00d4, (unsigned char *) "\x00\x4f\x03\x02\0" },
+  { 0x00d5, (unsigned char *) "\x00\x4f\x03\x03\0" },
+  { 0x00d6, (unsigned char *) "\x00\x4f\x03\x08\0" },
+  { 0x00d9, (unsigned char *) "\x00\x55\x03\x00\0" },
+  { 0x00da, (unsigned char *) "\x00\x55\x03\x01\0" },
+  { 0x00db, (unsigned char *) "\x00\x55\x03\x02\0" },
+  { 0x00dc, (unsigned char *) "\x00\x55\x03\x08\0" },
+  { 0x00dd, (unsigned char *) "\x00\x59\x03\x01\0" },
+  { 0x00e0, (unsigned char *) "\x00\x61\x03\x00\0" },
+  { 0x00e1, (unsigned char *) "\x00\x61\x03\x01\0" },
+  { 0x00e2, (unsigned char *) "\x00\x61\x03\x02\0" },
+  { 0x00e3, (unsigned char *) "\x00\x61\x03\x03\0" },
+  { 0x00e4, (unsigned char *) "\x00\x61\x03\x08\0" },
+  { 0x00e5, (unsigned char *) "\x00\x61\x03\x0a\0" },
+  { 0x00e7, (unsigned char *) "\x00\x63\x03\x27\0" },
+  { 0x00e8, (unsigned char *) "\x00\x65\x03\x00\0" },
+  { 0x00e9, (unsigned char *) "\x00\x65\x03\x01\0" },
+  { 0x00ea, (unsigned char *) "\x00\x65\x03\x02\0" },
+  { 0x00eb, (unsigned char *) "\x00\x65\x03\x08\0" },
+  { 0x00ec, (unsigned char *) "\x00\x69\x03\x00\0" },
+  { 0x00ed, (unsigned char *) "\x00\x69\x03\x01\0" },
+  { 0x00ee, (unsigned char *) "\x00\x69\x03\x02\0" },
+  { 0x00ef, (unsigned char *) "\x00\x69\x03\x08\0" },
+  { 0x00f1, (unsigned char *) "\x00\x6e\x03\x03\0" },
+  { 0x00f2, (unsigned char *) "\x00\x6f\x03\x00\0" },
+  { 0x00f3, (unsigned char *) "\x00\x6f\x03\x01\0" },
+  { 0x00f4, (unsigned char *) "\x00\x6f\x03\x02\0" },
+  { 0x00f5, (unsigned char *) "\x00\x6f\x03\x03\0" },
+  { 0x00f6, (unsigned char *) "\x00\x6f\x03\x08\0" },
+  { 0x00f9, (unsigned char *) "\x00\x75\x03\x00\0" },
+  { 0x00fa, (unsigned char *) "\x00\x75\x03\x01\0" },
+  { 0x00fb, (unsigned char *) "\x00\x75\x03\x02\0" },
+  { 0x00fc, (unsigned char *) "\x00\x75\x03\x08\0" },
+  { 0x00fd, (unsigned char *) "\x00\x79\x03\x01\0" },
+  { 0x00ff, (unsigned char *) "\x00\x79\x03\x08\0" },
+  { 0x0100, (unsigned char *) "\x00\x41\x03\x04\0" },
+  { 0x0101, (unsigned char *) "\x00\x61\x03\x04\0" },
+  { 0x0102, (unsigned char *) "\x00\x41\x03\x06\0" },
+  { 0x0103, (unsigned char *) "\x00\x61\x03\x06\0" },
+  { 0x0104, (unsigned char *) "\x00\x41\x03\x28\0" },
+  { 0x0105, (unsigned char *) "\x00\x61\x03\x28\0" },
+  { 0x0106, (unsigned char *) "\x00\x43\x03\x01\0" },
+  { 0x0107, (unsigned char *) "\x00\x63\x03\x01\0" },
+  { 0x0108, (unsigned char *) "\x00\x43\x03\x02\0" },
+  { 0x0109, (unsigned char *) "\x00\x63\x03\x02\0" },
+  { 0x010a, (unsigned char *) "\x00\x43\x03\x07\0" },
+  { 0x010b, (unsigned char *) "\x00\x63\x03\x07\0" },
+  { 0x010c, (unsigned char *) "\x00\x43\x03\x0c\0" },
+  { 0x010d, (unsigned char *) "\x00\x63\x03\x0c\0" },
+  { 0x010e, (unsigned char *) "\x00\x44\x03\x0c\0" },
+  { 0x010f, (unsigned char *) "\x00\x64\x03\x0c\0" },
+  { 0x0112, (unsigned char *) "\x00\x45\x03\x04\0" },
+  { 0x0113, (unsigned char *) "\x00\x65\x03\x04\0" },
+  { 0x0114, (unsigned char *) "\x00\x45\x03\x06\0" },
+  { 0x0115, (unsigned char *) "\x00\x65\x03\x06\0" },
+  { 0x0116, (unsigned char *) "\x00\x45\x03\x07\0" },
+  { 0x0117, (unsigned char *) "\x00\x65\x03\x07\0" },
+  { 0x0118, (unsigned char *) "\x00\x45\x03\x28\0" },
+  { 0x0119, (unsigned char *) "\x00\x65\x03\x28\0" },
+  { 0x011a, (unsigned char *) "\x00\x45\x03\x0c\0" },
+  { 0x011b, (unsigned char *) "\x00\x65\x03\x0c\0" },
+  { 0x011c, (unsigned char *) "\x00\x47\x03\x02\0" },
+  { 0x011d, (unsigned char *) "\x00\x67\x03\x02\0" },
+  { 0x011e, (unsigned char *) "\x00\x47\x03\x06\0" },
+  { 0x011f, (unsigned char *) "\x00\x67\x03\x06\0" },
+  { 0x0120, (unsigned char *) "\x00\x47\x03\x07\0" },
+  { 0x0121, (unsigned char *) "\x00\x67\x03\x07\0" },
+  { 0x0122, (unsigned char *) "\x00\x47\x03\x27\0" },
+  { 0x0123, (unsigned char *) "\x00\x67\x03\x27\0" },
+  { 0x0124, (unsigned char *) "\x00\x48\x03\x02\0" },
+  { 0x0125, (unsigned char *) "\x00\x68\x03\x02\0" },
+  { 0x0128, (unsigned char *) "\x00\x49\x03\x03\0" },
+  { 0x0129, (unsigned char *) "\x00\x69\x03\x03\0" },
+  { 0x012a, (unsigned char *) "\x00\x49\x03\x04\0" },
+  { 0x012b, (unsigned char *) "\x00\x69\x03\x04\0" },
+  { 0x012c, (unsigned char *) "\x00\x49\x03\x06\0" },
+  { 0x012d, (unsigned char *) "\x00\x69\x03\x06\0" },
+  { 0x012e, (unsigned char *) "\x00\x49\x03\x28\0" },
+  { 0x012f, (unsigned char *) "\x00\x69\x03\x28\0" },
+  { 0x0130, (unsigned char *) "\x00\x49\x03\x07\0" },
+  { 0x0134, (unsigned char *) "\x00\x4a\x03\x02\0" },
+  { 0x0135, (unsigned char *) "\x00\x6a\x03\x02\0" },
+  { 0x0136, (unsigned char *) "\x00\x4b\x03\x27\0" },
+  { 0x0137, (unsigned char *) "\x00\x6b\x03\x27\0" },
+  { 0x0139, (unsigned char *) "\x00\x4c\x03\x01\0" },
+  { 0x013a, (unsigned char *) "\x00\x6c\x03\x01\0" },
+  { 0x013b, (unsigned char *) "\x00\x4c\x03\x27\0" },
+  { 0x013c, (unsigned char *) "\x00\x6c\x03\x27\0" },
+  { 0x013d, (unsigned char *) "\x00\x4c\x03\x0c\0" },
+  { 0x013e, (unsigned char *) "\x00\x6c\x03\x0c\0" },
+  { 0x0143, (unsigned char *) "\x00\x4e\x03\x01\0" },
+  { 0x0144, (unsigned char *) "\x00\x6e\x03\x01\0" },
+  { 0x0145, (unsigned char *) "\x00\x4e\x03\x27\0" },
+  { 0x0146, (unsigned char *) "\x00\x6e\x03\x27\0" },
+  { 0x0147, (unsigned char *) "\x00\x4e\x03\x0c\0" },
+  { 0x0148, (unsigned char *) "\x00\x6e\x03\x0c\0" },
+  { 0x014c, (unsigned char *) "\x00\x4f\x03\x04\0" },
+  { 0x014d, (unsigned char *) "\x00\x6f\x03\x04\0" },
+  { 0x014e, (unsigned char *) "\x00\x4f\x03\x06\0" },
+  { 0x014f, (unsigned char *) "\x00\x6f\x03\x06\0" },
+  { 0x0150, (unsigned char *) "\x00\x4f\x03\x0b\0" },
+  { 0x0151, (unsigned char *) "\x00\x6f\x03\x0b\0" },
+  { 0x0154, (unsigned char *) "\x00\x52\x03\x01\0" },
+  { 0x0155, (unsigned char *) "\x00\x72\x03\x01\0" },
+  { 0x0156, (unsigned char *) "\x00\x52\x03\x27\0" },
+  { 0x0157, (unsigned char *) "\x00\x72\x03\x27\0" },
+  { 0x0158, (unsigned char *) "\x00\x52\x03\x0c\0" },
+  { 0x0159, (unsigned char *) "\x00\x72\x03\x0c\0" },
+  { 0x015a, (unsigned char *) "\x00\x53\x03\x01\0" },
+  { 0x015b, (unsigned char *) "\x00\x73\x03\x01\0" },
+  { 0x015c, (unsigned char *) "\x00\x53\x03\x02\0" },
+  { 0x015d, (unsigned char *) "\x00\x73\x03\x02\0" },
+  { 0x015e, (unsigned char *) "\x00\x53\x03\x27\0" },
+  { 0x015f, (unsigned char *) "\x00\x73\x03\x27\0" },
+  { 0x0160, (unsigned char *) "\x00\x53\x03\x0c\0" },
+  { 0x0161, (unsigned char *) "\x00\x73\x03\x0c\0" },
+  { 0x0162, (unsigned char *) "\x00\x54\x03\x27\0" },
+  { 0x0163, (unsigned char *) "\x00\x74\x03\x27\0" },
+  { 0x0164, (unsigned char *) "\x00\x54\x03\x0c\0" },
+  { 0x0165, (unsigned char *) "\x00\x74\x03\x0c\0" },
+  { 0x0168, (unsigned char *) "\x00\x55\x03\x03\0" },
+  { 0x0169, (unsigned char *) "\x00\x75\x03\x03\0" },
+  { 0x016a, (unsigned char *) "\x00\x55\x03\x04\0" },
+  { 0x016b, (unsigned char *) "\x00\x75\x03\x04\0" },
+  { 0x016c, (unsigned char *) "\x00\x55\x03\x06\0" },
+  { 0x016d, (unsigned char *) "\x00\x75\x03\x06\0" },
+  { 0x016e, (unsigned char *) "\x00\x55\x03\x0a\0" },
+  { 0x016f, (unsigned char *) "\x00\x75\x03\x0a\0" },
+  { 0x0170, (unsigned char *) "\x00\x55\x03\x0b\0" },
+  { 0x0171, (unsigned char *) "\x00\x75\x03\x0b\0" },
+  { 0x0172, (unsigned char *) "\x00\x55\x03\x28\0" },
+  { 0x0173, (unsigned char *) "\x00\x75\x03\x28\0" },
+  { 0x0174, (unsigned char *) "\x00\x57\x03\x02\0" },
+  { 0x0175, (unsigned char *) "\x00\x77\x03\x02\0" },
+  { 0x0176, (unsigned char *) "\x00\x59\x03\x02\0" },
+  { 0x0177, (unsigned char *) "\x00\x79\x03\x02\0" },
+  { 0x0178, (unsigned char *) "\x00\x59\x03\x08\0" },
+  { 0x0179, (unsigned char *) "\x00\x5a\x03\x01\0" },
+  { 0x017a, (unsigned char *) "\x00\x7a\x03\x01\0" },
+  { 0x017b, (unsigned char *) "\x00\x5a\x03\x07\0" },
+  { 0x017c, (unsigned char *) "\x00\x7a\x03\x07\0" },
+  { 0x017d, (unsigned char *) "\x00\x5a\x03\x0c\0" },
+  { 0x017e, (unsigned char *) "\x00\x7a\x03\x0c\0" },
+  { 0x01a0, (unsigned char *) "\x00\x4f\x03\x1b\0" },
+  { 0x01a1, (unsigned char *) "\x00\x6f\x03\x1b\0" },
+  { 0x01af, (unsigned char *) "\x00\x55\x03\x1b\0" },
+  { 0x01b0, (unsigned char *) "\x00\x75\x03\x1b\0" },
+  { 0x01cd, (unsigned char *) "\x00\x41\x03\x0c\0" },
+  { 0x01ce, (unsigned char *) "\x00\x61\x03\x0c\0" },
+  { 0x01cf, (unsigned char *) "\x00\x49\x03\x0c\0" },
+  { 0x01d0, (unsigned char *) "\x00\x69\x03\x0c\0" },
+  { 0x01d1, (unsigned char *) "\x00\x4f\x03\x0c\0" },
+  { 0x01d2, (unsigned char *) "\x00\x6f\x03\x0c\0" },
+  { 0x01d3, (unsigned char *) "\x00\x55\x03\x0c\0" },
+  { 0x01d4, (unsigned char *) "\x00\x75\x03\x0c\0" },
+  { 0x01d5, (unsigned char *) "\x00\x55\x03\x08\x03\x04\0" },
+  { 0x01d6, (unsigned char *) "\x00\x75\x03\x08\x03\x04\0" },
+  { 0x01d7, (unsigned char *) "\x00\x55\x03\x08\x03\x01\0" },
+  { 0x01d8, (unsigned char *) "\x00\x75\x03\x08\x03\x01\0" },
+  { 0x01d9, (unsigned char *) "\x00\x55\x03\x08\x03\x0c\0" },
+  { 0x01da, (unsigned char *) "\x00\x75\x03\x08\x03\x0c\0" },
+  { 0x01db, (unsigned char *) "\x00\x55\x03\x08\x03\x00\0" },
+  { 0x01dc, (unsigned char *) "\x00\x75\x03\x08\x03\x00\0" },
+  { 0x01de, (unsigned char *) "\x00\x41\x03\x08\x03\x04\0" },
+  { 0x01df, (unsigned char *) "\x00\x61\x03\x08\x03\x04\0" },
+  { 0x01e0, (unsigned char *) "\x00\x41\x03\x07\x03\x04\0" },
+  { 0x01e1, (unsigned char *) "\x00\x61\x03\x07\x03\x04\0" },
+  { 0x01e2, (unsigned char *) "\x00\xc6\x03\x04\0" },
+  { 0x01e3, (unsigned char *) "\x00\xe6\x03\x04\0" },
+  { 0x01e6, (unsigned char *) "\x00\x47\x03\x0c\0" },
+  { 0x01e7, (unsigned char *) "\x00\x67\x03\x0c\0" },
+  { 0x01e8, (unsigned char *) "\x00\x4b\x03\x0c\0" },
+  { 0x01e9, (unsigned char *) "\x00\x6b\x03\x0c\0" },
+  { 0x01ea, (unsigned char *) "\x00\x4f\x03\x28\0" },
+  { 0x01eb, (unsigned char *) "\x00\x6f\x03\x28\0" },
+  { 0x01ec, (unsigned char *) "\x00\x4f\x03\x28\x03\x04\0" },
+  { 0x01ed, (unsigned char *) "\x00\x6f\x03\x28\x03\x04\0" },
+  { 0x01ee, (unsigned char *) "\x01\xb7\x03\x0c\0" },
+  { 0x01ef, (unsigned char *) "\x02\x92\x03\x0c\0" },
+  { 0x01f0, (unsigned char *) "\x00\x6a\x03\x0c\0" },
+  { 0x01f4, (unsigned char *) "\x00\x47\x03\x01\0" },
+  { 0x01f5, (unsigned char *) "\x00\x67\x03\x01\0" },
+  { 0x01fa, (unsigned char *) "\x00\x41\x03\x0a\x03\x01\0" },
+  { 0x01fb, (unsigned char *) "\x00\x61\x03\x0a\x03\x01\0" },
+  { 0x01fc, (unsigned char *) "\x00\xc6\x03\x01\0" },
+  { 0x01fd, (unsigned char *) "\x00\xe6\x03\x01\0" },
+  { 0x01fe, (unsigned char *) "\x00\xd8\x03\x01\0" },
+  { 0x01ff, (unsigned char *) "\x00\xf8\x03\x01\0" },
+  { 0x0200, (unsigned char *) "\x00\x41\x03\x0f\0" },
+  { 0x0201, (unsigned char *) "\x00\x61\x03\x0f\0" },
+  { 0x0202, (unsigned char *) "\x00\x41\x03\x11\0" },
+  { 0x0203, (unsigned char *) "\x00\x61\x03\x11\0" },
+  { 0x0204, (unsigned char *) "\x00\x45\x03\x0f\0" },
+  { 0x0205, (unsigned char *) "\x00\x65\x03\x0f\0" },
+  { 0x0206, (unsigned char *) "\x00\x45\x03\x11\0" },
+  { 0x0207, (unsigned char *) "\x00\x65\x03\x11\0" },
+  { 0x0208, (unsigned char *) "\x00\x49\x03\x0f\0" },
+  { 0x0209, (unsigned char *) "\x00\x69\x03\x0f\0" },
+  { 0x020a, (unsigned char *) "\x00\x49\x03\x11\0" },
+  { 0x020b, (unsigned char *) "\x00\x69\x03\x11\0" },
+  { 0x020c, (unsigned char *) "\x00\x4f\x03\x0f\0" },
+  { 0x020d, (unsigned char *) "\x00\x6f\x03\x0f\0" },
+  { 0x020e, (unsigned char *) "\x00\x4f\x03\x11\0" },
+  { 0x020f, (unsigned char *) "\x00\x6f\x03\x11\0" },
+  { 0x0210, (unsigned char *) "\x00\x52\x03\x0f\0" },
+  { 0x0211, (unsigned char *) "\x00\x72\x03\x0f\0" },
+  { 0x0212, (unsigned char *) "\x00\x52\x03\x11\0" },
+  { 0x0213, (unsigned char *) "\x00\x72\x03\x11\0" },
+  { 0x0214, (unsigned char *) "\x00\x55\x03\x0f\0" },
+  { 0x0215, (unsigned char *) "\x00\x75\x03\x0f\0" },
+  { 0x0216, (unsigned char *) "\x00\x55\x03\x11\0" },
+  { 0x0217, (unsigned char *) "\x00\x75\x03\x11\0" },
+  { 0x0340, (unsigned char *) "\x03\x00\0" },
+  { 0x0341, (unsigned char *) "\x03\x01\0" },
+  { 0x0343, (unsigned char *) "\x03\x13\0" },
+  { 0x0344, (unsigned char *) "\x03\x08\x03\x01\0" },
+  { 0x0374, (unsigned char *) "\x02\xb9\0" },
+  { 0x037e, (unsigned char *) "\x00\x3b\0" },
+  { 0x0385, (unsigned char *) "\x00\xa8\x03\x01\0" },
+  { 0x0386, (unsigned char *) "\x03\x91\x03\x01\0" },
+  { 0x0387, (unsigned char *) "\x00\xb7\0" },
+  { 0x0388, (unsigned char *) "\x03\x95\x03\x01\0" },
+  { 0x0389, (unsigned char *) "\x03\x97\x03\x01\0" },
+  { 0x038a, (unsigned char *) "\x03\x99\x03\x01\0" },
+  { 0x038c, (unsigned char *) "\x03\x9f\x03\x01\0" },
+  { 0x038e, (unsigned char *) "\x03\xa5\x03\x01\0" },
+  { 0x038f, (unsigned char *) "\x03\xa9\x03\x01\0" },
+  { 0x0390, (unsigned char *) "\x03\xb9\x03\x08\x03\x01\0" },
+  { 0x03aa, (unsigned char *) "\x03\x99\x03\x08\0" },
+  { 0x03ab, (unsigned char *) "\x03\xa5\x03\x08\0" },
+  { 0x03ac, (unsigned char *) "\x03\xb1\x03\x01\0" },
+  { 0x03ad, (unsigned char *) "\x03\xb5\x03\x01\0" },
+  { 0x03ae, (unsigned char *) "\x03\xb7\x03\x01\0" },
+  { 0x03af, (unsigned char *) "\x03\xb9\x03\x01\0" },
+  { 0x03b0, (unsigned char *) "\x03\xc5\x03\x08\x03\x01\0" },
+  { 0x03ca, (unsigned char *) "\x03\xb9\x03\x08\0" },
+  { 0x03cb, (unsigned char *) "\x03\xc5\x03\x08\0" },
+  { 0x03cc, (unsigned char *) "\x03\xbf\x03\x01\0" },
+  { 0x03cd, (unsigned char *) "\x03\xc5\x03\x01\0" },
+  { 0x03ce, (unsigned char *) "\x03\xc9\x03\x01\0" },
+  { 0x03d3, (unsigned char *) "\x03\xd2\x03\x01\0" },
+  { 0x03d4, (unsigned char *) "\x03\xd2\x03\x08\0" },
+  { 0x0401, (unsigned char *) "\x04\x15\x03\x08\0" },
+  { 0x0403, (unsigned char *) "\x04\x13\x03\x01\0" },
+  { 0x0407, (unsigned char *) "\x04\x06\x03\x08\0" },
+  { 0x040c, (unsigned char *) "\x04\x1a\x03\x01\0" },
+  { 0x040e, (unsigned char *) "\x04\x23\x03\x06\0" },
+  { 0x0419, (unsigned char *) "\x04\x18\x03\x06\0" },
+  { 0x0439, (unsigned char *) "\x04\x38\x03\x06\0" },
+  { 0x0451, (unsigned char *) "\x04\x35\x03\x08\0" },
+  { 0x0453, (unsigned char *) "\x04\x33\x03\x01\0" },
+  { 0x0457, (unsigned char *) "\x04\x56\x03\x08\0" },
+  { 0x045c, (unsigned char *) "\x04\x3a\x03\x01\0" },
+  { 0x045e, (unsigned char *) "\x04\x43\x03\x06\0" },
+  { 0x0476, (unsigned char *) "\x04\x74\x03\x0f\0" },
+  { 0x0477, (unsigned char *) "\x04\x75\x03\x0f\0" },
+  { 0x04c1, (unsigned char *) "\x04\x16\x03\x06\0" },
+  { 0x04c2, (unsigned char *) "\x04\x36\x03\x06\0" },
+  { 0x04d0, (unsigned char *) "\x04\x10\x03\x06\0" },
+  { 0x04d1, (unsigned char *) "\x04\x30\x03\x06\0" },
+  { 0x04d2, (unsigned char *) "\x04\x10\x03\x08\0" },
+  { 0x04d3, (unsigned char *) "\x04\x30\x03\x08\0" },
+  { 0x04d6, (unsigned char *) "\x04\x15\x03\x06\0" },
+  { 0x04d7, (unsigned char *) "\x04\x35\x03\x06\0" },
+  { 0x04da, (unsigned char *) "\x04\xd8\x03\x08\0" },
+  { 0x04db, (unsigned char *) "\x04\xd9\x03\x08\0" },
+  { 0x04dc, (unsigned char *) "\x04\x16\x03\x08\0" },
+  { 0x04dd, (unsigned char *) "\x04\x36\x03\x08\0" },
+  { 0x04de, (unsigned char *) "\x04\x17\x03\x08\0" },
+  { 0x04df, (unsigned char *) "\x04\x37\x03\x08\0" },
+  { 0x04e2, (unsigned char *) "\x04\x18\x03\x04\0" },
+  { 0x04e3, (unsigned char *) "\x04\x38\x03\x04\0" },
+  { 0x04e4, (unsigned char *) "\x04\x18\x03\x08\0" },
+  { 0x04e5, (unsigned char *) "\x04\x38\x03\x08\0" },
+  { 0x04e6, (unsigned char *) "\x04\x1e\x03\x08\0" },
+  { 0x04e7, (unsigned char *) "\x04\x3e\x03\x08\0" },
+  { 0x04ea, (unsigned char *) "\x04\xe8\x03\x08\0" },
+  { 0x04eb, (unsigned char *) "\x04\xe9\x03\x08\0" },
+  { 0x04ee, (unsigned char *) "\x04\x23\x03\x04\0" },
+  { 0x04ef, (unsigned char *) "\x04\x43\x03\x04\0" },
+  { 0x04f0, (unsigned char *) "\x04\x23\x03\x08\0" },
+  { 0x04f1, (unsigned char *) "\x04\x43\x03\x08\0" },
+  { 0x04f2, (unsigned char *) "\x04\x23\x03\x0b\0" },
+  { 0x04f3, (unsigned char *) "\x04\x43\x03\x0b\0" },
+  { 0x04f4, (unsigned char *) "\x04\x27\x03\x08\0" },
+  { 0x04f5, (unsigned char *) "\x04\x47\x03\x08\0" },
+  { 0x04f8, (unsigned char *) "\x04\x2b\x03\x08\0" },
+  { 0x04f9, (unsigned char *) "\x04\x4b\x03\x08\0" },
+  { 0x0929, (unsigned char *) "\x09\x28\x09\x3c\0" },
+  { 0x0931, (unsigned char *) "\x09\x30\x09\x3c\0" },
+  { 0x0934, (unsigned char *) "\x09\x33\x09\x3c\0" },
+  { 0x0958, (unsigned char *) "\x09\x15\x09\x3c\0" },
+  { 0x0959, (unsigned char *) "\x09\x16\x09\x3c\0" },
+  { 0x095a, (unsigned char *) "\x09\x17\x09\x3c\0" },
+  { 0x095b, (unsigned char *) "\x09\x1c\x09\x3c\0" },
+  { 0x095c, (unsigned char *) "\x09\x21\x09\x3c\0" },
+  { 0x095d, (unsigned char *) "\x09\x22\x09\x3c\0" },
+  { 0x095e, (unsigned char *) "\x09\x2b\x09\x3c\0" },
+  { 0x095f, (unsigned char *) "\x09\x2f\x09\x3c\0" },
+  { 0x09b0, (unsigned char *) "\x09\xac\x09\xbc\0" },
+  { 0x09cb, (unsigned char *) "\x09\xc7\x09\xbe\0" },
+  { 0x09cc, (unsigned char *) "\x09\xc7\x09\xd7\0" },
+  { 0x09dc, (unsigned char *) "\x09\xa1\x09\xbc\0" },
+  { 0x09dd, (unsigned char *) "\x09\xa2\x09\xbc\0" },
+  { 0x09df, (unsigned char *) "\x09\xaf\x09\xbc\0" },
+  { 0x0a59, (unsigned char *) "\x0a\x16\x0a\x3c\0" },
+  { 0x0a5a, (unsigned char *) "\x0a\x17\x0a\x3c\0" },
+  { 0x0a5b, (unsigned char *) "\x0a\x1c\x0a\x3c\0" },
+  { 0x0a5c, (unsigned char *) "\x0a\x21\x0a\x3c\0" },
+  { 0x0a5e, (unsigned char *) "\x0a\x2b\x0a\x3c\0" },
+  { 0x0b48, (unsigned char *) "\x0b\x47\x0b\x56\0" },
+  { 0x0b4b, (unsigned char *) "\x0b\x47\x0b\x3e\0" },
+  { 0x0b4c, (unsigned char *) "\x0b\x47\x0b\x57\0" },
+  { 0x0b5c, (unsigned char *) "\x0b\x21\x0b\x3c\0" },
+  { 0x0b5d, (unsigned char *) "\x0b\x22\x0b\x3c\0" },
+  { 0x0b5f, (unsigned char *) "\x0b\x2f\x0b\x3c\0" },
+  { 0x0b94, (unsigned char *) "\x0b\x92\x0b\xd7\0" },
+  { 0x0bca, (unsigned char *) "\x0b\xc6\x0b\xbe\0" },
+  { 0x0bcb, (unsigned char *) "\x0b\xc7\x0b\xbe\0" },
+  { 0x0bcc, (unsigned char *) "\x0b\xc6\x0b\xd7\0" },
+  { 0x0c48, (unsigned char *) "\x0c\x46\x0c\x56\0" },
+  { 0x0cc0, (unsigned char *) "\x0c\xbf\x0c\xd5\0" },
+  { 0x0cc7, (unsigned char *) "\x0c\xc6\x0c\xd5\0" },
+  { 0x0cc8, (unsigned char *) "\x0c\xc6\x0c\xd6\0" },
+  { 0x0cca, (unsigned char *) "\x0c\xc6\x0c\xc2\0" },
+  { 0x0ccb, (unsigned char *) "\x0c\xc6\x0c\xc2\x0c\xd5\0" },
+  { 0x0d4a, (unsigned char *) "\x0d\x46\x0d\x3e\0" },
+  { 0x0d4b, (unsigned char *) "\x0d\x47\x0d\x3e\0" },
+  { 0x0d4c, (unsigned char *) "\x0d\x46\x0d\x57\0" },
+  { 0x0e33, (unsigned char *) "\x0e\x4d\x0e\x32\0" },
+  { 0x0eb3, (unsigned char *) "\x0e\xcd\x0e\xb2\0" },
+  { 0x0f43, (unsigned char *) "\x0f\x42\x0f\xb7\0" },
+  { 0x0f4d, (unsigned char *) "\x0f\x4c\x0f\xb7\0" },
+  { 0x0f52, (unsigned char *) "\x0f\x51\x0f\xb7\0" },
+  { 0x0f57, (unsigned char *) "\x0f\x56\x0f\xb7\0" },
+  { 0x0f5c, (unsigned char *) "\x0f\x5b\x0f\xb7\0" },
+  { 0x0f69, (unsigned char *) "\x0f\x40\x0f\xb5\0" },
+  { 0x0f73, (unsigned char *) "\x0f\x71\x0f\x72\0" },
+  { 0x0f75, (unsigned char *) "\x0f\x71\x0f\x74\0" },
+  { 0x0f76, (unsigned char *) "\x0f\xb2\x0f\x80\0" },
+  { 0x0f78, (unsigned char *) "\x0f\xb3\x0f\x80\0" },
+  { 0x0f81, (unsigned char *) "\x0f\x71\x0f\x80\0" },
+  { 0x0f93, (unsigned char *) "\x0f\x92\x0f\xb7\0" },
+  { 0x0f9d, (unsigned char *) "\x0f\x9c\x0f\xb7\0" },
+  { 0x0fa2, (unsigned char *) "\x0f\xa1\x0f\xb7\0" },
+  { 0x0fa7, (unsigned char *) "\x0f\xa6\x0f\xb7\0" },
+  { 0x0fac, (unsigned char *) "\x0f\xab\x0f\xb7\0" },
+  { 0x0fb9, (unsigned char *) "\x0f\x90\x0f\xb5\0" },
+  { 0x1e00, (unsigned char *) "\x00\x41\x03\x25\0" },
+  { 0x1e01, (unsigned char *) "\x00\x61\x03\x25\0" },
+  { 0x1e02, (unsigned char *) "\x00\x42\x03\x07\0" },
+  { 0x1e03, (unsigned char *) "\x00\x62\x03\x07\0" },
+  { 0x1e04, (unsigned char *) "\x00\x42\x03\x23\0" },
+  { 0x1e05, (unsigned char *) "\x00\x62\x03\x23\0" },
+  { 0x1e06, (unsigned char *) "\x00\x42\x03\x31\0" },
+  { 0x1e07, (unsigned char *) "\x00\x62\x03\x31\0" },
+  { 0x1e08, (unsigned char *) "\x00\x43\x03\x27\x03\x01\0" },
+  { 0x1e09, (unsigned char *) "\x00\x63\x03\x27\x03\x01\0" },
+  { 0x1e0a, (unsigned char *) "\x00\x44\x03\x07\0" },
+  { 0x1e0b, (unsigned char *) "\x00\x64\x03\x07\0" },
+  { 0x1e0c, (unsigned char *) "\x00\x44\x03\x23\0" },
+  { 0x1e0d, (unsigned char *) "\x00\x64\x03\x23\0" },
+  { 0x1e0e, (unsigned char *) "\x00\x44\x03\x31\0" },
+  { 0x1e0f, (unsigned char *) "\x00\x64\x03\x31\0" },
+  { 0x1e10, (unsigned char *) "\x00\x44\x03\x27\0" },
+  { 0x1e11, (unsigned char *) "\x00\x64\x03\x27\0" },
+  { 0x1e12, (unsigned char *) "\x00\x44\x03\x2d\0" },
+  { 0x1e13, (unsigned char *) "\x00\x64\x03\x2d\0" },
+  { 0x1e14, (unsigned char *) "\x00\x45\x03\x04\x03\x00\0" },
+  { 0x1e15, (unsigned char *) "\x00\x65\x03\x04\x03\x00\0" },
+  { 0x1e16, (unsigned char *) "\x00\x45\x03\x04\x03\x01\0" },
+  { 0x1e17, (unsigned char *) "\x00\x65\x03\x04\x03\x01\0" },
+  { 0x1e18, (unsigned char *) "\x00\x45\x03\x2d\0" },
+  { 0x1e19, (unsigned char *) "\x00\x65\x03\x2d\0" },
+  { 0x1e1a, (unsigned char *) "\x00\x45\x03\x30\0" },
+  { 0x1e1b, (unsigned char *) "\x00\x65\x03\x30\0" },
+  { 0x1e1c, (unsigned char *) "\x00\x45\x03\x27\x03\x06\0" },
+  { 0x1e1d, (unsigned char *) "\x00\x65\x03\x27\x03\x06\0" },
+  { 0x1e1e, (unsigned char *) "\x00\x46\x03\x07\0" },
+  { 0x1e1f, (unsigned char *) "\x00\x66\x03\x07\0" },
+  { 0x1e20, (unsigned char *) "\x00\x47\x03\x04\0" },
+  { 0x1e21, (unsigned char *) "\x00\x67\x03\x04\0" },
+  { 0x1e22, (unsigned char *) "\x00\x48\x03\x07\0" },
+  { 0x1e23, (unsigned char *) "\x00\x68\x03\x07\0" },
+  { 0x1e24, (unsigned char *) "\x00\x48\x03\x23\0" },
+  { 0x1e25, (unsigned char *) "\x00\x68\x03\x23\0" },
+  { 0x1e26, (unsigned char *) "\x00\x48\x03\x08\0" },
+  { 0x1e27, (unsigned char *) "\x00\x68\x03\x08\0" },
+  { 0x1e28, (unsigned char *) "\x00\x48\x03\x27\0" },
+  { 0x1e29, (unsigned char *) "\x00\x68\x03\x27\0" },
+  { 0x1e2a, (unsigned char *) "\x00\x48\x03\x2e\0" },
+  { 0x1e2b, (unsigned char *) "\x00\x68\x03\x2e\0" },
+  { 0x1e2c, (unsigned char *) "\x00\x49\x03\x30\0" },
+  { 0x1e2d, (unsigned char *) "\x00\x69\x03\x30\0" },
+  { 0x1e2e, (unsigned char *) "\x00\x49\x03\x08\x03\x01\0" },
+  { 0x1e2f, (unsigned char *) "\x00\x69\x03\x08\x03\x01\0" },
+  { 0x1e30, (unsigned char *) "\x00\x4b\x03\x01\0" },
+  { 0x1e31, (unsigned char *) "\x00\x6b\x03\x01\0" },
+  { 0x1e32, (unsigned char *) "\x00\x4b\x03\x23\0" },
+  { 0x1e33, (unsigned char *) "\x00\x6b\x03\x23\0" },
+  { 0x1e34, (unsigned char *) "\x00\x4b\x03\x31\0" },
+  { 0x1e35, (unsigned char *) "\x00\x6b\x03\x31\0" },
+  { 0x1e36, (unsigned char *) "\x00\x4c\x03\x23\0" },
+  { 0x1e37, (unsigned char *) "\x00\x6c\x03\x23\0" },
+  { 0x1e38, (unsigned char *) "\x00\x4c\x03\x23\x03\x04\0" },
+  { 0x1e39, (unsigned char *) "\x00\x6c\x03\x23\x03\x04\0" },
+  { 0x1e3a, (unsigned char *) "\x00\x4c\x03\x31\0" },
+  { 0x1e3b, (unsigned char *) "\x00\x6c\x03\x31\0" },
+  { 0x1e3c, (unsigned char *) "\x00\x4c\x03\x2d\0" },
+  { 0x1e3d, (unsigned char *) "\x00\x6c\x03\x2d\0" },
+  { 0x1e3e, (unsigned char *) "\x00\x4d\x03\x01\0" },
+  { 0x1e3f, (unsigned char *) "\x00\x6d\x03\x01\0" },
+  { 0x1e40, (unsigned char *) "\x00\x4d\x03\x07\0" },
+  { 0x1e41, (unsigned char *) "\x00\x6d\x03\x07\0" },
+  { 0x1e42, (unsigned char *) "\x00\x4d\x03\x23\0" },
+  { 0x1e43, (unsigned char *) "\x00\x6d\x03\x23\0" },
+  { 0x1e44, (unsigned char *) "\x00\x4e\x03\x07\0" },
+  { 0x1e45, (unsigned char *) "\x00\x6e\x03\x07\0" },
+  { 0x1e46, (unsigned char *) "\x00\x4e\x03\x23\0" },
+  { 0x1e47, (unsigned char *) "\x00\x6e\x03\x23\0" },
+  { 0x1e48, (unsigned char *) "\x00\x4e\x03\x31\0" },
+  { 0x1e49, (unsigned char *) "\x00\x6e\x03\x31\0" },
+  { 0x1e4a, (unsigned char *) "\x00\x4e\x03\x2d\0" },
+  { 0x1e4b, (unsigned char *) "\x00\x6e\x03\x2d\0" },
+  { 0x1e4c, (unsigned char *) "\x00\x4f\x03\x03\x03\x01\0" },
+  { 0x1e4d, (unsigned char *) "\x00\x6f\x03\x03\x03\x01\0" },
+  { 0x1e4e, (unsigned char *) "\x00\x4f\x03\x03\x03\x08\0" },
+  { 0x1e4f, (unsigned char *) "\x00\x6f\x03\x03\x03\x08\0" },
+  { 0x1e50, (unsigned char *) "\x00\x4f\x03\x04\x03\x00\0" },
+  { 0x1e51, (unsigned char *) "\x00\x6f\x03\x04\x03\x00\0" },
+  { 0x1e52, (unsigned char *) "\x00\x4f\x03\x04\x03\x01\0" },
+  { 0x1e53, (unsigned char *) "\x00\x6f\x03\x04\x03\x01\0" },
+  { 0x1e54, (unsigned char *) "\x00\x50\x03\x01\0" },
+  { 0x1e55, (unsigned char *) "\x00\x70\x03\x01\0" },
+  { 0x1e56, (unsigned char *) "\x00\x50\x03\x07\0" },
+  { 0x1e57, (unsigned char *) "\x00\x70\x03\x07\0" },
+  { 0x1e58, (unsigned char *) "\x00\x52\x03\x07\0" },
+  { 0x1e59, (unsigned char *) "\x00\x72\x03\x07\0" },
+  { 0x1e5a, (unsigned char *) "\x00\x52\x03\x23\0" },
+  { 0x1e5b, (unsigned char *) "\x00\x72\x03\x23\0" },
+  { 0x1e5c, (unsigned char *) "\x00\x52\x03\x23\x03\x04\0" },
+  { 0x1e5d, (unsigned char *) "\x00\x72\x03\x23\x03\x04\0" },
+  { 0x1e5e, (unsigned char *) "\x00\x52\x03\x31\0" },
+  { 0x1e5f, (unsigned char *) "\x00\x72\x03\x31\0" },
+  { 0x1e60, (unsigned char *) "\x00\x53\x03\x07\0" },
+  { 0x1e61, (unsigned char *) "\x00\x73\x03\x07\0" },
+  { 0x1e62, (unsigned char *) "\x00\x53\x03\x23\0" },
+  { 0x1e63, (unsigned char *) "\x00\x73\x03\x23\0" },
+  { 0x1e64, (unsigned char *) "\x00\x53\x03\x01\x03\x07\0" },
+  { 0x1e65, (unsigned char *) "\x00\x73\x03\x01\x03\x07\0" },
+  { 0x1e66, (unsigned char *) "\x00\x53\x03\x0c\x03\x07\0" },
+  { 0x1e67, (unsigned char *) "\x00\x73\x03\x0c\x03\x07\0" },
+  { 0x1e68, (unsigned char *) "\x00\x53\x03\x23\x03\x07\0" },
+  { 0x1e69, (unsigned char *) "\x00\x73\x03\x23\x03\x07\0" },
+  { 0x1e6a, (unsigned char *) "\x00\x54\x03\x07\0" },
+  { 0x1e6b, (unsigned char *) "\x00\x74\x03\x07\0" },
+  { 0x1e6c, (unsigned char *) "\x00\x54\x03\x23\0" },
+  { 0x1e6d, (unsigned char *) "\x00\x74\x03\x23\0" },
+  { 0x1e6e, (unsigned char *) "\x00\x54\x03\x31\0" },
+  { 0x1e6f, (unsigned char *) "\x00\x74\x03\x31\0" },
+  { 0x1e70, (unsigned char *) "\x00\x54\x03\x2d\0" },
+  { 0x1e71, (unsigned char *) "\x00\x74\x03\x2d\0" },
+  { 0x1e72, (unsigned char *) "\x00\x55\x03\x24\0" },
+  { 0x1e73, (unsigned char *) "\x00\x75\x03\x24\0" },
+  { 0x1e74, (unsigned char *) "\x00\x55\x03\x30\0" },
+  { 0x1e75, (unsigned char *) "\x00\x75\x03\x30\0" },
+  { 0x1e76, (unsigned char *) "\x00\x55\x03\x2d\0" },
+  { 0x1e77, (unsigned char *) "\x00\x75\x03\x2d\0" },
+  { 0x1e78, (unsigned char *) "\x00\x55\x03\x03\x03\x01\0" },
+  { 0x1e79, (unsigned char *) "\x00\x75\x03\x03\x03\x01\0" },
+  { 0x1e7a, (unsigned char *) "\x00\x55\x03\x04\x03\x08\0" },
+  { 0x1e7b, (unsigned char *) "\x00\x75\x03\x04\x03\x08\0" },
+  { 0x1e7c, (unsigned char *) "\x00\x56\x03\x03\0" },
+  { 0x1e7d, (unsigned char *) "\x00\x76\x03\x03\0" },
+  { 0x1e7e, (unsigned char *) "\x00\x56\x03\x23\0" },
+  { 0x1e7f, (unsigned char *) "\x00\x76\x03\x23\0" },
+  { 0x1e80, (unsigned char *) "\x00\x57\x03\x00\0" },
+  { 0x1e81, (unsigned char *) "\x00\x77\x03\x00\0" },
+  { 0x1e82, (unsigned char *) "\x00\x57\x03\x01\0" },
+  { 0x1e83, (unsigned char *) "\x00\x77\x03\x01\0" },
+  { 0x1e84, (unsigned char *) "\x00\x57\x03\x08\0" },
+  { 0x1e85, (unsigned char *) "\x00\x77\x03\x08\0" },
+  { 0x1e86, (unsigned char *) "\x00\x57\x03\x07\0" },
+  { 0x1e87, (unsigned char *) "\x00\x77\x03\x07\0" },
+  { 0x1e88, (unsigned char *) "\x00\x57\x03\x23\0" },
+  { 0x1e89, (unsigned char *) "\x00\x77\x03\x23\0" },
+  { 0x1e8a, (unsigned char *) "\x00\x58\x03\x07\0" },
+  { 0x1e8b, (unsigned char *) "\x00\x78\x03\x07\0" },
+  { 0x1e8c, (unsigned char *) "\x00\x58\x03\x08\0" },
+  { 0x1e8d, (unsigned char *) "\x00\x78\x03\x08\0" },
+  { 0x1e8e, (unsigned char *) "\x00\x59\x03\x07\0" },
+  { 0x1e8f, (unsigned char *) "\x00\x79\x03\x07\0" },
+  { 0x1e90, (unsigned char *) "\x00\x5a\x03\x02\0" },
+  { 0x1e91, (unsigned char *) "\x00\x7a\x03\x02\0" },
+  { 0x1e92, (unsigned char *) "\x00\x5a\x03\x23\0" },
+  { 0x1e93, (unsigned char *) "\x00\x7a\x03\x23\0" },
+  { 0x1e94, (unsigned char *) "\x00\x5a\x03\x31\0" },
+  { 0x1e95, (unsigned char *) "\x00\x7a\x03\x31\0" },
+  { 0x1e96, (unsigned char *) "\x00\x68\x03\x31\0" },
+  { 0x1e97, (unsigned char *) "\x00\x74\x03\x08\0" },
+  { 0x1e98, (unsigned char *) "\x00\x77\x03\x0a\0" },
+  { 0x1e99, (unsigned char *) "\x00\x79\x03\x0a\0" },
+  { 0x1e9b, (unsigned char *) "\x01\x7f\x03\x07\0" },
+  { 0x1ea0, (unsigned char *) "\x00\x41\x03\x23\0" },
+  { 0x1ea1, (unsigned char *) "\x00\x61\x03\x23\0" },
+  { 0x1ea2, (unsigned char *) "\x00\x41\x03\x09\0" },
+  { 0x1ea3, (unsigned char *) "\x00\x61\x03\x09\0" },
+  { 0x1ea4, (unsigned char *) "\x00\x41\x03\x02\x03\x01\0" },
+  { 0x1ea5, (unsigned char *) "\x00\x61\x03\x02\x03\x01\0" },
+  { 0x1ea6, (unsigned char *) "\x00\x41\x03\x02\x03\x00\0" },
+  { 0x1ea7, (unsigned char *) "\x00\x61\x03\x02\x03\x00\0" },
+  { 0x1ea8, (unsigned char *) "\x00\x41\x03\x02\x03\x09\0" },
+  { 0x1ea9, (unsigned char *) "\x00\x61\x03\x02\x03\x09\0" },
+  { 0x1eaa, (unsigned char *) "\x00\x41\x03\x02\x03\x03\0" },
+  { 0x1eab, (unsigned char *) "\x00\x61\x03\x02\x03\x03\0" },
+  { 0x1eac, (unsigned char *) "\x00\x41\x03\x23\x03\x02\0" },
+  { 0x1ead, (unsigned char *) "\x00\x61\x03\x23\x03\x02\0" },
+  { 0x1eae, (unsigned char *) "\x00\x41\x03\x06\x03\x01\0" },
+  { 0x1eaf, (unsigned char *) "\x00\x61\x03\x06\x03\x01\0" },
+  { 0x1eb0, (unsigned char *) "\x00\x41\x03\x06\x03\x00\0" },
+  { 0x1eb1, (unsigned char *) "\x00\x61\x03\x06\x03\x00\0" },
+  { 0x1eb2, (unsigned char *) "\x00\x41\x03\x06\x03\x09\0" },
+  { 0x1eb3, (unsigned char *) "\x00\x61\x03\x06\x03\x09\0" },
+  { 0x1eb4, (unsigned char *) "\x00\x41\x03\x06\x03\x03\0" },
+  { 0x1eb5, (unsigned char *) "\x00\x61\x03\x06\x03\x03\0" },
+  { 0x1eb6, (unsigned char *) "\x00\x41\x03\x23\x03\x06\0" },
+  { 0x1eb7, (unsigned char *) "\x00\x61\x03\x23\x03\x06\0" },
+  { 0x1eb8, (unsigned char *) "\x00\x45\x03\x23\0" },
+  { 0x1eb9, (unsigned char *) "\x00\x65\x03\x23\0" },
+  { 0x1eba, (unsigned char *) "\x00\x45\x03\x09\0" },
+  { 0x1ebb, (unsigned char *) "\x00\x65\x03\x09\0" },
+  { 0x1ebc, (unsigned char *) "\x00\x45\x03\x03\0" },
+  { 0x1ebd, (unsigned char *) "\x00\x65\x03\x03\0" },
+  { 0x1ebe, (unsigned char *) "\x00\x45\x03\x02\x03\x01\0" },
+  { 0x1ebf, (unsigned char *) "\x00\x65\x03\x02\x03\x01\0" },
+  { 0x1ec0, (unsigned char *) "\x00\x45\x03\x02\x03\x00\0" },
+  { 0x1ec1, (unsigned char *) "\x00\x65\x03\x02\x03\x00\0" },
+  { 0x1ec2, (unsigned char *) "\x00\x45\x03\x02\x03\x09\0" },
+  { 0x1ec3, (unsigned char *) "\x00\x65\x03\x02\x03\x09\0" },
+  { 0x1ec4, (unsigned char *) "\x00\x45\x03\x02\x03\x03\0" },
+  { 0x1ec5, (unsigned char *) "\x00\x65\x03\x02\x03\x03\0" },
+  { 0x1ec6, (unsigned char *) "\x00\x45\x03\x23\x03\x02\0" },
+  { 0x1ec7, (unsigned char *) "\x00\x65\x03\x23\x03\x02\0" },
+  { 0x1ec8, (unsigned char *) "\x00\x49\x03\x09\0" },
+  { 0x1ec9, (unsigned char *) "\x00\x69\x03\x09\0" },
+  { 0x1eca, (unsigned char *) "\x00\x49\x03\x23\0" },
+  { 0x1ecb, (unsigned char *) "\x00\x69\x03\x23\0" },
+  { 0x1ecc, (unsigned char *) "\x00\x4f\x03\x23\0" },
+  { 0x1ecd, (unsigned char *) "\x00\x6f\x03\x23\0" },
+  { 0x1ece, (unsigned char *) "\x00\x4f\x03\x09\0" },
+  { 0x1ecf, (unsigned char *) "\x00\x6f\x03\x09\0" },
+  { 0x1ed0, (unsigned char *) "\x00\x4f\x03\x02\x03\x01\0" },
+  { 0x1ed1, (unsigned char *) "\x00\x6f\x03\x02\x03\x01\0" },
+  { 0x1ed2, (unsigned char *) "\x00\x4f\x03\x02\x03\x00\0" },
+  { 0x1ed3, (unsigned char *) "\x00\x6f\x03\x02\x03\x00\0" },
+  { 0x1ed4, (unsigned char *) "\x00\x4f\x03\x02\x03\x09\0" },
+  { 0x1ed5, (unsigned char *) "\x00\x6f\x03\x02\x03\x09\0" },
+  { 0x1ed6, (unsigned char *) "\x00\x4f\x03\x02\x03\x03\0" },
+  { 0x1ed7, (unsigned char *) "\x00\x6f\x03\x02\x03\x03\0" },
+  { 0x1ed8, (unsigned char *) "\x00\x4f\x03\x23\x03\x02\0" },
+  { 0x1ed9, (unsigned char *) "\x00\x6f\x03\x23\x03\x02\0" },
+  { 0x1eda, (unsigned char *) "\x00\x4f\x03\x1b\x03\x01\0" },
+  { 0x1edb, (unsigned char *) "\x00\x6f\x03\x1b\x03\x01\0" },
+  { 0x1edc, (unsigned char *) "\x00\x4f\x03\x1b\x03\x00\0" },
+  { 0x1edd, (unsigned char *) "\x00\x6f\x03\x1b\x03\x00\0" },
+  { 0x1ede, (unsigned char *) "\x00\x4f\x03\x1b\x03\x09\0" },
+  { 0x1edf, (unsigned char *) "\x00\x6f\x03\x1b\x03\x09\0" },
+  { 0x1ee0, (unsigned char *) "\x00\x4f\x03\x1b\x03\x03\0" },
+  { 0x1ee1, (unsigned char *) "\x00\x6f\x03\x1b\x03\x03\0" },
+  { 0x1ee2, (unsigned char *) "\x00\x4f\x03\x1b\x03\x23\0" },
+  { 0x1ee3, (unsigned char *) "\x00\x6f\x03\x1b\x03\x23\0" },
+  { 0x1ee4, (unsigned char *) "\x00\x55\x03\x23\0" },
+  { 0x1ee5, (unsigned char *) "\x00\x75\x03\x23\0" },
+  { 0x1ee6, (unsigned char *) "\x00\x55\x03\x09\0" },
+  { 0x1ee7, (unsigned char *) "\x00\x75\x03\x09\0" },
+  { 0x1ee8, (unsigned char *) "\x00\x55\x03\x1b\x03\x01\0" },
+  { 0x1ee9, (unsigned char *) "\x00\x75\x03\x1b\x03\x01\0" },
+  { 0x1eea, (unsigned char *) "\x00\x55\x03\x1b\x03\x00\0" },
+  { 0x1eeb, (unsigned char *) "\x00\x75\x03\x1b\x03\x00\0" },
+  { 0x1eec, (unsigned char *) "\x00\x55\x03\x1b\x03\x09\0" },
+  { 0x1eed, (unsigned char *) "\x00\x75\x03\x1b\x03\x09\0" },
+  { 0x1eee, (unsigned char *) "\x00\x55\x03\x1b\x03\x03\0" },
+  { 0x1eef, (unsigned char *) "\x00\x75\x03\x1b\x03\x03\0" },
+  { 0x1ef0, (unsigned char *) "\x00\x55\x03\x1b\x03\x23\0" },
+  { 0x1ef1, (unsigned char *) "\x00\x75\x03\x1b\x03\x23\0" },
+  { 0x1ef2, (unsigned char *) "\x00\x59\x03\x00\0" },
+  { 0x1ef3, (unsigned char *) "\x00\x79\x03\x00\0" },
+  { 0x1ef4, (unsigned char *) "\x00\x59\x03\x23\0" },
+  { 0x1ef5, (unsigned char *) "\x00\x79\x03\x23\0" },
+  { 0x1ef6, (unsigned char *) "\x00\x59\x03\x09\0" },
+  { 0x1ef7, (unsigned char *) "\x00\x79\x03\x09\0" },
+  { 0x1ef8, (unsigned char *) "\x00\x59\x03\x03\0" },
+  { 0x1ef9, (unsigned char *) "\x00\x79\x03\x03\0" },
+  { 0x1f00, (unsigned char *) "\x03\xb1\x03\x13\0" },
+  { 0x1f01, (unsigned char *) "\x03\xb1\x03\x14\0" },
+  { 0x1f02, (unsigned char *) "\x03\xb1\x03\x13\x03\x00\0" },
+  { 0x1f03, (unsigned char *) "\x03\xb1\x03\x14\x03\x00\0" },
+  { 0x1f04, (unsigned char *) "\x03\xb1\x03\x13\x03\x01\0" },
+  { 0x1f05, (unsigned char *) "\x03\xb1\x03\x14\x03\x01\0" },
+  { 0x1f06, (unsigned char *) "\x03\xb1\x03\x13\x03\x42\0" },
+  { 0x1f07, (unsigned char *) "\x03\xb1\x03\x14\x03\x42\0" },
+  { 0x1f08, (unsigned char *) "\x03\x91\x03\x13\0" },
+  { 0x1f09, (unsigned char *) "\x03\x91\x03\x14\0" },
+  { 0x1f0a, (unsigned char *) "\x03\x91\x03\x13\x03\x00\0" },
+  { 0x1f0b, (unsigned char *) "\x03\x91\x03\x14\x03\x00\0" },
+  { 0x1f0c, (unsigned char *) "\x03\x91\x03\x13\x03\x01\0" },
+  { 0x1f0d, (unsigned char *) "\x03\x91\x03\x14\x03\x01\0" },
+  { 0x1f0e, (unsigned char *) "\x03\x91\x03\x13\x03\x42\0" },
+  { 0x1f0f, (unsigned char *) "\x03\x91\x03\x14\x03\x42\0" },
+  { 0x1f10, (unsigned char *) "\x03\xb5\x03\x13\0" },
+  { 0x1f11, (unsigned char *) "\x03\xb5\x03\x14\0" },
+  { 0x1f12, (unsigned char *) "\x03\xb5\x03\x13\x03\x00\0" },
+  { 0x1f13, (unsigned char *) "\x03\xb5\x03\x14\x03\x00\0" },
+  { 0x1f14, (unsigned char *) "\x03\xb5\x03\x13\x03\x01\0" },
+  { 0x1f15, (unsigned char *) "\x03\xb5\x03\x14\x03\x01\0" },
+  { 0x1f18, (unsigned char *) "\x03\x95\x03\x13\0" },
+  { 0x1f19, (unsigned char *) "\x03\x95\x03\x14\0" },
+  { 0x1f1a, (unsigned char *) "\x03\x95\x03\x13\x03\x00\0" },
+  { 0x1f1b, (unsigned char *) "\x03\x95\x03\x14\x03\x00\0" },
+  { 0x1f1c, (unsigned char *) "\x03\x95\x03\x13\x03\x01\0" },
+  { 0x1f1d, (unsigned char *) "\x03\x95\x03\x14\x03\x01\0" },
+  { 0x1f20, (unsigned char *) "\x03\xb7\x03\x13\0" },
+  { 0x1f21, (unsigned char *) "\x03\xb7\x03\x14\0" },
+  { 0x1f22, (unsigned char *) "\x03\xb7\x03\x13\x03\x00\0" },
+  { 0x1f23, (unsigned char *) "\x03\xb7\x03\x14\x03\x00\0" },
+  { 0x1f24, (unsigned char *) "\x03\xb7\x03\x13\x03\x01\0" },
+  { 0x1f25, (unsigned char *) "\x03\xb7\x03\x14\x03\x01\0" },
+  { 0x1f26, (unsigned char *) "\x03\xb7\x03\x13\x03\x42\0" },
+  { 0x1f27, (unsigned char *) "\x03\xb7\x03\x14\x03\x42\0" },
+  { 0x1f28, (unsigned char *) "\x03\x97\x03\x13\0" },
+  { 0x1f29, (unsigned char *) "\x03\x97\x03\x14\0" },
+  { 0x1f2a, (unsigned char *) "\x03\x97\x03\x13\x03\x00\0" },
+  { 0x1f2b, (unsigned char *) "\x03\x97\x03\x14\x03\x00\0" },
+  { 0x1f2c, (unsigned char *) "\x03\x97\x03\x13\x03\x01\0" },
+  { 0x1f2d, (unsigned char *) "\x03\x97\x03\x14\x03\x01\0" },
+  { 0x1f2e, (unsigned char *) "\x03\x97\x03\x13\x03\x42\0" },
+  { 0x1f2f, (unsigned char *) "\x03\x97\x03\x14\x03\x42\0" },
+  { 0x1f30, (unsigned char *) "\x03\xb9\x03\x13\0" },
+  { 0x1f31, (unsigned char *) "\x03\xb9\x03\x14\0" },
+  { 0x1f32, (unsigned char *) "\x03\xb9\x03\x13\x03\x00\0" },
+  { 0x1f33, (unsigned char *) "\x03\xb9\x03\x14\x03\x00\0" },
+  { 0x1f34, (unsigned char *) "\x03\xb9\x03\x13\x03\x01\0" },
+  { 0x1f35, (unsigned char *) "\x03\xb9\x03\x14\x03\x01\0" },
+  { 0x1f36, (unsigned char *) "\x03\xb9\x03\x13\x03\x42\0" },
+  { 0x1f37, (unsigned char *) "\x03\xb9\x03\x14\x03\x42\0" },
+  { 0x1f38, (unsigned char *) "\x03\x99\x03\x13\0" },
+  { 0x1f39, (unsigned char *) "\x03\x99\x03\x14\0" },
+  { 0x1f3a, (unsigned char *) "\x03\x99\x03\x13\x03\x00\0" },
+  { 0x1f3b, (unsigned char *) "\x03\x99\x03\x14\x03\x00\0" },
+  { 0x1f3c, (unsigned char *) "\x03\x99\x03\x13\x03\x01\0" },
+  { 0x1f3d, (unsigned char *) "\x03\x99\x03\x14\x03\x01\0" },
+  { 0x1f3e, (unsigned char *) "\x03\x99\x03\x13\x03\x42\0" },
+  { 0x1f3f, (unsigned char *) "\x03\x99\x03\x14\x03\x42\0" },
+  { 0x1f40, (unsigned char *) "\x03\xbf\x03\x13\0" },
+  { 0x1f41, (unsigned char *) "\x03\xbf\x03\x14\0" },
+  { 0x1f42, (unsigned char *) "\x03\xbf\x03\x13\x03\x00\0" },
+  { 0x1f43, (unsigned char *) "\x03\xbf\x03\x14\x03\x00\0" },
+  { 0x1f44, (unsigned char *) "\x03\xbf\x03\x13\x03\x01\0" },
+  { 0x1f45, (unsigned char *) "\x03\xbf\x03\x14\x03\x01\0" },
+  { 0x1f48, (unsigned char *) "\x03\x9f\x03\x13\0" },
+  { 0x1f49, (unsigned char *) "\x03\x9f\x03\x14\0" },
+  { 0x1f4a, (unsigned char *) "\x03\x9f\x03\x13\x03\x00\0" },
+  { 0x1f4b, (unsigned char *) "\x03\x9f\x03\x14\x03\x00\0" },
+  { 0x1f4c, (unsigned char *) "\x03\x9f\x03\x13\x03\x01\0" },
+  { 0x1f4d, (unsigned char *) "\x03\x9f\x03\x14\x03\x01\0" },
+  { 0x1f50, (unsigned char *) "\x03\xc5\x03\x13\0" },
+  { 0x1f51, (unsigned char *) "\x03\xc5\x03\x14\0" },
+  { 0x1f52, (unsigned char *) "\x03\xc5\x03\x13\x03\x00\0" },
+  { 0x1f53, (unsigned char *) "\x03\xc5\x03\x14\x03\x00\0" },
+  { 0x1f54, (unsigned char *) "\x03\xc5\x03\x13\x03\x01\0" },
+  { 0x1f55, (unsigned char *) "\x03\xc5\x03\x14\x03\x01\0" },
+  { 0x1f56, (unsigned char *) "\x03\xc5\x03\x13\x03\x42\0" },
+  { 0x1f57, (unsigned char *) "\x03\xc5\x03\x14\x03\x42\0" },
+  { 0x1f59, (unsigned char *) "\x03\xa5\x03\x14\0" },
+  { 0x1f5b, (unsigned char *) "\x03\xa5\x03\x14\x03\x00\0" },
+  { 0x1f5d, (unsigned char *) "\x03\xa5\x03\x14\x03\x01\0" },
+  { 0x1f5f, (unsigned char *) "\x03\xa5\x03\x14\x03\x42\0" },
+  { 0x1f60, (unsigned char *) "\x03\xc9\x03\x13\0" },
+  { 0x1f61, (unsigned char *) "\x03\xc9\x03\x14\0" },
+  { 0x1f62, (unsigned char *) "\x03\xc9\x03\x13\x03\x00\0" },
+  { 0x1f63, (unsigned char *) "\x03\xc9\x03\x14\x03\x00\0" },
+  { 0x1f64, (unsigned char *) "\x03\xc9\x03\x13\x03\x01\0" },
+  { 0x1f65, (unsigned char *) "\x03\xc9\x03\x14\x03\x01\0" },
+  { 0x1f66, (unsigned char *) "\x03\xc9\x03\x13\x03\x42\0" },
+  { 0x1f67, (unsigned char *) "\x03\xc9\x03\x14\x03\x42\0" },
+  { 0x1f68, (unsigned char *) "\x03\xa9\x03\x13\0" },
+  { 0x1f69, (unsigned char *) "\x03\xa9\x03\x14\0" },
+  { 0x1f6a, (unsigned char *) "\x03\xa9\x03\x13\x03\x00\0" },
+  { 0x1f6b, (unsigned char *) "\x03\xa9\x03\x14\x03\x00\0" },
+  { 0x1f6c, (unsigned char *) "\x03\xa9\x03\x13\x03\x01\0" },
+  { 0x1f6d, (unsigned char *) "\x03\xa9\x03\x14\x03\x01\0" },
+  { 0x1f6e, (unsigned char *) "\x03\xa9\x03\x13\x03\x42\0" },
+  { 0x1f6f, (unsigned char *) "\x03\xa9\x03\x14\x03\x42\0" },
+  { 0x1f70, (unsigned char *) "\x03\xb1\x03\x00\0" },
+  { 0x1f71, (unsigned char *) "\x03\xb1\x03\x01\0" },
+  { 0x1f72, (unsigned char *) "\x03\xb5\x03\x00\0" },
+  { 0x1f73, (unsigned char *) "\x03\xb5\x03\x01\0" },
+  { 0x1f74, (unsigned char *) "\x03\xb7\x03\x00\0" },
+  { 0x1f75, (unsigned char *) "\x03\xb7\x03\x01\0" },
+  { 0x1f76, (unsigned char *) "\x03\xb9\x03\x00\0" },
+  { 0x1f77, (unsigned char *) "\x03\xb9\x03\x01\0" },
+  { 0x1f78, (unsigned char *) "\x03\xbf\x03\x00\0" },
+  { 0x1f79, (unsigned char *) "\x03\xbf\x03\x01\0" },
+  { 0x1f7a, (unsigned char *) "\x03\xc5\x03\x00\0" },
+  { 0x1f7b, (unsigned char *) "\x03\xc5\x03\x01\0" },
+  { 0x1f7c, (unsigned char *) "\x03\xc9\x03\x00\0" },
+  { 0x1f7d, (unsigned char *) "\x03\xc9\x03\x01\0" },
+  { 0x1f80, (unsigned char *) "\x03\xb1\x03\x13\x03\x45\0" },
+  { 0x1f81, (unsigned char *) "\x03\xb1\x03\x14\x03\x45\0" },
+  { 0x1f82, (unsigned char *) "\x03\xb1\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f83, (unsigned char *) "\x03\xb1\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f84, (unsigned char *) "\x03\xb1\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f85, (unsigned char *) "\x03\xb1\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f86, (unsigned char *) "\x03\xb1\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f87, (unsigned char *) "\x03\xb1\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1f88, (unsigned char *) "\x03\x91\x03\x13\x03\x45\0" },
+  { 0x1f89, (unsigned char *) "\x03\x91\x03\x14\x03\x45\0" },
+  { 0x1f8a, (unsigned char *) "\x03\x91\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f8b, (unsigned char *) "\x03\x91\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f8c, (unsigned char *) "\x03\x91\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f8d, (unsigned char *) "\x03\x91\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f8e, (unsigned char *) "\x03\x91\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f8f, (unsigned char *) "\x03\x91\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1f90, (unsigned char *) "\x03\xb7\x03\x13\x03\x45\0" },
+  { 0x1f91, (unsigned char *) "\x03\xb7\x03\x14\x03\x45\0" },
+  { 0x1f92, (unsigned char *) "\x03\xb7\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f93, (unsigned char *) "\x03\xb7\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f94, (unsigned char *) "\x03\xb7\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f95, (unsigned char *) "\x03\xb7\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f96, (unsigned char *) "\x03\xb7\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f97, (unsigned char *) "\x03\xb7\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1f98, (unsigned char *) "\x03\x97\x03\x13\x03\x45\0" },
+  { 0x1f99, (unsigned char *) "\x03\x97\x03\x14\x03\x45\0" },
+  { 0x1f9a, (unsigned char *) "\x03\x97\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f9b, (unsigned char *) "\x03\x97\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f9c, (unsigned char *) "\x03\x97\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f9d, (unsigned char *) "\x03\x97\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f9e, (unsigned char *) "\x03\x97\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f9f, (unsigned char *) "\x03\x97\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1fa0, (unsigned char *) "\x03\xc9\x03\x13\x03\x45\0" },
+  { 0x1fa1, (unsigned char *) "\x03\xc9\x03\x14\x03\x45\0" },
+  { 0x1fa2, (unsigned char *) "\x03\xc9\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1fa3, (unsigned char *) "\x03\xc9\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1fa4, (unsigned char *) "\x03\xc9\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1fa5, (unsigned char *) "\x03\xc9\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1fa6, (unsigned char *) "\x03\xc9\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1fa7, (unsigned char *) "\x03\xc9\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1fa8, (unsigned char *) "\x03\xa9\x03\x13\x03\x45\0" },
+  { 0x1fa9, (unsigned char *) "\x03\xa9\x03\x14\x03\x45\0" },
+  { 0x1faa, (unsigned char *) "\x03\xa9\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1fab, (unsigned char *) "\x03\xa9\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1fac, (unsigned char *) "\x03\xa9\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1fad, (unsigned char *) "\x03\xa9\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1fae, (unsigned char *) "\x03\xa9\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1faf, (unsigned char *) "\x03\xa9\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1fb0, (unsigned char *) "\x03\xb1\x03\x06\0" },
+  { 0x1fb1, (unsigned char *) "\x03\xb1\x03\x04\0" },
+  { 0x1fb2, (unsigned char *) "\x03\xb1\x03\x00\x03\x45\0" },
+  { 0x1fb3, (unsigned char *) "\x03\xb1\x03\x45\0" },
+  { 0x1fb4, (unsigned char *) "\x03\xb1\x03\x01\x03\x45\0" },
+  { 0x1fb6, (unsigned char *) "\x03\xb1\x03\x42\0" },
+  { 0x1fb7, (unsigned char *) "\x03\xb1\x03\x42\x03\x45\0" },
+  { 0x1fb8, (unsigned char *) "\x03\x91\x03\x06\0" },
+  { 0x1fb9, (unsigned char *) "\x03\x91\x03\x04\0" },
+  { 0x1fba, (unsigned char *) "\x03\x91\x03\x00\0" },
+  { 0x1fbb, (unsigned char *) "\x03\x91\x03\x01\0" },
+  { 0x1fbc, (unsigned char *) "\x03\x91\x03\x45\0" },
+  { 0x1fbe, (unsigned char *) "\x03\xb9\0" },
+  { 0x1fc1, (unsigned char *) "\x00\xa8\x03\x42\0" },
+  { 0x1fc2, (unsigned char *) "\x03\xb7\x03\x00\x03\x45\0" },
+  { 0x1fc3, (unsigned char *) "\x03\xb7\x03\x45\0" },
+  { 0x1fc4, (unsigned char *) "\x03\xb7\x03\x01\x03\x45\0" },
+  { 0x1fc6, (unsigned char *) "\x03\xb7\x03\x42\0" },
+  { 0x1fc7, (unsigned char *) "\x03\xb7\x03\x42\x03\x45\0" },
+  { 0x1fc8, (unsigned char *) "\x03\x95\x03\x00\0" },
+  { 0x1fc9, (unsigned char *) "\x03\x95\x03\x01\0" },
+  { 0x1fca, (unsigned char *) "\x03\x97\x03\x00\0" },
+  { 0x1fcb, (unsigned char *) "\x03\x97\x03\x01\0" },
+  { 0x1fcc, (unsigned char *) "\x03\x97\x03\x45\0" },
+  { 0x1fcd, (unsigned char *) "\x1f\xbf\x03\x00\0" },
+  { 0x1fce, (unsigned char *) "\x1f\xbf\x03\x01\0" },
+  { 0x1fcf, (unsigned char *) "\x1f\xbf\x03\x42\0" },
+  { 0x1fd0, (unsigned char *) "\x03\xb9\x03\x06\0" },
+  { 0x1fd1, (unsigned char *) "\x03\xb9\x03\x04\0" },
+  { 0x1fd2, (unsigned char *) "\x03\xb9\x03\x08\x03\x00\0" },
+  { 0x1fd3, (unsigned char *) "\x03\xb9\x03\x08\x03\x01\0" },
+  { 0x1fd6, (unsigned char *) "\x03\xb9\x03\x42\0" },
+  { 0x1fd7, (unsigned char *) "\x03\xb9\x03\x08\x03\x42\0" },
+  { 0x1fd8, (unsigned char *) "\x03\x99\x03\x06\0" },
+  { 0x1fd9, (unsigned char *) "\x03\x99\x03\x04\0" },
+  { 0x1fda, (unsigned char *) "\x03\x99\x03\x00\0" },
+  { 0x1fdb, (unsigned char *) "\x03\x99\x03\x01\0" },
+  { 0x1fdd, (unsigned char *) "\x1f\xfe\x03\x00\0" },
+  { 0x1fde, (unsigned char *) "\x1f\xfe\x03\x01\0" },
+  { 0x1fdf, (unsigned char *) "\x1f\xfe\x03\x42\0" },
+  { 0x1fe0, (unsigned char *) "\x03\xc5\x03\x06\0" },
+  { 0x1fe1, (unsigned char *) "\x03\xc5\x03\x04\0" },
+  { 0x1fe2, (unsigned char *) "\x03\xc5\x03\x08\x03\x00\0" },
+  { 0x1fe3, (unsigned char *) "\x03\xc5\x03\x08\x03\x01\0" },
+  { 0x1fe4, (unsigned char *) "\x03\xc1\x03\x13\0" },
+  { 0x1fe5, (unsigned char *) "\x03\xc1\x03\x14\0" },
+  { 0x1fe6, (unsigned char *) "\x03\xc5\x03\x42\0" },
+  { 0x1fe7, (unsigned char *) "\x03\xc5\x03\x08\x03\x42\0" },
+  { 0x1fe8, (unsigned char *) "\x03\xa5\x03\x06\0" },
+  { 0x1fe9, (unsigned char *) "\x03\xa5\x03\x04\0" },
+  { 0x1fea, (unsigned char *) "\x03\xa5\x03\x00\0" },
+  { 0x1feb, (unsigned char *) "\x03\xa5\x03\x01\0" },
+  { 0x1fec, (unsigned char *) "\x03\xa1\x03\x14\0" },
+  { 0x1fed, (unsigned char *) "\x00\xa8\x03\x00\0" },
+  { 0x1fee, (unsigned char *) "\x00\xa8\x03\x01\0" },
+  { 0x1fef, (unsigned char *) "\x00\x60\0" },
+  { 0x1ff2, (unsigned char *) "\x03\xc9\x03\x00\x03\x45\0" },
+  { 0x1ff3, (unsigned char *) "\x03\xc9\x03\x45\0" },
+  { 0x1ff4, (unsigned char *) "\x03\xc9\x03\x01\x03\x45\0" },
+  { 0x1ff6, (unsigned char *) "\x03\xc9\x03\x42\0" },
+  { 0x1ff7, (unsigned char *) "\x03\xc9\x03\x42\x03\x45\0" },
+  { 0x1ff8, (unsigned char *) "\x03\x9f\x03\x00\0" },
+  { 0x1ff9, (unsigned char *) "\x03\x9f\x03\x01\0" },
+  { 0x1ffa, (unsigned char *) "\x03\xa9\x03\x00\0" },
+  { 0x1ffb, (unsigned char *) "\x03\xa9\x03\x01\0" },
+  { 0x1ffc, (unsigned char *) "\x03\xa9\x03\x45\0" },
+  { 0x1ffd, (unsigned char *) "\x00\xb4\0" },
+  { 0x2000, (unsigned char *) "\x20\x02\0" },
+  { 0x2001, (unsigned char *) "\x20\x03\0" },
+  { 0x2126, (unsigned char *) "\x03\xa9\0" },
+  { 0x212a, (unsigned char *) "\x00\x4b\0" },
+  { 0x212b, (unsigned char *) "\x00\x41\x03\x0a\0" },
+  { 0x2204, (unsigned char *) "\x22\x03\x03\x38\0" },
+  { 0x2209, (unsigned char *) "\x22\x08\x03\x38\0" },
+  { 0x220c, (unsigned char *) "\x22\x0b\x03\x38\0" },
+  { 0x2224, (unsigned char *) "\x22\x23\x03\x38\0" },
+  { 0x2226, (unsigned char *) "\x22\x25\x03\x38\0" },
+  { 0x2241, (unsigned char *) "\x00\x7e\x03\x38\0" },
+  { 0x2244, (unsigned char *) "\x22\x43\x03\x38\0" },
+  { 0x2247, (unsigned char *) "\x22\x45\x03\x38\0" },
+  { 0x2249, (unsigned char *) "\x22\x48\x03\x38\0" },
+  { 0x2260, (unsigned char *) "\x00\x3d\x03\x38\0" },
+  { 0x2262, (unsigned char *) "\x22\x61\x03\x38\0" },
+  { 0x226d, (unsigned char *) "\x22\x4d\x03\x38\0" },
+  { 0x226e, (unsigned char *) "\x00\x3c\x03\x38\0" },
+  { 0x226f, (unsigned char *) "\x00\x3e\x03\x38\0" },
+  { 0x2270, (unsigned char *) "\x22\x64\x03\x38\0" },
+  { 0x2271, (unsigned char *) "\x22\x65\x03\x38\0" },
+  { 0x2274, (unsigned char *) "\x22\x72\x03\x38\0" },
+  { 0x2275, (unsigned char *) "\x22\x73\x03\x38\0" },
+  { 0x2278, (unsigned char *) "\x22\x76\x03\x38\0" },
+  { 0x2279, (unsigned char *) "\x22\x77\x03\x38\0" },
+  { 0x2280, (unsigned char *) "\x22\x7a\x03\x38\0" },
+  { 0x2281, (unsigned char *) "\x22\x7b\x03\x38\0" },
+  { 0x2284, (unsigned char *) "\x22\x82\x03\x38\0" },
+  { 0x2285, (unsigned char *) "\x22\x83\x03\x38\0" },
+  { 0x2288, (unsigned char *) "\x22\x86\x03\x38\0" },
+  { 0x2289, (unsigned char *) "\x22\x87\x03\x38\0" },
+  { 0x22ac, (unsigned char *) "\x22\xa2\x03\x38\0" },
+  { 0x22ad, (unsigned char *) "\x22\xa8\x03\x38\0" },
+  { 0x22ae, (unsigned char *) "\x22\xa9\x03\x38\0" },
+  { 0x22af, (unsigned char *) "\x22\xab\x03\x38\0" },
+  { 0x22e0, (unsigned char *) "\x22\x7c\x03\x38\0" },
+  { 0x22e1, (unsigned char *) "\x22\x7d\x03\x38\0" },
+  { 0x22e2, (unsigned char *) "\x22\x91\x03\x38\0" },
+  { 0x22e3, (unsigned char *) "\x22\x92\x03\x38\0" },
+  { 0x22ea, (unsigned char *) "\x22\xb2\x03\x38\0" },
+  { 0x22eb, (unsigned char *) "\x22\xb3\x03\x38\0" },
+  { 0x22ec, (unsigned char *) "\x22\xb4\x03\x38\0" },
+  { 0x22ed, (unsigned char *) "\x22\xb5\x03\x38\0" },
+  { 0x2329, (unsigned char *) "\x30\x08\0" },
+  { 0x232a, (unsigned char *) "\x30\x09\0" },
+  { 0x304c, (unsigned char *) "\x30\x4b\x30\x99\0" },
+  { 0x304e, (unsigned char *) "\x30\x4d\x30\x99\0" },
+  { 0x3050, (unsigned char *) "\x30\x4f\x30\x99\0" },
+  { 0x3052, (unsigned char *) "\x30\x51\x30\x99\0" },
+  { 0x3054, (unsigned char *) "\x30\x53\x30\x99\0" },
+  { 0x3056, (unsigned char *) "\x30\x55\x30\x99\0" },
+  { 0x3058, (unsigned char *) "\x30\x57\x30\x99\0" },
+  { 0x305a, (unsigned char *) "\x30\x59\x30\x99\0" },
+  { 0x305c, (unsigned char *) "\x30\x5b\x30\x99\0" },
+  { 0x305e, (unsigned char *) "\x30\x5d\x30\x99\0" },
+  { 0x3060, (unsigned char *) "\x30\x5f\x30\x99\0" },
+  { 0x3062, (unsigned char *) "\x30\x61\x30\x99\0" },
+  { 0x3065, (unsigned char *) "\x30\x64\x30\x99\0" },
+  { 0x3067, (unsigned char *) "\x30\x66\x30\x99\0" },
+  { 0x3069, (unsigned char *) "\x30\x68\x30\x99\0" },
+  { 0x3070, (unsigned char *) "\x30\x6f\x30\x99\0" },
+  { 0x3071, (unsigned char *) "\x30\x6f\x30\x9a\0" },
+  { 0x3073, (unsigned char *) "\x30\x72\x30\x99\0" },
+  { 0x3074, (unsigned char *) "\x30\x72\x30\x9a\0" },
+  { 0x3076, (unsigned char *) "\x30\x75\x30\x99\0" },
+  { 0x3077, (unsigned char *) "\x30\x75\x30\x9a\0" },
+  { 0x3079, (unsigned char *) "\x30\x78\x30\x99\0" },
+  { 0x307a, (unsigned char *) "\x30\x78\x30\x9a\0" },
+  { 0x307c, (unsigned char *) "\x30\x7b\x30\x99\0" },
+  { 0x307d, (unsigned char *) "\x30\x7b\x30\x9a\0" },
+  { 0x3094, (unsigned char *) "\x30\x46\x30\x99\0" },
+  { 0x309e, (unsigned char *) "\x30\x9d\x30\x99\0" },
+  { 0x30ac, (unsigned char *) "\x30\xab\x30\x99\0" },
+  { 0x30ae, (unsigned char *) "\x30\xad\x30\x99\0" },
+  { 0x30b0, (unsigned char *) "\x30\xaf\x30\x99\0" },
+  { 0x30b2, (unsigned char *) "\x30\xb1\x30\x99\0" },
+  { 0x30b4, (unsigned char *) "\x30\xb3\x30\x99\0" },
+  { 0x30b6, (unsigned char *) "\x30\xb5\x30\x99\0" },
+  { 0x30b8, (unsigned char *) "\x30\xb7\x30\x99\0" },
+  { 0x30ba, (unsigned char *) "\x30\xb9\x30\x99\0" },
+  { 0x30bc, (unsigned char *) "\x30\xbb\x30\x99\0" },
+  { 0x30be, (unsigned char *) "\x30\xbd\x30\x99\0" },
+  { 0x30c0, (unsigned char *) "\x30\xbf\x30\x99\0" },
+  { 0x30c2, (unsigned char *) "\x30\xc1\x30\x99\0" },
+  { 0x30c5, (unsigned char *) "\x30\xc4\x30\x99\0" },
+  { 0x30c7, (unsigned char *) "\x30\xc6\x30\x99\0" },
+  { 0x30c9, (unsigned char *) "\x30\xc8\x30\x99\0" },
+  { 0x30d0, (unsigned char *) "\x30\xcf\x30\x99\0" },
+  { 0x30d1, (unsigned char *) "\x30\xcf\x30\x9a\0" },
+  { 0x30d3, (unsigned char *) "\x30\xd2\x30\x99\0" },
+  { 0x30d4, (unsigned char *) "\x30\xd2\x30\x9a\0" },
+  { 0x30d6, (unsigned char *) "\x30\xd5\x30\x99\0" },
+  { 0x30d7, (unsigned char *) "\x30\xd5\x30\x9a\0" },
+  { 0x30d9, (unsigned char *) "\x30\xd8\x30\x99\0" },
+  { 0x30da, (unsigned char *) "\x30\xd8\x30\x9a\0" },
+  { 0x30dc, (unsigned char *) "\x30\xdb\x30\x99\0" },
+  { 0x30dd, (unsigned char *) "\x30\xdb\x30\x9a\0" },
+  { 0x30f4, (unsigned char *) "\x30\xa6\x30\x99\0" },
+  { 0x30f7, (unsigned char *) "\x30\xef\x30\x99\0" },
+  { 0x30f8, (unsigned char *) "\x30\xf0\x30\x99\0" },
+  { 0x30f9, (unsigned char *) "\x30\xf1\x30\x99\0" },
+  { 0x30fa, (unsigned char *) "\x30\xf2\x30\x99\0" },
+  { 0x30fe, (unsigned char *) "\x30\xfd\x30\x99\0" },
+  { 0xf900, (unsigned char *) "\x8c\x48\0" },
+  { 0xf901, (unsigned char *) "\x66\xf4\0" },
+  { 0xf902, (unsigned char *) "\x8e\xca\0" },
+  { 0xf903, (unsigned char *) "\x8c\xc8\0" },
+  { 0xf904, (unsigned char *) "\x6e\xd1\0" },
+  { 0xf905, (unsigned char *) "\x4e\x32\0" },
+  { 0xf906, (unsigned char *) "\x53\xe5\0" },
+  { 0xf907, (unsigned char *) "\x9f\x9c\0" },
+  { 0xf908, (unsigned char *) "\x9f\x9c\0" },
+  { 0xf909, (unsigned char *) "\x59\x51\0" },
+  { 0xf90a, (unsigned char *) "\x91\xd1\0" },
+  { 0xf90b, (unsigned char *) "\x55\x87\0" },
+  { 0xf90c, (unsigned char *) "\x59\x48\0" },
+  { 0xf90d, (unsigned char *) "\x61\xf6\0" },
+  { 0xf90e, (unsigned char *) "\x76\x69\0" },
+  { 0xf90f, (unsigned char *) "\x7f\x85\0" },
+  { 0xf910, (unsigned char *) "\x86\x3f\0" },
+  { 0xf911, (unsigned char *) "\x87\xba\0" },
+  { 0xf912, (unsigned char *) "\x88\xf8\0" },
+  { 0xf913, (unsigned char *) "\x90\x8f\0" },
+  { 0xf914, (unsigned char *) "\x6a\x02\0" },
+  { 0xf915, (unsigned char *) "\x6d\x1b\0" },
+  { 0xf916, (unsigned char *) "\x70\xd9\0" },
+  { 0xf917, (unsigned char *) "\x73\xde\0" },
+  { 0xf918, (unsigned char *) "\x84\x3d\0" },
+  { 0xf919, (unsigned char *) "\x91\x6a\0" },
+  { 0xf91a, (unsigned char *) "\x99\xf1\0" },
+  { 0xf91b, (unsigned char *) "\x4e\x82\0" },
+  { 0xf91c, (unsigned char *) "\x53\x75\0" },
+  { 0xf91d, (unsigned char *) "\x6b\x04\0" },
+  { 0xf91e, (unsigned char *) "\x72\x1b\0" },
+  { 0xf91f, (unsigned char *) "\x86\x2d\0" },
+  { 0xf920, (unsigned char *) "\x9e\x1e\0" },
+  { 0xf921, (unsigned char *) "\x5d\x50\0" },
+  { 0xf922, (unsigned char *) "\x6f\xeb\0" },
+  { 0xf923, (unsigned char *) "\x85\xcd\0" },
+  { 0xf924, (unsigned char *) "\x89\x64\0" },
+  { 0xf925, (unsigned char *) "\x62\xc9\0" },
+  { 0xf926, (unsigned char *) "\x81\xd8\0" },
+  { 0xf927, (unsigned char *) "\x88\x1f\0" },
+  { 0xf928, (unsigned char *) "\x5e\xca\0" },
+  { 0xf929, (unsigned char *) "\x67\x17\0" },
+  { 0xf92a, (unsigned char *) "\x6d\x6a\0" },
+  { 0xf92b, (unsigned char *) "\x72\xfc\0" },
+  { 0xf92c, (unsigned char *) "\x90\xce\0" },
+  { 0xf92d, (unsigned char *) "\x4f\x86\0" },
+  { 0xf92e, (unsigned char *) "\x51\xb7\0" },
+  { 0xf92f, (unsigned char *) "\x52\xde\0" },
+  { 0xf930, (unsigned char *) "\x64\xc4\0" },
+  { 0xf931, (unsigned char *) "\x6a\xd3\0" },
+  { 0xf932, (unsigned char *) "\x72\x10\0" },
+  { 0xf933, (unsigned char *) "\x76\xe7\0" },
+  { 0xf934, (unsigned char *) "\x80\x01\0" },
+  { 0xf935, (unsigned char *) "\x86\x06\0" },
+  { 0xf936, (unsigned char *) "\x86\x5c\0" },
+  { 0xf937, (unsigned char *) "\x8d\xef\0" },
+  { 0xf938, (unsigned char *) "\x97\x32\0" },
+  { 0xf939, (unsigned char *) "\x9b\x6f\0" },
+  { 0xf93a, (unsigned char *) "\x9d\xfa\0" },
+  { 0xf93b, (unsigned char *) "\x78\x8c\0" },
+  { 0xf93c, (unsigned char *) "\x79\x7f\0" },
+  { 0xf93d, (unsigned char *) "\x7d\xa0\0" },
+  { 0xf93e, (unsigned char *) "\x83\xc9\0" },
+  { 0xf93f, (unsigned char *) "\x93\x04\0" },
+  { 0xf940, (unsigned char *) "\x9e\x7f\0" },
+  { 0xf941, (unsigned char *) "\x8a\xd6\0" },
+  { 0xf942, (unsigned char *) "\x58\xdf\0" },
+  { 0xf943, (unsigned char *) "\x5f\x04\0" },
+  { 0xf944, (unsigned char *) "\x7c\x60\0" },
+  { 0xf945, (unsigned char *) "\x80\x7e\0" },
+  { 0xf946, (unsigned char *) "\x72\x62\0" },
+  { 0xf947, (unsigned char *) "\x78\xca\0" },
+  { 0xf948, (unsigned char *) "\x8c\xc2\0" },
+  { 0xf949, (unsigned char *) "\x96\xf7\0" },
+  { 0xf94a, (unsigned char *) "\x58\xd8\0" },
+  { 0xf94b, (unsigned char *) "\x5c\x62\0" },
+  { 0xf94c, (unsigned char *) "\x6a\x13\0" },
+  { 0xf94d, (unsigned char *) "\x6d\xda\0" },
+  { 0xf94e, (unsigned char *) "\x6f\x0f\0" },
+  { 0xf94f, (unsigned char *) "\x7d\x2f\0" },
+  { 0xf950, (unsigned char *) "\x7e\x37\0" },
+  { 0xf951, (unsigned char *) "\x96\xfb\0" },
+  { 0xf952, (unsigned char *) "\x52\xd2\0" },
+  { 0xf953, (unsigned char *) "\x80\x8b\0" },
+  { 0xf954, (unsigned char *) "\x51\xdc\0" },
+  { 0xf955, (unsigned char *) "\x51\xcc\0" },
+  { 0xf956, (unsigned char *) "\x7a\x1c\0" },
+  { 0xf957, (unsigned char *) "\x7d\xbe\0" },
+  { 0xf958, (unsigned char *) "\x83\xf1\0" },
+  { 0xf959, (unsigned char *) "\x96\x75\0" },
+  { 0xf95a, (unsigned char *) "\x8b\x80\0" },
+  { 0xf95b, (unsigned char *) "\x62\xcf\0" },
+  { 0xf95c, (unsigned char *) "\x6a\x02\0" },
+  { 0xf95d, (unsigned char *) "\x8a\xfe\0" },
+  { 0xf95e, (unsigned char *) "\x4e\x39\0" },
+  { 0xf95f, (unsigned char *) "\x5b\xe7\0" },
+  { 0xf960, (unsigned char *) "\x60\x12\0" },
+  { 0xf961, (unsigned char *) "\x73\x87\0" },
+  { 0xf962, (unsigned char *) "\x75\x70\0" },
+  { 0xf963, (unsigned char *) "\x53\x17\0" },
+  { 0xf964, (unsigned char *) "\x78\xfb\0" },
+  { 0xf965, (unsigned char *) "\x4f\xbf\0" },
+  { 0xf966, (unsigned char *) "\x5f\xa9\0" },
+  { 0xf967, (unsigned char *) "\x4e\x0d\0" },
+  { 0xf968, (unsigned char *) "\x6c\xcc\0" },
+  { 0xf969, (unsigned char *) "\x65\x78\0" },
+  { 0xf96a, (unsigned char *) "\x7d\x22\0" },
+  { 0xf96b, (unsigned char *) "\x53\xc3\0" },
+  { 0xf96c, (unsigned char *) "\x58\x5e\0" },
+  { 0xf96d, (unsigned char *) "\x77\x01\0" },
+  { 0xf96e, (unsigned char *) "\x84\x49\0" },
+  { 0xf96f, (unsigned char *) "\x8a\xaa\0" },
+  { 0xf970, (unsigned char *) "\x6b\xba\0" },
+  { 0xf971, (unsigned char *) "\x8f\xb0\0" },
+  { 0xf972, (unsigned char *) "\x6c\x88\0" },
+  { 0xf973, (unsigned char *) "\x62\xfe\0" },
+  { 0xf974, (unsigned char *) "\x82\xe5\0" },
+  { 0xf975, (unsigned char *) "\x63\xa0\0" },
+  { 0xf976, (unsigned char *) "\x75\x65\0" },
+  { 0xf977, (unsigned char *) "\x4e\xae\0" },
+  { 0xf978, (unsigned char *) "\x51\x69\0" },
+  { 0xf979, (unsigned char *) "\x51\xc9\0" },
+  { 0xf97a, (unsigned char *) "\x68\x81\0" },
+  { 0xf97b, (unsigned char *) "\x7c\xe7\0" },
+  { 0xf97c, (unsigned char *) "\x82\x6f\0" },
+  { 0xf97d, (unsigned char *) "\x8a\xd2\0" },
+  { 0xf97e, (unsigned char *) "\x91\xcf\0" },
+  { 0xf97f, (unsigned char *) "\x52\xf5\0" },
+  { 0xf980, (unsigned char *) "\x54\x42\0" },
+  { 0xf981, (unsigned char *) "\x59\x73\0" },
+  { 0xf982, (unsigned char *) "\x5e\xec\0" },
+  { 0xf983, (unsigned char *) "\x65\xc5\0" },
+  { 0xf984, (unsigned char *) "\x6f\xfe\0" },
+  { 0xf985, (unsigned char *) "\x79\x2a\0" },
+  { 0xf986, (unsigned char *) "\x95\xad\0" },
+  { 0xf987, (unsigned char *) "\x9a\x6a\0" },
+  { 0xf988, (unsigned char *) "\x9e\x97\0" },
+  { 0xf989, (unsigned char *) "\x9e\xce\0" },
+  { 0xf98a, (unsigned char *) "\x52\x9b\0" },
+  { 0xf98b, (unsigned char *) "\x66\xc6\0" },
+  { 0xf98c, (unsigned char *) "\x6b\x77\0" },
+  { 0xf98d, (unsigned char *) "\x8f\x62\0" },
+  { 0xf98e, (unsigned char *) "\x5e\x74\0" },
+  { 0xf98f, (unsigned char *) "\x61\x90\0" },
+  { 0xf990, (unsigned char *) "\x62\x00\0" },
+  { 0xf991, (unsigned char *) "\x64\x9a\0" },
+  { 0xf992, (unsigned char *) "\x6f\x23\0" },
+  { 0xf993, (unsigned char *) "\x71\x49\0" },
+  { 0xf994, (unsigned char *) "\x74\x89\0" },
+  { 0xf995, (unsigned char *) "\x79\xca\0" },
+  { 0xf996, (unsigned char *) "\x7d\xf4\0" },
+  { 0xf997, (unsigned char *) "\x80\x6f\0" },
+  { 0xf998, (unsigned char *) "\x8f\x26\0" },
+  { 0xf999, (unsigned char *) "\x84\xee\0" },
+  { 0xf99a, (unsigned char *) "\x90\x23\0" },
+  { 0xf99b, (unsigned char *) "\x93\x4a\0" },
+  { 0xf99c, (unsigned char *) "\x52\x17\0" },
+  { 0xf99d, (unsigned char *) "\x52\xa3\0" },
+  { 0xf99e, (unsigned char *) "\x54\xbd\0" },
+  { 0xf99f, (unsigned char *) "\x70\xc8\0" },
+  { 0xf9a0, (unsigned char *) "\x88\xc2\0" },
+  { 0xf9a1, (unsigned char *) "\x8a\xaa\0" },
+  { 0xf9a2, (unsigned char *) "\x5e\xc9\0" },
+  { 0xf9a3, (unsigned char *) "\x5f\xf5\0" },
+  { 0xf9a4, (unsigned char *) "\x63\x7b\0" },
+  { 0xf9a5, (unsigned char *) "\x6b\xae\0" },
+  { 0xf9a6, (unsigned char *) "\x7c\x3e\0" },
+  { 0xf9a7, (unsigned char *) "\x73\x75\0" },
+  { 0xf9a8, (unsigned char *) "\x4e\xe4\0" },
+  { 0xf9a9, (unsigned char *) "\x56\xf9\0" },
+  { 0xf9aa, (unsigned char *) "\x5b\xe7\0" },
+  { 0xf9ab, (unsigned char *) "\x5d\xba\0" },
+  { 0xf9ac, (unsigned char *) "\x60\x1c\0" },
+  { 0xf9ad, (unsigned char *) "\x73\xb2\0" },
+  { 0xf9ae, (unsigned char *) "\x74\x69\0" },
+  { 0xf9af, (unsigned char *) "\x7f\x9a\0" },
+  { 0xf9b0, (unsigned char *) "\x80\x46\0" },
+  { 0xf9b1, (unsigned char *) "\x92\x34\0" },
+  { 0xf9b2, (unsigned char *) "\x96\xf6\0" },
+  { 0xf9b3, (unsigned char *) "\x97\x48\0" },
+  { 0xf9b4, (unsigned char *) "\x98\x18\0" },
+  { 0xf9b5, (unsigned char *) "\x4f\x8b\0" },
+  { 0xf9b6, (unsigned char *) "\x79\xae\0" },
+  { 0xf9b7, (unsigned char *) "\x91\xb4\0" },
+  { 0xf9b8, (unsigned char *) "\x96\xb8\0" },
+  { 0xf9b9, (unsigned char *) "\x60\xe1\0" },
+  { 0xf9ba, (unsigned char *) "\x4e\x86\0" },
+  { 0xf9bb, (unsigned char *) "\x50\xda\0" },
+  { 0xf9bc, (unsigned char *) "\x5b\xee\0" },
+  { 0xf9bd, (unsigned char *) "\x5c\x3f\0" },
+  { 0xf9be, (unsigned char *) "\x65\x99\0" },
+  { 0xf9bf, (unsigned char *) "\x6a\x02\0" },
+  { 0xf9c0, (unsigned char *) "\x71\xce\0" },
+  { 0xf9c1, (unsigned char *) "\x76\x42\0" },
+  { 0xf9c2, (unsigned char *) "\x84\xfc\0" },
+  { 0xf9c3, (unsigned char *) "\x90\x7c\0" },
+  { 0xf9c4, (unsigned char *) "\x9f\x8d\0" },
+  { 0xf9c5, (unsigned char *) "\x66\x88\0" },
+  { 0xf9c6, (unsigned char *) "\x96\x2e\0" },
+  { 0xf9c7, (unsigned char *) "\x52\x89\0" },
+  { 0xf9c8, (unsigned char *) "\x67\x7b\0" },
+  { 0xf9c9, (unsigned char *) "\x67\xf3\0" },
+  { 0xf9ca, (unsigned char *) "\x6d\x41\0" },
+  { 0xf9cb, (unsigned char *) "\x6e\x9c\0" },
+  { 0xf9cc, (unsigned char *) "\x74\x09\0" },
+  { 0xf9cd, (unsigned char *) "\x75\x59\0" },
+  { 0xf9ce, (unsigned char *) "\x78\x6b\0" },
+  { 0xf9cf, (unsigned char *) "\x7d\x10\0" },
+  { 0xf9d0, (unsigned char *) "\x98\x5e\0" },
+  { 0xf9d1, (unsigned char *) "\x51\x6d\0" },
+  { 0xf9d2, (unsigned char *) "\x62\x2e\0" },
+  { 0xf9d3, (unsigned char *) "\x96\x78\0" },
+  { 0xf9d4, (unsigned char *) "\x50\x2b\0" },
+  { 0xf9d5, (unsigned char *) "\x5d\x19\0" },
+  { 0xf9d6, (unsigned char *) "\x6d\xea\0" },
+  { 0xf9d7, (unsigned char *) "\x8f\x2a\0" },
+  { 0xf9d8, (unsigned char *) "\x5f\x8b\0" },
+  { 0xf9d9, (unsigned char *) "\x61\x44\0" },
+  { 0xf9da, (unsigned char *) "\x68\x17\0" },
+  { 0xf9db, (unsigned char *) "\x73\x87\0" },
+  { 0xf9dc, (unsigned char *) "\x96\x86\0" },
+  { 0xf9dd, (unsigned char *) "\x52\x29\0" },
+  { 0xf9de, (unsigned char *) "\x54\x0f\0" },
+  { 0xf9df, (unsigned char *) "\x5c\x65\0" },
+  { 0xf9e0, (unsigned char *) "\x66\x13\0" },
+  { 0xf9e1, (unsigned char *) "\x67\x4e\0" },
+  { 0xf9e2, (unsigned char *) "\x68\xa8\0" },
+  { 0xf9e3, (unsigned char *) "\x6c\xe5\0" },
+  { 0xf9e4, (unsigned char *) "\x74\x06\0" },
+  { 0xf9e5, (unsigned char *) "\x75\xe2\0" },
+  { 0xf9e6, (unsigned char *) "\x7f\x79\0" },
+  { 0xf9e7, (unsigned char *) "\x88\xcf\0" },
+  { 0xf9e8, (unsigned char *) "\x88\xe1\0" },
+  { 0xf9e9, (unsigned char *) "\x91\xcc\0" },
+  { 0xf9ea, (unsigned char *) "\x96\xe2\0" },
+  { 0xf9eb, (unsigned char *) "\x53\x3f\0" },
+  { 0xf9ec, (unsigned char *) "\x6e\xba\0" },
+  { 0xf9ed, (unsigned char *) "\x54\x1d\0" },
+  { 0xf9ee, (unsigned char *) "\x71\xd0\0" },
+  { 0xf9ef, (unsigned char *) "\x74\x98\0" },
+  { 0xf9f0, (unsigned char *) "\x85\xfa\0" },
+  { 0xf9f1, (unsigned char *) "\x96\xa3\0" },
+  { 0xf9f2, (unsigned char *) "\x9c\x57\0" },
+  { 0xf9f3, (unsigned char *) "\x9e\x9f\0" },
+  { 0xf9f4, (unsigned char *) "\x67\x97\0" },
+  { 0xf9f5, (unsigned char *) "\x6d\xcb\0" },
+  { 0xf9f6, (unsigned char *) "\x81\xe8\0" },
+  { 0xf9f7, (unsigned char *) "\x7a\xcb\0" },
+  { 0xf9f8, (unsigned char *) "\x7b\x20\0" },
+  { 0xf9f9, (unsigned char *) "\x7c\x92\0" },
+  { 0xf9fa, (unsigned char *) "\x72\xc0\0" },
+  { 0xf9fb, (unsigned char *) "\x70\x99\0" },
+  { 0xf9fc, (unsigned char *) "\x8b\x58\0" },
+  { 0xf9fd, (unsigned char *) "\x4e\xc0\0" },
+  { 0xf9fe, (unsigned char *) "\x83\x36\0" },
+  { 0xf9ff, (unsigned char *) "\x52\x3a\0" },
+  { 0xfa00, (unsigned char *) "\x52\x07\0" },
+  { 0xfa01, (unsigned char *) "\x5e\xa6\0" },
+  { 0xfa02, (unsigned char *) "\x62\xd3\0" },
+  { 0xfa03, (unsigned char *) "\x7c\xd6\0" },
+  { 0xfa04, (unsigned char *) "\x5b\x85\0" },
+  { 0xfa05, (unsigned char *) "\x6d\x1e\0" },
+  { 0xfa06, (unsigned char *) "\x66\xb4\0" },
+  { 0xfa07, (unsigned char *) "\x8f\x3b\0" },
+  { 0xfa08, (unsigned char *) "\x88\x4c\0" },
+  { 0xfa09, (unsigned char *) "\x96\x4d\0" },
+  { 0xfa0a, (unsigned char *) "\x89\x8b\0" },
+  { 0xfa0b, (unsigned char *) "\x5e\xd3\0" },
+  { 0xfa0c, (unsigned char *) "\x51\x40\0" },
+  { 0xfa0d, (unsigned char *) "\x55\xc0\0" },
+  { 0xfa10, (unsigned char *) "\x58\x5a\0" },
+  { 0xfa12, (unsigned char *) "\x66\x74\0" },
+  { 0xfa15, (unsigned char *) "\x51\xde\0" },
+  { 0xfa16, (unsigned char *) "\x73\x2a\0" },
+  { 0xfa17, (unsigned char *) "\x76\xca\0" },
+  { 0xfa18, (unsigned char *) "\x79\x3c\0" },
+  { 0xfa19, (unsigned char *) "\x79\x5e\0" },
+  { 0xfa1a, (unsigned char *) "\x79\x65\0" },
+  { 0xfa1b, (unsigned char *) "\x79\x8f\0" },
+  { 0xfa1c, (unsigned char *) "\x97\x56\0" },
+  { 0xfa1d, (unsigned char *) "\x7c\xbe\0" },
+  { 0xfa1e, (unsigned char *) "\x7f\xbd\0" },
+  { 0xfa20, (unsigned char *) "\x86\x12\0" },
+  { 0xfa22, (unsigned char *) "\x8a\xf8\0" },
+  { 0xfa25, (unsigned char *) "\x90\x38\0" },
+  { 0xfa26, (unsigned char *) "\x90\xfd\0" },
+  { 0xfa2a, (unsigned char *) "\x98\xef\0" },
+  { 0xfa2b, (unsigned char *) "\x98\xfc\0" },
+  { 0xfa2c, (unsigned char *) "\x99\x28\0" },
+  { 0xfa2d, (unsigned char *) "\x9d\xb4\0" },
+  { 0xfb1f, (unsigned char *) "\x05\xf2\x05\xb7\0" },
+  { 0xfb2a, (unsigned char *) "\x05\xe9\x05\xc1\0" },
+  { 0xfb2b, (unsigned char *) "\x05\xe9\x05\xc2\0" },
+  { 0xfb2c, (unsigned char *) "\x05\xe9\x05\xbc\x05\xc1\0" },
+  { 0xfb2d, (unsigned char *) "\x05\xe9\x05\xbc\x05\xc2\0" },
+  { 0xfb2e, (unsigned char *) "\x05\xd0\x05\xb7\0" },
+  { 0xfb2f, (unsigned char *) "\x05\xd0\x05\xb8\0" },
+  { 0xfb30, (unsigned char *) "\x05\xd0\x05\xbc\0" },
+  { 0xfb31, (unsigned char *) "\x05\xd1\x05\xbc\0" },
+  { 0xfb32, (unsigned char *) "\x05\xd2\x05\xbc\0" },
+  { 0xfb33, (unsigned char *) "\x05\xd3\x05\xbc\0" },
+  { 0xfb34, (unsigned char *) "\x05\xd4\x05\xbc\0" },
+  { 0xfb35, (unsigned char *) "\x05\xd5\x05\xbc\0" },
+  { 0xfb36, (unsigned char *) "\x05\xd6\x05\xbc\0" },
+  { 0xfb38, (unsigned char *) "\x05\xd8\x05\xbc\0" },
+  { 0xfb39, (unsigned char *) "\x05\xd9\x05\xbc\0" },
+  { 0xfb3a, (unsigned char *) "\x05\xda\x05\xbc\0" },
+  { 0xfb3b, (unsigned char *) "\x05\xdb\x05\xbc\0" },
+  { 0xfb3c, (unsigned char *) "\x05\xdc\x05\xbc\0" },
+  { 0xfb3e, (unsigned char *) "\x05\xde\x05\xbc\0" },
+  { 0xfb40, (unsigned char *) "\x05\xe0\x05\xbc\0" },
+  { 0xfb41, (unsigned char *) "\x05\xe1\x05\xbc\0" },
+  { 0xfb43, (unsigned char *) "\x05\xe3\x05\xbc\0" },
+  { 0xfb44, (unsigned char *) "\x05\xe4\x05\xbc\0" },
+  { 0xfb46, (unsigned char *) "\x05\xe6\x05\xbc\0" },
+  { 0xfb47, (unsigned char *) "\x05\xe7\x05\xbc\0" },
+  { 0xfb48, (unsigned char *) "\x05\xe8\x05\xbc\0" },
+  { 0xfb49, (unsigned char *) "\x05\xe9\x05\xbc\0" },
+  { 0xfb4a, (unsigned char *) "\x05\xea\x05\xbc\0" },
+  { 0xfb4b, (unsigned char *) "\x05\xd5\x05\xb9\0" },
+  { 0xfb4c, (unsigned char *) "\x05\xd1\x05\xbf\0" },
+  { 0xfb4d, (unsigned char *) "\x05\xdb\x05\xbf\0" },
+  { 0xfb4e, (unsigned char *) "\x05\xe4\x05\xbf\0" }
 };
 
 #endif /* DECOMP_H */
diff --git a/gmain.c b/gmain.c
index 53bb219..ad03a35 100644 (file)
--- a/gmain.c
+++ b/gmain.c
@@ -744,7 +744,7 @@ g_main_iterate (gboolean block,
       G_UNLOCK (main_loop);
       return FALSE;
     }
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
   
   /* If recursing, finish up current dispatch, before starting over */
   if (pending_dispatches)
@@ -1403,7 +1403,7 @@ g_idle_dispatch (gpointer source_data,
                 GTimeVal *dispatch_time,
                 gpointer user_data)
 {
-  GSourceFunc func = source_data;
+  GSourceFunc func = (GSourceFunc) source_data;
 
   return func (user_data);
 }
@@ -1416,7 +1416,7 @@ g_idle_add_full (gint           priority,
 {
   g_return_val_if_fail (function != NULL, 0);
 
-  return g_source_add (priority, FALSE, &idle_funcs, function, data, notify);
+  return g_source_add (priority, FALSE, &idle_funcs, (gpointer) function, data, notify);
 }
 
 guint 
index 21dc259..032343a 100644 (file)
@@ -933,7 +933,7 @@ g_strdown (gchar *string)
   
   g_return_val_if_fail (string != NULL, NULL);
   
-  s = string;
+  s = (guchar *) string;
   
   while (*s)
     {
@@ -941,7 +941,7 @@ g_strdown (gchar *string)
       s++;
     }
   
-  return string;
+  return (gchar *) string;
 }
 
 gchar*
@@ -951,7 +951,7 @@ g_strup (gchar *string)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  s = string;
+  s = (guchar *) string;
 
   while (*s)
     {
@@ -959,7 +959,7 @@ g_strup (gchar *string)
       s++;
     }
 
-  return string;
+  return (gchar *) string;
 }
 
 gchar*
@@ -1455,10 +1455,10 @@ g_strchug (gchar *string)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  for (start = string; *start && isspace (*start); start++)
+  for (start = (guchar*) string; *start && isspace (*start); start++)
     ;
 
-  g_memmove (string, start, strlen( start) + 1);
+  g_memmove (string, start, strlen ((gchar *) start) + 1);
 
   return string;
 }
index 70a7666..cd5f13b 100644 (file)
--- a/gstring.c
+++ b/gstring.c
@@ -512,7 +512,7 @@ g_string_down (GString *fstring)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  s = string->str;
+  s = (guchar *) string->str;
 
   while (n)
     {
@@ -533,7 +533,7 @@ g_string_up (GString *fstring)
 
   g_return_val_if_fail (string != NULL, NULL);
 
-  s = string->str;
+  s = (guchar *) string->str;
 
   while (n)
     {
index b281e7c..d1a4d2c 100644 (file)
@@ -42,7 +42,7 @@ struct _GRealThreadPool
 /* The following is just an address to mark the stop order for a
  * thread, it could be any address (as long, as it isn;t a valid
  * GThreadPool address) */
-static const gpointer stop_this_thread_marker = &g_thread_pool_new;
+static const gpointer stop_this_thread_marker = (gpointer) &g_thread_pool_new;
 
 /* Here all unused threads are waiting, depending on their priority */
 static GAsyncQueue *unused_thread_queue[G_THREAD_PRIORITY_URGENT + 1];
index fb4774f..27186ed 100644 (file)
@@ -484,1272 +484,1272 @@ typedef struct
 
 static decomposition decomp_table[] =
 {
-  { 0x00c0, "\x00\x41\x03\x00\0" },
-  { 0x00c1, "\x00\x41\x03\x01\0" },
-  { 0x00c2, "\x00\x41\x03\x02\0" },
-  { 0x00c3, "\x00\x41\x03\x03\0" },
-  { 0x00c4, "\x00\x41\x03\x08\0" },
-  { 0x00c5, "\x00\x41\x03\x0a\0" },
-  { 0x00c7, "\x00\x43\x03\x27\0" },
-  { 0x00c8, "\x00\x45\x03\x00\0" },
-  { 0x00c9, "\x00\x45\x03\x01\0" },
-  { 0x00ca, "\x00\x45\x03\x02\0" },
-  { 0x00cb, "\x00\x45\x03\x08\0" },
-  { 0x00cc, "\x00\x49\x03\x00\0" },
-  { 0x00cd, "\x00\x49\x03\x01\0" },
-  { 0x00ce, "\x00\x49\x03\x02\0" },
-  { 0x00cf, "\x00\x49\x03\x08\0" },
-  { 0x00d1, "\x00\x4e\x03\x03\0" },
-  { 0x00d2, "\x00\x4f\x03\x00\0" },
-  { 0x00d3, "\x00\x4f\x03\x01\0" },
-  { 0x00d4, "\x00\x4f\x03\x02\0" },
-  { 0x00d5, "\x00\x4f\x03\x03\0" },
-  { 0x00d6, "\x00\x4f\x03\x08\0" },
-  { 0x00d9, "\x00\x55\x03\x00\0" },
-  { 0x00da, "\x00\x55\x03\x01\0" },
-  { 0x00db, "\x00\x55\x03\x02\0" },
-  { 0x00dc, "\x00\x55\x03\x08\0" },
-  { 0x00dd, "\x00\x59\x03\x01\0" },
-  { 0x00e0, "\x00\x61\x03\x00\0" },
-  { 0x00e1, "\x00\x61\x03\x01\0" },
-  { 0x00e2, "\x00\x61\x03\x02\0" },
-  { 0x00e3, "\x00\x61\x03\x03\0" },
-  { 0x00e4, "\x00\x61\x03\x08\0" },
-  { 0x00e5, "\x00\x61\x03\x0a\0" },
-  { 0x00e7, "\x00\x63\x03\x27\0" },
-  { 0x00e8, "\x00\x65\x03\x00\0" },
-  { 0x00e9, "\x00\x65\x03\x01\0" },
-  { 0x00ea, "\x00\x65\x03\x02\0" },
-  { 0x00eb, "\x00\x65\x03\x08\0" },
-  { 0x00ec, "\x00\x69\x03\x00\0" },
-  { 0x00ed, "\x00\x69\x03\x01\0" },
-  { 0x00ee, "\x00\x69\x03\x02\0" },
-  { 0x00ef, "\x00\x69\x03\x08\0" },
-  { 0x00f1, "\x00\x6e\x03\x03\0" },
-  { 0x00f2, "\x00\x6f\x03\x00\0" },
-  { 0x00f3, "\x00\x6f\x03\x01\0" },
-  { 0x00f4, "\x00\x6f\x03\x02\0" },
-  { 0x00f5, "\x00\x6f\x03\x03\0" },
-  { 0x00f6, "\x00\x6f\x03\x08\0" },
-  { 0x00f9, "\x00\x75\x03\x00\0" },
-  { 0x00fa, "\x00\x75\x03\x01\0" },
-  { 0x00fb, "\x00\x75\x03\x02\0" },
-  { 0x00fc, "\x00\x75\x03\x08\0" },
-  { 0x00fd, "\x00\x79\x03\x01\0" },
-  { 0x00ff, "\x00\x79\x03\x08\0" },
-  { 0x0100, "\x00\x41\x03\x04\0" },
-  { 0x0101, "\x00\x61\x03\x04\0" },
-  { 0x0102, "\x00\x41\x03\x06\0" },
-  { 0x0103, "\x00\x61\x03\x06\0" },
-  { 0x0104, "\x00\x41\x03\x28\0" },
-  { 0x0105, "\x00\x61\x03\x28\0" },
-  { 0x0106, "\x00\x43\x03\x01\0" },
-  { 0x0107, "\x00\x63\x03\x01\0" },
-  { 0x0108, "\x00\x43\x03\x02\0" },
-  { 0x0109, "\x00\x63\x03\x02\0" },
-  { 0x010a, "\x00\x43\x03\x07\0" },
-  { 0x010b, "\x00\x63\x03\x07\0" },
-  { 0x010c, "\x00\x43\x03\x0c\0" },
-  { 0x010d, "\x00\x63\x03\x0c\0" },
-  { 0x010e, "\x00\x44\x03\x0c\0" },
-  { 0x010f, "\x00\x64\x03\x0c\0" },
-  { 0x0112, "\x00\x45\x03\x04\0" },
-  { 0x0113, "\x00\x65\x03\x04\0" },
-  { 0x0114, "\x00\x45\x03\x06\0" },
-  { 0x0115, "\x00\x65\x03\x06\0" },
-  { 0x0116, "\x00\x45\x03\x07\0" },
-  { 0x0117, "\x00\x65\x03\x07\0" },
-  { 0x0118, "\x00\x45\x03\x28\0" },
-  { 0x0119, "\x00\x65\x03\x28\0" },
-  { 0x011a, "\x00\x45\x03\x0c\0" },
-  { 0x011b, "\x00\x65\x03\x0c\0" },
-  { 0x011c, "\x00\x47\x03\x02\0" },
-  { 0x011d, "\x00\x67\x03\x02\0" },
-  { 0x011e, "\x00\x47\x03\x06\0" },
-  { 0x011f, "\x00\x67\x03\x06\0" },
-  { 0x0120, "\x00\x47\x03\x07\0" },
-  { 0x0121, "\x00\x67\x03\x07\0" },
-  { 0x0122, "\x00\x47\x03\x27\0" },
-  { 0x0123, "\x00\x67\x03\x27\0" },
-  { 0x0124, "\x00\x48\x03\x02\0" },
-  { 0x0125, "\x00\x68\x03\x02\0" },
-  { 0x0128, "\x00\x49\x03\x03\0" },
-  { 0x0129, "\x00\x69\x03\x03\0" },
-  { 0x012a, "\x00\x49\x03\x04\0" },
-  { 0x012b, "\x00\x69\x03\x04\0" },
-  { 0x012c, "\x00\x49\x03\x06\0" },
-  { 0x012d, "\x00\x69\x03\x06\0" },
-  { 0x012e, "\x00\x49\x03\x28\0" },
-  { 0x012f, "\x00\x69\x03\x28\0" },
-  { 0x0130, "\x00\x49\x03\x07\0" },
-  { 0x0134, "\x00\x4a\x03\x02\0" },
-  { 0x0135, "\x00\x6a\x03\x02\0" },
-  { 0x0136, "\x00\x4b\x03\x27\0" },
-  { 0x0137, "\x00\x6b\x03\x27\0" },
-  { 0x0139, "\x00\x4c\x03\x01\0" },
-  { 0x013a, "\x00\x6c\x03\x01\0" },
-  { 0x013b, "\x00\x4c\x03\x27\0" },
-  { 0x013c, "\x00\x6c\x03\x27\0" },
-  { 0x013d, "\x00\x4c\x03\x0c\0" },
-  { 0x013e, "\x00\x6c\x03\x0c\0" },
-  { 0x0143, "\x00\x4e\x03\x01\0" },
-  { 0x0144, "\x00\x6e\x03\x01\0" },
-  { 0x0145, "\x00\x4e\x03\x27\0" },
-  { 0x0146, "\x00\x6e\x03\x27\0" },
-  { 0x0147, "\x00\x4e\x03\x0c\0" },
-  { 0x0148, "\x00\x6e\x03\x0c\0" },
-  { 0x014c, "\x00\x4f\x03\x04\0" },
-  { 0x014d, "\x00\x6f\x03\x04\0" },
-  { 0x014e, "\x00\x4f\x03\x06\0" },
-  { 0x014f, "\x00\x6f\x03\x06\0" },
-  { 0x0150, "\x00\x4f\x03\x0b\0" },
-  { 0x0151, "\x00\x6f\x03\x0b\0" },
-  { 0x0154, "\x00\x52\x03\x01\0" },
-  { 0x0155, "\x00\x72\x03\x01\0" },
-  { 0x0156, "\x00\x52\x03\x27\0" },
-  { 0x0157, "\x00\x72\x03\x27\0" },
-  { 0x0158, "\x00\x52\x03\x0c\0" },
-  { 0x0159, "\x00\x72\x03\x0c\0" },
-  { 0x015a, "\x00\x53\x03\x01\0" },
-  { 0x015b, "\x00\x73\x03\x01\0" },
-  { 0x015c, "\x00\x53\x03\x02\0" },
-  { 0x015d, "\x00\x73\x03\x02\0" },
-  { 0x015e, "\x00\x53\x03\x27\0" },
-  { 0x015f, "\x00\x73\x03\x27\0" },
-  { 0x0160, "\x00\x53\x03\x0c\0" },
-  { 0x0161, "\x00\x73\x03\x0c\0" },
-  { 0x0162, "\x00\x54\x03\x27\0" },
-  { 0x0163, "\x00\x74\x03\x27\0" },
-  { 0x0164, "\x00\x54\x03\x0c\0" },
-  { 0x0165, "\x00\x74\x03\x0c\0" },
-  { 0x0168, "\x00\x55\x03\x03\0" },
-  { 0x0169, "\x00\x75\x03\x03\0" },
-  { 0x016a, "\x00\x55\x03\x04\0" },
-  { 0x016b, "\x00\x75\x03\x04\0" },
-  { 0x016c, "\x00\x55\x03\x06\0" },
-  { 0x016d, "\x00\x75\x03\x06\0" },
-  { 0x016e, "\x00\x55\x03\x0a\0" },
-  { 0x016f, "\x00\x75\x03\x0a\0" },
-  { 0x0170, "\x00\x55\x03\x0b\0" },
-  { 0x0171, "\x00\x75\x03\x0b\0" },
-  { 0x0172, "\x00\x55\x03\x28\0" },
-  { 0x0173, "\x00\x75\x03\x28\0" },
-  { 0x0174, "\x00\x57\x03\x02\0" },
-  { 0x0175, "\x00\x77\x03\x02\0" },
-  { 0x0176, "\x00\x59\x03\x02\0" },
-  { 0x0177, "\x00\x79\x03\x02\0" },
-  { 0x0178, "\x00\x59\x03\x08\0" },
-  { 0x0179, "\x00\x5a\x03\x01\0" },
-  { 0x017a, "\x00\x7a\x03\x01\0" },
-  { 0x017b, "\x00\x5a\x03\x07\0" },
-  { 0x017c, "\x00\x7a\x03\x07\0" },
-  { 0x017d, "\x00\x5a\x03\x0c\0" },
-  { 0x017e, "\x00\x7a\x03\x0c\0" },
-  { 0x01a0, "\x00\x4f\x03\x1b\0" },
-  { 0x01a1, "\x00\x6f\x03\x1b\0" },
-  { 0x01af, "\x00\x55\x03\x1b\0" },
-  { 0x01b0, "\x00\x75\x03\x1b\0" },
-  { 0x01cd, "\x00\x41\x03\x0c\0" },
-  { 0x01ce, "\x00\x61\x03\x0c\0" },
-  { 0x01cf, "\x00\x49\x03\x0c\0" },
-  { 0x01d0, "\x00\x69\x03\x0c\0" },
-  { 0x01d1, "\x00\x4f\x03\x0c\0" },
-  { 0x01d2, "\x00\x6f\x03\x0c\0" },
-  { 0x01d3, "\x00\x55\x03\x0c\0" },
-  { 0x01d4, "\x00\x75\x03\x0c\0" },
-  { 0x01d5, "\x00\x55\x03\x08\x03\x04\0" },
-  { 0x01d6, "\x00\x75\x03\x08\x03\x04\0" },
-  { 0x01d7, "\x00\x55\x03\x08\x03\x01\0" },
-  { 0x01d8, "\x00\x75\x03\x08\x03\x01\0" },
-  { 0x01d9, "\x00\x55\x03\x08\x03\x0c\0" },
-  { 0x01da, "\x00\x75\x03\x08\x03\x0c\0" },
-  { 0x01db, "\x00\x55\x03\x08\x03\x00\0" },
-  { 0x01dc, "\x00\x75\x03\x08\x03\x00\0" },
-  { 0x01de, "\x00\x41\x03\x08\x03\x04\0" },
-  { 0x01df, "\x00\x61\x03\x08\x03\x04\0" },
-  { 0x01e0, "\x00\x41\x03\x07\x03\x04\0" },
-  { 0x01e1, "\x00\x61\x03\x07\x03\x04\0" },
-  { 0x01e2, "\x00\xc6\x03\x04\0" },
-  { 0x01e3, "\x00\xe6\x03\x04\0" },
-  { 0x01e6, "\x00\x47\x03\x0c\0" },
-  { 0x01e7, "\x00\x67\x03\x0c\0" },
-  { 0x01e8, "\x00\x4b\x03\x0c\0" },
-  { 0x01e9, "\x00\x6b\x03\x0c\0" },
-  { 0x01ea, "\x00\x4f\x03\x28\0" },
-  { 0x01eb, "\x00\x6f\x03\x28\0" },
-  { 0x01ec, "\x00\x4f\x03\x28\x03\x04\0" },
-  { 0x01ed, "\x00\x6f\x03\x28\x03\x04\0" },
-  { 0x01ee, "\x01\xb7\x03\x0c\0" },
-  { 0x01ef, "\x02\x92\x03\x0c\0" },
-  { 0x01f0, "\x00\x6a\x03\x0c\0" },
-  { 0x01f4, "\x00\x47\x03\x01\0" },
-  { 0x01f5, "\x00\x67\x03\x01\0" },
-  { 0x01fa, "\x00\x41\x03\x0a\x03\x01\0" },
-  { 0x01fb, "\x00\x61\x03\x0a\x03\x01\0" },
-  { 0x01fc, "\x00\xc6\x03\x01\0" },
-  { 0x01fd, "\x00\xe6\x03\x01\0" },
-  { 0x01fe, "\x00\xd8\x03\x01\0" },
-  { 0x01ff, "\x00\xf8\x03\x01\0" },
-  { 0x0200, "\x00\x41\x03\x0f\0" },
-  { 0x0201, "\x00\x61\x03\x0f\0" },
-  { 0x0202, "\x00\x41\x03\x11\0" },
-  { 0x0203, "\x00\x61\x03\x11\0" },
-  { 0x0204, "\x00\x45\x03\x0f\0" },
-  { 0x0205, "\x00\x65\x03\x0f\0" },
-  { 0x0206, "\x00\x45\x03\x11\0" },
-  { 0x0207, "\x00\x65\x03\x11\0" },
-  { 0x0208, "\x00\x49\x03\x0f\0" },
-  { 0x0209, "\x00\x69\x03\x0f\0" },
-  { 0x020a, "\x00\x49\x03\x11\0" },
-  { 0x020b, "\x00\x69\x03\x11\0" },
-  { 0x020c, "\x00\x4f\x03\x0f\0" },
-  { 0x020d, "\x00\x6f\x03\x0f\0" },
-  { 0x020e, "\x00\x4f\x03\x11\0" },
-  { 0x020f, "\x00\x6f\x03\x11\0" },
-  { 0x0210, "\x00\x52\x03\x0f\0" },
-  { 0x0211, "\x00\x72\x03\x0f\0" },
-  { 0x0212, "\x00\x52\x03\x11\0" },
-  { 0x0213, "\x00\x72\x03\x11\0" },
-  { 0x0214, "\x00\x55\x03\x0f\0" },
-  { 0x0215, "\x00\x75\x03\x0f\0" },
-  { 0x0216, "\x00\x55\x03\x11\0" },
-  { 0x0217, "\x00\x75\x03\x11\0" },
-  { 0x0340, "\x03\x00\0" },
-  { 0x0341, "\x03\x01\0" },
-  { 0x0343, "\x03\x13\0" },
-  { 0x0344, "\x03\x08\x03\x01\0" },
-  { 0x0374, "\x02\xb9\0" },
-  { 0x037e, "\x00\x3b\0" },
-  { 0x0385, "\x00\xa8\x03\x01\0" },
-  { 0x0386, "\x03\x91\x03\x01\0" },
-  { 0x0387, "\x00\xb7\0" },
-  { 0x0388, "\x03\x95\x03\x01\0" },
-  { 0x0389, "\x03\x97\x03\x01\0" },
-  { 0x038a, "\x03\x99\x03\x01\0" },
-  { 0x038c, "\x03\x9f\x03\x01\0" },
-  { 0x038e, "\x03\xa5\x03\x01\0" },
-  { 0x038f, "\x03\xa9\x03\x01\0" },
-  { 0x0390, "\x03\xb9\x03\x08\x03\x01\0" },
-  { 0x03aa, "\x03\x99\x03\x08\0" },
-  { 0x03ab, "\x03\xa5\x03\x08\0" },
-  { 0x03ac, "\x03\xb1\x03\x01\0" },
-  { 0x03ad, "\x03\xb5\x03\x01\0" },
-  { 0x03ae, "\x03\xb7\x03\x01\0" },
-  { 0x03af, "\x03\xb9\x03\x01\0" },
-  { 0x03b0, "\x03\xc5\x03\x08\x03\x01\0" },
-  { 0x03ca, "\x03\xb9\x03\x08\0" },
-  { 0x03cb, "\x03\xc5\x03\x08\0" },
-  { 0x03cc, "\x03\xbf\x03\x01\0" },
-  { 0x03cd, "\x03\xc5\x03\x01\0" },
-  { 0x03ce, "\x03\xc9\x03\x01\0" },
-  { 0x03d3, "\x03\xd2\x03\x01\0" },
-  { 0x03d4, "\x03\xd2\x03\x08\0" },
-  { 0x0401, "\x04\x15\x03\x08\0" },
-  { 0x0403, "\x04\x13\x03\x01\0" },
-  { 0x0407, "\x04\x06\x03\x08\0" },
-  { 0x040c, "\x04\x1a\x03\x01\0" },
-  { 0x040e, "\x04\x23\x03\x06\0" },
-  { 0x0419, "\x04\x18\x03\x06\0" },
-  { 0x0439, "\x04\x38\x03\x06\0" },
-  { 0x0451, "\x04\x35\x03\x08\0" },
-  { 0x0453, "\x04\x33\x03\x01\0" },
-  { 0x0457, "\x04\x56\x03\x08\0" },
-  { 0x045c, "\x04\x3a\x03\x01\0" },
-  { 0x045e, "\x04\x43\x03\x06\0" },
-  { 0x0476, "\x04\x74\x03\x0f\0" },
-  { 0x0477, "\x04\x75\x03\x0f\0" },
-  { 0x04c1, "\x04\x16\x03\x06\0" },
-  { 0x04c2, "\x04\x36\x03\x06\0" },
-  { 0x04d0, "\x04\x10\x03\x06\0" },
-  { 0x04d1, "\x04\x30\x03\x06\0" },
-  { 0x04d2, "\x04\x10\x03\x08\0" },
-  { 0x04d3, "\x04\x30\x03\x08\0" },
-  { 0x04d6, "\x04\x15\x03\x06\0" },
-  { 0x04d7, "\x04\x35\x03\x06\0" },
-  { 0x04da, "\x04\xd8\x03\x08\0" },
-  { 0x04db, "\x04\xd9\x03\x08\0" },
-  { 0x04dc, "\x04\x16\x03\x08\0" },
-  { 0x04dd, "\x04\x36\x03\x08\0" },
-  { 0x04de, "\x04\x17\x03\x08\0" },
-  { 0x04df, "\x04\x37\x03\x08\0" },
-  { 0x04e2, "\x04\x18\x03\x04\0" },
-  { 0x04e3, "\x04\x38\x03\x04\0" },
-  { 0x04e4, "\x04\x18\x03\x08\0" },
-  { 0x04e5, "\x04\x38\x03\x08\0" },
-  { 0x04e6, "\x04\x1e\x03\x08\0" },
-  { 0x04e7, "\x04\x3e\x03\x08\0" },
-  { 0x04ea, "\x04\xe8\x03\x08\0" },
-  { 0x04eb, "\x04\xe9\x03\x08\0" },
-  { 0x04ee, "\x04\x23\x03\x04\0" },
-  { 0x04ef, "\x04\x43\x03\x04\0" },
-  { 0x04f0, "\x04\x23\x03\x08\0" },
-  { 0x04f1, "\x04\x43\x03\x08\0" },
-  { 0x04f2, "\x04\x23\x03\x0b\0" },
-  { 0x04f3, "\x04\x43\x03\x0b\0" },
-  { 0x04f4, "\x04\x27\x03\x08\0" },
-  { 0x04f5, "\x04\x47\x03\x08\0" },
-  { 0x04f8, "\x04\x2b\x03\x08\0" },
-  { 0x04f9, "\x04\x4b\x03\x08\0" },
-  { 0x0929, "\x09\x28\x09\x3c\0" },
-  { 0x0931, "\x09\x30\x09\x3c\0" },
-  { 0x0934, "\x09\x33\x09\x3c\0" },
-  { 0x0958, "\x09\x15\x09\x3c\0" },
-  { 0x0959, "\x09\x16\x09\x3c\0" },
-  { 0x095a, "\x09\x17\x09\x3c\0" },
-  { 0x095b, "\x09\x1c\x09\x3c\0" },
-  { 0x095c, "\x09\x21\x09\x3c\0" },
-  { 0x095d, "\x09\x22\x09\x3c\0" },
-  { 0x095e, "\x09\x2b\x09\x3c\0" },
-  { 0x095f, "\x09\x2f\x09\x3c\0" },
-  { 0x09b0, "\x09\xac\x09\xbc\0" },
-  { 0x09cb, "\x09\xc7\x09\xbe\0" },
-  { 0x09cc, "\x09\xc7\x09\xd7\0" },
-  { 0x09dc, "\x09\xa1\x09\xbc\0" },
-  { 0x09dd, "\x09\xa2\x09\xbc\0" },
-  { 0x09df, "\x09\xaf\x09\xbc\0" },
-  { 0x0a59, "\x0a\x16\x0a\x3c\0" },
-  { 0x0a5a, "\x0a\x17\x0a\x3c\0" },
-  { 0x0a5b, "\x0a\x1c\x0a\x3c\0" },
-  { 0x0a5c, "\x0a\x21\x0a\x3c\0" },
-  { 0x0a5e, "\x0a\x2b\x0a\x3c\0" },
-  { 0x0b48, "\x0b\x47\x0b\x56\0" },
-  { 0x0b4b, "\x0b\x47\x0b\x3e\0" },
-  { 0x0b4c, "\x0b\x47\x0b\x57\0" },
-  { 0x0b5c, "\x0b\x21\x0b\x3c\0" },
-  { 0x0b5d, "\x0b\x22\x0b\x3c\0" },
-  { 0x0b5f, "\x0b\x2f\x0b\x3c\0" },
-  { 0x0b94, "\x0b\x92\x0b\xd7\0" },
-  { 0x0bca, "\x0b\xc6\x0b\xbe\0" },
-  { 0x0bcb, "\x0b\xc7\x0b\xbe\0" },
-  { 0x0bcc, "\x0b\xc6\x0b\xd7\0" },
-  { 0x0c48, "\x0c\x46\x0c\x56\0" },
-  { 0x0cc0, "\x0c\xbf\x0c\xd5\0" },
-  { 0x0cc7, "\x0c\xc6\x0c\xd5\0" },
-  { 0x0cc8, "\x0c\xc6\x0c\xd6\0" },
-  { 0x0cca, "\x0c\xc6\x0c\xc2\0" },
-  { 0x0ccb, "\x0c\xc6\x0c\xc2\x0c\xd5\0" },
-  { 0x0d4a, "\x0d\x46\x0d\x3e\0" },
-  { 0x0d4b, "\x0d\x47\x0d\x3e\0" },
-  { 0x0d4c, "\x0d\x46\x0d\x57\0" },
-  { 0x0e33, "\x0e\x4d\x0e\x32\0" },
-  { 0x0eb3, "\x0e\xcd\x0e\xb2\0" },
-  { 0x0f43, "\x0f\x42\x0f\xb7\0" },
-  { 0x0f4d, "\x0f\x4c\x0f\xb7\0" },
-  { 0x0f52, "\x0f\x51\x0f\xb7\0" },
-  { 0x0f57, "\x0f\x56\x0f\xb7\0" },
-  { 0x0f5c, "\x0f\x5b\x0f\xb7\0" },
-  { 0x0f69, "\x0f\x40\x0f\xb5\0" },
-  { 0x0f73, "\x0f\x71\x0f\x72\0" },
-  { 0x0f75, "\x0f\x71\x0f\x74\0" },
-  { 0x0f76, "\x0f\xb2\x0f\x80\0" },
-  { 0x0f78, "\x0f\xb3\x0f\x80\0" },
-  { 0x0f81, "\x0f\x71\x0f\x80\0" },
-  { 0x0f93, "\x0f\x92\x0f\xb7\0" },
-  { 0x0f9d, "\x0f\x9c\x0f\xb7\0" },
-  { 0x0fa2, "\x0f\xa1\x0f\xb7\0" },
-  { 0x0fa7, "\x0f\xa6\x0f\xb7\0" },
-  { 0x0fac, "\x0f\xab\x0f\xb7\0" },
-  { 0x0fb9, "\x0f\x90\x0f\xb5\0" },
-  { 0x1e00, "\x00\x41\x03\x25\0" },
-  { 0x1e01, "\x00\x61\x03\x25\0" },
-  { 0x1e02, "\x00\x42\x03\x07\0" },
-  { 0x1e03, "\x00\x62\x03\x07\0" },
-  { 0x1e04, "\x00\x42\x03\x23\0" },
-  { 0x1e05, "\x00\x62\x03\x23\0" },
-  { 0x1e06, "\x00\x42\x03\x31\0" },
-  { 0x1e07, "\x00\x62\x03\x31\0" },
-  { 0x1e08, "\x00\x43\x03\x27\x03\x01\0" },
-  { 0x1e09, "\x00\x63\x03\x27\x03\x01\0" },
-  { 0x1e0a, "\x00\x44\x03\x07\0" },
-  { 0x1e0b, "\x00\x64\x03\x07\0" },
-  { 0x1e0c, "\x00\x44\x03\x23\0" },
-  { 0x1e0d, "\x00\x64\x03\x23\0" },
-  { 0x1e0e, "\x00\x44\x03\x31\0" },
-  { 0x1e0f, "\x00\x64\x03\x31\0" },
-  { 0x1e10, "\x00\x44\x03\x27\0" },
-  { 0x1e11, "\x00\x64\x03\x27\0" },
-  { 0x1e12, "\x00\x44\x03\x2d\0" },
-  { 0x1e13, "\x00\x64\x03\x2d\0" },
-  { 0x1e14, "\x00\x45\x03\x04\x03\x00\0" },
-  { 0x1e15, "\x00\x65\x03\x04\x03\x00\0" },
-  { 0x1e16, "\x00\x45\x03\x04\x03\x01\0" },
-  { 0x1e17, "\x00\x65\x03\x04\x03\x01\0" },
-  { 0x1e18, "\x00\x45\x03\x2d\0" },
-  { 0x1e19, "\x00\x65\x03\x2d\0" },
-  { 0x1e1a, "\x00\x45\x03\x30\0" },
-  { 0x1e1b, "\x00\x65\x03\x30\0" },
-  { 0x1e1c, "\x00\x45\x03\x27\x03\x06\0" },
-  { 0x1e1d, "\x00\x65\x03\x27\x03\x06\0" },
-  { 0x1e1e, "\x00\x46\x03\x07\0" },
-  { 0x1e1f, "\x00\x66\x03\x07\0" },
-  { 0x1e20, "\x00\x47\x03\x04\0" },
-  { 0x1e21, "\x00\x67\x03\x04\0" },
-  { 0x1e22, "\x00\x48\x03\x07\0" },
-  { 0x1e23, "\x00\x68\x03\x07\0" },
-  { 0x1e24, "\x00\x48\x03\x23\0" },
-  { 0x1e25, "\x00\x68\x03\x23\0" },
-  { 0x1e26, "\x00\x48\x03\x08\0" },
-  { 0x1e27, "\x00\x68\x03\x08\0" },
-  { 0x1e28, "\x00\x48\x03\x27\0" },
-  { 0x1e29, "\x00\x68\x03\x27\0" },
-  { 0x1e2a, "\x00\x48\x03\x2e\0" },
-  { 0x1e2b, "\x00\x68\x03\x2e\0" },
-  { 0x1e2c, "\x00\x49\x03\x30\0" },
-  { 0x1e2d, "\x00\x69\x03\x30\0" },
-  { 0x1e2e, "\x00\x49\x03\x08\x03\x01\0" },
-  { 0x1e2f, "\x00\x69\x03\x08\x03\x01\0" },
-  { 0x1e30, "\x00\x4b\x03\x01\0" },
-  { 0x1e31, "\x00\x6b\x03\x01\0" },
-  { 0x1e32, "\x00\x4b\x03\x23\0" },
-  { 0x1e33, "\x00\x6b\x03\x23\0" },
-  { 0x1e34, "\x00\x4b\x03\x31\0" },
-  { 0x1e35, "\x00\x6b\x03\x31\0" },
-  { 0x1e36, "\x00\x4c\x03\x23\0" },
-  { 0x1e37, "\x00\x6c\x03\x23\0" },
-  { 0x1e38, "\x00\x4c\x03\x23\x03\x04\0" },
-  { 0x1e39, "\x00\x6c\x03\x23\x03\x04\0" },
-  { 0x1e3a, "\x00\x4c\x03\x31\0" },
-  { 0x1e3b, "\x00\x6c\x03\x31\0" },
-  { 0x1e3c, "\x00\x4c\x03\x2d\0" },
-  { 0x1e3d, "\x00\x6c\x03\x2d\0" },
-  { 0x1e3e, "\x00\x4d\x03\x01\0" },
-  { 0x1e3f, "\x00\x6d\x03\x01\0" },
-  { 0x1e40, "\x00\x4d\x03\x07\0" },
-  { 0x1e41, "\x00\x6d\x03\x07\0" },
-  { 0x1e42, "\x00\x4d\x03\x23\0" },
-  { 0x1e43, "\x00\x6d\x03\x23\0" },
-  { 0x1e44, "\x00\x4e\x03\x07\0" },
-  { 0x1e45, "\x00\x6e\x03\x07\0" },
-  { 0x1e46, "\x00\x4e\x03\x23\0" },
-  { 0x1e47, "\x00\x6e\x03\x23\0" },
-  { 0x1e48, "\x00\x4e\x03\x31\0" },
-  { 0x1e49, "\x00\x6e\x03\x31\0" },
-  { 0x1e4a, "\x00\x4e\x03\x2d\0" },
-  { 0x1e4b, "\x00\x6e\x03\x2d\0" },
-  { 0x1e4c, "\x00\x4f\x03\x03\x03\x01\0" },
-  { 0x1e4d, "\x00\x6f\x03\x03\x03\x01\0" },
-  { 0x1e4e, "\x00\x4f\x03\x03\x03\x08\0" },
-  { 0x1e4f, "\x00\x6f\x03\x03\x03\x08\0" },
-  { 0x1e50, "\x00\x4f\x03\x04\x03\x00\0" },
-  { 0x1e51, "\x00\x6f\x03\x04\x03\x00\0" },
-  { 0x1e52, "\x00\x4f\x03\x04\x03\x01\0" },
-  { 0x1e53, "\x00\x6f\x03\x04\x03\x01\0" },
-  { 0x1e54, "\x00\x50\x03\x01\0" },
-  { 0x1e55, "\x00\x70\x03\x01\0" },
-  { 0x1e56, "\x00\x50\x03\x07\0" },
-  { 0x1e57, "\x00\x70\x03\x07\0" },
-  { 0x1e58, "\x00\x52\x03\x07\0" },
-  { 0x1e59, "\x00\x72\x03\x07\0" },
-  { 0x1e5a, "\x00\x52\x03\x23\0" },
-  { 0x1e5b, "\x00\x72\x03\x23\0" },
-  { 0x1e5c, "\x00\x52\x03\x23\x03\x04\0" },
-  { 0x1e5d, "\x00\x72\x03\x23\x03\x04\0" },
-  { 0x1e5e, "\x00\x52\x03\x31\0" },
-  { 0x1e5f, "\x00\x72\x03\x31\0" },
-  { 0x1e60, "\x00\x53\x03\x07\0" },
-  { 0x1e61, "\x00\x73\x03\x07\0" },
-  { 0x1e62, "\x00\x53\x03\x23\0" },
-  { 0x1e63, "\x00\x73\x03\x23\0" },
-  { 0x1e64, "\x00\x53\x03\x01\x03\x07\0" },
-  { 0x1e65, "\x00\x73\x03\x01\x03\x07\0" },
-  { 0x1e66, "\x00\x53\x03\x0c\x03\x07\0" },
-  { 0x1e67, "\x00\x73\x03\x0c\x03\x07\0" },
-  { 0x1e68, "\x00\x53\x03\x23\x03\x07\0" },
-  { 0x1e69, "\x00\x73\x03\x23\x03\x07\0" },
-  { 0x1e6a, "\x00\x54\x03\x07\0" },
-  { 0x1e6b, "\x00\x74\x03\x07\0" },
-  { 0x1e6c, "\x00\x54\x03\x23\0" },
-  { 0x1e6d, "\x00\x74\x03\x23\0" },
-  { 0x1e6e, "\x00\x54\x03\x31\0" },
-  { 0x1e6f, "\x00\x74\x03\x31\0" },
-  { 0x1e70, "\x00\x54\x03\x2d\0" },
-  { 0x1e71, "\x00\x74\x03\x2d\0" },
-  { 0x1e72, "\x00\x55\x03\x24\0" },
-  { 0x1e73, "\x00\x75\x03\x24\0" },
-  { 0x1e74, "\x00\x55\x03\x30\0" },
-  { 0x1e75, "\x00\x75\x03\x30\0" },
-  { 0x1e76, "\x00\x55\x03\x2d\0" },
-  { 0x1e77, "\x00\x75\x03\x2d\0" },
-  { 0x1e78, "\x00\x55\x03\x03\x03\x01\0" },
-  { 0x1e79, "\x00\x75\x03\x03\x03\x01\0" },
-  { 0x1e7a, "\x00\x55\x03\x04\x03\x08\0" },
-  { 0x1e7b, "\x00\x75\x03\x04\x03\x08\0" },
-  { 0x1e7c, "\x00\x56\x03\x03\0" },
-  { 0x1e7d, "\x00\x76\x03\x03\0" },
-  { 0x1e7e, "\x00\x56\x03\x23\0" },
-  { 0x1e7f, "\x00\x76\x03\x23\0" },
-  { 0x1e80, "\x00\x57\x03\x00\0" },
-  { 0x1e81, "\x00\x77\x03\x00\0" },
-  { 0x1e82, "\x00\x57\x03\x01\0" },
-  { 0x1e83, "\x00\x77\x03\x01\0" },
-  { 0x1e84, "\x00\x57\x03\x08\0" },
-  { 0x1e85, "\x00\x77\x03\x08\0" },
-  { 0x1e86, "\x00\x57\x03\x07\0" },
-  { 0x1e87, "\x00\x77\x03\x07\0" },
-  { 0x1e88, "\x00\x57\x03\x23\0" },
-  { 0x1e89, "\x00\x77\x03\x23\0" },
-  { 0x1e8a, "\x00\x58\x03\x07\0" },
-  { 0x1e8b, "\x00\x78\x03\x07\0" },
-  { 0x1e8c, "\x00\x58\x03\x08\0" },
-  { 0x1e8d, "\x00\x78\x03\x08\0" },
-  { 0x1e8e, "\x00\x59\x03\x07\0" },
-  { 0x1e8f, "\x00\x79\x03\x07\0" },
-  { 0x1e90, "\x00\x5a\x03\x02\0" },
-  { 0x1e91, "\x00\x7a\x03\x02\0" },
-  { 0x1e92, "\x00\x5a\x03\x23\0" },
-  { 0x1e93, "\x00\x7a\x03\x23\0" },
-  { 0x1e94, "\x00\x5a\x03\x31\0" },
-  { 0x1e95, "\x00\x7a\x03\x31\0" },
-  { 0x1e96, "\x00\x68\x03\x31\0" },
-  { 0x1e97, "\x00\x74\x03\x08\0" },
-  { 0x1e98, "\x00\x77\x03\x0a\0" },
-  { 0x1e99, "\x00\x79\x03\x0a\0" },
-  { 0x1e9b, "\x01\x7f\x03\x07\0" },
-  { 0x1ea0, "\x00\x41\x03\x23\0" },
-  { 0x1ea1, "\x00\x61\x03\x23\0" },
-  { 0x1ea2, "\x00\x41\x03\x09\0" },
-  { 0x1ea3, "\x00\x61\x03\x09\0" },
-  { 0x1ea4, "\x00\x41\x03\x02\x03\x01\0" },
-  { 0x1ea5, "\x00\x61\x03\x02\x03\x01\0" },
-  { 0x1ea6, "\x00\x41\x03\x02\x03\x00\0" },
-  { 0x1ea7, "\x00\x61\x03\x02\x03\x00\0" },
-  { 0x1ea8, "\x00\x41\x03\x02\x03\x09\0" },
-  { 0x1ea9, "\x00\x61\x03\x02\x03\x09\0" },
-  { 0x1eaa, "\x00\x41\x03\x02\x03\x03\0" },
-  { 0x1eab, "\x00\x61\x03\x02\x03\x03\0" },
-  { 0x1eac, "\x00\x41\x03\x23\x03\x02\0" },
-  { 0x1ead, "\x00\x61\x03\x23\x03\x02\0" },
-  { 0x1eae, "\x00\x41\x03\x06\x03\x01\0" },
-  { 0x1eaf, "\x00\x61\x03\x06\x03\x01\0" },
-  { 0x1eb0, "\x00\x41\x03\x06\x03\x00\0" },
-  { 0x1eb1, "\x00\x61\x03\x06\x03\x00\0" },
-  { 0x1eb2, "\x00\x41\x03\x06\x03\x09\0" },
-  { 0x1eb3, "\x00\x61\x03\x06\x03\x09\0" },
-  { 0x1eb4, "\x00\x41\x03\x06\x03\x03\0" },
-  { 0x1eb5, "\x00\x61\x03\x06\x03\x03\0" },
-  { 0x1eb6, "\x00\x41\x03\x23\x03\x06\0" },
-  { 0x1eb7, "\x00\x61\x03\x23\x03\x06\0" },
-  { 0x1eb8, "\x00\x45\x03\x23\0" },
-  { 0x1eb9, "\x00\x65\x03\x23\0" },
-  { 0x1eba, "\x00\x45\x03\x09\0" },
-  { 0x1ebb, "\x00\x65\x03\x09\0" },
-  { 0x1ebc, "\x00\x45\x03\x03\0" },
-  { 0x1ebd, "\x00\x65\x03\x03\0" },
-  { 0x1ebe, "\x00\x45\x03\x02\x03\x01\0" },
-  { 0x1ebf, "\x00\x65\x03\x02\x03\x01\0" },
-  { 0x1ec0, "\x00\x45\x03\x02\x03\x00\0" },
-  { 0x1ec1, "\x00\x65\x03\x02\x03\x00\0" },
-  { 0x1ec2, "\x00\x45\x03\x02\x03\x09\0" },
-  { 0x1ec3, "\x00\x65\x03\x02\x03\x09\0" },
-  { 0x1ec4, "\x00\x45\x03\x02\x03\x03\0" },
-  { 0x1ec5, "\x00\x65\x03\x02\x03\x03\0" },
-  { 0x1ec6, "\x00\x45\x03\x23\x03\x02\0" },
-  { 0x1ec7, "\x00\x65\x03\x23\x03\x02\0" },
-  { 0x1ec8, "\x00\x49\x03\x09\0" },
-  { 0x1ec9, "\x00\x69\x03\x09\0" },
-  { 0x1eca, "\x00\x49\x03\x23\0" },
-  { 0x1ecb, "\x00\x69\x03\x23\0" },
-  { 0x1ecc, "\x00\x4f\x03\x23\0" },
-  { 0x1ecd, "\x00\x6f\x03\x23\0" },
-  { 0x1ece, "\x00\x4f\x03\x09\0" },
-  { 0x1ecf, "\x00\x6f\x03\x09\0" },
-  { 0x1ed0, "\x00\x4f\x03\x02\x03\x01\0" },
-  { 0x1ed1, "\x00\x6f\x03\x02\x03\x01\0" },
-  { 0x1ed2, "\x00\x4f\x03\x02\x03\x00\0" },
-  { 0x1ed3, "\x00\x6f\x03\x02\x03\x00\0" },
-  { 0x1ed4, "\x00\x4f\x03\x02\x03\x09\0" },
-  { 0x1ed5, "\x00\x6f\x03\x02\x03\x09\0" },
-  { 0x1ed6, "\x00\x4f\x03\x02\x03\x03\0" },
-  { 0x1ed7, "\x00\x6f\x03\x02\x03\x03\0" },
-  { 0x1ed8, "\x00\x4f\x03\x23\x03\x02\0" },
-  { 0x1ed9, "\x00\x6f\x03\x23\x03\x02\0" },
-  { 0x1eda, "\x00\x4f\x03\x1b\x03\x01\0" },
-  { 0x1edb, "\x00\x6f\x03\x1b\x03\x01\0" },
-  { 0x1edc, "\x00\x4f\x03\x1b\x03\x00\0" },
-  { 0x1edd, "\x00\x6f\x03\x1b\x03\x00\0" },
-  { 0x1ede, "\x00\x4f\x03\x1b\x03\x09\0" },
-  { 0x1edf, "\x00\x6f\x03\x1b\x03\x09\0" },
-  { 0x1ee0, "\x00\x4f\x03\x1b\x03\x03\0" },
-  { 0x1ee1, "\x00\x6f\x03\x1b\x03\x03\0" },
-  { 0x1ee2, "\x00\x4f\x03\x1b\x03\x23\0" },
-  { 0x1ee3, "\x00\x6f\x03\x1b\x03\x23\0" },
-  { 0x1ee4, "\x00\x55\x03\x23\0" },
-  { 0x1ee5, "\x00\x75\x03\x23\0" },
-  { 0x1ee6, "\x00\x55\x03\x09\0" },
-  { 0x1ee7, "\x00\x75\x03\x09\0" },
-  { 0x1ee8, "\x00\x55\x03\x1b\x03\x01\0" },
-  { 0x1ee9, "\x00\x75\x03\x1b\x03\x01\0" },
-  { 0x1eea, "\x00\x55\x03\x1b\x03\x00\0" },
-  { 0x1eeb, "\x00\x75\x03\x1b\x03\x00\0" },
-  { 0x1eec, "\x00\x55\x03\x1b\x03\x09\0" },
-  { 0x1eed, "\x00\x75\x03\x1b\x03\x09\0" },
-  { 0x1eee, "\x00\x55\x03\x1b\x03\x03\0" },
-  { 0x1eef, "\x00\x75\x03\x1b\x03\x03\0" },
-  { 0x1ef0, "\x00\x55\x03\x1b\x03\x23\0" },
-  { 0x1ef1, "\x00\x75\x03\x1b\x03\x23\0" },
-  { 0x1ef2, "\x00\x59\x03\x00\0" },
-  { 0x1ef3, "\x00\x79\x03\x00\0" },
-  { 0x1ef4, "\x00\x59\x03\x23\0" },
-  { 0x1ef5, "\x00\x79\x03\x23\0" },
-  { 0x1ef6, "\x00\x59\x03\x09\0" },
-  { 0x1ef7, "\x00\x79\x03\x09\0" },
-  { 0x1ef8, "\x00\x59\x03\x03\0" },
-  { 0x1ef9, "\x00\x79\x03\x03\0" },
-  { 0x1f00, "\x03\xb1\x03\x13\0" },
-  { 0x1f01, "\x03\xb1\x03\x14\0" },
-  { 0x1f02, "\x03\xb1\x03\x13\x03\x00\0" },
-  { 0x1f03, "\x03\xb1\x03\x14\x03\x00\0" },
-  { 0x1f04, "\x03\xb1\x03\x13\x03\x01\0" },
-  { 0x1f05, "\x03\xb1\x03\x14\x03\x01\0" },
-  { 0x1f06, "\x03\xb1\x03\x13\x03\x42\0" },
-  { 0x1f07, "\x03\xb1\x03\x14\x03\x42\0" },
-  { 0x1f08, "\x03\x91\x03\x13\0" },
-  { 0x1f09, "\x03\x91\x03\x14\0" },
-  { 0x1f0a, "\x03\x91\x03\x13\x03\x00\0" },
-  { 0x1f0b, "\x03\x91\x03\x14\x03\x00\0" },
-  { 0x1f0c, "\x03\x91\x03\x13\x03\x01\0" },
-  { 0x1f0d, "\x03\x91\x03\x14\x03\x01\0" },
-  { 0x1f0e, "\x03\x91\x03\x13\x03\x42\0" },
-  { 0x1f0f, "\x03\x91\x03\x14\x03\x42\0" },
-  { 0x1f10, "\x03\xb5\x03\x13\0" },
-  { 0x1f11, "\x03\xb5\x03\x14\0" },
-  { 0x1f12, "\x03\xb5\x03\x13\x03\x00\0" },
-  { 0x1f13, "\x03\xb5\x03\x14\x03\x00\0" },
-  { 0x1f14, "\x03\xb5\x03\x13\x03\x01\0" },
-  { 0x1f15, "\x03\xb5\x03\x14\x03\x01\0" },
-  { 0x1f18, "\x03\x95\x03\x13\0" },
-  { 0x1f19, "\x03\x95\x03\x14\0" },
-  { 0x1f1a, "\x03\x95\x03\x13\x03\x00\0" },
-  { 0x1f1b, "\x03\x95\x03\x14\x03\x00\0" },
-  { 0x1f1c, "\x03\x95\x03\x13\x03\x01\0" },
-  { 0x1f1d, "\x03\x95\x03\x14\x03\x01\0" },
-  { 0x1f20, "\x03\xb7\x03\x13\0" },
-  { 0x1f21, "\x03\xb7\x03\x14\0" },
-  { 0x1f22, "\x03\xb7\x03\x13\x03\x00\0" },
-  { 0x1f23, "\x03\xb7\x03\x14\x03\x00\0" },
-  { 0x1f24, "\x03\xb7\x03\x13\x03\x01\0" },
-  { 0x1f25, "\x03\xb7\x03\x14\x03\x01\0" },
-  { 0x1f26, "\x03\xb7\x03\x13\x03\x42\0" },
-  { 0x1f27, "\x03\xb7\x03\x14\x03\x42\0" },
-  { 0x1f28, "\x03\x97\x03\x13\0" },
-  { 0x1f29, "\x03\x97\x03\x14\0" },
-  { 0x1f2a, "\x03\x97\x03\x13\x03\x00\0" },
-  { 0x1f2b, "\x03\x97\x03\x14\x03\x00\0" },
-  { 0x1f2c, "\x03\x97\x03\x13\x03\x01\0" },
-  { 0x1f2d, "\x03\x97\x03\x14\x03\x01\0" },
-  { 0x1f2e, "\x03\x97\x03\x13\x03\x42\0" },
-  { 0x1f2f, "\x03\x97\x03\x14\x03\x42\0" },
-  { 0x1f30, "\x03\xb9\x03\x13\0" },
-  { 0x1f31, "\x03\xb9\x03\x14\0" },
-  { 0x1f32, "\x03\xb9\x03\x13\x03\x00\0" },
-  { 0x1f33, "\x03\xb9\x03\x14\x03\x00\0" },
-  { 0x1f34, "\x03\xb9\x03\x13\x03\x01\0" },
-  { 0x1f35, "\x03\xb9\x03\x14\x03\x01\0" },
-  { 0x1f36, "\x03\xb9\x03\x13\x03\x42\0" },
-  { 0x1f37, "\x03\xb9\x03\x14\x03\x42\0" },
-  { 0x1f38, "\x03\x99\x03\x13\0" },
-  { 0x1f39, "\x03\x99\x03\x14\0" },
-  { 0x1f3a, "\x03\x99\x03\x13\x03\x00\0" },
-  { 0x1f3b, "\x03\x99\x03\x14\x03\x00\0" },
-  { 0x1f3c, "\x03\x99\x03\x13\x03\x01\0" },
-  { 0x1f3d, "\x03\x99\x03\x14\x03\x01\0" },
-  { 0x1f3e, "\x03\x99\x03\x13\x03\x42\0" },
-  { 0x1f3f, "\x03\x99\x03\x14\x03\x42\0" },
-  { 0x1f40, "\x03\xbf\x03\x13\0" },
-  { 0x1f41, "\x03\xbf\x03\x14\0" },
-  { 0x1f42, "\x03\xbf\x03\x13\x03\x00\0" },
-  { 0x1f43, "\x03\xbf\x03\x14\x03\x00\0" },
-  { 0x1f44, "\x03\xbf\x03\x13\x03\x01\0" },
-  { 0x1f45, "\x03\xbf\x03\x14\x03\x01\0" },
-  { 0x1f48, "\x03\x9f\x03\x13\0" },
-  { 0x1f49, "\x03\x9f\x03\x14\0" },
-  { 0x1f4a, "\x03\x9f\x03\x13\x03\x00\0" },
-  { 0x1f4b, "\x03\x9f\x03\x14\x03\x00\0" },
-  { 0x1f4c, "\x03\x9f\x03\x13\x03\x01\0" },
-  { 0x1f4d, "\x03\x9f\x03\x14\x03\x01\0" },
-  { 0x1f50, "\x03\xc5\x03\x13\0" },
-  { 0x1f51, "\x03\xc5\x03\x14\0" },
-  { 0x1f52, "\x03\xc5\x03\x13\x03\x00\0" },
-  { 0x1f53, "\x03\xc5\x03\x14\x03\x00\0" },
-  { 0x1f54, "\x03\xc5\x03\x13\x03\x01\0" },
-  { 0x1f55, "\x03\xc5\x03\x14\x03\x01\0" },
-  { 0x1f56, "\x03\xc5\x03\x13\x03\x42\0" },
-  { 0x1f57, "\x03\xc5\x03\x14\x03\x42\0" },
-  { 0x1f59, "\x03\xa5\x03\x14\0" },
-  { 0x1f5b, "\x03\xa5\x03\x14\x03\x00\0" },
-  { 0x1f5d, "\x03\xa5\x03\x14\x03\x01\0" },
-  { 0x1f5f, "\x03\xa5\x03\x14\x03\x42\0" },
-  { 0x1f60, "\x03\xc9\x03\x13\0" },
-  { 0x1f61, "\x03\xc9\x03\x14\0" },
-  { 0x1f62, "\x03\xc9\x03\x13\x03\x00\0" },
-  { 0x1f63, "\x03\xc9\x03\x14\x03\x00\0" },
-  { 0x1f64, "\x03\xc9\x03\x13\x03\x01\0" },
-  { 0x1f65, "\x03\xc9\x03\x14\x03\x01\0" },
-  { 0x1f66, "\x03\xc9\x03\x13\x03\x42\0" },
-  { 0x1f67, "\x03\xc9\x03\x14\x03\x42\0" },
-  { 0x1f68, "\x03\xa9\x03\x13\0" },
-  { 0x1f69, "\x03\xa9\x03\x14\0" },
-  { 0x1f6a, "\x03\xa9\x03\x13\x03\x00\0" },
-  { 0x1f6b, "\x03\xa9\x03\x14\x03\x00\0" },
-  { 0x1f6c, "\x03\xa9\x03\x13\x03\x01\0" },
-  { 0x1f6d, "\x03\xa9\x03\x14\x03\x01\0" },
-  { 0x1f6e, "\x03\xa9\x03\x13\x03\x42\0" },
-  { 0x1f6f, "\x03\xa9\x03\x14\x03\x42\0" },
-  { 0x1f70, "\x03\xb1\x03\x00\0" },
-  { 0x1f71, "\x03\xb1\x03\x01\0" },
-  { 0x1f72, "\x03\xb5\x03\x00\0" },
-  { 0x1f73, "\x03\xb5\x03\x01\0" },
-  { 0x1f74, "\x03\xb7\x03\x00\0" },
-  { 0x1f75, "\x03\xb7\x03\x01\0" },
-  { 0x1f76, "\x03\xb9\x03\x00\0" },
-  { 0x1f77, "\x03\xb9\x03\x01\0" },
-  { 0x1f78, "\x03\xbf\x03\x00\0" },
-  { 0x1f79, "\x03\xbf\x03\x01\0" },
-  { 0x1f7a, "\x03\xc5\x03\x00\0" },
-  { 0x1f7b, "\x03\xc5\x03\x01\0" },
-  { 0x1f7c, "\x03\xc9\x03\x00\0" },
-  { 0x1f7d, "\x03\xc9\x03\x01\0" },
-  { 0x1f80, "\x03\xb1\x03\x13\x03\x45\0" },
-  { 0x1f81, "\x03\xb1\x03\x14\x03\x45\0" },
-  { 0x1f82, "\x03\xb1\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f83, "\x03\xb1\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f84, "\x03\xb1\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f85, "\x03\xb1\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f86, "\x03\xb1\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f87, "\x03\xb1\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1f88, "\x03\x91\x03\x13\x03\x45\0" },
-  { 0x1f89, "\x03\x91\x03\x14\x03\x45\0" },
-  { 0x1f8a, "\x03\x91\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f8b, "\x03\x91\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f8c, "\x03\x91\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f8d, "\x03\x91\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f8e, "\x03\x91\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f8f, "\x03\x91\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1f90, "\x03\xb7\x03\x13\x03\x45\0" },
-  { 0x1f91, "\x03\xb7\x03\x14\x03\x45\0" },
-  { 0x1f92, "\x03\xb7\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f93, "\x03\xb7\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f94, "\x03\xb7\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f95, "\x03\xb7\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f96, "\x03\xb7\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f97, "\x03\xb7\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1f98, "\x03\x97\x03\x13\x03\x45\0" },
-  { 0x1f99, "\x03\x97\x03\x14\x03\x45\0" },
-  { 0x1f9a, "\x03\x97\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1f9b, "\x03\x97\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1f9c, "\x03\x97\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1f9d, "\x03\x97\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1f9e, "\x03\x97\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1f9f, "\x03\x97\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1fa0, "\x03\xc9\x03\x13\x03\x45\0" },
-  { 0x1fa1, "\x03\xc9\x03\x14\x03\x45\0" },
-  { 0x1fa2, "\x03\xc9\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1fa3, "\x03\xc9\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1fa4, "\x03\xc9\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1fa5, "\x03\xc9\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1fa6, "\x03\xc9\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1fa7, "\x03\xc9\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1fa8, "\x03\xa9\x03\x13\x03\x45\0" },
-  { 0x1fa9, "\x03\xa9\x03\x14\x03\x45\0" },
-  { 0x1faa, "\x03\xa9\x03\x13\x03\x00\x03\x45\0" },
-  { 0x1fab, "\x03\xa9\x03\x14\x03\x00\x03\x45\0" },
-  { 0x1fac, "\x03\xa9\x03\x13\x03\x01\x03\x45\0" },
-  { 0x1fad, "\x03\xa9\x03\x14\x03\x01\x03\x45\0" },
-  { 0x1fae, "\x03\xa9\x03\x13\x03\x42\x03\x45\0" },
-  { 0x1faf, "\x03\xa9\x03\x14\x03\x42\x03\x45\0" },
-  { 0x1fb0, "\x03\xb1\x03\x06\0" },
-  { 0x1fb1, "\x03\xb1\x03\x04\0" },
-  { 0x1fb2, "\x03\xb1\x03\x00\x03\x45\0" },
-  { 0x1fb3, "\x03\xb1\x03\x45\0" },
-  { 0x1fb4, "\x03\xb1\x03\x01\x03\x45\0" },
-  { 0x1fb6, "\x03\xb1\x03\x42\0" },
-  { 0x1fb7, "\x03\xb1\x03\x42\x03\x45\0" },
-  { 0x1fb8, "\x03\x91\x03\x06\0" },
-  { 0x1fb9, "\x03\x91\x03\x04\0" },
-  { 0x1fba, "\x03\x91\x03\x00\0" },
-  { 0x1fbb, "\x03\x91\x03\x01\0" },
-  { 0x1fbc, "\x03\x91\x03\x45\0" },
-  { 0x1fbe, "\x03\xb9\0" },
-  { 0x1fc1, "\x00\xa8\x03\x42\0" },
-  { 0x1fc2, "\x03\xb7\x03\x00\x03\x45\0" },
-  { 0x1fc3, "\x03\xb7\x03\x45\0" },
-  { 0x1fc4, "\x03\xb7\x03\x01\x03\x45\0" },
-  { 0x1fc6, "\x03\xb7\x03\x42\0" },
-  { 0x1fc7, "\x03\xb7\x03\x42\x03\x45\0" },
-  { 0x1fc8, "\x03\x95\x03\x00\0" },
-  { 0x1fc9, "\x03\x95\x03\x01\0" },
-  { 0x1fca, "\x03\x97\x03\x00\0" },
-  { 0x1fcb, "\x03\x97\x03\x01\0" },
-  { 0x1fcc, "\x03\x97\x03\x45\0" },
-  { 0x1fcd, "\x1f\xbf\x03\x00\0" },
-  { 0x1fce, "\x1f\xbf\x03\x01\0" },
-  { 0x1fcf, "\x1f\xbf\x03\x42\0" },
-  { 0x1fd0, "\x03\xb9\x03\x06\0" },
-  { 0x1fd1, "\x03\xb9\x03\x04\0" },
-  { 0x1fd2, "\x03\xb9\x03\x08\x03\x00\0" },
-  { 0x1fd3, "\x03\xb9\x03\x08\x03\x01\0" },
-  { 0x1fd6, "\x03\xb9\x03\x42\0" },
-  { 0x1fd7, "\x03\xb9\x03\x08\x03\x42\0" },
-  { 0x1fd8, "\x03\x99\x03\x06\0" },
-  { 0x1fd9, "\x03\x99\x03\x04\0" },
-  { 0x1fda, "\x03\x99\x03\x00\0" },
-  { 0x1fdb, "\x03\x99\x03\x01\0" },
-  { 0x1fdd, "\x1f\xfe\x03\x00\0" },
-  { 0x1fde, "\x1f\xfe\x03\x01\0" },
-  { 0x1fdf, "\x1f\xfe\x03\x42\0" },
-  { 0x1fe0, "\x03\xc5\x03\x06\0" },
-  { 0x1fe1, "\x03\xc5\x03\x04\0" },
-  { 0x1fe2, "\x03\xc5\x03\x08\x03\x00\0" },
-  { 0x1fe3, "\x03\xc5\x03\x08\x03\x01\0" },
-  { 0x1fe4, "\x03\xc1\x03\x13\0" },
-  { 0x1fe5, "\x03\xc1\x03\x14\0" },
-  { 0x1fe6, "\x03\xc5\x03\x42\0" },
-  { 0x1fe7, "\x03\xc5\x03\x08\x03\x42\0" },
-  { 0x1fe8, "\x03\xa5\x03\x06\0" },
-  { 0x1fe9, "\x03\xa5\x03\x04\0" },
-  { 0x1fea, "\x03\xa5\x03\x00\0" },
-  { 0x1feb, "\x03\xa5\x03\x01\0" },
-  { 0x1fec, "\x03\xa1\x03\x14\0" },
-  { 0x1fed, "\x00\xa8\x03\x00\0" },
-  { 0x1fee, "\x00\xa8\x03\x01\0" },
-  { 0x1fef, "\x00\x60\0" },
-  { 0x1ff2, "\x03\xc9\x03\x00\x03\x45\0" },
-  { 0x1ff3, "\x03\xc9\x03\x45\0" },
-  { 0x1ff4, "\x03\xc9\x03\x01\x03\x45\0" },
-  { 0x1ff6, "\x03\xc9\x03\x42\0" },
-  { 0x1ff7, "\x03\xc9\x03\x42\x03\x45\0" },
-  { 0x1ff8, "\x03\x9f\x03\x00\0" },
-  { 0x1ff9, "\x03\x9f\x03\x01\0" },
-  { 0x1ffa, "\x03\xa9\x03\x00\0" },
-  { 0x1ffb, "\x03\xa9\x03\x01\0" },
-  { 0x1ffc, "\x03\xa9\x03\x45\0" },
-  { 0x1ffd, "\x00\xb4\0" },
-  { 0x2000, "\x20\x02\0" },
-  { 0x2001, "\x20\x03\0" },
-  { 0x2126, "\x03\xa9\0" },
-  { 0x212a, "\x00\x4b\0" },
-  { 0x212b, "\x00\x41\x03\x0a\0" },
-  { 0x2204, "\x22\x03\x03\x38\0" },
-  { 0x2209, "\x22\x08\x03\x38\0" },
-  { 0x220c, "\x22\x0b\x03\x38\0" },
-  { 0x2224, "\x22\x23\x03\x38\0" },
-  { 0x2226, "\x22\x25\x03\x38\0" },
-  { 0x2241, "\x00\x7e\x03\x38\0" },
-  { 0x2244, "\x22\x43\x03\x38\0" },
-  { 0x2247, "\x22\x45\x03\x38\0" },
-  { 0x2249, "\x22\x48\x03\x38\0" },
-  { 0x2260, "\x00\x3d\x03\x38\0" },
-  { 0x2262, "\x22\x61\x03\x38\0" },
-  { 0x226d, "\x22\x4d\x03\x38\0" },
-  { 0x226e, "\x00\x3c\x03\x38\0" },
-  { 0x226f, "\x00\x3e\x03\x38\0" },
-  { 0x2270, "\x22\x64\x03\x38\0" },
-  { 0x2271, "\x22\x65\x03\x38\0" },
-  { 0x2274, "\x22\x72\x03\x38\0" },
-  { 0x2275, "\x22\x73\x03\x38\0" },
-  { 0x2278, "\x22\x76\x03\x38\0" },
-  { 0x2279, "\x22\x77\x03\x38\0" },
-  { 0x2280, "\x22\x7a\x03\x38\0" },
-  { 0x2281, "\x22\x7b\x03\x38\0" },
-  { 0x2284, "\x22\x82\x03\x38\0" },
-  { 0x2285, "\x22\x83\x03\x38\0" },
-  { 0x2288, "\x22\x86\x03\x38\0" },
-  { 0x2289, "\x22\x87\x03\x38\0" },
-  { 0x22ac, "\x22\xa2\x03\x38\0" },
-  { 0x22ad, "\x22\xa8\x03\x38\0" },
-  { 0x22ae, "\x22\xa9\x03\x38\0" },
-  { 0x22af, "\x22\xab\x03\x38\0" },
-  { 0x22e0, "\x22\x7c\x03\x38\0" },
-  { 0x22e1, "\x22\x7d\x03\x38\0" },
-  { 0x22e2, "\x22\x91\x03\x38\0" },
-  { 0x22e3, "\x22\x92\x03\x38\0" },
-  { 0x22ea, "\x22\xb2\x03\x38\0" },
-  { 0x22eb, "\x22\xb3\x03\x38\0" },
-  { 0x22ec, "\x22\xb4\x03\x38\0" },
-  { 0x22ed, "\x22\xb5\x03\x38\0" },
-  { 0x2329, "\x30\x08\0" },
-  { 0x232a, "\x30\x09\0" },
-  { 0x304c, "\x30\x4b\x30\x99\0" },
-  { 0x304e, "\x30\x4d\x30\x99\0" },
-  { 0x3050, "\x30\x4f\x30\x99\0" },
-  { 0x3052, "\x30\x51\x30\x99\0" },
-  { 0x3054, "\x30\x53\x30\x99\0" },
-  { 0x3056, "\x30\x55\x30\x99\0" },
-  { 0x3058, "\x30\x57\x30\x99\0" },
-  { 0x305a, "\x30\x59\x30\x99\0" },
-  { 0x305c, "\x30\x5b\x30\x99\0" },
-  { 0x305e, "\x30\x5d\x30\x99\0" },
-  { 0x3060, "\x30\x5f\x30\x99\0" },
-  { 0x3062, "\x30\x61\x30\x99\0" },
-  { 0x3065, "\x30\x64\x30\x99\0" },
-  { 0x3067, "\x30\x66\x30\x99\0" },
-  { 0x3069, "\x30\x68\x30\x99\0" },
-  { 0x3070, "\x30\x6f\x30\x99\0" },
-  { 0x3071, "\x30\x6f\x30\x9a\0" },
-  { 0x3073, "\x30\x72\x30\x99\0" },
-  { 0x3074, "\x30\x72\x30\x9a\0" },
-  { 0x3076, "\x30\x75\x30\x99\0" },
-  { 0x3077, "\x30\x75\x30\x9a\0" },
-  { 0x3079, "\x30\x78\x30\x99\0" },
-  { 0x307a, "\x30\x78\x30\x9a\0" },
-  { 0x307c, "\x30\x7b\x30\x99\0" },
-  { 0x307d, "\x30\x7b\x30\x9a\0" },
-  { 0x3094, "\x30\x46\x30\x99\0" },
-  { 0x309e, "\x30\x9d\x30\x99\0" },
-  { 0x30ac, "\x30\xab\x30\x99\0" },
-  { 0x30ae, "\x30\xad\x30\x99\0" },
-  { 0x30b0, "\x30\xaf\x30\x99\0" },
-  { 0x30b2, "\x30\xb1\x30\x99\0" },
-  { 0x30b4, "\x30\xb3\x30\x99\0" },
-  { 0x30b6, "\x30\xb5\x30\x99\0" },
-  { 0x30b8, "\x30\xb7\x30\x99\0" },
-  { 0x30ba, "\x30\xb9\x30\x99\0" },
-  { 0x30bc, "\x30\xbb\x30\x99\0" },
-  { 0x30be, "\x30\xbd\x30\x99\0" },
-  { 0x30c0, "\x30\xbf\x30\x99\0" },
-  { 0x30c2, "\x30\xc1\x30\x99\0" },
-  { 0x30c5, "\x30\xc4\x30\x99\0" },
-  { 0x30c7, "\x30\xc6\x30\x99\0" },
-  { 0x30c9, "\x30\xc8\x30\x99\0" },
-  { 0x30d0, "\x30\xcf\x30\x99\0" },
-  { 0x30d1, "\x30\xcf\x30\x9a\0" },
-  { 0x30d3, "\x30\xd2\x30\x99\0" },
-  { 0x30d4, "\x30\xd2\x30\x9a\0" },
-  { 0x30d6, "\x30\xd5\x30\x99\0" },
-  { 0x30d7, "\x30\xd5\x30\x9a\0" },
-  { 0x30d9, "\x30\xd8\x30\x99\0" },
-  { 0x30da, "\x30\xd8\x30\x9a\0" },
-  { 0x30dc, "\x30\xdb\x30\x99\0" },
-  { 0x30dd, "\x30\xdb\x30\x9a\0" },
-  { 0x30f4, "\x30\xa6\x30\x99\0" },
-  { 0x30f7, "\x30\xef\x30\x99\0" },
-  { 0x30f8, "\x30\xf0\x30\x99\0" },
-  { 0x30f9, "\x30\xf1\x30\x99\0" },
-  { 0x30fa, "\x30\xf2\x30\x99\0" },
-  { 0x30fe, "\x30\xfd\x30\x99\0" },
-  { 0xf900, "\x8c\x48\0" },
-  { 0xf901, "\x66\xf4\0" },
-  { 0xf902, "\x8e\xca\0" },
-  { 0xf903, "\x8c\xc8\0" },
-  { 0xf904, "\x6e\xd1\0" },
-  { 0xf905, "\x4e\x32\0" },
-  { 0xf906, "\x53\xe5\0" },
-  { 0xf907, "\x9f\x9c\0" },
-  { 0xf908, "\x9f\x9c\0" },
-  { 0xf909, "\x59\x51\0" },
-  { 0xf90a, "\x91\xd1\0" },
-  { 0xf90b, "\x55\x87\0" },
-  { 0xf90c, "\x59\x48\0" },
-  { 0xf90d, "\x61\xf6\0" },
-  { 0xf90e, "\x76\x69\0" },
-  { 0xf90f, "\x7f\x85\0" },
-  { 0xf910, "\x86\x3f\0" },
-  { 0xf911, "\x87\xba\0" },
-  { 0xf912, "\x88\xf8\0" },
-  { 0xf913, "\x90\x8f\0" },
-  { 0xf914, "\x6a\x02\0" },
-  { 0xf915, "\x6d\x1b\0" },
-  { 0xf916, "\x70\xd9\0" },
-  { 0xf917, "\x73\xde\0" },
-  { 0xf918, "\x84\x3d\0" },
-  { 0xf919, "\x91\x6a\0" },
-  { 0xf91a, "\x99\xf1\0" },
-  { 0xf91b, "\x4e\x82\0" },
-  { 0xf91c, "\x53\x75\0" },
-  { 0xf91d, "\x6b\x04\0" },
-  { 0xf91e, "\x72\x1b\0" },
-  { 0xf91f, "\x86\x2d\0" },
-  { 0xf920, "\x9e\x1e\0" },
-  { 0xf921, "\x5d\x50\0" },
-  { 0xf922, "\x6f\xeb\0" },
-  { 0xf923, "\x85\xcd\0" },
-  { 0xf924, "\x89\x64\0" },
-  { 0xf925, "\x62\xc9\0" },
-  { 0xf926, "\x81\xd8\0" },
-  { 0xf927, "\x88\x1f\0" },
-  { 0xf928, "\x5e\xca\0" },
-  { 0xf929, "\x67\x17\0" },
-  { 0xf92a, "\x6d\x6a\0" },
-  { 0xf92b, "\x72\xfc\0" },
-  { 0xf92c, "\x90\xce\0" },
-  { 0xf92d, "\x4f\x86\0" },
-  { 0xf92e, "\x51\xb7\0" },
-  { 0xf92f, "\x52\xde\0" },
-  { 0xf930, "\x64\xc4\0" },
-  { 0xf931, "\x6a\xd3\0" },
-  { 0xf932, "\x72\x10\0" },
-  { 0xf933, "\x76\xe7\0" },
-  { 0xf934, "\x80\x01\0" },
-  { 0xf935, "\x86\x06\0" },
-  { 0xf936, "\x86\x5c\0" },
-  { 0xf937, "\x8d\xef\0" },
-  { 0xf938, "\x97\x32\0" },
-  { 0xf939, "\x9b\x6f\0" },
-  { 0xf93a, "\x9d\xfa\0" },
-  { 0xf93b, "\x78\x8c\0" },
-  { 0xf93c, "\x79\x7f\0" },
-  { 0xf93d, "\x7d\xa0\0" },
-  { 0xf93e, "\x83\xc9\0" },
-  { 0xf93f, "\x93\x04\0" },
-  { 0xf940, "\x9e\x7f\0" },
-  { 0xf941, "\x8a\xd6\0" },
-  { 0xf942, "\x58\xdf\0" },
-  { 0xf943, "\x5f\x04\0" },
-  { 0xf944, "\x7c\x60\0" },
-  { 0xf945, "\x80\x7e\0" },
-  { 0xf946, "\x72\x62\0" },
-  { 0xf947, "\x78\xca\0" },
-  { 0xf948, "\x8c\xc2\0" },
-  { 0xf949, "\x96\xf7\0" },
-  { 0xf94a, "\x58\xd8\0" },
-  { 0xf94b, "\x5c\x62\0" },
-  { 0xf94c, "\x6a\x13\0" },
-  { 0xf94d, "\x6d\xda\0" },
-  { 0xf94e, "\x6f\x0f\0" },
-  { 0xf94f, "\x7d\x2f\0" },
-  { 0xf950, "\x7e\x37\0" },
-  { 0xf951, "\x96\xfb\0" },
-  { 0xf952, "\x52\xd2\0" },
-  { 0xf953, "\x80\x8b\0" },
-  { 0xf954, "\x51\xdc\0" },
-  { 0xf955, "\x51\xcc\0" },
-  { 0xf956, "\x7a\x1c\0" },
-  { 0xf957, "\x7d\xbe\0" },
-  { 0xf958, "\x83\xf1\0" },
-  { 0xf959, "\x96\x75\0" },
-  { 0xf95a, "\x8b\x80\0" },
-  { 0xf95b, "\x62\xcf\0" },
-  { 0xf95c, "\x6a\x02\0" },
-  { 0xf95d, "\x8a\xfe\0" },
-  { 0xf95e, "\x4e\x39\0" },
-  { 0xf95f, "\x5b\xe7\0" },
-  { 0xf960, "\x60\x12\0" },
-  { 0xf961, "\x73\x87\0" },
-  { 0xf962, "\x75\x70\0" },
-  { 0xf963, "\x53\x17\0" },
-  { 0xf964, "\x78\xfb\0" },
-  { 0xf965, "\x4f\xbf\0" },
-  { 0xf966, "\x5f\xa9\0" },
-  { 0xf967, "\x4e\x0d\0" },
-  { 0xf968, "\x6c\xcc\0" },
-  { 0xf969, "\x65\x78\0" },
-  { 0xf96a, "\x7d\x22\0" },
-  { 0xf96b, "\x53\xc3\0" },
-  { 0xf96c, "\x58\x5e\0" },
-  { 0xf96d, "\x77\x01\0" },
-  { 0xf96e, "\x84\x49\0" },
-  { 0xf96f, "\x8a\xaa\0" },
-  { 0xf970, "\x6b\xba\0" },
-  { 0xf971, "\x8f\xb0\0" },
-  { 0xf972, "\x6c\x88\0" },
-  { 0xf973, "\x62\xfe\0" },
-  { 0xf974, "\x82\xe5\0" },
-  { 0xf975, "\x63\xa0\0" },
-  { 0xf976, "\x75\x65\0" },
-  { 0xf977, "\x4e\xae\0" },
-  { 0xf978, "\x51\x69\0" },
-  { 0xf979, "\x51\xc9\0" },
-  { 0xf97a, "\x68\x81\0" },
-  { 0xf97b, "\x7c\xe7\0" },
-  { 0xf97c, "\x82\x6f\0" },
-  { 0xf97d, "\x8a\xd2\0" },
-  { 0xf97e, "\x91\xcf\0" },
-  { 0xf97f, "\x52\xf5\0" },
-  { 0xf980, "\x54\x42\0" },
-  { 0xf981, "\x59\x73\0" },
-  { 0xf982, "\x5e\xec\0" },
-  { 0xf983, "\x65\xc5\0" },
-  { 0xf984, "\x6f\xfe\0" },
-  { 0xf985, "\x79\x2a\0" },
-  { 0xf986, "\x95\xad\0" },
-  { 0xf987, "\x9a\x6a\0" },
-  { 0xf988, "\x9e\x97\0" },
-  { 0xf989, "\x9e\xce\0" },
-  { 0xf98a, "\x52\x9b\0" },
-  { 0xf98b, "\x66\xc6\0" },
-  { 0xf98c, "\x6b\x77\0" },
-  { 0xf98d, "\x8f\x62\0" },
-  { 0xf98e, "\x5e\x74\0" },
-  { 0xf98f, "\x61\x90\0" },
-  { 0xf990, "\x62\x00\0" },
-  { 0xf991, "\x64\x9a\0" },
-  { 0xf992, "\x6f\x23\0" },
-  { 0xf993, "\x71\x49\0" },
-  { 0xf994, "\x74\x89\0" },
-  { 0xf995, "\x79\xca\0" },
-  { 0xf996, "\x7d\xf4\0" },
-  { 0xf997, "\x80\x6f\0" },
-  { 0xf998, "\x8f\x26\0" },
-  { 0xf999, "\x84\xee\0" },
-  { 0xf99a, "\x90\x23\0" },
-  { 0xf99b, "\x93\x4a\0" },
-  { 0xf99c, "\x52\x17\0" },
-  { 0xf99d, "\x52\xa3\0" },
-  { 0xf99e, "\x54\xbd\0" },
-  { 0xf99f, "\x70\xc8\0" },
-  { 0xf9a0, "\x88\xc2\0" },
-  { 0xf9a1, "\x8a\xaa\0" },
-  { 0xf9a2, "\x5e\xc9\0" },
-  { 0xf9a3, "\x5f\xf5\0" },
-  { 0xf9a4, "\x63\x7b\0" },
-  { 0xf9a5, "\x6b\xae\0" },
-  { 0xf9a6, "\x7c\x3e\0" },
-  { 0xf9a7, "\x73\x75\0" },
-  { 0xf9a8, "\x4e\xe4\0" },
-  { 0xf9a9, "\x56\xf9\0" },
-  { 0xf9aa, "\x5b\xe7\0" },
-  { 0xf9ab, "\x5d\xba\0" },
-  { 0xf9ac, "\x60\x1c\0" },
-  { 0xf9ad, "\x73\xb2\0" },
-  { 0xf9ae, "\x74\x69\0" },
-  { 0xf9af, "\x7f\x9a\0" },
-  { 0xf9b0, "\x80\x46\0" },
-  { 0xf9b1, "\x92\x34\0" },
-  { 0xf9b2, "\x96\xf6\0" },
-  { 0xf9b3, "\x97\x48\0" },
-  { 0xf9b4, "\x98\x18\0" },
-  { 0xf9b5, "\x4f\x8b\0" },
-  { 0xf9b6, "\x79\xae\0" },
-  { 0xf9b7, "\x91\xb4\0" },
-  { 0xf9b8, "\x96\xb8\0" },
-  { 0xf9b9, "\x60\xe1\0" },
-  { 0xf9ba, "\x4e\x86\0" },
-  { 0xf9bb, "\x50\xda\0" },
-  { 0xf9bc, "\x5b\xee\0" },
-  { 0xf9bd, "\x5c\x3f\0" },
-  { 0xf9be, "\x65\x99\0" },
-  { 0xf9bf, "\x6a\x02\0" },
-  { 0xf9c0, "\x71\xce\0" },
-  { 0xf9c1, "\x76\x42\0" },
-  { 0xf9c2, "\x84\xfc\0" },
-  { 0xf9c3, "\x90\x7c\0" },
-  { 0xf9c4, "\x9f\x8d\0" },
-  { 0xf9c5, "\x66\x88\0" },
-  { 0xf9c6, "\x96\x2e\0" },
-  { 0xf9c7, "\x52\x89\0" },
-  { 0xf9c8, "\x67\x7b\0" },
-  { 0xf9c9, "\x67\xf3\0" },
-  { 0xf9ca, "\x6d\x41\0" },
-  { 0xf9cb, "\x6e\x9c\0" },
-  { 0xf9cc, "\x74\x09\0" },
-  { 0xf9cd, "\x75\x59\0" },
-  { 0xf9ce, "\x78\x6b\0" },
-  { 0xf9cf, "\x7d\x10\0" },
-  { 0xf9d0, "\x98\x5e\0" },
-  { 0xf9d1, "\x51\x6d\0" },
-  { 0xf9d2, "\x62\x2e\0" },
-  { 0xf9d3, "\x96\x78\0" },
-  { 0xf9d4, "\x50\x2b\0" },
-  { 0xf9d5, "\x5d\x19\0" },
-  { 0xf9d6, "\x6d\xea\0" },
-  { 0xf9d7, "\x8f\x2a\0" },
-  { 0xf9d8, "\x5f\x8b\0" },
-  { 0xf9d9, "\x61\x44\0" },
-  { 0xf9da, "\x68\x17\0" },
-  { 0xf9db, "\x73\x87\0" },
-  { 0xf9dc, "\x96\x86\0" },
-  { 0xf9dd, "\x52\x29\0" },
-  { 0xf9de, "\x54\x0f\0" },
-  { 0xf9df, "\x5c\x65\0" },
-  { 0xf9e0, "\x66\x13\0" },
-  { 0xf9e1, "\x67\x4e\0" },
-  { 0xf9e2, "\x68\xa8\0" },
-  { 0xf9e3, "\x6c\xe5\0" },
-  { 0xf9e4, "\x74\x06\0" },
-  { 0xf9e5, "\x75\xe2\0" },
-  { 0xf9e6, "\x7f\x79\0" },
-  { 0xf9e7, "\x88\xcf\0" },
-  { 0xf9e8, "\x88\xe1\0" },
-  { 0xf9e9, "\x91\xcc\0" },
-  { 0xf9ea, "\x96\xe2\0" },
-  { 0xf9eb, "\x53\x3f\0" },
-  { 0xf9ec, "\x6e\xba\0" },
-  { 0xf9ed, "\x54\x1d\0" },
-  { 0xf9ee, "\x71\xd0\0" },
-  { 0xf9ef, "\x74\x98\0" },
-  { 0xf9f0, "\x85\xfa\0" },
-  { 0xf9f1, "\x96\xa3\0" },
-  { 0xf9f2, "\x9c\x57\0" },
-  { 0xf9f3, "\x9e\x9f\0" },
-  { 0xf9f4, "\x67\x97\0" },
-  { 0xf9f5, "\x6d\xcb\0" },
-  { 0xf9f6, "\x81\xe8\0" },
-  { 0xf9f7, "\x7a\xcb\0" },
-  { 0xf9f8, "\x7b\x20\0" },
-  { 0xf9f9, "\x7c\x92\0" },
-  { 0xf9fa, "\x72\xc0\0" },
-  { 0xf9fb, "\x70\x99\0" },
-  { 0xf9fc, "\x8b\x58\0" },
-  { 0xf9fd, "\x4e\xc0\0" },
-  { 0xf9fe, "\x83\x36\0" },
-  { 0xf9ff, "\x52\x3a\0" },
-  { 0xfa00, "\x52\x07\0" },
-  { 0xfa01, "\x5e\xa6\0" },
-  { 0xfa02, "\x62\xd3\0" },
-  { 0xfa03, "\x7c\xd6\0" },
-  { 0xfa04, "\x5b\x85\0" },
-  { 0xfa05, "\x6d\x1e\0" },
-  { 0xfa06, "\x66\xb4\0" },
-  { 0xfa07, "\x8f\x3b\0" },
-  { 0xfa08, "\x88\x4c\0" },
-  { 0xfa09, "\x96\x4d\0" },
-  { 0xfa0a, "\x89\x8b\0" },
-  { 0xfa0b, "\x5e\xd3\0" },
-  { 0xfa0c, "\x51\x40\0" },
-  { 0xfa0d, "\x55\xc0\0" },
-  { 0xfa10, "\x58\x5a\0" },
-  { 0xfa12, "\x66\x74\0" },
-  { 0xfa15, "\x51\xde\0" },
-  { 0xfa16, "\x73\x2a\0" },
-  { 0xfa17, "\x76\xca\0" },
-  { 0xfa18, "\x79\x3c\0" },
-  { 0xfa19, "\x79\x5e\0" },
-  { 0xfa1a, "\x79\x65\0" },
-  { 0xfa1b, "\x79\x8f\0" },
-  { 0xfa1c, "\x97\x56\0" },
-  { 0xfa1d, "\x7c\xbe\0" },
-  { 0xfa1e, "\x7f\xbd\0" },
-  { 0xfa20, "\x86\x12\0" },
-  { 0xfa22, "\x8a\xf8\0" },
-  { 0xfa25, "\x90\x38\0" },
-  { 0xfa26, "\x90\xfd\0" },
-  { 0xfa2a, "\x98\xef\0" },
-  { 0xfa2b, "\x98\xfc\0" },
-  { 0xfa2c, "\x99\x28\0" },
-  { 0xfa2d, "\x9d\xb4\0" },
-  { 0xfb1f, "\x05\xf2\x05\xb7\0" },
-  { 0xfb2a, "\x05\xe9\x05\xc1\0" },
-  { 0xfb2b, "\x05\xe9\x05\xc2\0" },
-  { 0xfb2c, "\x05\xe9\x05\xbc\x05\xc1\0" },
-  { 0xfb2d, "\x05\xe9\x05\xbc\x05\xc2\0" },
-  { 0xfb2e, "\x05\xd0\x05\xb7\0" },
-  { 0xfb2f, "\x05\xd0\x05\xb8\0" },
-  { 0xfb30, "\x05\xd0\x05\xbc\0" },
-  { 0xfb31, "\x05\xd1\x05\xbc\0" },
-  { 0xfb32, "\x05\xd2\x05\xbc\0" },
-  { 0xfb33, "\x05\xd3\x05\xbc\0" },
-  { 0xfb34, "\x05\xd4\x05\xbc\0" },
-  { 0xfb35, "\x05\xd5\x05\xbc\0" },
-  { 0xfb36, "\x05\xd6\x05\xbc\0" },
-  { 0xfb38, "\x05\xd8\x05\xbc\0" },
-  { 0xfb39, "\x05\xd9\x05\xbc\0" },
-  { 0xfb3a, "\x05\xda\x05\xbc\0" },
-  { 0xfb3b, "\x05\xdb\x05\xbc\0" },
-  { 0xfb3c, "\x05\xdc\x05\xbc\0" },
-  { 0xfb3e, "\x05\xde\x05\xbc\0" },
-  { 0xfb40, "\x05\xe0\x05\xbc\0" },
-  { 0xfb41, "\x05\xe1\x05\xbc\0" },
-  { 0xfb43, "\x05\xe3\x05\xbc\0" },
-  { 0xfb44, "\x05\xe4\x05\xbc\0" },
-  { 0xfb46, "\x05\xe6\x05\xbc\0" },
-  { 0xfb47, "\x05\xe7\x05\xbc\0" },
-  { 0xfb48, "\x05\xe8\x05\xbc\0" },
-  { 0xfb49, "\x05\xe9\x05\xbc\0" },
-  { 0xfb4a, "\x05\xea\x05\xbc\0" },
-  { 0xfb4b, "\x05\xd5\x05\xb9\0" },
-  { 0xfb4c, "\x05\xd1\x05\xbf\0" },
-  { 0xfb4d, "\x05\xdb\x05\xbf\0" },
-  { 0xfb4e, "\x05\xe4\x05\xbf\0" }
+  { 0x00c0, (unsigned char *) "\x00\x41\x03\x00\0" },
+  { 0x00c1, (unsigned char *) "\x00\x41\x03\x01\0" },
+  { 0x00c2, (unsigned char *) "\x00\x41\x03\x02\0" },
+  { 0x00c3, (unsigned char *) "\x00\x41\x03\x03\0" },
+  { 0x00c4, (unsigned char *) "\x00\x41\x03\x08\0" },
+  { 0x00c5, (unsigned char *) "\x00\x41\x03\x0a\0" },
+  { 0x00c7, (unsigned char *) "\x00\x43\x03\x27\0" },
+  { 0x00c8, (unsigned char *) "\x00\x45\x03\x00\0" },
+  { 0x00c9, (unsigned char *) "\x00\x45\x03\x01\0" },
+  { 0x00ca, (unsigned char *) "\x00\x45\x03\x02\0" },
+  { 0x00cb, (unsigned char *) "\x00\x45\x03\x08\0" },
+  { 0x00cc, (unsigned char *) "\x00\x49\x03\x00\0" },
+  { 0x00cd, (unsigned char *) "\x00\x49\x03\x01\0" },
+  { 0x00ce, (unsigned char *) "\x00\x49\x03\x02\0" },
+  { 0x00cf, (unsigned char *) "\x00\x49\x03\x08\0" },
+  { 0x00d1, (unsigned char *) "\x00\x4e\x03\x03\0" },
+  { 0x00d2, (unsigned char *) "\x00\x4f\x03\x00\0" },
+  { 0x00d3, (unsigned char *) "\x00\x4f\x03\x01\0" },
+  { 0x00d4, (unsigned char *) "\x00\x4f\x03\x02\0" },
+  { 0x00d5, (unsigned char *) "\x00\x4f\x03\x03\0" },
+  { 0x00d6, (unsigned char *) "\x00\x4f\x03\x08\0" },
+  { 0x00d9, (unsigned char *) "\x00\x55\x03\x00\0" },
+  { 0x00da, (unsigned char *) "\x00\x55\x03\x01\0" },
+  { 0x00db, (unsigned char *) "\x00\x55\x03\x02\0" },
+  { 0x00dc, (unsigned char *) "\x00\x55\x03\x08\0" },
+  { 0x00dd, (unsigned char *) "\x00\x59\x03\x01\0" },
+  { 0x00e0, (unsigned char *) "\x00\x61\x03\x00\0" },
+  { 0x00e1, (unsigned char *) "\x00\x61\x03\x01\0" },
+  { 0x00e2, (unsigned char *) "\x00\x61\x03\x02\0" },
+  { 0x00e3, (unsigned char *) "\x00\x61\x03\x03\0" },
+  { 0x00e4, (unsigned char *) "\x00\x61\x03\x08\0" },
+  { 0x00e5, (unsigned char *) "\x00\x61\x03\x0a\0" },
+  { 0x00e7, (unsigned char *) "\x00\x63\x03\x27\0" },
+  { 0x00e8, (unsigned char *) "\x00\x65\x03\x00\0" },
+  { 0x00e9, (unsigned char *) "\x00\x65\x03\x01\0" },
+  { 0x00ea, (unsigned char *) "\x00\x65\x03\x02\0" },
+  { 0x00eb, (unsigned char *) "\x00\x65\x03\x08\0" },
+  { 0x00ec, (unsigned char *) "\x00\x69\x03\x00\0" },
+  { 0x00ed, (unsigned char *) "\x00\x69\x03\x01\0" },
+  { 0x00ee, (unsigned char *) "\x00\x69\x03\x02\0" },
+  { 0x00ef, (unsigned char *) "\x00\x69\x03\x08\0" },
+  { 0x00f1, (unsigned char *) "\x00\x6e\x03\x03\0" },
+  { 0x00f2, (unsigned char *) "\x00\x6f\x03\x00\0" },
+  { 0x00f3, (unsigned char *) "\x00\x6f\x03\x01\0" },
+  { 0x00f4, (unsigned char *) "\x00\x6f\x03\x02\0" },
+  { 0x00f5, (unsigned char *) "\x00\x6f\x03\x03\0" },
+  { 0x00f6, (unsigned char *) "\x00\x6f\x03\x08\0" },
+  { 0x00f9, (unsigned char *) "\x00\x75\x03\x00\0" },
+  { 0x00fa, (unsigned char *) "\x00\x75\x03\x01\0" },
+  { 0x00fb, (unsigned char *) "\x00\x75\x03\x02\0" },
+  { 0x00fc, (unsigned char *) "\x00\x75\x03\x08\0" },
+  { 0x00fd, (unsigned char *) "\x00\x79\x03\x01\0" },
+  { 0x00ff, (unsigned char *) "\x00\x79\x03\x08\0" },
+  { 0x0100, (unsigned char *) "\x00\x41\x03\x04\0" },
+  { 0x0101, (unsigned char *) "\x00\x61\x03\x04\0" },
+  { 0x0102, (unsigned char *) "\x00\x41\x03\x06\0" },
+  { 0x0103, (unsigned char *) "\x00\x61\x03\x06\0" },
+  { 0x0104, (unsigned char *) "\x00\x41\x03\x28\0" },
+  { 0x0105, (unsigned char *) "\x00\x61\x03\x28\0" },
+  { 0x0106, (unsigned char *) "\x00\x43\x03\x01\0" },
+  { 0x0107, (unsigned char *) "\x00\x63\x03\x01\0" },
+  { 0x0108, (unsigned char *) "\x00\x43\x03\x02\0" },
+  { 0x0109, (unsigned char *) "\x00\x63\x03\x02\0" },
+  { 0x010a, (unsigned char *) "\x00\x43\x03\x07\0" },
+  { 0x010b, (unsigned char *) "\x00\x63\x03\x07\0" },
+  { 0x010c, (unsigned char *) "\x00\x43\x03\x0c\0" },
+  { 0x010d, (unsigned char *) "\x00\x63\x03\x0c\0" },
+  { 0x010e, (unsigned char *) "\x00\x44\x03\x0c\0" },
+  { 0x010f, (unsigned char *) "\x00\x64\x03\x0c\0" },
+  { 0x0112, (unsigned char *) "\x00\x45\x03\x04\0" },
+  { 0x0113, (unsigned char *) "\x00\x65\x03\x04\0" },
+  { 0x0114, (unsigned char *) "\x00\x45\x03\x06\0" },
+  { 0x0115, (unsigned char *) "\x00\x65\x03\x06\0" },
+  { 0x0116, (unsigned char *) "\x00\x45\x03\x07\0" },
+  { 0x0117, (unsigned char *) "\x00\x65\x03\x07\0" },
+  { 0x0118, (unsigned char *) "\x00\x45\x03\x28\0" },
+  { 0x0119, (unsigned char *) "\x00\x65\x03\x28\0" },
+  { 0x011a, (unsigned char *) "\x00\x45\x03\x0c\0" },
+  { 0x011b, (unsigned char *) "\x00\x65\x03\x0c\0" },
+  { 0x011c, (unsigned char *) "\x00\x47\x03\x02\0" },
+  { 0x011d, (unsigned char *) "\x00\x67\x03\x02\0" },
+  { 0x011e, (unsigned char *) "\x00\x47\x03\x06\0" },
+  { 0x011f, (unsigned char *) "\x00\x67\x03\x06\0" },
+  { 0x0120, (unsigned char *) "\x00\x47\x03\x07\0" },
+  { 0x0121, (unsigned char *) "\x00\x67\x03\x07\0" },
+  { 0x0122, (unsigned char *) "\x00\x47\x03\x27\0" },
+  { 0x0123, (unsigned char *) "\x00\x67\x03\x27\0" },
+  { 0x0124, (unsigned char *) "\x00\x48\x03\x02\0" },
+  { 0x0125, (unsigned char *) "\x00\x68\x03\x02\0" },
+  { 0x0128, (unsigned char *) "\x00\x49\x03\x03\0" },
+  { 0x0129, (unsigned char *) "\x00\x69\x03\x03\0" },
+  { 0x012a, (unsigned char *) "\x00\x49\x03\x04\0" },
+  { 0x012b, (unsigned char *) "\x00\x69\x03\x04\0" },
+  { 0x012c, (unsigned char *) "\x00\x49\x03\x06\0" },
+  { 0x012d, (unsigned char *) "\x00\x69\x03\x06\0" },
+  { 0x012e, (unsigned char *) "\x00\x49\x03\x28\0" },
+  { 0x012f, (unsigned char *) "\x00\x69\x03\x28\0" },
+  { 0x0130, (unsigned char *) "\x00\x49\x03\x07\0" },
+  { 0x0134, (unsigned char *) "\x00\x4a\x03\x02\0" },
+  { 0x0135, (unsigned char *) "\x00\x6a\x03\x02\0" },
+  { 0x0136, (unsigned char *) "\x00\x4b\x03\x27\0" },
+  { 0x0137, (unsigned char *) "\x00\x6b\x03\x27\0" },
+  { 0x0139, (unsigned char *) "\x00\x4c\x03\x01\0" },
+  { 0x013a, (unsigned char *) "\x00\x6c\x03\x01\0" },
+  { 0x013b, (unsigned char *) "\x00\x4c\x03\x27\0" },
+  { 0x013c, (unsigned char *) "\x00\x6c\x03\x27\0" },
+  { 0x013d, (unsigned char *) "\x00\x4c\x03\x0c\0" },
+  { 0x013e, (unsigned char *) "\x00\x6c\x03\x0c\0" },
+  { 0x0143, (unsigned char *) "\x00\x4e\x03\x01\0" },
+  { 0x0144, (unsigned char *) "\x00\x6e\x03\x01\0" },
+  { 0x0145, (unsigned char *) "\x00\x4e\x03\x27\0" },
+  { 0x0146, (unsigned char *) "\x00\x6e\x03\x27\0" },
+  { 0x0147, (unsigned char *) "\x00\x4e\x03\x0c\0" },
+  { 0x0148, (unsigned char *) "\x00\x6e\x03\x0c\0" },
+  { 0x014c, (unsigned char *) "\x00\x4f\x03\x04\0" },
+  { 0x014d, (unsigned char *) "\x00\x6f\x03\x04\0" },
+  { 0x014e, (unsigned char *) "\x00\x4f\x03\x06\0" },
+  { 0x014f, (unsigned char *) "\x00\x6f\x03\x06\0" },
+  { 0x0150, (unsigned char *) "\x00\x4f\x03\x0b\0" },
+  { 0x0151, (unsigned char *) "\x00\x6f\x03\x0b\0" },
+  { 0x0154, (unsigned char *) "\x00\x52\x03\x01\0" },
+  { 0x0155, (unsigned char *) "\x00\x72\x03\x01\0" },
+  { 0x0156, (unsigned char *) "\x00\x52\x03\x27\0" },
+  { 0x0157, (unsigned char *) "\x00\x72\x03\x27\0" },
+  { 0x0158, (unsigned char *) "\x00\x52\x03\x0c\0" },
+  { 0x0159, (unsigned char *) "\x00\x72\x03\x0c\0" },
+  { 0x015a, (unsigned char *) "\x00\x53\x03\x01\0" },
+  { 0x015b, (unsigned char *) "\x00\x73\x03\x01\0" },
+  { 0x015c, (unsigned char *) "\x00\x53\x03\x02\0" },
+  { 0x015d, (unsigned char *) "\x00\x73\x03\x02\0" },
+  { 0x015e, (unsigned char *) "\x00\x53\x03\x27\0" },
+  { 0x015f, (unsigned char *) "\x00\x73\x03\x27\0" },
+  { 0x0160, (unsigned char *) "\x00\x53\x03\x0c\0" },
+  { 0x0161, (unsigned char *) "\x00\x73\x03\x0c\0" },
+  { 0x0162, (unsigned char *) "\x00\x54\x03\x27\0" },
+  { 0x0163, (unsigned char *) "\x00\x74\x03\x27\0" },
+  { 0x0164, (unsigned char *) "\x00\x54\x03\x0c\0" },
+  { 0x0165, (unsigned char *) "\x00\x74\x03\x0c\0" },
+  { 0x0168, (unsigned char *) "\x00\x55\x03\x03\0" },
+  { 0x0169, (unsigned char *) "\x00\x75\x03\x03\0" },
+  { 0x016a, (unsigned char *) "\x00\x55\x03\x04\0" },
+  { 0x016b, (unsigned char *) "\x00\x75\x03\x04\0" },
+  { 0x016c, (unsigned char *) "\x00\x55\x03\x06\0" },
+  { 0x016d, (unsigned char *) "\x00\x75\x03\x06\0" },
+  { 0x016e, (unsigned char *) "\x00\x55\x03\x0a\0" },
+  { 0x016f, (unsigned char *) "\x00\x75\x03\x0a\0" },
+  { 0x0170, (unsigned char *) "\x00\x55\x03\x0b\0" },
+  { 0x0171, (unsigned char *) "\x00\x75\x03\x0b\0" },
+  { 0x0172, (unsigned char *) "\x00\x55\x03\x28\0" },
+  { 0x0173, (unsigned char *) "\x00\x75\x03\x28\0" },
+  { 0x0174, (unsigned char *) "\x00\x57\x03\x02\0" },
+  { 0x0175, (unsigned char *) "\x00\x77\x03\x02\0" },
+  { 0x0176, (unsigned char *) "\x00\x59\x03\x02\0" },
+  { 0x0177, (unsigned char *) "\x00\x79\x03\x02\0" },
+  { 0x0178, (unsigned char *) "\x00\x59\x03\x08\0" },
+  { 0x0179, (unsigned char *) "\x00\x5a\x03\x01\0" },
+  { 0x017a, (unsigned char *) "\x00\x7a\x03\x01\0" },
+  { 0x017b, (unsigned char *) "\x00\x5a\x03\x07\0" },
+  { 0x017c, (unsigned char *) "\x00\x7a\x03\x07\0" },
+  { 0x017d, (unsigned char *) "\x00\x5a\x03\x0c\0" },
+  { 0x017e, (unsigned char *) "\x00\x7a\x03\x0c\0" },
+  { 0x01a0, (unsigned char *) "\x00\x4f\x03\x1b\0" },
+  { 0x01a1, (unsigned char *) "\x00\x6f\x03\x1b\0" },
+  { 0x01af, (unsigned char *) "\x00\x55\x03\x1b\0" },
+  { 0x01b0, (unsigned char *) "\x00\x75\x03\x1b\0" },
+  { 0x01cd, (unsigned char *) "\x00\x41\x03\x0c\0" },
+  { 0x01ce, (unsigned char *) "\x00\x61\x03\x0c\0" },
+  { 0x01cf, (unsigned char *) "\x00\x49\x03\x0c\0" },
+  { 0x01d0, (unsigned char *) "\x00\x69\x03\x0c\0" },
+  { 0x01d1, (unsigned char *) "\x00\x4f\x03\x0c\0" },
+  { 0x01d2, (unsigned char *) "\x00\x6f\x03\x0c\0" },
+  { 0x01d3, (unsigned char *) "\x00\x55\x03\x0c\0" },
+  { 0x01d4, (unsigned char *) "\x00\x75\x03\x0c\0" },
+  { 0x01d5, (unsigned char *) "\x00\x55\x03\x08\x03\x04\0" },
+  { 0x01d6, (unsigned char *) "\x00\x75\x03\x08\x03\x04\0" },
+  { 0x01d7, (unsigned char *) "\x00\x55\x03\x08\x03\x01\0" },
+  { 0x01d8, (unsigned char *) "\x00\x75\x03\x08\x03\x01\0" },
+  { 0x01d9, (unsigned char *) "\x00\x55\x03\x08\x03\x0c\0" },
+  { 0x01da, (unsigned char *) "\x00\x75\x03\x08\x03\x0c\0" },
+  { 0x01db, (unsigned char *) "\x00\x55\x03\x08\x03\x00\0" },
+  { 0x01dc, (unsigned char *) "\x00\x75\x03\x08\x03\x00\0" },
+  { 0x01de, (unsigned char *) "\x00\x41\x03\x08\x03\x04\0" },
+  { 0x01df, (unsigned char *) "\x00\x61\x03\x08\x03\x04\0" },
+  { 0x01e0, (unsigned char *) "\x00\x41\x03\x07\x03\x04\0" },
+  { 0x01e1, (unsigned char *) "\x00\x61\x03\x07\x03\x04\0" },
+  { 0x01e2, (unsigned char *) "\x00\xc6\x03\x04\0" },
+  { 0x01e3, (unsigned char *) "\x00\xe6\x03\x04\0" },
+  { 0x01e6, (unsigned char *) "\x00\x47\x03\x0c\0" },
+  { 0x01e7, (unsigned char *) "\x00\x67\x03\x0c\0" },
+  { 0x01e8, (unsigned char *) "\x00\x4b\x03\x0c\0" },
+  { 0x01e9, (unsigned char *) "\x00\x6b\x03\x0c\0" },
+  { 0x01ea, (unsigned char *) "\x00\x4f\x03\x28\0" },
+  { 0x01eb, (unsigned char *) "\x00\x6f\x03\x28\0" },
+  { 0x01ec, (unsigned char *) "\x00\x4f\x03\x28\x03\x04\0" },
+  { 0x01ed, (unsigned char *) "\x00\x6f\x03\x28\x03\x04\0" },
+  { 0x01ee, (unsigned char *) "\x01\xb7\x03\x0c\0" },
+  { 0x01ef, (unsigned char *) "\x02\x92\x03\x0c\0" },
+  { 0x01f0, (unsigned char *) "\x00\x6a\x03\x0c\0" },
+  { 0x01f4, (unsigned char *) "\x00\x47\x03\x01\0" },
+  { 0x01f5, (unsigned char *) "\x00\x67\x03\x01\0" },
+  { 0x01fa, (unsigned char *) "\x00\x41\x03\x0a\x03\x01\0" },
+  { 0x01fb, (unsigned char *) "\x00\x61\x03\x0a\x03\x01\0" },
+  { 0x01fc, (unsigned char *) "\x00\xc6\x03\x01\0" },
+  { 0x01fd, (unsigned char *) "\x00\xe6\x03\x01\0" },
+  { 0x01fe, (unsigned char *) "\x00\xd8\x03\x01\0" },
+  { 0x01ff, (unsigned char *) "\x00\xf8\x03\x01\0" },
+  { 0x0200, (unsigned char *) "\x00\x41\x03\x0f\0" },
+  { 0x0201, (unsigned char *) "\x00\x61\x03\x0f\0" },
+  { 0x0202, (unsigned char *) "\x00\x41\x03\x11\0" },
+  { 0x0203, (unsigned char *) "\x00\x61\x03\x11\0" },
+  { 0x0204, (unsigned char *) "\x00\x45\x03\x0f\0" },
+  { 0x0205, (unsigned char *) "\x00\x65\x03\x0f\0" },
+  { 0x0206, (unsigned char *) "\x00\x45\x03\x11\0" },
+  { 0x0207, (unsigned char *) "\x00\x65\x03\x11\0" },
+  { 0x0208, (unsigned char *) "\x00\x49\x03\x0f\0" },
+  { 0x0209, (unsigned char *) "\x00\x69\x03\x0f\0" },
+  { 0x020a, (unsigned char *) "\x00\x49\x03\x11\0" },
+  { 0x020b, (unsigned char *) "\x00\x69\x03\x11\0" },
+  { 0x020c, (unsigned char *) "\x00\x4f\x03\x0f\0" },
+  { 0x020d, (unsigned char *) "\x00\x6f\x03\x0f\0" },
+  { 0x020e, (unsigned char *) "\x00\x4f\x03\x11\0" },
+  { 0x020f, (unsigned char *) "\x00\x6f\x03\x11\0" },
+  { 0x0210, (unsigned char *) "\x00\x52\x03\x0f\0" },
+  { 0x0211, (unsigned char *) "\x00\x72\x03\x0f\0" },
+  { 0x0212, (unsigned char *) "\x00\x52\x03\x11\0" },
+  { 0x0213, (unsigned char *) "\x00\x72\x03\x11\0" },
+  { 0x0214, (unsigned char *) "\x00\x55\x03\x0f\0" },
+  { 0x0215, (unsigned char *) "\x00\x75\x03\x0f\0" },
+  { 0x0216, (unsigned char *) "\x00\x55\x03\x11\0" },
+  { 0x0217, (unsigned char *) "\x00\x75\x03\x11\0" },
+  { 0x0340, (unsigned char *) "\x03\x00\0" },
+  { 0x0341, (unsigned char *) "\x03\x01\0" },
+  { 0x0343, (unsigned char *) "\x03\x13\0" },
+  { 0x0344, (unsigned char *) "\x03\x08\x03\x01\0" },
+  { 0x0374, (unsigned char *) "\x02\xb9\0" },
+  { 0x037e, (unsigned char *) "\x00\x3b\0" },
+  { 0x0385, (unsigned char *) "\x00\xa8\x03\x01\0" },
+  { 0x0386, (unsigned char *) "\x03\x91\x03\x01\0" },
+  { 0x0387, (unsigned char *) "\x00\xb7\0" },
+  { 0x0388, (unsigned char *) "\x03\x95\x03\x01\0" },
+  { 0x0389, (unsigned char *) "\x03\x97\x03\x01\0" },
+  { 0x038a, (unsigned char *) "\x03\x99\x03\x01\0" },
+  { 0x038c, (unsigned char *) "\x03\x9f\x03\x01\0" },
+  { 0x038e, (unsigned char *) "\x03\xa5\x03\x01\0" },
+  { 0x038f, (unsigned char *) "\x03\xa9\x03\x01\0" },
+  { 0x0390, (unsigned char *) "\x03\xb9\x03\x08\x03\x01\0" },
+  { 0x03aa, (unsigned char *) "\x03\x99\x03\x08\0" },
+  { 0x03ab, (unsigned char *) "\x03\xa5\x03\x08\0" },
+  { 0x03ac, (unsigned char *) "\x03\xb1\x03\x01\0" },
+  { 0x03ad, (unsigned char *) "\x03\xb5\x03\x01\0" },
+  { 0x03ae, (unsigned char *) "\x03\xb7\x03\x01\0" },
+  { 0x03af, (unsigned char *) "\x03\xb9\x03\x01\0" },
+  { 0x03b0, (unsigned char *) "\x03\xc5\x03\x08\x03\x01\0" },
+  { 0x03ca, (unsigned char *) "\x03\xb9\x03\x08\0" },
+  { 0x03cb, (unsigned char *) "\x03\xc5\x03\x08\0" },
+  { 0x03cc, (unsigned char *) "\x03\xbf\x03\x01\0" },
+  { 0x03cd, (unsigned char *) "\x03\xc5\x03\x01\0" },
+  { 0x03ce, (unsigned char *) "\x03\xc9\x03\x01\0" },
+  { 0x03d3, (unsigned char *) "\x03\xd2\x03\x01\0" },
+  { 0x03d4, (unsigned char *) "\x03\xd2\x03\x08\0" },
+  { 0x0401, (unsigned char *) "\x04\x15\x03\x08\0" },
+  { 0x0403, (unsigned char *) "\x04\x13\x03\x01\0" },
+  { 0x0407, (unsigned char *) "\x04\x06\x03\x08\0" },
+  { 0x040c, (unsigned char *) "\x04\x1a\x03\x01\0" },
+  { 0x040e, (unsigned char *) "\x04\x23\x03\x06\0" },
+  { 0x0419, (unsigned char *) "\x04\x18\x03\x06\0" },
+  { 0x0439, (unsigned char *) "\x04\x38\x03\x06\0" },
+  { 0x0451, (unsigned char *) "\x04\x35\x03\x08\0" },
+  { 0x0453, (unsigned char *) "\x04\x33\x03\x01\0" },
+  { 0x0457, (unsigned char *) "\x04\x56\x03\x08\0" },
+  { 0x045c, (unsigned char *) "\x04\x3a\x03\x01\0" },
+  { 0x045e, (unsigned char *) "\x04\x43\x03\x06\0" },
+  { 0x0476, (unsigned char *) "\x04\x74\x03\x0f\0" },
+  { 0x0477, (unsigned char *) "\x04\x75\x03\x0f\0" },
+  { 0x04c1, (unsigned char *) "\x04\x16\x03\x06\0" },
+  { 0x04c2, (unsigned char *) "\x04\x36\x03\x06\0" },
+  { 0x04d0, (unsigned char *) "\x04\x10\x03\x06\0" },
+  { 0x04d1, (unsigned char *) "\x04\x30\x03\x06\0" },
+  { 0x04d2, (unsigned char *) "\x04\x10\x03\x08\0" },
+  { 0x04d3, (unsigned char *) "\x04\x30\x03\x08\0" },
+  { 0x04d6, (unsigned char *) "\x04\x15\x03\x06\0" },
+  { 0x04d7, (unsigned char *) "\x04\x35\x03\x06\0" },
+  { 0x04da, (unsigned char *) "\x04\xd8\x03\x08\0" },
+  { 0x04db, (unsigned char *) "\x04\xd9\x03\x08\0" },
+  { 0x04dc, (unsigned char *) "\x04\x16\x03\x08\0" },
+  { 0x04dd, (unsigned char *) "\x04\x36\x03\x08\0" },
+  { 0x04de, (unsigned char *) "\x04\x17\x03\x08\0" },
+  { 0x04df, (unsigned char *) "\x04\x37\x03\x08\0" },
+  { 0x04e2, (unsigned char *) "\x04\x18\x03\x04\0" },
+  { 0x04e3, (unsigned char *) "\x04\x38\x03\x04\0" },
+  { 0x04e4, (unsigned char *) "\x04\x18\x03\x08\0" },
+  { 0x04e5, (unsigned char *) "\x04\x38\x03\x08\0" },
+  { 0x04e6, (unsigned char *) "\x04\x1e\x03\x08\0" },
+  { 0x04e7, (unsigned char *) "\x04\x3e\x03\x08\0" },
+  { 0x04ea, (unsigned char *) "\x04\xe8\x03\x08\0" },
+  { 0x04eb, (unsigned char *) "\x04\xe9\x03\x08\0" },
+  { 0x04ee, (unsigned char *) "\x04\x23\x03\x04\0" },
+  { 0x04ef, (unsigned char *) "\x04\x43\x03\x04\0" },
+  { 0x04f0, (unsigned char *) "\x04\x23\x03\x08\0" },
+  { 0x04f1, (unsigned char *) "\x04\x43\x03\x08\0" },
+  { 0x04f2, (unsigned char *) "\x04\x23\x03\x0b\0" },
+  { 0x04f3, (unsigned char *) "\x04\x43\x03\x0b\0" },
+  { 0x04f4, (unsigned char *) "\x04\x27\x03\x08\0" },
+  { 0x04f5, (unsigned char *) "\x04\x47\x03\x08\0" },
+  { 0x04f8, (unsigned char *) "\x04\x2b\x03\x08\0" },
+  { 0x04f9, (unsigned char *) "\x04\x4b\x03\x08\0" },
+  { 0x0929, (unsigned char *) "\x09\x28\x09\x3c\0" },
+  { 0x0931, (unsigned char *) "\x09\x30\x09\x3c\0" },
+  { 0x0934, (unsigned char *) "\x09\x33\x09\x3c\0" },
+  { 0x0958, (unsigned char *) "\x09\x15\x09\x3c\0" },
+  { 0x0959, (unsigned char *) "\x09\x16\x09\x3c\0" },
+  { 0x095a, (unsigned char *) "\x09\x17\x09\x3c\0" },
+  { 0x095b, (unsigned char *) "\x09\x1c\x09\x3c\0" },
+  { 0x095c, (unsigned char *) "\x09\x21\x09\x3c\0" },
+  { 0x095d, (unsigned char *) "\x09\x22\x09\x3c\0" },
+  { 0x095e, (unsigned char *) "\x09\x2b\x09\x3c\0" },
+  { 0x095f, (unsigned char *) "\x09\x2f\x09\x3c\0" },
+  { 0x09b0, (unsigned char *) "\x09\xac\x09\xbc\0" },
+  { 0x09cb, (unsigned char *) "\x09\xc7\x09\xbe\0" },
+  { 0x09cc, (unsigned char *) "\x09\xc7\x09\xd7\0" },
+  { 0x09dc, (unsigned char *) "\x09\xa1\x09\xbc\0" },
+  { 0x09dd, (unsigned char *) "\x09\xa2\x09\xbc\0" },
+  { 0x09df, (unsigned char *) "\x09\xaf\x09\xbc\0" },
+  { 0x0a59, (unsigned char *) "\x0a\x16\x0a\x3c\0" },
+  { 0x0a5a, (unsigned char *) "\x0a\x17\x0a\x3c\0" },
+  { 0x0a5b, (unsigned char *) "\x0a\x1c\x0a\x3c\0" },
+  { 0x0a5c, (unsigned char *) "\x0a\x21\x0a\x3c\0" },
+  { 0x0a5e, (unsigned char *) "\x0a\x2b\x0a\x3c\0" },
+  { 0x0b48, (unsigned char *) "\x0b\x47\x0b\x56\0" },
+  { 0x0b4b, (unsigned char *) "\x0b\x47\x0b\x3e\0" },
+  { 0x0b4c, (unsigned char *) "\x0b\x47\x0b\x57\0" },
+  { 0x0b5c, (unsigned char *) "\x0b\x21\x0b\x3c\0" },
+  { 0x0b5d, (unsigned char *) "\x0b\x22\x0b\x3c\0" },
+  { 0x0b5f, (unsigned char *) "\x0b\x2f\x0b\x3c\0" },
+  { 0x0b94, (unsigned char *) "\x0b\x92\x0b\xd7\0" },
+  { 0x0bca, (unsigned char *) "\x0b\xc6\x0b\xbe\0" },
+  { 0x0bcb, (unsigned char *) "\x0b\xc7\x0b\xbe\0" },
+  { 0x0bcc, (unsigned char *) "\x0b\xc6\x0b\xd7\0" },
+  { 0x0c48, (unsigned char *) "\x0c\x46\x0c\x56\0" },
+  { 0x0cc0, (unsigned char *) "\x0c\xbf\x0c\xd5\0" },
+  { 0x0cc7, (unsigned char *) "\x0c\xc6\x0c\xd5\0" },
+  { 0x0cc8, (unsigned char *) "\x0c\xc6\x0c\xd6\0" },
+  { 0x0cca, (unsigned char *) "\x0c\xc6\x0c\xc2\0" },
+  { 0x0ccb, (unsigned char *) "\x0c\xc6\x0c\xc2\x0c\xd5\0" },
+  { 0x0d4a, (unsigned char *) "\x0d\x46\x0d\x3e\0" },
+  { 0x0d4b, (unsigned char *) "\x0d\x47\x0d\x3e\0" },
+  { 0x0d4c, (unsigned char *) "\x0d\x46\x0d\x57\0" },
+  { 0x0e33, (unsigned char *) "\x0e\x4d\x0e\x32\0" },
+  { 0x0eb3, (unsigned char *) "\x0e\xcd\x0e\xb2\0" },
+  { 0x0f43, (unsigned char *) "\x0f\x42\x0f\xb7\0" },
+  { 0x0f4d, (unsigned char *) "\x0f\x4c\x0f\xb7\0" },
+  { 0x0f52, (unsigned char *) "\x0f\x51\x0f\xb7\0" },
+  { 0x0f57, (unsigned char *) "\x0f\x56\x0f\xb7\0" },
+  { 0x0f5c, (unsigned char *) "\x0f\x5b\x0f\xb7\0" },
+  { 0x0f69, (unsigned char *) "\x0f\x40\x0f\xb5\0" },
+  { 0x0f73, (unsigned char *) "\x0f\x71\x0f\x72\0" },
+  { 0x0f75, (unsigned char *) "\x0f\x71\x0f\x74\0" },
+  { 0x0f76, (unsigned char *) "\x0f\xb2\x0f\x80\0" },
+  { 0x0f78, (unsigned char *) "\x0f\xb3\x0f\x80\0" },
+  { 0x0f81, (unsigned char *) "\x0f\x71\x0f\x80\0" },
+  { 0x0f93, (unsigned char *) "\x0f\x92\x0f\xb7\0" },
+  { 0x0f9d, (unsigned char *) "\x0f\x9c\x0f\xb7\0" },
+  { 0x0fa2, (unsigned char *) "\x0f\xa1\x0f\xb7\0" },
+  { 0x0fa7, (unsigned char *) "\x0f\xa6\x0f\xb7\0" },
+  { 0x0fac, (unsigned char *) "\x0f\xab\x0f\xb7\0" },
+  { 0x0fb9, (unsigned char *) "\x0f\x90\x0f\xb5\0" },
+  { 0x1e00, (unsigned char *) "\x00\x41\x03\x25\0" },
+  { 0x1e01, (unsigned char *) "\x00\x61\x03\x25\0" },
+  { 0x1e02, (unsigned char *) "\x00\x42\x03\x07\0" },
+  { 0x1e03, (unsigned char *) "\x00\x62\x03\x07\0" },
+  { 0x1e04, (unsigned char *) "\x00\x42\x03\x23\0" },
+  { 0x1e05, (unsigned char *) "\x00\x62\x03\x23\0" },
+  { 0x1e06, (unsigned char *) "\x00\x42\x03\x31\0" },
+  { 0x1e07, (unsigned char *) "\x00\x62\x03\x31\0" },
+  { 0x1e08, (unsigned char *) "\x00\x43\x03\x27\x03\x01\0" },
+  { 0x1e09, (unsigned char *) "\x00\x63\x03\x27\x03\x01\0" },
+  { 0x1e0a, (unsigned char *) "\x00\x44\x03\x07\0" },
+  { 0x1e0b, (unsigned char *) "\x00\x64\x03\x07\0" },
+  { 0x1e0c, (unsigned char *) "\x00\x44\x03\x23\0" },
+  { 0x1e0d, (unsigned char *) "\x00\x64\x03\x23\0" },
+  { 0x1e0e, (unsigned char *) "\x00\x44\x03\x31\0" },
+  { 0x1e0f, (unsigned char *) "\x00\x64\x03\x31\0" },
+  { 0x1e10, (unsigned char *) "\x00\x44\x03\x27\0" },
+  { 0x1e11, (unsigned char *) "\x00\x64\x03\x27\0" },
+  { 0x1e12, (unsigned char *) "\x00\x44\x03\x2d\0" },
+  { 0x1e13, (unsigned char *) "\x00\x64\x03\x2d\0" },
+  { 0x1e14, (unsigned char *) "\x00\x45\x03\x04\x03\x00\0" },
+  { 0x1e15, (unsigned char *) "\x00\x65\x03\x04\x03\x00\0" },
+  { 0x1e16, (unsigned char *) "\x00\x45\x03\x04\x03\x01\0" },
+  { 0x1e17, (unsigned char *) "\x00\x65\x03\x04\x03\x01\0" },
+  { 0x1e18, (unsigned char *) "\x00\x45\x03\x2d\0" },
+  { 0x1e19, (unsigned char *) "\x00\x65\x03\x2d\0" },
+  { 0x1e1a, (unsigned char *) "\x00\x45\x03\x30\0" },
+  { 0x1e1b, (unsigned char *) "\x00\x65\x03\x30\0" },
+  { 0x1e1c, (unsigned char *) "\x00\x45\x03\x27\x03\x06\0" },
+  { 0x1e1d, (unsigned char *) "\x00\x65\x03\x27\x03\x06\0" },
+  { 0x1e1e, (unsigned char *) "\x00\x46\x03\x07\0" },
+  { 0x1e1f, (unsigned char *) "\x00\x66\x03\x07\0" },
+  { 0x1e20, (unsigned char *) "\x00\x47\x03\x04\0" },
+  { 0x1e21, (unsigned char *) "\x00\x67\x03\x04\0" },
+  { 0x1e22, (unsigned char *) "\x00\x48\x03\x07\0" },
+  { 0x1e23, (unsigned char *) "\x00\x68\x03\x07\0" },
+  { 0x1e24, (unsigned char *) "\x00\x48\x03\x23\0" },
+  { 0x1e25, (unsigned char *) "\x00\x68\x03\x23\0" },
+  { 0x1e26, (unsigned char *) "\x00\x48\x03\x08\0" },
+  { 0x1e27, (unsigned char *) "\x00\x68\x03\x08\0" },
+  { 0x1e28, (unsigned char *) "\x00\x48\x03\x27\0" },
+  { 0x1e29, (unsigned char *) "\x00\x68\x03\x27\0" },
+  { 0x1e2a, (unsigned char *) "\x00\x48\x03\x2e\0" },
+  { 0x1e2b, (unsigned char *) "\x00\x68\x03\x2e\0" },
+  { 0x1e2c, (unsigned char *) "\x00\x49\x03\x30\0" },
+  { 0x1e2d, (unsigned char *) "\x00\x69\x03\x30\0" },
+  { 0x1e2e, (unsigned char *) "\x00\x49\x03\x08\x03\x01\0" },
+  { 0x1e2f, (unsigned char *) "\x00\x69\x03\x08\x03\x01\0" },
+  { 0x1e30, (unsigned char *) "\x00\x4b\x03\x01\0" },
+  { 0x1e31, (unsigned char *) "\x00\x6b\x03\x01\0" },
+  { 0x1e32, (unsigned char *) "\x00\x4b\x03\x23\0" },
+  { 0x1e33, (unsigned char *) "\x00\x6b\x03\x23\0" },
+  { 0x1e34, (unsigned char *) "\x00\x4b\x03\x31\0" },
+  { 0x1e35, (unsigned char *) "\x00\x6b\x03\x31\0" },
+  { 0x1e36, (unsigned char *) "\x00\x4c\x03\x23\0" },
+  { 0x1e37, (unsigned char *) "\x00\x6c\x03\x23\0" },
+  { 0x1e38, (unsigned char *) "\x00\x4c\x03\x23\x03\x04\0" },
+  { 0x1e39, (unsigned char *) "\x00\x6c\x03\x23\x03\x04\0" },
+  { 0x1e3a, (unsigned char *) "\x00\x4c\x03\x31\0" },
+  { 0x1e3b, (unsigned char *) "\x00\x6c\x03\x31\0" },
+  { 0x1e3c, (unsigned char *) "\x00\x4c\x03\x2d\0" },
+  { 0x1e3d, (unsigned char *) "\x00\x6c\x03\x2d\0" },
+  { 0x1e3e, (unsigned char *) "\x00\x4d\x03\x01\0" },
+  { 0x1e3f, (unsigned char *) "\x00\x6d\x03\x01\0" },
+  { 0x1e40, (unsigned char *) "\x00\x4d\x03\x07\0" },
+  { 0x1e41, (unsigned char *) "\x00\x6d\x03\x07\0" },
+  { 0x1e42, (unsigned char *) "\x00\x4d\x03\x23\0" },
+  { 0x1e43, (unsigned char *) "\x00\x6d\x03\x23\0" },
+  { 0x1e44, (unsigned char *) "\x00\x4e\x03\x07\0" },
+  { 0x1e45, (unsigned char *) "\x00\x6e\x03\x07\0" },
+  { 0x1e46, (unsigned char *) "\x00\x4e\x03\x23\0" },
+  { 0x1e47, (unsigned char *) "\x00\x6e\x03\x23\0" },
+  { 0x1e48, (unsigned char *) "\x00\x4e\x03\x31\0" },
+  { 0x1e49, (unsigned char *) "\x00\x6e\x03\x31\0" },
+  { 0x1e4a, (unsigned char *) "\x00\x4e\x03\x2d\0" },
+  { 0x1e4b, (unsigned char *) "\x00\x6e\x03\x2d\0" },
+  { 0x1e4c, (unsigned char *) "\x00\x4f\x03\x03\x03\x01\0" },
+  { 0x1e4d, (unsigned char *) "\x00\x6f\x03\x03\x03\x01\0" },
+  { 0x1e4e, (unsigned char *) "\x00\x4f\x03\x03\x03\x08\0" },
+  { 0x1e4f, (unsigned char *) "\x00\x6f\x03\x03\x03\x08\0" },
+  { 0x1e50, (unsigned char *) "\x00\x4f\x03\x04\x03\x00\0" },
+  { 0x1e51, (unsigned char *) "\x00\x6f\x03\x04\x03\x00\0" },
+  { 0x1e52, (unsigned char *) "\x00\x4f\x03\x04\x03\x01\0" },
+  { 0x1e53, (unsigned char *) "\x00\x6f\x03\x04\x03\x01\0" },
+  { 0x1e54, (unsigned char *) "\x00\x50\x03\x01\0" },
+  { 0x1e55, (unsigned char *) "\x00\x70\x03\x01\0" },
+  { 0x1e56, (unsigned char *) "\x00\x50\x03\x07\0" },
+  { 0x1e57, (unsigned char *) "\x00\x70\x03\x07\0" },
+  { 0x1e58, (unsigned char *) "\x00\x52\x03\x07\0" },
+  { 0x1e59, (unsigned char *) "\x00\x72\x03\x07\0" },
+  { 0x1e5a, (unsigned char *) "\x00\x52\x03\x23\0" },
+  { 0x1e5b, (unsigned char *) "\x00\x72\x03\x23\0" },
+  { 0x1e5c, (unsigned char *) "\x00\x52\x03\x23\x03\x04\0" },
+  { 0x1e5d, (unsigned char *) "\x00\x72\x03\x23\x03\x04\0" },
+  { 0x1e5e, (unsigned char *) "\x00\x52\x03\x31\0" },
+  { 0x1e5f, (unsigned char *) "\x00\x72\x03\x31\0" },
+  { 0x1e60, (unsigned char *) "\x00\x53\x03\x07\0" },
+  { 0x1e61, (unsigned char *) "\x00\x73\x03\x07\0" },
+  { 0x1e62, (unsigned char *) "\x00\x53\x03\x23\0" },
+  { 0x1e63, (unsigned char *) "\x00\x73\x03\x23\0" },
+  { 0x1e64, (unsigned char *) "\x00\x53\x03\x01\x03\x07\0" },
+  { 0x1e65, (unsigned char *) "\x00\x73\x03\x01\x03\x07\0" },
+  { 0x1e66, (unsigned char *) "\x00\x53\x03\x0c\x03\x07\0" },
+  { 0x1e67, (unsigned char *) "\x00\x73\x03\x0c\x03\x07\0" },
+  { 0x1e68, (unsigned char *) "\x00\x53\x03\x23\x03\x07\0" },
+  { 0x1e69, (unsigned char *) "\x00\x73\x03\x23\x03\x07\0" },
+  { 0x1e6a, (unsigned char *) "\x00\x54\x03\x07\0" },
+  { 0x1e6b, (unsigned char *) "\x00\x74\x03\x07\0" },
+  { 0x1e6c, (unsigned char *) "\x00\x54\x03\x23\0" },
+  { 0x1e6d, (unsigned char *) "\x00\x74\x03\x23\0" },
+  { 0x1e6e, (unsigned char *) "\x00\x54\x03\x31\0" },
+  { 0x1e6f, (unsigned char *) "\x00\x74\x03\x31\0" },
+  { 0x1e70, (unsigned char *) "\x00\x54\x03\x2d\0" },
+  { 0x1e71, (unsigned char *) "\x00\x74\x03\x2d\0" },
+  { 0x1e72, (unsigned char *) "\x00\x55\x03\x24\0" },
+  { 0x1e73, (unsigned char *) "\x00\x75\x03\x24\0" },
+  { 0x1e74, (unsigned char *) "\x00\x55\x03\x30\0" },
+  { 0x1e75, (unsigned char *) "\x00\x75\x03\x30\0" },
+  { 0x1e76, (unsigned char *) "\x00\x55\x03\x2d\0" },
+  { 0x1e77, (unsigned char *) "\x00\x75\x03\x2d\0" },
+  { 0x1e78, (unsigned char *) "\x00\x55\x03\x03\x03\x01\0" },
+  { 0x1e79, (unsigned char *) "\x00\x75\x03\x03\x03\x01\0" },
+  { 0x1e7a, (unsigned char *) "\x00\x55\x03\x04\x03\x08\0" },
+  { 0x1e7b, (unsigned char *) "\x00\x75\x03\x04\x03\x08\0" },
+  { 0x1e7c, (unsigned char *) "\x00\x56\x03\x03\0" },
+  { 0x1e7d, (unsigned char *) "\x00\x76\x03\x03\0" },
+  { 0x1e7e, (unsigned char *) "\x00\x56\x03\x23\0" },
+  { 0x1e7f, (unsigned char *) "\x00\x76\x03\x23\0" },
+  { 0x1e80, (unsigned char *) "\x00\x57\x03\x00\0" },
+  { 0x1e81, (unsigned char *) "\x00\x77\x03\x00\0" },
+  { 0x1e82, (unsigned char *) "\x00\x57\x03\x01\0" },
+  { 0x1e83, (unsigned char *) "\x00\x77\x03\x01\0" },
+  { 0x1e84, (unsigned char *) "\x00\x57\x03\x08\0" },
+  { 0x1e85, (unsigned char *) "\x00\x77\x03\x08\0" },
+  { 0x1e86, (unsigned char *) "\x00\x57\x03\x07\0" },
+  { 0x1e87, (unsigned char *) "\x00\x77\x03\x07\0" },
+  { 0x1e88, (unsigned char *) "\x00\x57\x03\x23\0" },
+  { 0x1e89, (unsigned char *) "\x00\x77\x03\x23\0" },
+  { 0x1e8a, (unsigned char *) "\x00\x58\x03\x07\0" },
+  { 0x1e8b, (unsigned char *) "\x00\x78\x03\x07\0" },
+  { 0x1e8c, (unsigned char *) "\x00\x58\x03\x08\0" },
+  { 0x1e8d, (unsigned char *) "\x00\x78\x03\x08\0" },
+  { 0x1e8e, (unsigned char *) "\x00\x59\x03\x07\0" },
+  { 0x1e8f, (unsigned char *) "\x00\x79\x03\x07\0" },
+  { 0x1e90, (unsigned char *) "\x00\x5a\x03\x02\0" },
+  { 0x1e91, (unsigned char *) "\x00\x7a\x03\x02\0" },
+  { 0x1e92, (unsigned char *) "\x00\x5a\x03\x23\0" },
+  { 0x1e93, (unsigned char *) "\x00\x7a\x03\x23\0" },
+  { 0x1e94, (unsigned char *) "\x00\x5a\x03\x31\0" },
+  { 0x1e95, (unsigned char *) "\x00\x7a\x03\x31\0" },
+  { 0x1e96, (unsigned char *) "\x00\x68\x03\x31\0" },
+  { 0x1e97, (unsigned char *) "\x00\x74\x03\x08\0" },
+  { 0x1e98, (unsigned char *) "\x00\x77\x03\x0a\0" },
+  { 0x1e99, (unsigned char *) "\x00\x79\x03\x0a\0" },
+  { 0x1e9b, (unsigned char *) "\x01\x7f\x03\x07\0" },
+  { 0x1ea0, (unsigned char *) "\x00\x41\x03\x23\0" },
+  { 0x1ea1, (unsigned char *) "\x00\x61\x03\x23\0" },
+  { 0x1ea2, (unsigned char *) "\x00\x41\x03\x09\0" },
+  { 0x1ea3, (unsigned char *) "\x00\x61\x03\x09\0" },
+  { 0x1ea4, (unsigned char *) "\x00\x41\x03\x02\x03\x01\0" },
+  { 0x1ea5, (unsigned char *) "\x00\x61\x03\x02\x03\x01\0" },
+  { 0x1ea6, (unsigned char *) "\x00\x41\x03\x02\x03\x00\0" },
+  { 0x1ea7, (unsigned char *) "\x00\x61\x03\x02\x03\x00\0" },
+  { 0x1ea8, (unsigned char *) "\x00\x41\x03\x02\x03\x09\0" },
+  { 0x1ea9, (unsigned char *) "\x00\x61\x03\x02\x03\x09\0" },
+  { 0x1eaa, (unsigned char *) "\x00\x41\x03\x02\x03\x03\0" },
+  { 0x1eab, (unsigned char *) "\x00\x61\x03\x02\x03\x03\0" },
+  { 0x1eac, (unsigned char *) "\x00\x41\x03\x23\x03\x02\0" },
+  { 0x1ead, (unsigned char *) "\x00\x61\x03\x23\x03\x02\0" },
+  { 0x1eae, (unsigned char *) "\x00\x41\x03\x06\x03\x01\0" },
+  { 0x1eaf, (unsigned char *) "\x00\x61\x03\x06\x03\x01\0" },
+  { 0x1eb0, (unsigned char *) "\x00\x41\x03\x06\x03\x00\0" },
+  { 0x1eb1, (unsigned char *) "\x00\x61\x03\x06\x03\x00\0" },
+  { 0x1eb2, (unsigned char *) "\x00\x41\x03\x06\x03\x09\0" },
+  { 0x1eb3, (unsigned char *) "\x00\x61\x03\x06\x03\x09\0" },
+  { 0x1eb4, (unsigned char *) "\x00\x41\x03\x06\x03\x03\0" },
+  { 0x1eb5, (unsigned char *) "\x00\x61\x03\x06\x03\x03\0" },
+  { 0x1eb6, (unsigned char *) "\x00\x41\x03\x23\x03\x06\0" },
+  { 0x1eb7, (unsigned char *) "\x00\x61\x03\x23\x03\x06\0" },
+  { 0x1eb8, (unsigned char *) "\x00\x45\x03\x23\0" },
+  { 0x1eb9, (unsigned char *) "\x00\x65\x03\x23\0" },
+  { 0x1eba, (unsigned char *) "\x00\x45\x03\x09\0" },
+  { 0x1ebb, (unsigned char *) "\x00\x65\x03\x09\0" },
+  { 0x1ebc, (unsigned char *) "\x00\x45\x03\x03\0" },
+  { 0x1ebd, (unsigned char *) "\x00\x65\x03\x03\0" },
+  { 0x1ebe, (unsigned char *) "\x00\x45\x03\x02\x03\x01\0" },
+  { 0x1ebf, (unsigned char *) "\x00\x65\x03\x02\x03\x01\0" },
+  { 0x1ec0, (unsigned char *) "\x00\x45\x03\x02\x03\x00\0" },
+  { 0x1ec1, (unsigned char *) "\x00\x65\x03\x02\x03\x00\0" },
+  { 0x1ec2, (unsigned char *) "\x00\x45\x03\x02\x03\x09\0" },
+  { 0x1ec3, (unsigned char *) "\x00\x65\x03\x02\x03\x09\0" },
+  { 0x1ec4, (unsigned char *) "\x00\x45\x03\x02\x03\x03\0" },
+  { 0x1ec5, (unsigned char *) "\x00\x65\x03\x02\x03\x03\0" },
+  { 0x1ec6, (unsigned char *) "\x00\x45\x03\x23\x03\x02\0" },
+  { 0x1ec7, (unsigned char *) "\x00\x65\x03\x23\x03\x02\0" },
+  { 0x1ec8, (unsigned char *) "\x00\x49\x03\x09\0" },
+  { 0x1ec9, (unsigned char *) "\x00\x69\x03\x09\0" },
+  { 0x1eca, (unsigned char *) "\x00\x49\x03\x23\0" },
+  { 0x1ecb, (unsigned char *) "\x00\x69\x03\x23\0" },
+  { 0x1ecc, (unsigned char *) "\x00\x4f\x03\x23\0" },
+  { 0x1ecd, (unsigned char *) "\x00\x6f\x03\x23\0" },
+  { 0x1ece, (unsigned char *) "\x00\x4f\x03\x09\0" },
+  { 0x1ecf, (unsigned char *) "\x00\x6f\x03\x09\0" },
+  { 0x1ed0, (unsigned char *) "\x00\x4f\x03\x02\x03\x01\0" },
+  { 0x1ed1, (unsigned char *) "\x00\x6f\x03\x02\x03\x01\0" },
+  { 0x1ed2, (unsigned char *) "\x00\x4f\x03\x02\x03\x00\0" },
+  { 0x1ed3, (unsigned char *) "\x00\x6f\x03\x02\x03\x00\0" },
+  { 0x1ed4, (unsigned char *) "\x00\x4f\x03\x02\x03\x09\0" },
+  { 0x1ed5, (unsigned char *) "\x00\x6f\x03\x02\x03\x09\0" },
+  { 0x1ed6, (unsigned char *) "\x00\x4f\x03\x02\x03\x03\0" },
+  { 0x1ed7, (unsigned char *) "\x00\x6f\x03\x02\x03\x03\0" },
+  { 0x1ed8, (unsigned char *) "\x00\x4f\x03\x23\x03\x02\0" },
+  { 0x1ed9, (unsigned char *) "\x00\x6f\x03\x23\x03\x02\0" },
+  { 0x1eda, (unsigned char *) "\x00\x4f\x03\x1b\x03\x01\0" },
+  { 0x1edb, (unsigned char *) "\x00\x6f\x03\x1b\x03\x01\0" },
+  { 0x1edc, (unsigned char *) "\x00\x4f\x03\x1b\x03\x00\0" },
+  { 0x1edd, (unsigned char *) "\x00\x6f\x03\x1b\x03\x00\0" },
+  { 0x1ede, (unsigned char *) "\x00\x4f\x03\x1b\x03\x09\0" },
+  { 0x1edf, (unsigned char *) "\x00\x6f\x03\x1b\x03\x09\0" },
+  { 0x1ee0, (unsigned char *) "\x00\x4f\x03\x1b\x03\x03\0" },
+  { 0x1ee1, (unsigned char *) "\x00\x6f\x03\x1b\x03\x03\0" },
+  { 0x1ee2, (unsigned char *) "\x00\x4f\x03\x1b\x03\x23\0" },
+  { 0x1ee3, (unsigned char *) "\x00\x6f\x03\x1b\x03\x23\0" },
+  { 0x1ee4, (unsigned char *) "\x00\x55\x03\x23\0" },
+  { 0x1ee5, (unsigned char *) "\x00\x75\x03\x23\0" },
+  { 0x1ee6, (unsigned char *) "\x00\x55\x03\x09\0" },
+  { 0x1ee7, (unsigned char *) "\x00\x75\x03\x09\0" },
+  { 0x1ee8, (unsigned char *) "\x00\x55\x03\x1b\x03\x01\0" },
+  { 0x1ee9, (unsigned char *) "\x00\x75\x03\x1b\x03\x01\0" },
+  { 0x1eea, (unsigned char *) "\x00\x55\x03\x1b\x03\x00\0" },
+  { 0x1eeb, (unsigned char *) "\x00\x75\x03\x1b\x03\x00\0" },
+  { 0x1eec, (unsigned char *) "\x00\x55\x03\x1b\x03\x09\0" },
+  { 0x1eed, (unsigned char *) "\x00\x75\x03\x1b\x03\x09\0" },
+  { 0x1eee, (unsigned char *) "\x00\x55\x03\x1b\x03\x03\0" },
+  { 0x1eef, (unsigned char *) "\x00\x75\x03\x1b\x03\x03\0" },
+  { 0x1ef0, (unsigned char *) "\x00\x55\x03\x1b\x03\x23\0" },
+  { 0x1ef1, (unsigned char *) "\x00\x75\x03\x1b\x03\x23\0" },
+  { 0x1ef2, (unsigned char *) "\x00\x59\x03\x00\0" },
+  { 0x1ef3, (unsigned char *) "\x00\x79\x03\x00\0" },
+  { 0x1ef4, (unsigned char *) "\x00\x59\x03\x23\0" },
+  { 0x1ef5, (unsigned char *) "\x00\x79\x03\x23\0" },
+  { 0x1ef6, (unsigned char *) "\x00\x59\x03\x09\0" },
+  { 0x1ef7, (unsigned char *) "\x00\x79\x03\x09\0" },
+  { 0x1ef8, (unsigned char *) "\x00\x59\x03\x03\0" },
+  { 0x1ef9, (unsigned char *) "\x00\x79\x03\x03\0" },
+  { 0x1f00, (unsigned char *) "\x03\xb1\x03\x13\0" },
+  { 0x1f01, (unsigned char *) "\x03\xb1\x03\x14\0" },
+  { 0x1f02, (unsigned char *) "\x03\xb1\x03\x13\x03\x00\0" },
+  { 0x1f03, (unsigned char *) "\x03\xb1\x03\x14\x03\x00\0" },
+  { 0x1f04, (unsigned char *) "\x03\xb1\x03\x13\x03\x01\0" },
+  { 0x1f05, (unsigned char *) "\x03\xb1\x03\x14\x03\x01\0" },
+  { 0x1f06, (unsigned char *) "\x03\xb1\x03\x13\x03\x42\0" },
+  { 0x1f07, (unsigned char *) "\x03\xb1\x03\x14\x03\x42\0" },
+  { 0x1f08, (unsigned char *) "\x03\x91\x03\x13\0" },
+  { 0x1f09, (unsigned char *) "\x03\x91\x03\x14\0" },
+  { 0x1f0a, (unsigned char *) "\x03\x91\x03\x13\x03\x00\0" },
+  { 0x1f0b, (unsigned char *) "\x03\x91\x03\x14\x03\x00\0" },
+  { 0x1f0c, (unsigned char *) "\x03\x91\x03\x13\x03\x01\0" },
+  { 0x1f0d, (unsigned char *) "\x03\x91\x03\x14\x03\x01\0" },
+  { 0x1f0e, (unsigned char *) "\x03\x91\x03\x13\x03\x42\0" },
+  { 0x1f0f, (unsigned char *) "\x03\x91\x03\x14\x03\x42\0" },
+  { 0x1f10, (unsigned char *) "\x03\xb5\x03\x13\0" },
+  { 0x1f11, (unsigned char *) "\x03\xb5\x03\x14\0" },
+  { 0x1f12, (unsigned char *) "\x03\xb5\x03\x13\x03\x00\0" },
+  { 0x1f13, (unsigned char *) "\x03\xb5\x03\x14\x03\x00\0" },
+  { 0x1f14, (unsigned char *) "\x03\xb5\x03\x13\x03\x01\0" },
+  { 0x1f15, (unsigned char *) "\x03\xb5\x03\x14\x03\x01\0" },
+  { 0x1f18, (unsigned char *) "\x03\x95\x03\x13\0" },
+  { 0x1f19, (unsigned char *) "\x03\x95\x03\x14\0" },
+  { 0x1f1a, (unsigned char *) "\x03\x95\x03\x13\x03\x00\0" },
+  { 0x1f1b, (unsigned char *) "\x03\x95\x03\x14\x03\x00\0" },
+  { 0x1f1c, (unsigned char *) "\x03\x95\x03\x13\x03\x01\0" },
+  { 0x1f1d, (unsigned char *) "\x03\x95\x03\x14\x03\x01\0" },
+  { 0x1f20, (unsigned char *) "\x03\xb7\x03\x13\0" },
+  { 0x1f21, (unsigned char *) "\x03\xb7\x03\x14\0" },
+  { 0x1f22, (unsigned char *) "\x03\xb7\x03\x13\x03\x00\0" },
+  { 0x1f23, (unsigned char *) "\x03\xb7\x03\x14\x03\x00\0" },
+  { 0x1f24, (unsigned char *) "\x03\xb7\x03\x13\x03\x01\0" },
+  { 0x1f25, (unsigned char *) "\x03\xb7\x03\x14\x03\x01\0" },
+  { 0x1f26, (unsigned char *) "\x03\xb7\x03\x13\x03\x42\0" },
+  { 0x1f27, (unsigned char *) "\x03\xb7\x03\x14\x03\x42\0" },
+  { 0x1f28, (unsigned char *) "\x03\x97\x03\x13\0" },
+  { 0x1f29, (unsigned char *) "\x03\x97\x03\x14\0" },
+  { 0x1f2a, (unsigned char *) "\x03\x97\x03\x13\x03\x00\0" },
+  { 0x1f2b, (unsigned char *) "\x03\x97\x03\x14\x03\x00\0" },
+  { 0x1f2c, (unsigned char *) "\x03\x97\x03\x13\x03\x01\0" },
+  { 0x1f2d, (unsigned char *) "\x03\x97\x03\x14\x03\x01\0" },
+  { 0x1f2e, (unsigned char *) "\x03\x97\x03\x13\x03\x42\0" },
+  { 0x1f2f, (unsigned char *) "\x03\x97\x03\x14\x03\x42\0" },
+  { 0x1f30, (unsigned char *) "\x03\xb9\x03\x13\0" },
+  { 0x1f31, (unsigned char *) "\x03\xb9\x03\x14\0" },
+  { 0x1f32, (unsigned char *) "\x03\xb9\x03\x13\x03\x00\0" },
+  { 0x1f33, (unsigned char *) "\x03\xb9\x03\x14\x03\x00\0" },
+  { 0x1f34, (unsigned char *) "\x03\xb9\x03\x13\x03\x01\0" },
+  { 0x1f35, (unsigned char *) "\x03\xb9\x03\x14\x03\x01\0" },
+  { 0x1f36, (unsigned char *) "\x03\xb9\x03\x13\x03\x42\0" },
+  { 0x1f37, (unsigned char *) "\x03\xb9\x03\x14\x03\x42\0" },
+  { 0x1f38, (unsigned char *) "\x03\x99\x03\x13\0" },
+  { 0x1f39, (unsigned char *) "\x03\x99\x03\x14\0" },
+  { 0x1f3a, (unsigned char *) "\x03\x99\x03\x13\x03\x00\0" },
+  { 0x1f3b, (unsigned char *) "\x03\x99\x03\x14\x03\x00\0" },
+  { 0x1f3c, (unsigned char *) "\x03\x99\x03\x13\x03\x01\0" },
+  { 0x1f3d, (unsigned char *) "\x03\x99\x03\x14\x03\x01\0" },
+  { 0x1f3e, (unsigned char *) "\x03\x99\x03\x13\x03\x42\0" },
+  { 0x1f3f, (unsigned char *) "\x03\x99\x03\x14\x03\x42\0" },
+  { 0x1f40, (unsigned char *) "\x03\xbf\x03\x13\0" },
+  { 0x1f41, (unsigned char *) "\x03\xbf\x03\x14\0" },
+  { 0x1f42, (unsigned char *) "\x03\xbf\x03\x13\x03\x00\0" },
+  { 0x1f43, (unsigned char *) "\x03\xbf\x03\x14\x03\x00\0" },
+  { 0x1f44, (unsigned char *) "\x03\xbf\x03\x13\x03\x01\0" },
+  { 0x1f45, (unsigned char *) "\x03\xbf\x03\x14\x03\x01\0" },
+  { 0x1f48, (unsigned char *) "\x03\x9f\x03\x13\0" },
+  { 0x1f49, (unsigned char *) "\x03\x9f\x03\x14\0" },
+  { 0x1f4a, (unsigned char *) "\x03\x9f\x03\x13\x03\x00\0" },
+  { 0x1f4b, (unsigned char *) "\x03\x9f\x03\x14\x03\x00\0" },
+  { 0x1f4c, (unsigned char *) "\x03\x9f\x03\x13\x03\x01\0" },
+  { 0x1f4d, (unsigned char *) "\x03\x9f\x03\x14\x03\x01\0" },
+  { 0x1f50, (unsigned char *) "\x03\xc5\x03\x13\0" },
+  { 0x1f51, (unsigned char *) "\x03\xc5\x03\x14\0" },
+  { 0x1f52, (unsigned char *) "\x03\xc5\x03\x13\x03\x00\0" },
+  { 0x1f53, (unsigned char *) "\x03\xc5\x03\x14\x03\x00\0" },
+  { 0x1f54, (unsigned char *) "\x03\xc5\x03\x13\x03\x01\0" },
+  { 0x1f55, (unsigned char *) "\x03\xc5\x03\x14\x03\x01\0" },
+  { 0x1f56, (unsigned char *) "\x03\xc5\x03\x13\x03\x42\0" },
+  { 0x1f57, (unsigned char *) "\x03\xc5\x03\x14\x03\x42\0" },
+  { 0x1f59, (unsigned char *) "\x03\xa5\x03\x14\0" },
+  { 0x1f5b, (unsigned char *) "\x03\xa5\x03\x14\x03\x00\0" },
+  { 0x1f5d, (unsigned char *) "\x03\xa5\x03\x14\x03\x01\0" },
+  { 0x1f5f, (unsigned char *) "\x03\xa5\x03\x14\x03\x42\0" },
+  { 0x1f60, (unsigned char *) "\x03\xc9\x03\x13\0" },
+  { 0x1f61, (unsigned char *) "\x03\xc9\x03\x14\0" },
+  { 0x1f62, (unsigned char *) "\x03\xc9\x03\x13\x03\x00\0" },
+  { 0x1f63, (unsigned char *) "\x03\xc9\x03\x14\x03\x00\0" },
+  { 0x1f64, (unsigned char *) "\x03\xc9\x03\x13\x03\x01\0" },
+  { 0x1f65, (unsigned char *) "\x03\xc9\x03\x14\x03\x01\0" },
+  { 0x1f66, (unsigned char *) "\x03\xc9\x03\x13\x03\x42\0" },
+  { 0x1f67, (unsigned char *) "\x03\xc9\x03\x14\x03\x42\0" },
+  { 0x1f68, (unsigned char *) "\x03\xa9\x03\x13\0" },
+  { 0x1f69, (unsigned char *) "\x03\xa9\x03\x14\0" },
+  { 0x1f6a, (unsigned char *) "\x03\xa9\x03\x13\x03\x00\0" },
+  { 0x1f6b, (unsigned char *) "\x03\xa9\x03\x14\x03\x00\0" },
+  { 0x1f6c, (unsigned char *) "\x03\xa9\x03\x13\x03\x01\0" },
+  { 0x1f6d, (unsigned char *) "\x03\xa9\x03\x14\x03\x01\0" },
+  { 0x1f6e, (unsigned char *) "\x03\xa9\x03\x13\x03\x42\0" },
+  { 0x1f6f, (unsigned char *) "\x03\xa9\x03\x14\x03\x42\0" },
+  { 0x1f70, (unsigned char *) "\x03\xb1\x03\x00\0" },
+  { 0x1f71, (unsigned char *) "\x03\xb1\x03\x01\0" },
+  { 0x1f72, (unsigned char *) "\x03\xb5\x03\x00\0" },
+  { 0x1f73, (unsigned char *) "\x03\xb5\x03\x01\0" },
+  { 0x1f74, (unsigned char *) "\x03\xb7\x03\x00\0" },
+  { 0x1f75, (unsigned char *) "\x03\xb7\x03\x01\0" },
+  { 0x1f76, (unsigned char *) "\x03\xb9\x03\x00\0" },
+  { 0x1f77, (unsigned char *) "\x03\xb9\x03\x01\0" },
+  { 0x1f78, (unsigned char *) "\x03\xbf\x03\x00\0" },
+  { 0x1f79, (unsigned char *) "\x03\xbf\x03\x01\0" },
+  { 0x1f7a, (unsigned char *) "\x03\xc5\x03\x00\0" },
+  { 0x1f7b, (unsigned char *) "\x03\xc5\x03\x01\0" },
+  { 0x1f7c, (unsigned char *) "\x03\xc9\x03\x00\0" },
+  { 0x1f7d, (unsigned char *) "\x03\xc9\x03\x01\0" },
+  { 0x1f80, (unsigned char *) "\x03\xb1\x03\x13\x03\x45\0" },
+  { 0x1f81, (unsigned char *) "\x03\xb1\x03\x14\x03\x45\0" },
+  { 0x1f82, (unsigned char *) "\x03\xb1\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f83, (unsigned char *) "\x03\xb1\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f84, (unsigned char *) "\x03\xb1\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f85, (unsigned char *) "\x03\xb1\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f86, (unsigned char *) "\x03\xb1\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f87, (unsigned char *) "\x03\xb1\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1f88, (unsigned char *) "\x03\x91\x03\x13\x03\x45\0" },
+  { 0x1f89, (unsigned char *) "\x03\x91\x03\x14\x03\x45\0" },
+  { 0x1f8a, (unsigned char *) "\x03\x91\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f8b, (unsigned char *) "\x03\x91\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f8c, (unsigned char *) "\x03\x91\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f8d, (unsigned char *) "\x03\x91\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f8e, (unsigned char *) "\x03\x91\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f8f, (unsigned char *) "\x03\x91\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1f90, (unsigned char *) "\x03\xb7\x03\x13\x03\x45\0" },
+  { 0x1f91, (unsigned char *) "\x03\xb7\x03\x14\x03\x45\0" },
+  { 0x1f92, (unsigned char *) "\x03\xb7\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f93, (unsigned char *) "\x03\xb7\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f94, (unsigned char *) "\x03\xb7\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f95, (unsigned char *) "\x03\xb7\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f96, (unsigned char *) "\x03\xb7\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f97, (unsigned char *) "\x03\xb7\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1f98, (unsigned char *) "\x03\x97\x03\x13\x03\x45\0" },
+  { 0x1f99, (unsigned char *) "\x03\x97\x03\x14\x03\x45\0" },
+  { 0x1f9a, (unsigned char *) "\x03\x97\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1f9b, (unsigned char *) "\x03\x97\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1f9c, (unsigned char *) "\x03\x97\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1f9d, (unsigned char *) "\x03\x97\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1f9e, (unsigned char *) "\x03\x97\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1f9f, (unsigned char *) "\x03\x97\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1fa0, (unsigned char *) "\x03\xc9\x03\x13\x03\x45\0" },
+  { 0x1fa1, (unsigned char *) "\x03\xc9\x03\x14\x03\x45\0" },
+  { 0x1fa2, (unsigned char *) "\x03\xc9\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1fa3, (unsigned char *) "\x03\xc9\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1fa4, (unsigned char *) "\x03\xc9\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1fa5, (unsigned char *) "\x03\xc9\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1fa6, (unsigned char *) "\x03\xc9\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1fa7, (unsigned char *) "\x03\xc9\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1fa8, (unsigned char *) "\x03\xa9\x03\x13\x03\x45\0" },
+  { 0x1fa9, (unsigned char *) "\x03\xa9\x03\x14\x03\x45\0" },
+  { 0x1faa, (unsigned char *) "\x03\xa9\x03\x13\x03\x00\x03\x45\0" },
+  { 0x1fab, (unsigned char *) "\x03\xa9\x03\x14\x03\x00\x03\x45\0" },
+  { 0x1fac, (unsigned char *) "\x03\xa9\x03\x13\x03\x01\x03\x45\0" },
+  { 0x1fad, (unsigned char *) "\x03\xa9\x03\x14\x03\x01\x03\x45\0" },
+  { 0x1fae, (unsigned char *) "\x03\xa9\x03\x13\x03\x42\x03\x45\0" },
+  { 0x1faf, (unsigned char *) "\x03\xa9\x03\x14\x03\x42\x03\x45\0" },
+  { 0x1fb0, (unsigned char *) "\x03\xb1\x03\x06\0" },
+  { 0x1fb1, (unsigned char *) "\x03\xb1\x03\x04\0" },
+  { 0x1fb2, (unsigned char *) "\x03\xb1\x03\x00\x03\x45\0" },
+  { 0x1fb3, (unsigned char *) "\x03\xb1\x03\x45\0" },
+  { 0x1fb4, (unsigned char *) "\x03\xb1\x03\x01\x03\x45\0" },
+  { 0x1fb6, (unsigned char *) "\x03\xb1\x03\x42\0" },
+  { 0x1fb7, (unsigned char *) "\x03\xb1\x03\x42\x03\x45\0" },
+  { 0x1fb8, (unsigned char *) "\x03\x91\x03\x06\0" },
+  { 0x1fb9, (unsigned char *) "\x03\x91\x03\x04\0" },
+  { 0x1fba, (unsigned char *) "\x03\x91\x03\x00\0" },
+  { 0x1fbb, (unsigned char *) "\x03\x91\x03\x01\0" },
+  { 0x1fbc, (unsigned char *) "\x03\x91\x03\x45\0" },
+  { 0x1fbe, (unsigned char *) "\x03\xb9\0" },
+  { 0x1fc1, (unsigned char *) "\x00\xa8\x03\x42\0" },
+  { 0x1fc2, (unsigned char *) "\x03\xb7\x03\x00\x03\x45\0" },
+  { 0x1fc3, (unsigned char *) "\x03\xb7\x03\x45\0" },
+  { 0x1fc4, (unsigned char *) "\x03\xb7\x03\x01\x03\x45\0" },
+  { 0x1fc6, (unsigned char *) "\x03\xb7\x03\x42\0" },
+  { 0x1fc7, (unsigned char *) "\x03\xb7\x03\x42\x03\x45\0" },
+  { 0x1fc8, (unsigned char *) "\x03\x95\x03\x00\0" },
+  { 0x1fc9, (unsigned char *) "\x03\x95\x03\x01\0" },
+  { 0x1fca, (unsigned char *) "\x03\x97\x03\x00\0" },
+  { 0x1fcb, (unsigned char *) "\x03\x97\x03\x01\0" },
+  { 0x1fcc, (unsigned char *) "\x03\x97\x03\x45\0" },
+  { 0x1fcd, (unsigned char *) "\x1f\xbf\x03\x00\0" },
+  { 0x1fce, (unsigned char *) "\x1f\xbf\x03\x01\0" },
+  { 0x1fcf, (unsigned char *) "\x1f\xbf\x03\x42\0" },
+  { 0x1fd0, (unsigned char *) "\x03\xb9\x03\x06\0" },
+  { 0x1fd1, (unsigned char *) "\x03\xb9\x03\x04\0" },
+  { 0x1fd2, (unsigned char *) "\x03\xb9\x03\x08\x03\x00\0" },
+  { 0x1fd3, (unsigned char *) "\x03\xb9\x03\x08\x03\x01\0" },
+  { 0x1fd6, (unsigned char *) "\x03\xb9\x03\x42\0" },
+  { 0x1fd7, (unsigned char *) "\x03\xb9\x03\x08\x03\x42\0" },
+  { 0x1fd8, (unsigned char *) "\x03\x99\x03\x06\0" },
+  { 0x1fd9, (unsigned char *) "\x03\x99\x03\x04\0" },
+  { 0x1fda, (unsigned char *) "\x03\x99\x03\x00\0" },
+  { 0x1fdb, (unsigned char *) "\x03\x99\x03\x01\0" },
+  { 0x1fdd, (unsigned char *) "\x1f\xfe\x03\x00\0" },
+  { 0x1fde, (unsigned char *) "\x1f\xfe\x03\x01\0" },
+  { 0x1fdf, (unsigned char *) "\x1f\xfe\x03\x42\0" },
+  { 0x1fe0, (unsigned char *) "\x03\xc5\x03\x06\0" },
+  { 0x1fe1, (unsigned char *) "\x03\xc5\x03\x04\0" },
+  { 0x1fe2, (unsigned char *) "\x03\xc5\x03\x08\x03\x00\0" },
+  { 0x1fe3, (unsigned char *) "\x03\xc5\x03\x08\x03\x01\0" },
+  { 0x1fe4, (unsigned char *) "\x03\xc1\x03\x13\0" },
+  { 0x1fe5, (unsigned char *) "\x03\xc1\x03\x14\0" },
+  { 0x1fe6, (unsigned char *) "\x03\xc5\x03\x42\0" },
+  { 0x1fe7, (unsigned char *) "\x03\xc5\x03\x08\x03\x42\0" },
+  { 0x1fe8, (unsigned char *) "\x03\xa5\x03\x06\0" },
+  { 0x1fe9, (unsigned char *) "\x03\xa5\x03\x04\0" },
+  { 0x1fea, (unsigned char *) "\x03\xa5\x03\x00\0" },
+  { 0x1feb, (unsigned char *) "\x03\xa5\x03\x01\0" },
+  { 0x1fec, (unsigned char *) "\x03\xa1\x03\x14\0" },
+  { 0x1fed, (unsigned char *) "\x00\xa8\x03\x00\0" },
+  { 0x1fee, (unsigned char *) "\x00\xa8\x03\x01\0" },
+  { 0x1fef, (unsigned char *) "\x00\x60\0" },
+  { 0x1ff2, (unsigned char *) "\x03\xc9\x03\x00\x03\x45\0" },
+  { 0x1ff3, (unsigned char *) "\x03\xc9\x03\x45\0" },
+  { 0x1ff4, (unsigned char *) "\x03\xc9\x03\x01\x03\x45\0" },
+  { 0x1ff6, (unsigned char *) "\x03\xc9\x03\x42\0" },
+  { 0x1ff7, (unsigned char *) "\x03\xc9\x03\x42\x03\x45\0" },
+  { 0x1ff8, (unsigned char *) "\x03\x9f\x03\x00\0" },
+  { 0x1ff9, (unsigned char *) "\x03\x9f\x03\x01\0" },
+  { 0x1ffa, (unsigned char *) "\x03\xa9\x03\x00\0" },
+  { 0x1ffb, (unsigned char *) "\x03\xa9\x03\x01\0" },
+  { 0x1ffc, (unsigned char *) "\x03\xa9\x03\x45\0" },
+  { 0x1ffd, (unsigned char *) "\x00\xb4\0" },
+  { 0x2000, (unsigned char *) "\x20\x02\0" },
+  { 0x2001, (unsigned char *) "\x20\x03\0" },
+  { 0x2126, (unsigned char *) "\x03\xa9\0" },
+  { 0x212a, (unsigned char *) "\x00\x4b\0" },
+  { 0x212b, (unsigned char *) "\x00\x41\x03\x0a\0" },
+  { 0x2204, (unsigned char *) "\x22\x03\x03\x38\0" },
+  { 0x2209, (unsigned char *) "\x22\x08\x03\x38\0" },
+  { 0x220c, (unsigned char *) "\x22\x0b\x03\x38\0" },
+  { 0x2224, (unsigned char *) "\x22\x23\x03\x38\0" },
+  { 0x2226, (unsigned char *) "\x22\x25\x03\x38\0" },
+  { 0x2241, (unsigned char *) "\x00\x7e\x03\x38\0" },
+  { 0x2244, (unsigned char *) "\x22\x43\x03\x38\0" },
+  { 0x2247, (unsigned char *) "\x22\x45\x03\x38\0" },
+  { 0x2249, (unsigned char *) "\x22\x48\x03\x38\0" },
+  { 0x2260, (unsigned char *) "\x00\x3d\x03\x38\0" },
+  { 0x2262, (unsigned char *) "\x22\x61\x03\x38\0" },
+  { 0x226d, (unsigned char *) "\x22\x4d\x03\x38\0" },
+  { 0x226e, (unsigned char *) "\x00\x3c\x03\x38\0" },
+  { 0x226f, (unsigned char *) "\x00\x3e\x03\x38\0" },
+  { 0x2270, (unsigned char *) "\x22\x64\x03\x38\0" },
+  { 0x2271, (unsigned char *) "\x22\x65\x03\x38\0" },
+  { 0x2274, (unsigned char *) "\x22\x72\x03\x38\0" },
+  { 0x2275, (unsigned char *) "\x22\x73\x03\x38\0" },
+  { 0x2278, (unsigned char *) "\x22\x76\x03\x38\0" },
+  { 0x2279, (unsigned char *) "\x22\x77\x03\x38\0" },
+  { 0x2280, (unsigned char *) "\x22\x7a\x03\x38\0" },
+  { 0x2281, (unsigned char *) "\x22\x7b\x03\x38\0" },
+  { 0x2284, (unsigned char *) "\x22\x82\x03\x38\0" },
+  { 0x2285, (unsigned char *) "\x22\x83\x03\x38\0" },
+  { 0x2288, (unsigned char *) "\x22\x86\x03\x38\0" },
+  { 0x2289, (unsigned char *) "\x22\x87\x03\x38\0" },
+  { 0x22ac, (unsigned char *) "\x22\xa2\x03\x38\0" },
+  { 0x22ad, (unsigned char *) "\x22\xa8\x03\x38\0" },
+  { 0x22ae, (unsigned char *) "\x22\xa9\x03\x38\0" },
+  { 0x22af, (unsigned char *) "\x22\xab\x03\x38\0" },
+  { 0x22e0, (unsigned char *) "\x22\x7c\x03\x38\0" },
+  { 0x22e1, (unsigned char *) "\x22\x7d\x03\x38\0" },
+  { 0x22e2, (unsigned char *) "\x22\x91\x03\x38\0" },
+  { 0x22e3, (unsigned char *) "\x22\x92\x03\x38\0" },
+  { 0x22ea, (unsigned char *) "\x22\xb2\x03\x38\0" },
+  { 0x22eb, (unsigned char *) "\x22\xb3\x03\x38\0" },
+  { 0x22ec, (unsigned char *) "\x22\xb4\x03\x38\0" },
+  { 0x22ed, (unsigned char *) "\x22\xb5\x03\x38\0" },
+  { 0x2329, (unsigned char *) "\x30\x08\0" },
+  { 0x232a, (unsigned char *) "\x30\x09\0" },
+  { 0x304c, (unsigned char *) "\x30\x4b\x30\x99\0" },
+  { 0x304e, (unsigned char *) "\x30\x4d\x30\x99\0" },
+  { 0x3050, (unsigned char *) "\x30\x4f\x30\x99\0" },
+  { 0x3052, (unsigned char *) "\x30\x51\x30\x99\0" },
+  { 0x3054, (unsigned char *) "\x30\x53\x30\x99\0" },
+  { 0x3056, (unsigned char *) "\x30\x55\x30\x99\0" },
+  { 0x3058, (unsigned char *) "\x30\x57\x30\x99\0" },
+  { 0x305a, (unsigned char *) "\x30\x59\x30\x99\0" },
+  { 0x305c, (unsigned char *) "\x30\x5b\x30\x99\0" },
+  { 0x305e, (unsigned char *) "\x30\x5d\x30\x99\0" },
+  { 0x3060, (unsigned char *) "\x30\x5f\x30\x99\0" },
+  { 0x3062, (unsigned char *) "\x30\x61\x30\x99\0" },
+  { 0x3065, (unsigned char *) "\x30\x64\x30\x99\0" },
+  { 0x3067, (unsigned char *) "\x30\x66\x30\x99\0" },
+  { 0x3069, (unsigned char *) "\x30\x68\x30\x99\0" },
+  { 0x3070, (unsigned char *) "\x30\x6f\x30\x99\0" },
+  { 0x3071, (unsigned char *) "\x30\x6f\x30\x9a\0" },
+  { 0x3073, (unsigned char *) "\x30\x72\x30\x99\0" },
+  { 0x3074, (unsigned char *) "\x30\x72\x30\x9a\0" },
+  { 0x3076, (unsigned char *) "\x30\x75\x30\x99\0" },
+  { 0x3077, (unsigned char *) "\x30\x75\x30\x9a\0" },
+  { 0x3079, (unsigned char *) "\x30\x78\x30\x99\0" },
+  { 0x307a, (unsigned char *) "\x30\x78\x30\x9a\0" },
+  { 0x307c, (unsigned char *) "\x30\x7b\x30\x99\0" },
+  { 0x307d, (unsigned char *) "\x30\x7b\x30\x9a\0" },
+  { 0x3094, (unsigned char *) "\x30\x46\x30\x99\0" },
+  { 0x309e, (unsigned char *) "\x30\x9d\x30\x99\0" },
+  { 0x30ac, (unsigned char *) "\x30\xab\x30\x99\0" },
+  { 0x30ae, (unsigned char *) "\x30\xad\x30\x99\0" },
+  { 0x30b0, (unsigned char *) "\x30\xaf\x30\x99\0" },
+  { 0x30b2, (unsigned char *) "\x30\xb1\x30\x99\0" },
+  { 0x30b4, (unsigned char *) "\x30\xb3\x30\x99\0" },
+  { 0x30b6, (unsigned char *) "\x30\xb5\x30\x99\0" },
+  { 0x30b8, (unsigned char *) "\x30\xb7\x30\x99\0" },
+  { 0x30ba, (unsigned char *) "\x30\xb9\x30\x99\0" },
+  { 0x30bc, (unsigned char *) "\x30\xbb\x30\x99\0" },
+  { 0x30be, (unsigned char *) "\x30\xbd\x30\x99\0" },
+  { 0x30c0, (unsigned char *) "\x30\xbf\x30\x99\0" },
+  { 0x30c2, (unsigned char *) "\x30\xc1\x30\x99\0" },
+  { 0x30c5, (unsigned char *) "\x30\xc4\x30\x99\0" },
+  { 0x30c7, (unsigned char *) "\x30\xc6\x30\x99\0" },
+  { 0x30c9, (unsigned char *) "\x30\xc8\x30\x99\0" },
+  { 0x30d0, (unsigned char *) "\x30\xcf\x30\x99\0" },
+  { 0x30d1, (unsigned char *) "\x30\xcf\x30\x9a\0" },
+  { 0x30d3, (unsigned char *) "\x30\xd2\x30\x99\0" },
+  { 0x30d4, (unsigned char *) "\x30\xd2\x30\x9a\0" },
+  { 0x30d6, (unsigned char *) "\x30\xd5\x30\x99\0" },
+  { 0x30d7, (unsigned char *) "\x30\xd5\x30\x9a\0" },
+  { 0x30d9, (unsigned char *) "\x30\xd8\x30\x99\0" },
+  { 0x30da, (unsigned char *) "\x30\xd8\x30\x9a\0" },
+  { 0x30dc, (unsigned char *) "\x30\xdb\x30\x99\0" },
+  { 0x30dd, (unsigned char *) "\x30\xdb\x30\x9a\0" },
+  { 0x30f4, (unsigned char *) "\x30\xa6\x30\x99\0" },
+  { 0x30f7, (unsigned char *) "\x30\xef\x30\x99\0" },
+  { 0x30f8, (unsigned char *) "\x30\xf0\x30\x99\0" },
+  { 0x30f9, (unsigned char *) "\x30\xf1\x30\x99\0" },
+  { 0x30fa, (unsigned char *) "\x30\xf2\x30\x99\0" },
+  { 0x30fe, (unsigned char *) "\x30\xfd\x30\x99\0" },
+  { 0xf900, (unsigned char *) "\x8c\x48\0" },
+  { 0xf901, (unsigned char *) "\x66\xf4\0" },
+  { 0xf902, (unsigned char *) "\x8e\xca\0" },
+  { 0xf903, (unsigned char *) "\x8c\xc8\0" },
+  { 0xf904, (unsigned char *) "\x6e\xd1\0" },
+  { 0xf905, (unsigned char *) "\x4e\x32\0" },
+  { 0xf906, (unsigned char *) "\x53\xe5\0" },
+  { 0xf907, (unsigned char *) "\x9f\x9c\0" },
+  { 0xf908, (unsigned char *) "\x9f\x9c\0" },
+  { 0xf909, (unsigned char *) "\x59\x51\0" },
+  { 0xf90a, (unsigned char *) "\x91\xd1\0" },
+  { 0xf90b, (unsigned char *) "\x55\x87\0" },
+  { 0xf90c, (unsigned char *) "\x59\x48\0" },
+  { 0xf90d, (unsigned char *) "\x61\xf6\0" },
+  { 0xf90e, (unsigned char *) "\x76\x69\0" },
+  { 0xf90f, (unsigned char *) "\x7f\x85\0" },
+  { 0xf910, (unsigned char *) "\x86\x3f\0" },
+  { 0xf911, (unsigned char *) "\x87\xba\0" },
+  { 0xf912, (unsigned char *) "\x88\xf8\0" },
+  { 0xf913, (unsigned char *) "\x90\x8f\0" },
+  { 0xf914, (unsigned char *) "\x6a\x02\0" },
+  { 0xf915, (unsigned char *) "\x6d\x1b\0" },
+  { 0xf916, (unsigned char *) "\x70\xd9\0" },
+  { 0xf917, (unsigned char *) "\x73\xde\0" },
+  { 0xf918, (unsigned char *) "\x84\x3d\0" },
+  { 0xf919, (unsigned char *) "\x91\x6a\0" },
+  { 0xf91a, (unsigned char *) "\x99\xf1\0" },
+  { 0xf91b, (unsigned char *) "\x4e\x82\0" },
+  { 0xf91c, (unsigned char *) "\x53\x75\0" },
+  { 0xf91d, (unsigned char *) "\x6b\x04\0" },
+  { 0xf91e, (unsigned char *) "\x72\x1b\0" },
+  { 0xf91f, (unsigned char *) "\x86\x2d\0" },
+  { 0xf920, (unsigned char *) "\x9e\x1e\0" },
+  { 0xf921, (unsigned char *) "\x5d\x50\0" },
+  { 0xf922, (unsigned char *) "\x6f\xeb\0" },
+  { 0xf923, (unsigned char *) "\x85\xcd\0" },
+  { 0xf924, (unsigned char *) "\x89\x64\0" },
+  { 0xf925, (unsigned char *) "\x62\xc9\0" },
+  { 0xf926, (unsigned char *) "\x81\xd8\0" },
+  { 0xf927, (unsigned char *) "\x88\x1f\0" },
+  { 0xf928, (unsigned char *) "\x5e\xca\0" },
+  { 0xf929, (unsigned char *) "\x67\x17\0" },
+  { 0xf92a, (unsigned char *) "\x6d\x6a\0" },
+  { 0xf92b, (unsigned char *) "\x72\xfc\0" },
+  { 0xf92c, (unsigned char *) "\x90\xce\0" },
+  { 0xf92d, (unsigned char *) "\x4f\x86\0" },
+  { 0xf92e, (unsigned char *) "\x51\xb7\0" },
+  { 0xf92f, (unsigned char *) "\x52\xde\0" },
+  { 0xf930, (unsigned char *) "\x64\xc4\0" },
+  { 0xf931, (unsigned char *) "\x6a\xd3\0" },
+  { 0xf932, (unsigned char *) "\x72\x10\0" },
+  { 0xf933, (unsigned char *) "\x76\xe7\0" },
+  { 0xf934, (unsigned char *) "\x80\x01\0" },
+  { 0xf935, (unsigned char *) "\x86\x06\0" },
+  { 0xf936, (unsigned char *) "\x86\x5c\0" },
+  { 0xf937, (unsigned char *) "\x8d\xef\0" },
+  { 0xf938, (unsigned char *) "\x97\x32\0" },
+  { 0xf939, (unsigned char *) "\x9b\x6f\0" },
+  { 0xf93a, (unsigned char *) "\x9d\xfa\0" },
+  { 0xf93b, (unsigned char *) "\x78\x8c\0" },
+  { 0xf93c, (unsigned char *) "\x79\x7f\0" },
+  { 0xf93d, (unsigned char *) "\x7d\xa0\0" },
+  { 0xf93e, (unsigned char *) "\x83\xc9\0" },
+  { 0xf93f, (unsigned char *) "\x93\x04\0" },
+  { 0xf940, (unsigned char *) "\x9e\x7f\0" },
+  { 0xf941, (unsigned char *) "\x8a\xd6\0" },
+  { 0xf942, (unsigned char *) "\x58\xdf\0" },
+  { 0xf943, (unsigned char *) "\x5f\x04\0" },
+  { 0xf944, (unsigned char *) "\x7c\x60\0" },
+  { 0xf945, (unsigned char *) "\x80\x7e\0" },
+  { 0xf946, (unsigned char *) "\x72\x62\0" },
+  { 0xf947, (unsigned char *) "\x78\xca\0" },
+  { 0xf948, (unsigned char *) "\x8c\xc2\0" },
+  { 0xf949, (unsigned char *) "\x96\xf7\0" },
+  { 0xf94a, (unsigned char *) "\x58\xd8\0" },
+  { 0xf94b, (unsigned char *) "\x5c\x62\0" },
+  { 0xf94c, (unsigned char *) "\x6a\x13\0" },
+  { 0xf94d, (unsigned char *) "\x6d\xda\0" },
+  { 0xf94e, (unsigned char *) "\x6f\x0f\0" },
+  { 0xf94f, (unsigned char *) "\x7d\x2f\0" },
+  { 0xf950, (unsigned char *) "\x7e\x37\0" },
+  { 0xf951, (unsigned char *) "\x96\xfb\0" },
+  { 0xf952, (unsigned char *) "\x52\xd2\0" },
+  { 0xf953, (unsigned char *) "\x80\x8b\0" },
+  { 0xf954, (unsigned char *) "\x51\xdc\0" },
+  { 0xf955, (unsigned char *) "\x51\xcc\0" },
+  { 0xf956, (unsigned char *) "\x7a\x1c\0" },
+  { 0xf957, (unsigned char *) "\x7d\xbe\0" },
+  { 0xf958, (unsigned char *) "\x83\xf1\0" },
+  { 0xf959, (unsigned char *) "\x96\x75\0" },
+  { 0xf95a, (unsigned char *) "\x8b\x80\0" },
+  { 0xf95b, (unsigned char *) "\x62\xcf\0" },
+  { 0xf95c, (unsigned char *) "\x6a\x02\0" },
+  { 0xf95d, (unsigned char *) "\x8a\xfe\0" },
+  { 0xf95e, (unsigned char *) "\x4e\x39\0" },
+  { 0xf95f, (unsigned char *) "\x5b\xe7\0" },
+  { 0xf960, (unsigned char *) "\x60\x12\0" },
+  { 0xf961, (unsigned char *) "\x73\x87\0" },
+  { 0xf962, (unsigned char *) "\x75\x70\0" },
+  { 0xf963, (unsigned char *) "\x53\x17\0" },
+  { 0xf964, (unsigned char *) "\x78\xfb\0" },
+  { 0xf965, (unsigned char *) "\x4f\xbf\0" },
+  { 0xf966, (unsigned char *) "\x5f\xa9\0" },
+  { 0xf967, (unsigned char *) "\x4e\x0d\0" },
+  { 0xf968, (unsigned char *) "\x6c\xcc\0" },
+  { 0xf969, (unsigned char *) "\x65\x78\0" },
+  { 0xf96a, (unsigned char *) "\x7d\x22\0" },
+  { 0xf96b, (unsigned char *) "\x53\xc3\0" },
+  { 0xf96c, (unsigned char *) "\x58\x5e\0" },
+  { 0xf96d, (unsigned char *) "\x77\x01\0" },
+  { 0xf96e, (unsigned char *) "\x84\x49\0" },
+  { 0xf96f, (unsigned char *) "\x8a\xaa\0" },
+  { 0xf970, (unsigned char *) "\x6b\xba\0" },
+  { 0xf971, (unsigned char *) "\x8f\xb0\0" },
+  { 0xf972, (unsigned char *) "\x6c\x88\0" },
+  { 0xf973, (unsigned char *) "\x62\xfe\0" },
+  { 0xf974, (unsigned char *) "\x82\xe5\0" },
+  { 0xf975, (unsigned char *) "\x63\xa0\0" },
+  { 0xf976, (unsigned char *) "\x75\x65\0" },
+  { 0xf977, (unsigned char *) "\x4e\xae\0" },
+  { 0xf978, (unsigned char *) "\x51\x69\0" },
+  { 0xf979, (unsigned char *) "\x51\xc9\0" },
+  { 0xf97a, (unsigned char *) "\x68\x81\0" },
+  { 0xf97b, (unsigned char *) "\x7c\xe7\0" },
+  { 0xf97c, (unsigned char *) "\x82\x6f\0" },
+  { 0xf97d, (unsigned char *) "\x8a\xd2\0" },
+  { 0xf97e, (unsigned char *) "\x91\xcf\0" },
+  { 0xf97f, (unsigned char *) "\x52\xf5\0" },
+  { 0xf980, (unsigned char *) "\x54\x42\0" },
+  { 0xf981, (unsigned char *) "\x59\x73\0" },
+  { 0xf982, (unsigned char *) "\x5e\xec\0" },
+  { 0xf983, (unsigned char *) "\x65\xc5\0" },
+  { 0xf984, (unsigned char *) "\x6f\xfe\0" },
+  { 0xf985, (unsigned char *) "\x79\x2a\0" },
+  { 0xf986, (unsigned char *) "\x95\xad\0" },
+  { 0xf987, (unsigned char *) "\x9a\x6a\0" },
+  { 0xf988, (unsigned char *) "\x9e\x97\0" },
+  { 0xf989, (unsigned char *) "\x9e\xce\0" },
+  { 0xf98a, (unsigned char *) "\x52\x9b\0" },
+  { 0xf98b, (unsigned char *) "\x66\xc6\0" },
+  { 0xf98c, (unsigned char *) "\x6b\x77\0" },
+  { 0xf98d, (unsigned char *) "\x8f\x62\0" },
+  { 0xf98e, (unsigned char *) "\x5e\x74\0" },
+  { 0xf98f, (unsigned char *) "\x61\x90\0" },
+  { 0xf990, (unsigned char *) "\x62\x00\0" },
+  { 0xf991, (unsigned char *) "\x64\x9a\0" },
+  { 0xf992, (unsigned char *) "\x6f\x23\0" },
+  { 0xf993, (unsigned char *) "\x71\x49\0" },
+  { 0xf994, (unsigned char *) "\x74\x89\0" },
+  { 0xf995, (unsigned char *) "\x79\xca\0" },
+  { 0xf996, (unsigned char *) "\x7d\xf4\0" },
+  { 0xf997, (unsigned char *) "\x80\x6f\0" },
+  { 0xf998, (unsigned char *) "\x8f\x26\0" },
+  { 0xf999, (unsigned char *) "\x84\xee\0" },
+  { 0xf99a, (unsigned char *) "\x90\x23\0" },
+  { 0xf99b, (unsigned char *) "\x93\x4a\0" },
+  { 0xf99c, (unsigned char *) "\x52\x17\0" },
+  { 0xf99d, (unsigned char *) "\x52\xa3\0" },
+  { 0xf99e, (unsigned char *) "\x54\xbd\0" },
+  { 0xf99f, (unsigned char *) "\x70\xc8\0" },
+  { 0xf9a0, (unsigned char *) "\x88\xc2\0" },
+  { 0xf9a1, (unsigned char *) "\x8a\xaa\0" },
+  { 0xf9a2, (unsigned char *) "\x5e\xc9\0" },
+  { 0xf9a3, (unsigned char *) "\x5f\xf5\0" },
+  { 0xf9a4, (unsigned char *) "\x63\x7b\0" },
+  { 0xf9a5, (unsigned char *) "\x6b\xae\0" },
+  { 0xf9a6, (unsigned char *) "\x7c\x3e\0" },
+  { 0xf9a7, (unsigned char *) "\x73\x75\0" },
+  { 0xf9a8, (unsigned char *) "\x4e\xe4\0" },
+  { 0xf9a9, (unsigned char *) "\x56\xf9\0" },
+  { 0xf9aa, (unsigned char *) "\x5b\xe7\0" },
+  { 0xf9ab, (unsigned char *) "\x5d\xba\0" },
+  { 0xf9ac, (unsigned char *) "\x60\x1c\0" },
+  { 0xf9ad, (unsigned char *) "\x73\xb2\0" },
+  { 0xf9ae, (unsigned char *) "\x74\x69\0" },
+  { 0xf9af, (unsigned char *) "\x7f\x9a\0" },
+  { 0xf9b0, (unsigned char *) "\x80\x46\0" },
+  { 0xf9b1, (unsigned char *) "\x92\x34\0" },
+  { 0xf9b2, (unsigned char *) "\x96\xf6\0" },
+  { 0xf9b3, (unsigned char *) "\x97\x48\0" },
+  { 0xf9b4, (unsigned char *) "\x98\x18\0" },
+  { 0xf9b5, (unsigned char *) "\x4f\x8b\0" },
+  { 0xf9b6, (unsigned char *) "\x79\xae\0" },
+  { 0xf9b7, (unsigned char *) "\x91\xb4\0" },
+  { 0xf9b8, (unsigned char *) "\x96\xb8\0" },
+  { 0xf9b9, (unsigned char *) "\x60\xe1\0" },
+  { 0xf9ba, (unsigned char *) "\x4e\x86\0" },
+  { 0xf9bb, (unsigned char *) "\x50\xda\0" },
+  { 0xf9bc, (unsigned char *) "\x5b\xee\0" },
+  { 0xf9bd, (unsigned char *) "\x5c\x3f\0" },
+  { 0xf9be, (unsigned char *) "\x65\x99\0" },
+  { 0xf9bf, (unsigned char *) "\x6a\x02\0" },
+  { 0xf9c0, (unsigned char *) "\x71\xce\0" },
+  { 0xf9c1, (unsigned char *) "\x76\x42\0" },
+  { 0xf9c2, (unsigned char *) "\x84\xfc\0" },
+  { 0xf9c3, (unsigned char *) "\x90\x7c\0" },
+  { 0xf9c4, (unsigned char *) "\x9f\x8d\0" },
+  { 0xf9c5, (unsigned char *) "\x66\x88\0" },
+  { 0xf9c6, (unsigned char *) "\x96\x2e\0" },
+  { 0xf9c7, (unsigned char *) "\x52\x89\0" },
+  { 0xf9c8, (unsigned char *) "\x67\x7b\0" },
+  { 0xf9c9, (unsigned char *) "\x67\xf3\0" },
+  { 0xf9ca, (unsigned char *) "\x6d\x41\0" },
+  { 0xf9cb, (unsigned char *) "\x6e\x9c\0" },
+  { 0xf9cc, (unsigned char *) "\x74\x09\0" },
+  { 0xf9cd, (unsigned char *) "\x75\x59\0" },
+  { 0xf9ce, (unsigned char *) "\x78\x6b\0" },
+  { 0xf9cf, (unsigned char *) "\x7d\x10\0" },
+  { 0xf9d0, (unsigned char *) "\x98\x5e\0" },
+  { 0xf9d1, (unsigned char *) "\x51\x6d\0" },
+  { 0xf9d2, (unsigned char *) "\x62\x2e\0" },
+  { 0xf9d3, (unsigned char *) "\x96\x78\0" },
+  { 0xf9d4, (unsigned char *) "\x50\x2b\0" },
+  { 0xf9d5, (unsigned char *) "\x5d\x19\0" },
+  { 0xf9d6, (unsigned char *) "\x6d\xea\0" },
+  { 0xf9d7, (unsigned char *) "\x8f\x2a\0" },
+  { 0xf9d8, (unsigned char *) "\x5f\x8b\0" },
+  { 0xf9d9, (unsigned char *) "\x61\x44\0" },
+  { 0xf9da, (unsigned char *) "\x68\x17\0" },
+  { 0xf9db, (unsigned char *) "\x73\x87\0" },
+  { 0xf9dc, (unsigned char *) "\x96\x86\0" },
+  { 0xf9dd, (unsigned char *) "\x52\x29\0" },
+  { 0xf9de, (unsigned char *) "\x54\x0f\0" },
+  { 0xf9df, (unsigned char *) "\x5c\x65\0" },
+  { 0xf9e0, (unsigned char *) "\x66\x13\0" },
+  { 0xf9e1, (unsigned char *) "\x67\x4e\0" },
+  { 0xf9e2, (unsigned char *) "\x68\xa8\0" },
+  { 0xf9e3, (unsigned char *) "\x6c\xe5\0" },
+  { 0xf9e4, (unsigned char *) "\x74\x06\0" },
+  { 0xf9e5, (unsigned char *) "\x75\xe2\0" },
+  { 0xf9e6, (unsigned char *) "\x7f\x79\0" },
+  { 0xf9e7, (unsigned char *) "\x88\xcf\0" },
+  { 0xf9e8, (unsigned char *) "\x88\xe1\0" },
+  { 0xf9e9, (unsigned char *) "\x91\xcc\0" },
+  { 0xf9ea, (unsigned char *) "\x96\xe2\0" },
+  { 0xf9eb, (unsigned char *) "\x53\x3f\0" },
+  { 0xf9ec, (unsigned char *) "\x6e\xba\0" },
+  { 0xf9ed, (unsigned char *) "\x54\x1d\0" },
+  { 0xf9ee, (unsigned char *) "\x71\xd0\0" },
+  { 0xf9ef, (unsigned char *) "\x74\x98\0" },
+  { 0xf9f0, (unsigned char *) "\x85\xfa\0" },
+  { 0xf9f1, (unsigned char *) "\x96\xa3\0" },
+  { 0xf9f2, (unsigned char *) "\x9c\x57\0" },
+  { 0xf9f3, (unsigned char *) "\x9e\x9f\0" },
+  { 0xf9f4, (unsigned char *) "\x67\x97\0" },
+  { 0xf9f5, (unsigned char *) "\x6d\xcb\0" },
+  { 0xf9f6, (unsigned char *) "\x81\xe8\0" },
+  { 0xf9f7, (unsigned char *) "\x7a\xcb\0" },
+  { 0xf9f8, (unsigned char *) "\x7b\x20\0" },
+  { 0xf9f9, (unsigned char *) "\x7c\x92\0" },
+  { 0xf9fa, (unsigned char *) "\x72\xc0\0" },
+  { 0xf9fb, (unsigned char *) "\x70\x99\0" },
+  { 0xf9fc, (unsigned char *) "\x8b\x58\0" },
+  { 0xf9fd, (unsigned char *) "\x4e\xc0\0" },
+  { 0xf9fe, (unsigned char *) "\x83\x36\0" },
+  { 0xf9ff, (unsigned char *) "\x52\x3a\0" },
+  { 0xfa00, (unsigned char *) "\x52\x07\0" },
+  { 0xfa01, (unsigned char *) "\x5e\xa6\0" },
+  { 0xfa02, (unsigned char *) "\x62\xd3\0" },
+  { 0xfa03, (unsigned char *) "\x7c\xd6\0" },
+  { 0xfa04, (unsigned char *) "\x5b\x85\0" },
+  { 0xfa05, (unsigned char *) "\x6d\x1e\0" },
+  { 0xfa06, (unsigned char *) "\x66\xb4\0" },
+  { 0xfa07, (unsigned char *) "\x8f\x3b\0" },
+  { 0xfa08, (unsigned char *) "\x88\x4c\0" },
+  { 0xfa09, (unsigned char *) "\x96\x4d\0" },
+  { 0xfa0a, (unsigned char *) "\x89\x8b\0" },
+  { 0xfa0b, (unsigned char *) "\x5e\xd3\0" },
+  { 0xfa0c, (unsigned char *) "\x51\x40\0" },
+  { 0xfa0d, (unsigned char *) "\x55\xc0\0" },
+  { 0xfa10, (unsigned char *) "\x58\x5a\0" },
+  { 0xfa12, (unsigned char *) "\x66\x74\0" },
+  { 0xfa15, (unsigned char *) "\x51\xde\0" },
+  { 0xfa16, (unsigned char *) "\x73\x2a\0" },
+  { 0xfa17, (unsigned char *) "\x76\xca\0" },
+  { 0xfa18, (unsigned char *) "\x79\x3c\0" },
+  { 0xfa19, (unsigned char *) "\x79\x5e\0" },
+  { 0xfa1a, (unsigned char *) "\x79\x65\0" },
+  { 0xfa1b, (unsigned char *) "\x79\x8f\0" },
+  { 0xfa1c, (unsigned char *) "\x97\x56\0" },
+  { 0xfa1d, (unsigned char *) "\x7c\xbe\0" },
+  { 0xfa1e, (unsigned char *) "\x7f\xbd\0" },
+  { 0xfa20, (unsigned char *) "\x86\x12\0" },
+  { 0xfa22, (unsigned char *) "\x8a\xf8\0" },
+  { 0xfa25, (unsigned char *) "\x90\x38\0" },
+  { 0xfa26, (unsigned char *) "\x90\xfd\0" },
+  { 0xfa2a, (unsigned char *) "\x98\xef\0" },
+  { 0xfa2b, (unsigned char *) "\x98\xfc\0" },
+  { 0xfa2c, (unsigned char *) "\x99\x28\0" },
+  { 0xfa2d, (unsigned char *) "\x9d\xb4\0" },
+  { 0xfb1f, (unsigned char *) "\x05\xf2\x05\xb7\0" },
+  { 0xfb2a, (unsigned char *) "\x05\xe9\x05\xc1\0" },
+  { 0xfb2b, (unsigned char *) "\x05\xe9\x05\xc2\0" },
+  { 0xfb2c, (unsigned char *) "\x05\xe9\x05\xbc\x05\xc1\0" },
+  { 0xfb2d, (unsigned char *) "\x05\xe9\x05\xbc\x05\xc2\0" },
+  { 0xfb2e, (unsigned char *) "\x05\xd0\x05\xb7\0" },
+  { 0xfb2f, (unsigned char *) "\x05\xd0\x05\xb8\0" },
+  { 0xfb30, (unsigned char *) "\x05\xd0\x05\xbc\0" },
+  { 0xfb31, (unsigned char *) "\x05\xd1\x05\xbc\0" },
+  { 0xfb32, (unsigned char *) "\x05\xd2\x05\xbc\0" },
+  { 0xfb33, (unsigned char *) "\x05\xd3\x05\xbc\0" },
+  { 0xfb34, (unsigned char *) "\x05\xd4\x05\xbc\0" },
+  { 0xfb35, (unsigned char *) "\x05\xd5\x05\xbc\0" },
+  { 0xfb36, (unsigned char *) "\x05\xd6\x05\xbc\0" },
+  { 0xfb38, (unsigned char *) "\x05\xd8\x05\xbc\0" },
+  { 0xfb39, (unsigned char *) "\x05\xd9\x05\xbc\0" },
+  { 0xfb3a, (unsigned char *) "\x05\xda\x05\xbc\0" },
+  { 0xfb3b, (unsigned char *) "\x05\xdb\x05\xbc\0" },
+  { 0xfb3c, (unsigned char *) "\x05\xdc\x05\xbc\0" },
+  { 0xfb3e, (unsigned char *) "\x05\xde\x05\xbc\0" },
+  { 0xfb40, (unsigned char *) "\x05\xe0\x05\xbc\0" },
+  { 0xfb41, (unsigned char *) "\x05\xe1\x05\xbc\0" },
+  { 0xfb43, (unsigned char *) "\x05\xe3\x05\xbc\0" },
+  { 0xfb44, (unsigned char *) "\x05\xe4\x05\xbc\0" },
+  { 0xfb46, (unsigned char *) "\x05\xe6\x05\xbc\0" },
+  { 0xfb47, (unsigned char *) "\x05\xe7\x05\xbc\0" },
+  { 0xfb48, (unsigned char *) "\x05\xe8\x05\xbc\0" },
+  { 0xfb49, (unsigned char *) "\x05\xe9\x05\xbc\0" },
+  { 0xfb4a, (unsigned char *) "\x05\xea\x05\xbc\0" },
+  { 0xfb4b, (unsigned char *) "\x05\xd5\x05\xb9\0" },
+  { 0xfb4c, (unsigned char *) "\x05\xd1\x05\xbf\0" },
+  { 0xfb4d, (unsigned char *) "\x05\xdb\x05\xbf\0" },
+  { 0xfb4e, (unsigned char *) "\x05\xe4\x05\xbf\0" }
 };
 
 #endif /* DECOMP_H */