annotate libcpp/ucnid.h @ 108:7ad14f446135

add CbC-example/rectypeTest/
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jun 2012 20:30:24 +0900
parents a06113de4d67
children 04ced10e8804
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Unicode characters and various properties.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 Copyright (C) 2003, 2005, 2009 Free Software Foundation, Inc.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify it
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 under the terms of the GNU General Public License as published by the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 Free Software Foundation; either version 3, or (at your option) any
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 later version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 GNU General Public License for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 along with this program; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 <http://www.gnu.org/licenses/>.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 Copyright (C) 1991-2005 Unicode, Inc. All rights reserved.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 Distributed under the Terms of Use in
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 http://www.unicode.org/copyright.html.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23 Permission is hereby granted, free of charge, to any person
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 obtaining a copy of the Unicode data files and any associated
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25 documentation (the "Data Files") or Unicode software and any
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26 associated documentation (the "Software") to deal in the Data Files
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 or Software without restriction, including without limitation the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 rights to use, copy, modify, merge, publish, distribute, and/or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 sell copies of the Data Files or Software, and to permit persons to
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 whom the Data Files or Software are furnished to do so, provided
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 that (a) the above copyright notice(s) and this permission notice
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 appear with all copies of the Data Files or Software, (b) both the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 above copyright notice(s) and this permission notice appear in
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 associated documentation, and (c) there is clear notice in each
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35 modified Data File or in the Software as well as in the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 documentation associated with the Data File(s) or Software that the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 data or software has been modified.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
46 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
47 ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
48 OF THE DATA FILES OR SOFTWARE.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
50 Except as contained in this notice, the name of a copyright holder
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
51 shall not be used in advertising or otherwise to promote the sale,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
52 use or other dealings in these Data Files or Software without prior
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
53 written authorization of the copyright holder. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
54
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
55 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x00a9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
56 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x00aa },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x00b4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x00b5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x00b6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x00b7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x00b9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x00ba },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x00bf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x00d6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x00d7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
66 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x00f6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x00f7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0131 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0133 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x013e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0140 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0148 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0149 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
74 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x017e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x017f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x01c3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x01cc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x01f0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
79 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x01f3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
80 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x01f5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
81 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x01f9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
82 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0217 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
83 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x024f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
84 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x02a8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
85 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x02af },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
86 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x02b8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x02ba },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x02bb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x02bc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x02c1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
91 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x02cf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
92 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x02d1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
93 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x02df },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
94 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x02e4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0379 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x037a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
97 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0383 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0x0384 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x0385 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0386 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
101 { 0| 0| 0|CID| 0| 0| 0, 0, 0x0387 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
102 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x038a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
103 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x038b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
104 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x038c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
105 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x038d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
106 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03a1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03a2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
108 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03ce },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
109 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03cf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
110 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x03d6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
111 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03d9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
112 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03da },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
113 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03db },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
114 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03dc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
115 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03dd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
116 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03de },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
117 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03df },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
118 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03e0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
119 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x03e1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
120 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03ef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
121 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x03f2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
122 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x03f3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
123 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x0400 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
124 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x040c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
125 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x040d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
126 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x040e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
127 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x044f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
128 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0450 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
129 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x045c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
130 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x045d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
131 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0481 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
132 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x048f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
133 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x04c4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
134 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x04c6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
135 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x04c8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
136 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x04ca },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
137 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x04cc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
138 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x04cf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
139 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x04eb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
140 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x04ed },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
141 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x04f5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
142 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x04f7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
143 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x04f9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0530 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
145 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0556 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
146 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0558 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
147 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0559 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
148 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0560 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
149 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0586 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
150 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0587 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
151 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x05af },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
152 { C99| 0| 0|CID|NFC|NKC| 0, 10, 0x05b0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
153 { C99| 0| 0|CID|NFC|NKC| 0, 11, 0x05b1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
154 { C99| 0| 0|CID|NFC|NKC| 0, 12, 0x05b2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
155 { C99| 0| 0|CID|NFC|NKC| 0, 13, 0x05b3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
156 { C99| 0| 0|CID|NFC|NKC| 0, 14, 0x05b4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
157 { C99| 0| 0|CID|NFC|NKC| 0, 15, 0x05b5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
158 { C99| 0| 0|CID|NFC|NKC| 0, 16, 0x05b6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
159 { C99| 0| 0|CID|NFC|NKC| 0, 17, 0x05b7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
160 { C99| 0| 0|CID|NFC|NKC| 0, 18, 0x05b8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
161 { C99| 0| 0|CID|NFC|NKC| 0, 19, 0x05b9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
162 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x05ba },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
163 { C99| 0| 0|CID|NFC|NKC| 0, 20, 0x05bb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164 { C99| 0| 0|CID|NFC|NKC| 0, 21, 0x05bc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
165 { C99| 0| 0|CID|NFC|NKC| 0, 22, 0x05bd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
166 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x05be },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
167 { C99| 0| 0|CID|NFC|NKC| 0, 23, 0x05bf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
168 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x05c0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
169 { C99| 0| 0|CID|NFC|NKC| 0, 24, 0x05c1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170 { C99| 0| 0|CID|NFC|NKC| 0, 25, 0x05c2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
171 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x05cf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
172 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x05ea },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
173 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x05ef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
174 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x05f2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
175 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x05f4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
176 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0620 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
177 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x063a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
178 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x063f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
179 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x064a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
180 { C99| 0|CXX|CID|NFC|NKC| 0, 27, 0x064b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
181 { C99| 0|CXX|CID|NFC|NKC| 0, 28, 0x064c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
182 { C99| 0|CXX|CID|NFC|NKC| 0, 29, 0x064d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
183 { C99| 0|CXX|CID|NFC|NKC| 0, 30, 0x064e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
184 { C99| 0|CXX|CID|NFC|NKC| 0, 31, 0x064f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
185 { C99| 0|CXX|CID|NFC|NKC| 0, 32, 0x0650 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
186 { C99| 0|CXX|CID|NFC|NKC| 0, 33, 0x0651 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
187 { C99| 0|CXX|CID|NFC|NKC| 0, 34, 0x0652 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
188 { 0| 0| 0|CID|NFC|NKC|CTX, 0, 0x065f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
189 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0669 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
190 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x066f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
191 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0674 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
192 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0678 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
193 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x06b7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
194 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x06b9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
195 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x06be },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
196 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x06bf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
197 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x06ce },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
198 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x06cf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
199 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x06d5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
200 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06d6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
201 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06d7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06d8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06d9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06da },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06db },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
206 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06dc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
207 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x06e4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x06e6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
209 { C99| 0|CXX|CID|NFC|NKC| 0, 230, 0x06e7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
210 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06e8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
211 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x06e9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
212 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x06ea },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
213 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06eb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
214 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x06ec },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
215 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x06ed },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
216 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x06ef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
217 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x06f9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
218 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0900 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
219 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0903 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
220 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0904 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
221 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0939 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
222 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x093c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
223 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x094c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
224 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x094d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x094f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
226 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0950 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x0951 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x0952 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
229 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0957 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x095f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
231 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0962 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0963 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
233 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0965 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x096f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
235 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0980 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
236 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0983 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
237 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0984 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
238 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x098c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
239 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x098e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
240 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0990 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
241 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0992 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
242 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x09a8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
243 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09a9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
244 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x09b0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
245 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09b1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
246 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x09b2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
247 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09b5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
248 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x09b9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
249 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09bd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
250 { C99| 0| 0|CID|NFC|NKC|CTX, 0, 0x09be },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
251 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x09c4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
252 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09c6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
253 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x09c8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
254 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09ca },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
255 { C99| 0| 0| 0|NFC|NKC| 0, 0, 0x09cb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
256 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x09cc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
257 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x09cd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
258 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09db },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
259 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x09dd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
260 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09de },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
261 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x09df },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
262 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x09e1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
263 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x09e3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
264 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x09e5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
265 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x09ef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
266 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x09f1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
267 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a01 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
268 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0a02 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
269 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a04 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
270 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a0a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
271 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a0e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
272 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a10 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
273 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a12 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
274 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a28 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
275 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a29 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
276 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a30 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
277 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a31 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
278 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a32 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
279 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x0a33 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
280 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a34 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
281 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a35 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
282 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x0a36 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
283 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a37 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
284 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a39 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
285 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
286 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0a42 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
287 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a46 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
288 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0a48 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a4a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
290 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0a4c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
291 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0a4d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
292 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a58 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
293 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x0a5b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
294 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a5c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
295 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a5d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
296 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x0a5e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
297 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a65 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
298 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0a6f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
299 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a73 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
300 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0a74 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
301 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a80 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
302 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0a83 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
303 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a84 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
304 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a8b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
305 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a8c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
306 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a8d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
307 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a8e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0a91 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
309 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0a92 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
310 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0aa8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
311 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0aa9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
312 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ab0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
313 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ab1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
314 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ab3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
315 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ab4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
316 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ab9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
317 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0abc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
318 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0ac5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
319 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ac6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
320 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0ac9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
321 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0aca },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
322 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0acc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
323 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0acd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
324 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0acf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
325 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0ad0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
326 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0adf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
327 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ae0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
328 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ae5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
329 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0aef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
330 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b00 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
331 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0b03 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
332 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b04 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
333 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b0c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
334 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b0e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
335 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b10 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
336 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b12 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
337 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b28 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
338 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b29 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
339 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b30 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
340 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b31 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
341 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b33 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
342 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b35 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
343 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b39 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
344 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b3c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
345 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0b3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
346 { C99| 0| 0|CID|NFC|NKC|CTX, 0, 0x0b3e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
347 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0b43 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
348 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b46 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
349 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0b48 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
350 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b4a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
351 { C99| 0| 0| 0|NFC|NKC| 0, 0, 0x0b4b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
352 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0b4c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
353 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0b4d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
354 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b5b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
355 { C99| 0|CXX|CID| 0| 0| 0, 0, 0x0b5d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
356 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b5e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
357 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b61 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
358 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b65 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
359 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0b6f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
360 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b81 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
361 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0b83 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
362 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b84 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
363 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b8a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
364 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b8d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
365 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b90 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
366 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b91 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
367 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b95 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
368 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b98 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
369 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b9a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
370 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b9b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
371 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b9c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
372 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0b9d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
373 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0b9f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
374 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ba2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
375 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ba4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
376 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ba7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
377 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0baa },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
378 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0bad },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
379 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0bb5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
380 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0bb6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
381 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0bb9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
382 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0bbd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
383 { C99| 0| 0|CID|NFC|NKC|CTX, 0, 0x0bbe },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
384 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0bc2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
385 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0bc5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
386 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0bc8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
387 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0bc9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
388 { C99| 0| 0| 0|NFC|NKC| 0, 0, 0x0bcb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
389 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0bcc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
390 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0bcd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
391 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0be6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
392 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0bef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
393 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c00 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
394 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0c03 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
395 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c04 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
396 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c0c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
397 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c0d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
398 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c10 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
399 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c11 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
400 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c28 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
401 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c29 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
402 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c33 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
403 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c34 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
404 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c39 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
405 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
406 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0c44 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
407 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c45 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
408 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0c48 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
409 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c49 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
410 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0c4c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
411 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0c4d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
412 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c5f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
413 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c61 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
414 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c65 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
415 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0c6f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
416 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c81 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
417 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0c83 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
418 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c84 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
419 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c8c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
420 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c8d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
421 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0c90 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
422 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0c91 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
423 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ca8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
424 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ca9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
425 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0cb3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
426 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0cb4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
427 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0cb9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
428 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0cbd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
429 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0cc1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
430 { C99| 0| 0|CID|NFC|NKC|CTX, 0, 0x0cc2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
431 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0cc4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
432 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0cc5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
433 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0cc8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
434 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0cc9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
435 { C99| 0| 0| 0|NFC|NKC| 0, 0, 0x0cca },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
436 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0ccc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
437 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0ccd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
438 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0cdd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
439 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0cde },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
440 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0cdf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
441 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ce1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
442 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ce5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
443 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0cef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
444 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d01 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
445 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0d03 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
446 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d04 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
447 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0d0c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
448 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d0d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
449 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0d10 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
450 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d11 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
451 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0d28 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
452 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d29 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
453 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0d39 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
454 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
455 { C99| 0| 0|CID|NFC|NKC|CTX, 0, 0x0d3e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
456 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0d43 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
457 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d45 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
458 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0d48 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
459 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d49 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
460 { C99| 0| 0| 0|NFC|NKC| 0, 0, 0x0d4b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
461 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0d4c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
462 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0d4d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
463 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d5f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
464 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0d61 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
465 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0d65 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
466 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0d6f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
467 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e00 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
468 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e30 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
469 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0e31 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
470 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e32 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
471 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0e33 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
472 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0e37 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
473 { C99| 0| 0|CID|NFC|NKC| 0, 103, 0x0e38 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
474 { C99| 0| 0|CID|NFC|NKC| 0, 103, 0x0e39 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
475 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0e3a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
476 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e3f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
477 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e46 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
478 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0e47 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
479 { C99| 0| 0|CID|NFC|NKC| 0, 107, 0x0e48 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
480 { C99| 0| 0|CID|NFC|NKC| 0, 107, 0x0e49 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
481 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e4e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
482 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e4f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
483 { C99|DIG|CXX|CID|NFC|NKC| 0, 0, 0x0e59 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
484 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e5b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
485 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e80 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
486 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e82 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
487 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e83 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
488 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e84 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
489 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e86 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
490 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e88 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
491 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e89 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
492 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e8a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
493 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e8c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
494 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e8d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
495 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e93 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
496 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e97 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
497 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0e98 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
498 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0e9f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
499 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ea0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
500 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ea3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
501 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ea4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
502 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ea5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
503 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ea6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
504 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ea7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
505 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ea9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
506 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0eab },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
507 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0eac },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
508 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0eae },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
509 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x0eaf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
510 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0eb0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
511 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0eb1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
512 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0eb2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
513 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x0eb3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
514 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0eb7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
515 { C99| 0| 0|CID|NFC|NKC| 0, 118, 0x0eb8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
516 { C99| 0| 0|CID|NFC|NKC| 0, 118, 0x0eb9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
517 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0eba },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
518 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0ebc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
519 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ebd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
520 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ebf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
521 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ec4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
522 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ec5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
523 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x0ec6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
524 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ec7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
525 { C99| 0| 0|CID|NFC|NKC| 0, 122, 0x0ec8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
526 { C99| 0| 0|CID|NFC|NKC| 0, 122, 0x0ec9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
527 { C99| 0| 0|CID|NFC|NKC| 0, 122, 0x0eca },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
528 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0ecd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
529 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0ecf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
530 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0ed9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
531 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0edb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
532 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x0edd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
533 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0eff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
534 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f00 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
535 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f17 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
536 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x0f18 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
537 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x0f19 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
538 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f1f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
539 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x0f33 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
540 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f34 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
541 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x0f35 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
542 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f36 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
543 { C99| 0| 0|CID|NFC|NKC| 0, 220, 0x0f37 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
544 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f38 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
545 { C99| 0| 0|CID|NFC|NKC| 0, 216, 0x0f39 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
546 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
547 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f42 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
548 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f43 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
549 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f47 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
550 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f48 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
551 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f4c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
552 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f4d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
553 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f51 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
554 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f52 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
555 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f56 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
556 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f57 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
557 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f5b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
558 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f5c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
559 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f68 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
560 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f69 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
561 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f70 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
562 { C99| 0| 0|CID|NFC|NKC| 0, 129, 0x0f71 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
563 { C99| 0| 0|CID|NFC|NKC| 0, 130, 0x0f72 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
564 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f73 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
565 { C99| 0| 0|CID|NFC|NKC| 0, 132, 0x0f74 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
566 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f76 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
567 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x0f77 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
568 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f78 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
569 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x0f79 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
570 { C99| 0| 0|CID|NFC|NKC| 0, 130, 0x0f7a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
571 { C99| 0| 0|CID|NFC|NKC| 0, 130, 0x0f7b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
572 { C99| 0| 0|CID|NFC|NKC| 0, 130, 0x0f7c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
573 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f7f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
574 { C99| 0| 0|CID|NFC|NKC| 0, 130, 0x0f80 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
575 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f81 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
576 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x0f82 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
577 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x0f83 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
578 { C99| 0| 0|CID|NFC|NKC| 0, 9, 0x0f84 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
579 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f85 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
580 { C99| 0| 0|CID|NFC|NKC| 0, 230, 0x0f86 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
581 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f8b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
582 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f8f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
583 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f92 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
584 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f93 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
585 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f95 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
586 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f96 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
587 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f97 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
588 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0f98 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
589 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0f9c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
590 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0f9d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
591 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0fa1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
592 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0fa2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
593 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0fa6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
594 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0fa7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
595 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0fab },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
596 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0fac },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
597 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0fad },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
598 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0fb0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
599 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x0fb7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
600 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x0fb8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
601 { C99| 0| 0| 0| 0| 0| 0, 0, 0x0fb9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
602 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x109f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
603 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x10c5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
604 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x10cf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
605 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x10f6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
606 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x10ff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
607 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x1159 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
608 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1160 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
609 { 0| 0|CXX|CID|NFC|NKC|CTX, 0, 0x1175 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
610 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x11a2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
611 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x11a7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
612 { 0| 0|CXX|CID|NFC|NKC|CTX, 0, 0x11c2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
613 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x11f9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
614 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1dff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
615 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1e99 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
616 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x1e9a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
617 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x1e9b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
618 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1e9f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
619 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1ef9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
620 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1eff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
621 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f15 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
622 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f17 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
623 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f1d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
624 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f1f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
625 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f45 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
626 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f47 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
627 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f4d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
628 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f4f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
629 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f57 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
630 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f58 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
631 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f59 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
632 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f5a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
633 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f5b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
634 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f5c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
635 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f5d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
636 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f5e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
637 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f70 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
638 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f71 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
639 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f72 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
640 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f73 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
641 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f74 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
642 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f75 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
643 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f76 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
644 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f77 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
645 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f78 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
646 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f79 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
647 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f7a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
648 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f7b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
649 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1f7c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
650 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1f7d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
651 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1f7f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
652 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fb4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
653 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1fb5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
654 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fba },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
655 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1fbb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
656 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fbc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
657 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x1fbd },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
658 { C99| 0| 0| 0| 0| 0| 0, 0, 0x1fbe },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
659 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x1fc1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
660 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fc4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
661 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1fc5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
662 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fc8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
663 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1fc9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
664 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fca },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
665 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1fcb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
666 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fcc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
667 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x1fcf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
668 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fd2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
669 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1fd3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
670 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1fd5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
671 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fda },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
672 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1fdb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
673 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1fdf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
674 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fe2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
675 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1fe3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
676 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fea },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
677 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1feb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
678 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1fec },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
679 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x1ff1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
680 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1ff4 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
681 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x1ff5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
682 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1ff8 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
683 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1ff9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
684 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1ffa },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
685 { C99| 0|CXX| 0| 0| 0| 0, 0, 0x1ffb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
686 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x1ffc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
687 { 0| 0| 0|CID| 0| 0| 0, 0, 0x203e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
688 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x2040 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
689 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x207e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
690 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x207f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
691 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x2101 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
692 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2102 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
693 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x2106 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
694 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2107 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
695 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2109 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
696 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2113 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
697 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2114 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
698 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2115 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
699 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x2117 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
700 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x2118 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
701 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x211d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
702 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2123 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
703 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2124 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
704 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2125 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
705 { C99| 0| 0| 0| 0| 0| 0, 0, 0x2126 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
706 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2127 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
707 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2128 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
708 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2129 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
709 { C99| 0| 0|CID| 0| 0| 0, 0, 0x212a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
710 { C99| 0| 0| 0| 0| 0| 0, 0, 0x212b },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
711 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x212d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
712 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x212e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
713 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2131 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
714 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x2132 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
715 { C99| 0| 0|CID|NFC| 0| 0, 0, 0x2138 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
716 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x215f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
717 { C99|DIG| 0|CID|NFC| 0| 0, 0, 0x217f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
718 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x2182 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
719 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x3004 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
720 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0x3006 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
721 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x3007 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
722 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x3020 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
723 { C99|DIG| 0|CID|NFC|NKC| 0, 0, 0x3029 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
724 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x3040 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
725 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x3093 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
726 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x3094 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
727 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x309a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
728 { C99| 0|CXX|CID|NFC| 0| 0, 0, 0x309c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
729 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x309e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
730 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x30a0 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
731 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x30f6 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
732 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x30fa },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
733 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x30fc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
734 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0x30fe },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
735 { 0| 0| 0|CID|NFC| 0| 0, 0, 0x3104 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
736 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x312c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
737 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0x4dff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
738 { C99| 0|CXX|CID|NFC|NKC| 0, 0, 0x9fa5 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
739 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xabff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
740 { C99| 0| 0|CID|NFC|NKC| 0, 0, 0xd7a3 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
741 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xf8ff },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
742 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa0d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
743 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa0f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
744 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa10 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
745 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa11 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
746 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa12 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
747 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa14 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
748 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa1e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
749 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa1f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
750 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa20 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
751 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa21 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
752 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa22 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
753 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa24 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
754 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa26 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
755 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfa29 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
756 { 0| 0|CXX| 0| 0| 0| 0, 0, 0xfa2d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
757 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfb1e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
758 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb1f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
759 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfb29 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
760 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb36 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
761 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfb37 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
762 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb3c },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
763 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfb3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
764 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb3e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
765 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfb3f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
766 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb41 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
767 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfb42 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
768 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb44 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
769 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfb45 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
770 { 0| 0|CXX|CID| 0| 0| 0, 0, 0xfb4e },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
771 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfbb1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
772 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfbd2 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
773 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfd3d },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
774 { 0| 0|CXX|CID|NFC|NKC| 0, 0, 0xfd3f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
775 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfd4f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
776 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfd8f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
777 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfd91 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
778 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfdc7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
779 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfdef },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
780 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfdfb },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
781 { 0| 0| 0|CID|NFC| 0| 0, 0, 0xfe6f },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
782 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfe72 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
783 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfe73 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
784 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfe74 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
785 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xfe75 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
786 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xfefc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
787 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xff20 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
788 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xff3a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
789 { 0| 0| 0|CID|NFC| 0| 0, 0, 0xff40 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
790 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xff5a },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
791 { 0| 0| 0|CID|NFC| 0| 0, 0, 0xff65 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
792 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xffbe },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
793 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xffc1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
794 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xffc7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
795 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xffc9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
796 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xffcf },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
797 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xffd1 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
798 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xffd7 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
799 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xffd9 },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
800 { 0| 0|CXX|CID|NFC| 0| 0, 0, 0xffdc },
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
801 { 0| 0| 0|CID|NFC|NKC| 0, 0, 0xffff },