jdk/src/java.desktop/share/classes/sun/font/ScriptRunData.java
author prr
Wed, 09 Nov 2016 11:28:13 -0800
changeset 42208 7c1017f0ade5
parent 39548 ad363c42f790
permissions -rw-r--r--
8155874: Fix java.desktop deprecation warnings about Class.newInstance Reviewed-by: serb, alexsch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *******************************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * Copyright (C) 2003, International Business Machines Corporation and         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * others. All Rights Reserved.                                                *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *******************************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
package sun.font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public final class ScriptRunData {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    private ScriptRunData() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    private static final int CHAR_START = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static final int CHAR_LIMIT = 0x110000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private static int cache = 0;
26004
7507a1b93f67 6521783: Unnecessary final modifier for a method in a final class
serb
parents: 5506
diff changeset
    42
    public static int getScript(int cp) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        // optimize for runs of characters in the same script
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        if (cp >= data[cache] && cp < data[cache+2]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
            return data[cache+1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        }
39548
ad363c42f790 8160693: ScriptRunData.java uses bitwise AND instead of logical AND
prr
parents: 26037
diff changeset
    47
        if ((cp >= CHAR_START) && (cp < CHAR_LIMIT)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            int probe = dataPower;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
            int index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
            if (cp >= data[dataExtra]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                index = dataExtra;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            while (probe > 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                probe >>= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                if (cp >= data[index + probe]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                    index += probe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            cache = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            return data[index+1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        throw new IllegalArgumentException(Integer.toString(cp));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private static final int[] data = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        0x000000, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        0x000041, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        0x00005B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        0x000061, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        0x00007B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        0x0000AA, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        0x0000AB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        0x0000B5, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        0x0000B6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        0x0000BA, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        0x0000BB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        0x0000C0, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        0x0000D7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        0x0000D8, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        0x0000F7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        0x0000F8, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        0x000221, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        0x000222, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        0x000234, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        0x000250, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        0x0002AE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        0x0002B0, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        0x0002B9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        0x0002E0, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        0x0002E5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        0x000300, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        0x000350, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        0x000360, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        0x000370, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        0x00037A, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        0x00037B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        0x000386, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        0x000387, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        0x000388, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        0x00038B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        0x00038C, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        0x00038D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        0x00038E, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        0x0003A2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        0x0003A3, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        0x0003CF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        0x0003D0, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        0x0003F6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        0x000400, 0x08, // 'cyrl' cyrillic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        0x000482, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        0x000483, 0x08, // 'cyrl' cyrillic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        0x000487, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        0x000488, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        0x00048A, 0x08, // 'cyrl' cyrillic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        0x0004CF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        0x0004D0, 0x08, // 'cyrl' cyrillic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        0x0004F6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        0x0004F8, 0x08, // 'cyrl' cyrillic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        0x0004FA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        0x000500, 0x08, // 'cyrl' cyrillic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        0x000510, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        0x000531, 0x03, // 'armn' armenian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        0x000557, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        0x000559, 0x03, // 'armn' armenian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        0x00055A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        0x000561, 0x03, // 'armn' armenian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        0x000588, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        0x000591, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        0x0005A2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        0x0005A3, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        0x0005BA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        0x0005BB, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        0x0005BE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        0x0005BF, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        0x0005C0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        0x0005C1, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        0x0005C3, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        0x0005C4, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        0x0005C5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        0x0005D0, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        0x0005EB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        0x0005F0, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        0x0005F3, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        0x000621, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        0x00063B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        0x000641, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        0x00064B, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        0x000656, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        0x00066E, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        0x000670, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        0x000671, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        0x0006D4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        0x0006D5, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        0x0006D6, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        0x0006E5, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        0x0006E7, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        0x0006E9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        0x0006EA, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        0x0006EE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        0x0006FA, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        0x0006FD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        0x000710, 0x22, // 'syrc' syriac
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        0x00072D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        0x000730, 0x22, // 'syrc' syriac
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        0x00074B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        0x000780, 0x25, // 'thaa' thaana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        0x0007B2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        0x000901, 0x0A, // 'deva' devanagari
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        0x000904, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        0x000905, 0x0A, // 'deva' devanagari
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        0x00093A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        0x00093C, 0x0A, // 'deva' devanagari
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        0x00094E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        0x000950, 0x0A, // 'deva' devanagari
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        0x000955, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        0x000958, 0x0A, // 'deva' devanagari
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        0x000964, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        0x000966, 0x0A, // 'deva' devanagari
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        0x000970, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        0x000981, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        0x000984, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        0x000985, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        0x00098D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        0x00098F, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        0x000991, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        0x000993, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        0x0009A9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        0x0009AA, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        0x0009B1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        0x0009B2, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        0x0009B3, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        0x0009B6, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        0x0009BA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        0x0009BC, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        0x0009BD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        0x0009BE, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        0x0009C5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        0x0009C7, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        0x0009C9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        0x0009CB, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        0x0009CE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        0x0009D7, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        0x0009D8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        0x0009DC, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        0x0009DE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        0x0009DF, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        0x0009E4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        0x0009E6, 0x04, // 'beng' bengali
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        0x0009F2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        0x000A02, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        0x000A03, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        0x000A05, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        0x000A0B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        0x000A0F, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        0x000A11, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        0x000A13, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        0x000A29, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        0x000A2A, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        0x000A31, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        0x000A32, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        0x000A34, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        0x000A35, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        0x000A37, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        0x000A38, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        0x000A3A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        0x000A3C, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        0x000A3D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        0x000A3E, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        0x000A43, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        0x000A47, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        0x000A49, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        0x000A4B, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        0x000A4E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        0x000A59, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        0x000A5D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        0x000A5E, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        0x000A5F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        0x000A66, 0x10, // 'guru' gurmukhi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        0x000A75, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        0x000A81, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        0x000A84, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        0x000A85, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        0x000A8C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        0x000A8D, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        0x000A8E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        0x000A8F, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        0x000A92, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        0x000A93, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        0x000AA9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        0x000AAA, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        0x000AB1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        0x000AB2, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        0x000AB4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        0x000AB5, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        0x000ABA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        0x000ABC, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        0x000AC6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        0x000AC7, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        0x000ACA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        0x000ACB, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        0x000ACE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        0x000AD0, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        0x000AD1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        0x000AE0, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        0x000AE1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        0x000AE6, 0x0F, // 'gujr' gujarati
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        0x000AF0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        0x000B01, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        0x000B04, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        0x000B05, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        0x000B0D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        0x000B0F, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        0x000B11, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        0x000B13, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        0x000B29, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        0x000B2A, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        0x000B31, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        0x000B32, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        0x000B34, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        0x000B36, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        0x000B3A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        0x000B3C, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        0x000B44, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        0x000B47, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        0x000B49, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        0x000B4B, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        0x000B4E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        0x000B56, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        0x000B58, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        0x000B5C, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        0x000B5E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        0x000B5F, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        0x000B62, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        0x000B66, 0x1F, // 'orya' oriya
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        0x000B70, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        0x000B82, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        0x000B84, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        0x000B85, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        0x000B8B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        0x000B8E, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        0x000B91, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        0x000B92, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        0x000B96, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        0x000B99, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        0x000B9B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        0x000B9C, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        0x000B9D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        0x000B9E, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        0x000BA0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        0x000BA3, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        0x000BA5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        0x000BA8, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        0x000BAB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        0x000BAE, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        0x000BB6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        0x000BB7, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        0x000BBA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        0x000BBE, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        0x000BC3, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        0x000BC6, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        0x000BC9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        0x000BCA, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        0x000BCE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        0x000BD7, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        0x000BD8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        0x000BE7, 0x23, // 'taml' tamil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        0x000BF3, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        0x000C01, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        0x000C04, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        0x000C05, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        0x000C0D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        0x000C0E, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        0x000C11, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        0x000C12, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        0x000C29, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        0x000C2A, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        0x000C34, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        0x000C35, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        0x000C3A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        0x000C3E, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        0x000C45, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        0x000C46, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        0x000C49, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        0x000C4A, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        0x000C4E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        0x000C55, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        0x000C57, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        0x000C60, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        0x000C62, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        0x000C66, 0x24, // 'telu' telugu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        0x000C70, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        0x000C82, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        0x000C84, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        0x000C85, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        0x000C8D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        0x000C8E, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        0x000C91, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        0x000C92, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        0x000CA9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        0x000CAA, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        0x000CB4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        0x000CB5, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        0x000CBA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        0x000CBE, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        0x000CC5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        0x000CC6, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        0x000CC9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        0x000CCA, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        0x000CCE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        0x000CD5, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        0x000CD7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        0x000CDE, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        0x000CDF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        0x000CE0, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        0x000CE2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        0x000CE6, 0x15, // 'knda' kannada
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        0x000CF0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        0x000D02, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        0x000D04, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        0x000D05, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        0x000D0D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        0x000D0E, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        0x000D11, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        0x000D12, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        0x000D29, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        0x000D2A, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        0x000D3A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        0x000D3E, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        0x000D44, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        0x000D46, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        0x000D49, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        0x000D4A, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        0x000D4E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        0x000D57, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        0x000D58, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        0x000D60, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        0x000D62, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        0x000D66, 0x1A, // 'mlym' malayalam
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        0x000D70, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        0x000D82, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        0x000D84, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        0x000D85, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        0x000D97, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        0x000D9A, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        0x000DB2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        0x000DB3, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        0x000DBC, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        0x000DBD, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        0x000DBE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        0x000DC0, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        0x000DC7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        0x000DCA, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        0x000DCB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        0x000DCF, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        0x000DD5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        0x000DD6, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        0x000DD7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        0x000DD8, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        0x000DE0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        0x000DF2, 0x21, // 'sinh' sinhala
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        0x000DF4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        0x000E01, 0x26, // 'thai' thai
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        0x000E3B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        0x000E40, 0x26, // 'thai' thai
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        0x000E4F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        0x000E50, 0x26, // 'thai' thai
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        0x000E5A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        0x000E81, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        0x000E83, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        0x000E84, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        0x000E85, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        0x000E87, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        0x000E89, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        0x000E8A, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        0x000E8B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        0x000E8D, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        0x000E8E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        0x000E94, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        0x000E98, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        0x000E99, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        0x000EA0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        0x000EA1, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        0x000EA4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        0x000EA5, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        0x000EA6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        0x000EA7, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        0x000EA8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        0x000EAA, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        0x000EAC, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        0x000EAD, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        0x000EBA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        0x000EBB, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        0x000EBE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        0x000EC0, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        0x000EC5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        0x000EC6, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        0x000EC7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        0x000EC8, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        0x000ECE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        0x000ED0, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        0x000EDA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        0x000EDC, 0x18, // 'laoo' lao
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        0x000EDE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        0x000F00, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        0x000F01, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        0x000F18, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        0x000F1A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        0x000F20, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        0x000F34, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        0x000F35, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        0x000F36, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        0x000F37, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        0x000F38, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        0x000F39, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        0x000F3A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        0x000F40, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        0x000F48, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        0x000F49, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        0x000F6B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        0x000F71, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        0x000F85, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        0x000F86, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        0x000F8C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        0x000F90, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        0x000F98, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        0x000F99, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        0x000FBD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        0x000FC6, 0x27, // 'tibt' tibetan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        0x000FC7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        0x001000, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        0x001022, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        0x001023, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        0x001028, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        0x001029, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        0x00102B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        0x00102C, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        0x001033, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        0x001036, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        0x00103A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        0x001040, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        0x00104A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        0x001050, 0x1C, // 'mymr' myanmar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        0x00105A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        0x0010A0, 0x0C, // 'geor' georgian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        0x0010C6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        0x0010D0, 0x0C, // 'geor' georgian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        0x0010F9, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        0x001100, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        0x00115A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        0x00115F, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        0x0011A3, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        0x0011A8, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        0x0011FA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        0x001200, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        0x001207, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        0x001208, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        0x001247, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        0x001248, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        0x001249, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        0x00124A, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        0x00124E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        0x001250, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        0x001257, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        0x001258, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        0x001259, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        0x00125A, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        0x00125E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        0x001260, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        0x001287, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        0x001288, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        0x001289, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        0x00128A, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        0x00128E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        0x001290, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        0x0012AF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        0x0012B0, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        0x0012B1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        0x0012B2, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        0x0012B6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        0x0012B8, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        0x0012BF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        0x0012C0, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        0x0012C1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        0x0012C2, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        0x0012C6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        0x0012C8, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        0x0012CF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        0x0012D0, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        0x0012D7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        0x0012D8, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        0x0012EF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        0x0012F0, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        0x00130F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        0x001310, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        0x001311, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        0x001312, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        0x001316, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        0x001318, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        0x00131F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        0x001320, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        0x001347, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        0x001348, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        0x00135B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        0x001369, 0x0B, // 'ethi' ethiopic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        0x00137D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        0x0013A0, 0x06, // 'cher' cherokee
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        0x0013F5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        0x001401, 0x28, // 'cans' canadian_aboriginal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        0x00166D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        0x00166F, 0x28, // 'cans' canadian_aboriginal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        0x001677, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        0x001681, 0x1D, // 'ogam' ogham
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        0x00169B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        0x0016A0, 0x20, // 'runr' runic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        0x0016EB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        0x0016EE, 0x20, // 'runr' runic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        0x0016F1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        0x001700, 0x2A, // 'tglg' tagalog
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
        0x00170D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        0x00170E, 0x2A, // 'tglg' tagalog
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        0x001715, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        0x001720, 0x2B, // 'hano' hanunoo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        0x001735, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        0x001740, 0x2C, // 'buhd' buhid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        0x001754, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        0x001760, 0x2D, // 'tagb' tagbanwa
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        0x00176D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        0x00176E, 0x2D, // 'tagb' tagbanwa
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        0x001771, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        0x001772, 0x2D, // 'tagb' tagbanwa
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        0x001774, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        0x001780, 0x17, // 'khmr' khmer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        0x0017D4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        0x0017E0, 0x17, // 'khmr' khmer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        0x0017EA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        0x00180B, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        0x00180E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        0x001810, 0x1B, // 'mong' mongolian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        0x00181A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        0x001820, 0x1B, // 'mong' mongolian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        0x001878, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        0x001880, 0x1B, // 'mong' mongolian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        0x0018AA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        0x001E00, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        0x001E9C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        0x001EA0, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        0x001EFA, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        0x001F00, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        0x001F16, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        0x001F18, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        0x001F1E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        0x001F20, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        0x001F46, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        0x001F48, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
        0x001F4E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        0x001F50, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        0x001F58, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        0x001F59, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        0x001F5A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        0x001F5B, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        0x001F5C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        0x001F5D, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        0x001F5E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        0x001F5F, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        0x001F7E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        0x001F80, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        0x001FB5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        0x001FB6, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        0x001FBD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        0x001FBE, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        0x001FBF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        0x001FC2, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        0x001FC5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        0x001FC6, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        0x001FCD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        0x001FD0, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        0x001FD4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        0x001FD6, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        0x001FDC, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        0x001FE0, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        0x001FED, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        0x001FF2, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        0x001FF5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        0x001FF6, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        0x001FFD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        0x002071, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        0x002072, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        0x00207F, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        0x002080, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        0x0020D0, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        0x0020EB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        0x002126, 0x0E, // 'grek' greek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
        0x002127, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        0x00212A, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        0x00212C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        0x002E80, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        0x002E9A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        0x002E9B, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        0x002EF4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        0x002F00, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        0x002FD6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        0x003005, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        0x003006, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        0x003007, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        0x003008, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        0x003021, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        0x00302A, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        0x003030, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        0x003038, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        0x00303C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        0x003041, 0x14, // 'hira' hiragana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        0x003097, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        0x003099, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        0x00309B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        0x00309D, 0x14, // 'hira' hiragana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        0x0030A0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        0x0030A1, 0x16, // 'kana' katakana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        0x0030FB, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        0x0030FD, 0x16, // 'kana' katakana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        0x003100, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        0x003105, 0x05, // 'bopo' bopomofo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        0x00312D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        0x003131, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
        0x00318F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        0x0031A0, 0x05, // 'bopo' bopomofo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        0x0031B8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        0x0031F0, 0x16, // 'kana' katakana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        0x003200, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        0x003400, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        0x004DB6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        0x004E00, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        0x009FA6, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        0x00A000, 0x29, // 'yiii' yi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        0x00A48D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        0x00A490, 0x29, // 'yiii' yi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        0x00A4A2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        0x00A4A4, 0x29, // 'yiii' yi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        0x00A4B4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        0x00A4B5, 0x29, // 'yiii' yi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        0x00A4C1, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        0x00A4C2, 0x29, // 'yiii' yi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        0x00A4C5, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        0x00A4C6, 0x29, // 'yiii' yi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        0x00A4C7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        0x00AC00, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
        0x00D7A4, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        0x00F900, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        0x00FA2E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        0x00FA30, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        0x00FA6B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        0x00FB00, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        0x00FB07, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        0x00FB13, 0x03, // 'armn' armenian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        0x00FB18, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        0x00FB1D, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        0x00FB1E, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        0x00FB1F, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        0x00FB29, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        0x00FB2A, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        0x00FB37, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        0x00FB38, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        0x00FB3D, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
        0x00FB3E, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        0x00FB3F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
        0x00FB40, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        0x00FB42, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        0x00FB43, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        0x00FB45, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        0x00FB46, 0x13, // 'hebr' hebrew
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        0x00FB50, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        0x00FBB2, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        0x00FBD3, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        0x00FD3E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        0x00FD50, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        0x00FD90, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        0x00FD92, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        0x00FDC8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        0x00FDF0, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        0x00FDFC, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        0x00FE00, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        0x00FE10, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        0x00FE20, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        0x00FE24, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        0x00FE70, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        0x00FE75, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        0x00FE76, 0x02, // 'arab' arabic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        0x00FEFD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        0x00FF21, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        0x00FF3B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        0x00FF41, 0x19, // 'latn' latin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        0x00FF5B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        0x00FF66, 0x16, // 'kana' katakana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        0x00FF70, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        0x00FF71, 0x16, // 'kana' katakana
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        0x00FF9E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        0x00FFA0, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        0x00FFBF, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        0x00FFC2, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        0x00FFC8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        0x00FFCA, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        0x00FFD0, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        0x00FFD2, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        0x00FFD8, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        0x00FFDA, 0x12, // 'hang' hangul
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        0x00FFDD, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        0x010300, 0x1E, // 'ital' old_italic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        0x01031F, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        0x010330, 0x0D, // 'goth' gothic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        0x01034B, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        0x010400, 0x09, // 'dsrt' deseret
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        0x010426, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        0x010428, 0x09, // 'dsrt' deseret
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        0x01044E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        0x01D167, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        0x01D16A, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        0x01D17B, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        0x01D183, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        0x01D185, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        0x01D18C, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        0x01D1AA, 0x01, // 'qaai' inherited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        0x01D1AE, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        0x020000, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        0x02A6D7, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        0x02F800, 0x11, // 'hani' han
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        0x02FA1E, 0x00,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        0x110000, -1, // (NO NAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    private static final int dataPower = 1 << 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    private static final int dataExtra = data.length - dataPower;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
}