| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2019 The Qt Company Ltd. |
| 4 | ** Copyright (C) 2013 John Layt <jlayt@kde.org> |
| 5 | ** Contact: https://www.qt.io/licensing/ |
| 6 | ** |
| 7 | ** This file is part of the QtCore module of the Qt Toolkit. |
| 8 | ** |
| 9 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 10 | ** Commercial License Usage |
| 11 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 12 | ** accordance with the commercial license agreement provided with the |
| 13 | ** Software or, alternatively, in accordance with the terms contained in |
| 14 | ** a written agreement between you and The Qt Company. For licensing terms |
| 15 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 16 | ** information use the contact form at https://www.qt.io/contact-us. |
| 17 | ** |
| 18 | ** GNU Lesser General Public License Usage |
| 19 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 20 | ** General Public License version 3 as published by the Free Software |
| 21 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
| 22 | ** packaging of this file. Please review the following information to |
| 23 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 24 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
| 25 | ** |
| 26 | ** GNU General Public License Usage |
| 27 | ** Alternatively, this file may be used under the terms of the GNU |
| 28 | ** General Public License version 2.0 or (at your option) the GNU General |
| 29 | ** Public license version 3 or any later version approved by the KDE Free |
| 30 | ** Qt Foundation. The licenses are as published by the Free Software |
| 31 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
| 32 | ** included in the packaging of this file. Please review the following |
| 33 | ** information to ensure the GNU General Public License requirements will |
| 34 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
| 35 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
| 36 | ** |
| 37 | ** $QT_END_LICENSE$ |
| 38 | ** |
| 39 | ****************************************************************************/ |
| 40 | |
| 41 | |
| 42 | #ifndef QTIMEZONEPRIVATE_DATA_P_H |
| 43 | #define QTIMEZONEPRIVATE_DATA_P_H |
| 44 | |
| 45 | // |
| 46 | // W A R N I N G |
| 47 | // ------------- |
| 48 | // |
| 49 | // This file is not part of the Qt API. It exists for the convenience |
| 50 | // of internal files. This header file may change from version to version |
| 51 | // without notice, or even be removed. |
| 52 | // |
| 53 | // We mean it. |
| 54 | // |
| 55 | |
| 56 | #include <QtCore/private/qglobal_p.h> |
| 57 | |
| 58 | QT_BEGIN_NAMESPACE |
| 59 | |
| 60 | /* |
| 61 | Windows Zone ID support, included in default base class build so can be used on all platforms, |
| 62 | e.g. an app running on Linux may need to communicate with a Windows Outlook server. These |
| 63 | tables can also be used to look-up Region Codes and UTC Offsets on platforms that don't directly |
| 64 | support them., e.g. Mac does not support availableTimeZones() filtering by region or offset. |
| 65 | |
| 66 | Another data table is provided for generic UTC+00:00 format time zones to be used as a |
| 67 | fall-back if no system time zones are available (QT_NO_SYSTEMLOCALE is set) or for QDateTimes |
| 68 | with a QT:Spec of OffsetFromUTC |
| 69 | |
| 70 | These tables are automatically adapted from the CLDR supplemental/windowsZones.xml data file |
| 71 | using a script in qtbase/util/locale_database. Please do not edit this data directly. In the |
| 72 | future if ICU is made a hard dependency then the ICU resource can be used directly and this |
| 73 | table removed |
| 74 | */ |
| 75 | |
| 76 | struct QZoneData { |
| 77 | quint16 windowsIdKey; // Windows ID Key |
| 78 | quint16 country; // Country of IANA ID's, AnyCountry means No Country |
| 79 | quint16 ianaIdIndex; // All IANA ID's for the Windows ID and Country, space separated |
| 80 | }; |
| 81 | |
| 82 | struct QWindowsData { |
| 83 | quint16 windowsIdKey; // Windows ID Key |
| 84 | quint16 windowsIdIndex; // Windows ID Literal |
| 85 | quint16 ianaIdIndex; // Default IANA ID for the Windows ID |
| 86 | qint32 offsetFromUtc; // Standard Time Offset from UTC, used for quick look-ups |
| 87 | }; |
| 88 | |
| 89 | struct QUtcData { |
| 90 | quint16 ianaIdIndex; // IANA ID's |
| 91 | qint32 offsetFromUtc; // Offset form UTC is seconds |
| 92 | }; |
| 93 | |
| 94 | /* |
| 95 | COPYRIGHT AND PERMISSION NOTICE |
| 96 | |
| 97 | Copyright © 1991-2012 Unicode, Inc. All rights reserved. Distributed under |
| 98 | the Terms of Use in http://www.unicode.org/copyright.html. |
| 99 | |
| 100 | Permission is hereby granted, free of charge, to any person obtaining a |
| 101 | copy of the Unicode data files and any associated documentation (the "Data |
| 102 | Files") or Unicode software and any associated documentation (the "Software") |
| 103 | to deal in the Data Files or Software without restriction, including without |
| 104 | limitation the rights to use, copy, modify, merge, publish, distribute, and/or |
| 105 | sell copies of the Data Files or Software, and to permit persons to whom the |
| 106 | Data Files or Software are furnished to do so, provided that (a) the above |
| 107 | copyright notice(s) and this permission notice appear with all copies of the |
| 108 | Data Files or Software, (b) both the above copyright notice(s) and this |
| 109 | permission notice appear in associated documentation, and (c) there is clear |
| 110 | notice in each modified Data File or in the Software as well as in the |
| 111 | documentation associated with the Data File(s) or Software that the data or |
| 112 | software has been modified. |
| 113 | */ |
| 114 | |
| 115 | // GENERATED PART STARTS HERE |
| 116 | |
| 117 | /* |
| 118 | This part of the file was generated on 2021-04-26 from the |
| 119 | Common Locale Data Repository v39 file supplemental/windowsZones.xml |
| 120 | |
| 121 | http://www.unicode.org/cldr/ |
| 122 | |
| 123 | Do not edit this code: run cldr2qtimezone.py on updated (or |
| 124 | edited) CLDR data; see qtbase/util/locale_database/. |
| 125 | */ |
| 126 | |
| 127 | // Windows ID Key, Country Enum, IANA ID Index |
| 128 | static const QZoneData zoneDataTable[] = { |
| 129 | { .windowsIdKey: 1, .country: 1, .ianaIdIndex: 0 }, // Afghanistan Standard Time / Afghanistan |
| 130 | { .windowsIdKey: 2, .country: 225, .ianaIdIndex: 11 }, // Alaskan Standard Time / United States |
| 131 | { .windowsIdKey: 3, .country: 225, .ianaIdIndex: 106 }, // Aleutian Standard Time / United States |
| 132 | { .windowsIdKey: 4, .country: 178, .ianaIdIndex: 119 }, // Altai Standard Time / Russia |
| 133 | { .windowsIdKey: 5, .country: 17, .ianaIdIndex: 132 }, // Arab Standard Time / Bahrain |
| 134 | { .windowsIdKey: 5, .country: 115, .ianaIdIndex: 145 }, // Arab Standard Time / Kuwait |
| 135 | { .windowsIdKey: 5, .country: 175, .ianaIdIndex: 157 }, // Arab Standard Time / Qatar |
| 136 | { .windowsIdKey: 5, .country: 186, .ianaIdIndex: 168 }, // Arab Standard Time / Saudi Arabia |
| 137 | { .windowsIdKey: 5, .country: 237, .ianaIdIndex: 180 }, // Arab Standard Time / Yemen |
| 138 | { .windowsIdKey: 6, .country: 0, .ianaIdIndex: 190 }, // Arabian Standard Time / AnyCountry |
| 139 | { .windowsIdKey: 6, .country: 162, .ianaIdIndex: 200 }, // Arabian Standard Time / Oman |
| 140 | { .windowsIdKey: 6, .country: 223, .ianaIdIndex: 212 }, // Arabian Standard Time / United Arab Emirates |
| 141 | { .windowsIdKey: 7, .country: 103, .ianaIdIndex: 223 }, // Arabic Standard Time / Iraq |
| 142 | { .windowsIdKey: 8, .country: 10, .ianaIdIndex: 236 }, // Argentina Standard Time / Argentina |
| 143 | { .windowsIdKey: 9, .country: 178, .ianaIdIndex: 509 }, // Astrakhan Standard Time / Russia |
| 144 | { .windowsIdKey: 10, .country: 24, .ianaIdIndex: 543 }, // Atlantic Standard Time / Bermuda |
| 145 | { .windowsIdKey: 10, .country: 38, .ianaIdIndex: 560 }, // Atlantic Standard Time / Canada |
| 146 | { .windowsIdKey: 10, .country: 86, .ianaIdIndex: 628 }, // Atlantic Standard Time / Greenland |
| 147 | { .windowsIdKey: 11, .country: 13, .ianaIdIndex: 642 }, // AUS Central Standard Time / Australia |
| 148 | { .windowsIdKey: 12, .country: 13, .ianaIdIndex: 659 }, // Aus Central W. Standard Time / Australia |
| 149 | { .windowsIdKey: 13, .country: 13, .ianaIdIndex: 675 }, // AUS Eastern Standard Time / Australia |
| 150 | { .windowsIdKey: 14, .country: 15, .ianaIdIndex: 712 }, // Azerbaijan Standard Time / Azerbaijan |
| 151 | { .windowsIdKey: 15, .country: 86, .ianaIdIndex: 722 }, // Azores Standard Time / Greenland |
| 152 | { .windowsIdKey: 15, .country: 173, .ianaIdIndex: 743 }, // Azores Standard Time / Portugal |
| 153 | { .windowsIdKey: 16, .country: 30, .ianaIdIndex: 759 }, // Bahia Standard Time / Brazil |
| 154 | { .windowsIdKey: 17, .country: 18, .ianaIdIndex: 773 }, // Bangladesh Standard Time / Bangladesh |
| 155 | { .windowsIdKey: 17, .country: 25, .ianaIdIndex: 784 }, // Bangladesh Standard Time / Bhutan |
| 156 | { .windowsIdKey: 18, .country: 20, .ianaIdIndex: 797 }, // Belarus Standard Time / Belarus |
| 157 | { .windowsIdKey: 19, .country: 167, .ianaIdIndex: 810 }, // Bougainville Standard Time / Papua New Guinea |
| 158 | { .windowsIdKey: 20, .country: 38, .ianaIdIndex: 831 }, // Canada Central Standard Time / Canada |
| 159 | { .windowsIdKey: 21, .country: 0, .ianaIdIndex: 868 }, // Cape Verde Standard Time / AnyCountry |
| 160 | { .windowsIdKey: 21, .country: 39, .ianaIdIndex: 878 }, // Cape Verde Standard Time / Cape Verde |
| 161 | { .windowsIdKey: 22, .country: 11, .ianaIdIndex: 898 }, // Caucasus Standard Time / Armenia |
| 162 | { .windowsIdKey: 23, .country: 13, .ianaIdIndex: 911 }, // Cen. Australia Standard Time / Australia |
| 163 | { .windowsIdKey: 24, .country: 0, .ianaIdIndex: 952 }, // Central America Standard Time / AnyCountry |
| 164 | { .windowsIdKey: 24, .country: 22, .ianaIdIndex: 962 }, // Central America Standard Time / Belize |
| 165 | { .windowsIdKey: 24, .country: 52, .ianaIdIndex: 977 }, // Central America Standard Time / Costa Rica |
| 166 | { .windowsIdKey: 24, .country: 63, .ianaIdIndex: 996 }, // Central America Standard Time / Ecuador |
| 167 | { .windowsIdKey: 24, .country: 65, .ianaIdIndex: 1014 }, // Central America Standard Time / El Salvador |
| 168 | { .windowsIdKey: 24, .country: 90, .ianaIdIndex: 1034 }, // Central America Standard Time / Guatemala |
| 169 | { .windowsIdKey: 24, .country: 96, .ianaIdIndex: 1052 }, // Central America Standard Time / Honduras |
| 170 | { .windowsIdKey: 24, .country: 155, .ianaIdIndex: 1072 }, // Central America Standard Time / Nicaragua |
| 171 | { .windowsIdKey: 25, .country: 0, .ianaIdIndex: 1088 }, // Central Asia Standard Time / AnyCountry |
| 172 | { .windowsIdKey: 25, .country: 8, .ianaIdIndex: 1098 }, // Central Asia Standard Time / Antarctica |
| 173 | { .windowsIdKey: 25, .country: 31, .ianaIdIndex: 1116 }, // Central Asia Standard Time / British Indian Ocean Territory |
| 174 | { .windowsIdKey: 25, .country: 44, .ianaIdIndex: 1130 }, // Central Asia Standard Time / China |
| 175 | { .windowsIdKey: 25, .country: 110, .ianaIdIndex: 1142 }, // Central Asia Standard Time / Kazakhstan |
| 176 | { .windowsIdKey: 25, .country: 116, .ianaIdIndex: 1168 }, // Central Asia Standard Time / Kyrgyzstan |
| 177 | { .windowsIdKey: 26, .country: 30, .ianaIdIndex: 1181 }, // Central Brazilian Standard Time / Brazil |
| 178 | { .windowsIdKey: 27, .country: 2, .ianaIdIndex: 1217 }, // Central Europe Standard Time / Albania |
| 179 | { .windowsIdKey: 27, .country: 57, .ianaIdIndex: 1231 }, // Central Europe Standard Time / Czech Republic |
| 180 | { .windowsIdKey: 27, .country: 98, .ianaIdIndex: 1245 }, // Central Europe Standard Time / Hungary |
| 181 | { .windowsIdKey: 27, .country: 191, .ianaIdIndex: 1261 }, // Central Europe Standard Time / Slovakia |
| 182 | { .windowsIdKey: 27, .country: 192, .ianaIdIndex: 1279 }, // Central Europe Standard Time / Slovenia |
| 183 | { .windowsIdKey: 27, .country: 242, .ianaIdIndex: 1296 }, // Central Europe Standard Time / Montenegro |
| 184 | { .windowsIdKey: 27, .country: 243, .ianaIdIndex: 1313 }, // Central Europe Standard Time / Serbia |
| 185 | { .windowsIdKey: 28, .country: 27, .ianaIdIndex: 1329 }, // Central European Standard Time / Bosnia And Herzegowina |
| 186 | { .windowsIdKey: 28, .country: 54, .ianaIdIndex: 1345 }, // Central European Standard Time / Croatia |
| 187 | { .windowsIdKey: 28, .country: 127, .ianaIdIndex: 1359 }, // Central European Standard Time / Macedonia |
| 188 | { .windowsIdKey: 28, .country: 172, .ianaIdIndex: 1373 }, // Central European Standard Time / Poland |
| 189 | { .windowsIdKey: 29, .country: 0, .ianaIdIndex: 1387 }, // Central Pacific Standard Time / AnyCountry |
| 190 | { .windowsIdKey: 29, .country: 8, .ianaIdIndex: 1398 }, // Central Pacific Standard Time / Antarctica |
| 191 | { .windowsIdKey: 29, .country: 140, .ianaIdIndex: 1415 }, // Central Pacific Standard Time / Micronesia |
| 192 | { .windowsIdKey: 29, .country: 153, .ianaIdIndex: 1445 }, // Central Pacific Standard Time / New Caledonia |
| 193 | { .windowsIdKey: 29, .country: 193, .ianaIdIndex: 1460 }, // Central Pacific Standard Time / Solomon Islands |
| 194 | { .windowsIdKey: 29, .country: 229, .ianaIdIndex: 1480 }, // Central Pacific Standard Time / Vanuatu |
| 195 | { .windowsIdKey: 30, .country: 139, .ianaIdIndex: 1494 }, // Central Standard Time (Mexico) / Mexico |
| 196 | { .windowsIdKey: 31, .country: 0, .ianaIdIndex: 1570 }, // Central Standard Time / AnyCountry |
| 197 | { .windowsIdKey: 31, .country: 38, .ianaIdIndex: 1578 }, // Central Standard Time / Canada |
| 198 | { .windowsIdKey: 31, .country: 139, .ianaIdIndex: 1653 }, // Central Standard Time / Mexico |
| 199 | { .windowsIdKey: 31, .country: 225, .ianaIdIndex: 1671 }, // Central Standard Time / United States |
| 200 | { .windowsIdKey: 32, .country: 44, .ianaIdIndex: 1839 }, // China Standard Time / China |
| 201 | { .windowsIdKey: 32, .country: 97, .ianaIdIndex: 1853 }, // China Standard Time / Hong Kong |
| 202 | { .windowsIdKey: 32, .country: 126, .ianaIdIndex: 1868 }, // China Standard Time / Macau |
| 203 | { .windowsIdKey: 33, .country: 154, .ianaIdIndex: 1879 }, // Chatham Islands Standard Time / New Zealand |
| 204 | { .windowsIdKey: 34, .country: 55, .ianaIdIndex: 1895 }, // Cuba Standard Time / Cuba |
| 205 | { .windowsIdKey: 35, .country: 0, .ianaIdIndex: 1910 }, // Dateline Standard Time / AnyCountry |
| 206 | { .windowsIdKey: 36, .country: 0, .ianaIdIndex: 1921 }, // E. Africa Standard Time / AnyCountry |
| 207 | { .windowsIdKey: 36, .country: 8, .ianaIdIndex: 1931 }, // E. Africa Standard Time / Antarctica |
| 208 | { .windowsIdKey: 36, .country: 48, .ianaIdIndex: 1948 }, // E. Africa Standard Time / Comoros |
| 209 | { .windowsIdKey: 36, .country: 59, .ianaIdIndex: 1962 }, // E. Africa Standard Time / Djibouti |
| 210 | { .windowsIdKey: 36, .country: 67, .ianaIdIndex: 1978 }, // E. Africa Standard Time / Eritrea |
| 211 | { .windowsIdKey: 36, .country: 69, .ianaIdIndex: 1992 }, // E. Africa Standard Time / Ethiopia |
| 212 | { .windowsIdKey: 36, .country: 111, .ianaIdIndex: 2011 }, // E. Africa Standard Time / Kenya |
| 213 | { .windowsIdKey: 36, .country: 128, .ianaIdIndex: 2026 }, // E. Africa Standard Time / Madagascar |
| 214 | { .windowsIdKey: 36, .country: 138, .ianaIdIndex: 2046 }, // E. Africa Standard Time / Mayotte |
| 215 | { .windowsIdKey: 36, .country: 194, .ianaIdIndex: 2061 }, // E. Africa Standard Time / Somalia |
| 216 | { .windowsIdKey: 36, .country: 210, .ianaIdIndex: 2078 }, // E. Africa Standard Time / Tanzania |
| 217 | { .windowsIdKey: 36, .country: 221, .ianaIdIndex: 2099 }, // E. Africa Standard Time / Uganda |
| 218 | { .windowsIdKey: 37, .country: 13, .ianaIdIndex: 2114 }, // E. Australia Standard Time / Australia |
| 219 | { .windowsIdKey: 38, .country: 141, .ianaIdIndex: 2152 }, // E. Europe Standard Time / Moldova |
| 220 | { .windowsIdKey: 39, .country: 30, .ianaIdIndex: 2168 }, // E. South America Standard Time / Brazil |
| 221 | { .windowsIdKey: 40, .country: 43, .ianaIdIndex: 2186 }, // Easter Island Standard Time / Chile |
| 222 | { .windowsIdKey: 41, .country: 0, .ianaIdIndex: 2201 }, // Eastern Standard Time / AnyCountry |
| 223 | { .windowsIdKey: 41, .country: 16, .ianaIdIndex: 2209 }, // Eastern Standard Time / Bahamas |
| 224 | { .windowsIdKey: 41, .country: 38, .ianaIdIndex: 2224 }, // Eastern Standard Time / Canada |
| 225 | { .windowsIdKey: 41, .country: 225, .ianaIdIndex: 2329 }, // Eastern Standard Time / United States |
| 226 | { .windowsIdKey: 42, .country: 139, .ianaIdIndex: 2486 }, // Eastern Standard Time (Mexico) / Mexico |
| 227 | { .windowsIdKey: 43, .country: 64, .ianaIdIndex: 2501 }, // Egypt Standard Time / Egypt |
| 228 | { .windowsIdKey: 44, .country: 178, .ianaIdIndex: 2514 }, // Ekaterinburg Standard Time / Russia |
| 229 | { .windowsIdKey: 45, .country: 72, .ianaIdIndex: 2533 }, // Fiji Standard Time / Fiji |
| 230 | { .windowsIdKey: 46, .country: 33, .ianaIdIndex: 2546 }, // FLE Standard Time / Bulgaria |
| 231 | { .windowsIdKey: 46, .country: 68, .ianaIdIndex: 2559 }, // FLE Standard Time / Estonia |
| 232 | { .windowsIdKey: 46, .country: 73, .ianaIdIndex: 2574 }, // FLE Standard Time / Finland |
| 233 | { .windowsIdKey: 46, .country: 118, .ianaIdIndex: 2590 }, // FLE Standard Time / Latvia |
| 234 | { .windowsIdKey: 46, .country: 124, .ianaIdIndex: 2602 }, // FLE Standard Time / Lithuania |
| 235 | { .windowsIdKey: 46, .country: 222, .ianaIdIndex: 2617 }, // FLE Standard Time / Ukraine |
| 236 | { .windowsIdKey: 46, .country: 248, .ianaIdIndex: 2663 }, // FLE Standard Time / Aland Islands |
| 237 | { .windowsIdKey: 47, .country: 81, .ianaIdIndex: 2680 }, // Georgian Standard Time / Georgia |
| 238 | { .windowsIdKey: 48, .country: 71, .ianaIdIndex: 2693 }, // GMT Standard Time / Faroe Islands |
| 239 | { .windowsIdKey: 48, .country: 75, .ianaIdIndex: 2709 }, // GMT Standard Time / Guernsey |
| 240 | { .windowsIdKey: 48, .country: 104, .ianaIdIndex: 2725 }, // GMT Standard Time / Ireland |
| 241 | { .windowsIdKey: 48, .country: 173, .ianaIdIndex: 2739 }, // GMT Standard Time / Portugal |
| 242 | { .windowsIdKey: 48, .country: 197, .ianaIdIndex: 2770 }, // GMT Standard Time / Spain |
| 243 | { .windowsIdKey: 48, .country: 224, .ianaIdIndex: 2786 }, // GMT Standard Time / United Kingdom |
| 244 | { .windowsIdKey: 48, .country: 251, .ianaIdIndex: 2800 }, // GMT Standard Time / Isle Of Man |
| 245 | { .windowsIdKey: 48, .country: 252, .ianaIdIndex: 2819 }, // GMT Standard Time / Jersey |
| 246 | { .windowsIdKey: 49, .country: 86, .ianaIdIndex: 2833 }, // Greenland Standard Time / Greenland |
| 247 | { .windowsIdKey: 50, .country: 34, .ianaIdIndex: 2849 }, // Greenwich Standard Time / Burkina Faso |
| 248 | { .windowsIdKey: 50, .country: 53, .ianaIdIndex: 2868 }, // Greenwich Standard Time / Ivory Coast |
| 249 | { .windowsIdKey: 50, .country: 80, .ianaIdIndex: 2883 }, // Greenwich Standard Time / Gambia |
| 250 | { .windowsIdKey: 50, .country: 83, .ianaIdIndex: 2897 }, // Greenwich Standard Time / Ghana |
| 251 | { .windowsIdKey: 50, .country: 86, .ianaIdIndex: 2910 }, // Greenwich Standard Time / Greenland |
| 252 | { .windowsIdKey: 50, .country: 91, .ianaIdIndex: 2931 }, // Greenwich Standard Time / Guinea |
| 253 | { .windowsIdKey: 50, .country: 92, .ianaIdIndex: 2946 }, // Greenwich Standard Time / Guinea Bissau |
| 254 | { .windowsIdKey: 50, .country: 99, .ianaIdIndex: 2960 }, // Greenwich Standard Time / Iceland |
| 255 | { .windowsIdKey: 50, .country: 121, .ianaIdIndex: 2979 }, // Greenwich Standard Time / Liberia |
| 256 | { .windowsIdKey: 50, .country: 132, .ianaIdIndex: 2995 }, // Greenwich Standard Time / Mali |
| 257 | { .windowsIdKey: 50, .country: 136, .ianaIdIndex: 3009 }, // Greenwich Standard Time / Mauritania |
| 258 | { .windowsIdKey: 50, .country: 187, .ianaIdIndex: 3027 }, // Greenwich Standard Time / Senegal |
| 259 | { .windowsIdKey: 50, .country: 189, .ianaIdIndex: 3040 }, // Greenwich Standard Time / Sierra Leone |
| 260 | { .windowsIdKey: 50, .country: 199, .ianaIdIndex: 3056 }, // Greenwich Standard Time / Saint Helena |
| 261 | { .windowsIdKey: 50, .country: 212, .ianaIdIndex: 3075 }, // Greenwich Standard Time / Togo |
| 262 | { .windowsIdKey: 51, .country: 56, .ianaIdIndex: 3087 }, // GTB Standard Time / Cyprus |
| 263 | { .windowsIdKey: 51, .country: 85, .ianaIdIndex: 3115 }, // GTB Standard Time / Greece |
| 264 | { .windowsIdKey: 51, .country: 177, .ianaIdIndex: 3129 }, // GTB Standard Time / Romania |
| 265 | { .windowsIdKey: 52, .country: 94, .ianaIdIndex: 3146 }, // Haiti Standard Time / Haiti |
| 266 | { .windowsIdKey: 53, .country: 0, .ianaIdIndex: 3169 }, // Hawaiian Standard Time / AnyCountry |
| 267 | { .windowsIdKey: 53, .country: 51, .ianaIdIndex: 3180 }, // Hawaiian Standard Time / Cook Islands |
| 268 | { .windowsIdKey: 53, .country: 77, .ianaIdIndex: 3198 }, // Hawaiian Standard Time / French Polynesia |
| 269 | { .windowsIdKey: 53, .country: 225, .ianaIdIndex: 3213 }, // Hawaiian Standard Time / United States |
| 270 | { .windowsIdKey: 53, .country: 226, .ianaIdIndex: 3230 }, // Hawaiian Standard Time / United States Minor Outlying Islands |
| 271 | { .windowsIdKey: 54, .country: 100, .ianaIdIndex: 3247 }, // India Standard Time / India |
| 272 | { .windowsIdKey: 55, .country: 102, .ianaIdIndex: 3261 }, // Iran Standard Time / Iran |
| 273 | { .windowsIdKey: 56, .country: 105, .ianaIdIndex: 3273 }, // Israel Standard Time / Israel |
| 274 | { .windowsIdKey: 57, .country: 109, .ianaIdIndex: 3288 }, // Jordan Standard Time / Jordan |
| 275 | { .windowsIdKey: 58, .country: 178, .ianaIdIndex: 3299 }, // Kaliningrad Standard Time / Russia |
| 276 | { .windowsIdKey: 59, .country: 114, .ianaIdIndex: 3318 }, // Korea Standard Time / South Korea |
| 277 | { .windowsIdKey: 60, .country: 122, .ianaIdIndex: 3329 }, // Libya Standard Time / Libya |
| 278 | { .windowsIdKey: 61, .country: 0, .ianaIdIndex: 3344 }, // Line Islands Standard Time / AnyCountry |
| 279 | { .windowsIdKey: 61, .country: 112, .ianaIdIndex: 3355 }, // Line Islands Standard Time / Kiribati |
| 280 | { .windowsIdKey: 62, .country: 13, .ianaIdIndex: 3374 }, // Lord Howe Standard Time / Australia |
| 281 | { .windowsIdKey: 63, .country: 178, .ianaIdIndex: 3394 }, // Magadan Standard Time / Russia |
| 282 | { .windowsIdKey: 64, .country: 43, .ianaIdIndex: 3407 }, // Magallanes Standard Time / Chile |
| 283 | { .windowsIdKey: 65, .country: 77, .ianaIdIndex: 3428 }, // Marquesas Standard Time / French Polynesia |
| 284 | { .windowsIdKey: 66, .country: 137, .ianaIdIndex: 3446 }, // Mauritius Standard Time / Mauritius |
| 285 | { .windowsIdKey: 66, .country: 176, .ianaIdIndex: 3463 }, // Mauritius Standard Time / Reunion |
| 286 | { .windowsIdKey: 66, .country: 188, .ianaIdIndex: 3478 }, // Mauritius Standard Time / Seychelles |
| 287 | { .windowsIdKey: 67, .country: 119, .ianaIdIndex: 3490 }, // Middle East Standard Time / Lebanon |
| 288 | { .windowsIdKey: 68, .country: 227, .ianaIdIndex: 3502 }, // Montevideo Standard Time / Uruguay |
| 289 | { .windowsIdKey: 69, .country: 145, .ianaIdIndex: 3521 }, // Morocco Standard Time / Morocco |
| 290 | { .windowsIdKey: 69, .country: 236, .ianaIdIndex: 3539 }, // Morocco Standard Time / Western Sahara |
| 291 | { .windowsIdKey: 70, .country: 139, .ianaIdIndex: 3555 }, // Mountain Standard Time (Mexico) / Mexico |
| 292 | { .windowsIdKey: 71, .country: 0, .ianaIdIndex: 3590 }, // Mountain Standard Time / AnyCountry |
| 293 | { .windowsIdKey: 71, .country: 38, .ianaIdIndex: 3598 }, // Mountain Standard Time / Canada |
| 294 | { .windowsIdKey: 71, .country: 139, .ianaIdIndex: 3672 }, // Mountain Standard Time / Mexico |
| 295 | { .windowsIdKey: 71, .country: 225, .ianaIdIndex: 3688 }, // Mountain Standard Time / United States |
| 296 | { .windowsIdKey: 72, .country: 46, .ianaIdIndex: 3717 }, // Myanmar Standard Time / Cocos Islands |
| 297 | { .windowsIdKey: 72, .country: 147, .ianaIdIndex: 3730 }, // Myanmar Standard Time / Myanmar |
| 298 | { .windowsIdKey: 73, .country: 178, .ianaIdIndex: 3743 }, // N. Central Asia Standard Time / Russia |
| 299 | { .windowsIdKey: 74, .country: 148, .ianaIdIndex: 3760 }, // Namibia Standard Time / Namibia |
| 300 | { .windowsIdKey: 75, .country: 150, .ianaIdIndex: 3776 }, // Nepal Standard Time / Nepal |
| 301 | { .windowsIdKey: 76, .country: 8, .ianaIdIndex: 3790 }, // New Zealand Standard Time / Antarctica |
| 302 | { .windowsIdKey: 76, .country: 154, .ianaIdIndex: 3809 }, // New Zealand Standard Time / New Zealand |
| 303 | { .windowsIdKey: 77, .country: 38, .ianaIdIndex: 3826 }, // Newfoundland Standard Time / Canada |
| 304 | { .windowsIdKey: 78, .country: 159, .ianaIdIndex: 3843 }, // Norfolk Standard Time / Norfolk Island |
| 305 | { .windowsIdKey: 79, .country: 178, .ianaIdIndex: 3859 }, // North Asia East Standard Time / Russia |
| 306 | { .windowsIdKey: 80, .country: 178, .ianaIdIndex: 3872 }, // North Asia Standard Time / Russia |
| 307 | { .windowsIdKey: 81, .country: 113, .ianaIdIndex: 3907 }, // North Korea Standard Time / North Korea |
| 308 | { .windowsIdKey: 82, .country: 178, .ianaIdIndex: 3922 }, // Omsk Standard Time / Russia |
| 309 | { .windowsIdKey: 83, .country: 43, .ianaIdIndex: 3932 }, // Pacific SA Standard Time / Chile |
| 310 | { .windowsIdKey: 84, .country: 0, .ianaIdIndex: 3949 }, // Pacific Standard Time / AnyCountry |
| 311 | { .windowsIdKey: 84, .country: 38, .ianaIdIndex: 3957 }, // Pacific Standard Time / Canada |
| 312 | { .windowsIdKey: 84, .country: 225, .ianaIdIndex: 3975 }, // Pacific Standard Time / United States |
| 313 | { .windowsIdKey: 85, .country: 139, .ianaIdIndex: 3995 }, // Pacific Standard Time (Mexico) / Mexico |
| 314 | { .windowsIdKey: 86, .country: 163, .ianaIdIndex: 4032 }, // Pakistan Standard Time / Pakistan |
| 315 | { .windowsIdKey: 87, .country: 168, .ianaIdIndex: 4045 }, // Paraguay Standard Time / Paraguay |
| 316 | { .windowsIdKey: 88, .country: 110, .ianaIdIndex: 4062 }, // Qyzylorda Standard Time / Kazakhstan |
| 317 | { .windowsIdKey: 89, .country: 21, .ianaIdIndex: 4077 }, // Romance Standard Time / Belgium |
| 318 | { .windowsIdKey: 89, .country: 58, .ianaIdIndex: 4093 }, // Romance Standard Time / Denmark |
| 319 | { .windowsIdKey: 89, .country: 74, .ianaIdIndex: 4111 }, // Romance Standard Time / France |
| 320 | { .windowsIdKey: 89, .country: 197, .ianaIdIndex: 4124 }, // Romance Standard Time / Spain |
| 321 | { .windowsIdKey: 90, .country: 178, .ianaIdIndex: 4151 }, // Russia Time Zone 3 / Russia |
| 322 | { .windowsIdKey: 91, .country: 178, .ianaIdIndex: 4165 }, // Russia Time Zone 10 / Russia |
| 323 | { .windowsIdKey: 92, .country: 178, .ianaIdIndex: 4184 }, // Russia Time Zone 11 / Russia |
| 324 | { .windowsIdKey: 93, .country: 178, .ianaIdIndex: 4211 }, // Russian Standard Time / Russia |
| 325 | { .windowsIdKey: 93, .country: 222, .ianaIdIndex: 4238 }, // Russian Standard Time / Ukraine |
| 326 | { .windowsIdKey: 94, .country: 0, .ianaIdIndex: 4256 }, // SA Eastern Standard Time / AnyCountry |
| 327 | { .windowsIdKey: 94, .country: 8, .ianaIdIndex: 4266 }, // SA Eastern Standard Time / Antarctica |
| 328 | { .windowsIdKey: 94, .country: 30, .ianaIdIndex: 4303 }, // SA Eastern Standard Time / Brazil |
| 329 | { .windowsIdKey: 94, .country: 70, .ianaIdIndex: 4382 }, // SA Eastern Standard Time / Falkland Islands |
| 330 | { .windowsIdKey: 94, .country: 76, .ianaIdIndex: 4399 }, // SA Eastern Standard Time / French Guiana |
| 331 | { .windowsIdKey: 94, .country: 202, .ianaIdIndex: 4415 }, // SA Eastern Standard Time / Suriname |
| 332 | { .windowsIdKey: 95, .country: 0, .ianaIdIndex: 4434 }, // SA Pacific Standard Time / AnyCountry |
| 333 | { .windowsIdKey: 95, .country: 30, .ianaIdIndex: 4444 }, // SA Pacific Standard Time / Brazil |
| 334 | { .windowsIdKey: 95, .country: 38, .ianaIdIndex: 4480 }, // SA Pacific Standard Time / Canada |
| 335 | { .windowsIdKey: 95, .country: 40, .ianaIdIndex: 4502 }, // SA Pacific Standard Time / Cayman Islands |
| 336 | { .windowsIdKey: 95, .country: 47, .ianaIdIndex: 4517 }, // SA Pacific Standard Time / Colombia |
| 337 | { .windowsIdKey: 95, .country: 63, .ianaIdIndex: 4532 }, // SA Pacific Standard Time / Ecuador |
| 338 | { .windowsIdKey: 95, .country: 107, .ianaIdIndex: 4550 }, // SA Pacific Standard Time / Jamaica |
| 339 | { .windowsIdKey: 95, .country: 166, .ianaIdIndex: 4566 }, // SA Pacific Standard Time / Panama |
| 340 | { .windowsIdKey: 95, .country: 169, .ianaIdIndex: 4581 }, // SA Pacific Standard Time / Peru |
| 341 | { .windowsIdKey: 96, .country: 0, .ianaIdIndex: 4594 }, // SA Western Standard Time / AnyCountry |
| 342 | { .windowsIdKey: 96, .country: 7, .ianaIdIndex: 4604 }, // SA Western Standard Time / Anguilla |
| 343 | { .windowsIdKey: 96, .country: 9, .ianaIdIndex: 4621 }, // SA Western Standard Time / Antigua And Barbuda |
| 344 | { .windowsIdKey: 96, .country: 12, .ianaIdIndex: 4637 }, // SA Western Standard Time / Aruba |
| 345 | { .windowsIdKey: 96, .country: 19, .ianaIdIndex: 4651 }, // SA Western Standard Time / Barbados |
| 346 | { .windowsIdKey: 96, .country: 26, .ianaIdIndex: 4668 }, // SA Western Standard Time / Bolivia |
| 347 | { .windowsIdKey: 96, .country: 30, .ianaIdIndex: 4683 }, // SA Western Standard Time / Brazil |
| 348 | { .windowsIdKey: 96, .country: 38, .ianaIdIndex: 4736 }, // SA Western Standard Time / Canada |
| 349 | { .windowsIdKey: 96, .country: 60, .ianaIdIndex: 4757 }, // SA Western Standard Time / Dominica |
| 350 | { .windowsIdKey: 96, .country: 61, .ianaIdIndex: 4774 }, // SA Western Standard Time / Dominican Republic |
| 351 | { .windowsIdKey: 96, .country: 87, .ianaIdIndex: 4796 }, // SA Western Standard Time / Grenada |
| 352 | { .windowsIdKey: 96, .country: 88, .ianaIdIndex: 4812 }, // SA Western Standard Time / Guadeloupe |
| 353 | { .windowsIdKey: 96, .country: 93, .ianaIdIndex: 4831 }, // SA Western Standard Time / Guyana |
| 354 | { .windowsIdKey: 96, .country: 135, .ianaIdIndex: 4846 }, // SA Western Standard Time / Martinique |
| 355 | { .windowsIdKey: 96, .country: 144, .ianaIdIndex: 4865 }, // SA Western Standard Time / Montserrat |
| 356 | { .windowsIdKey: 96, .country: 152, .ianaIdIndex: 4884 }, // SA Western Standard Time / Cura Sao |
| 357 | { .windowsIdKey: 96, .country: 174, .ianaIdIndex: 4900 }, // SA Western Standard Time / Puerto Rico |
| 358 | { .windowsIdKey: 96, .country: 180, .ianaIdIndex: 4920 }, // SA Western Standard Time / Saint Kitts And Nevis |
| 359 | { .windowsIdKey: 96, .country: 181, .ianaIdIndex: 4937 }, // SA Western Standard Time / Saint Lucia |
| 360 | { .windowsIdKey: 96, .country: 182, .ianaIdIndex: 4954 }, // SA Western Standard Time / Saint Vincent And The Grenadines |
| 361 | { .windowsIdKey: 96, .country: 215, .ianaIdIndex: 4973 }, // SA Western Standard Time / Trinidad And Tobago |
| 362 | { .windowsIdKey: 96, .country: 233, .ianaIdIndex: 4995 }, // SA Western Standard Time / British Virgin Islands |
| 363 | { .windowsIdKey: 96, .country: 234, .ianaIdIndex: 5011 }, // SA Western Standard Time / United States Virgin Islands |
| 364 | { .windowsIdKey: 96, .country: 244, .ianaIdIndex: 5029 }, // SA Western Standard Time / Saint Barthelemy |
| 365 | { .windowsIdKey: 96, .country: 245, .ianaIdIndex: 5051 }, // SA Western Standard Time / Saint Martin |
| 366 | { .windowsIdKey: 96, .country: 255, .ianaIdIndex: 5067 }, // SA Western Standard Time / Bonaire |
| 367 | { .windowsIdKey: 96, .country: 256, .ianaIdIndex: 5086 }, // SA Western Standard Time / Sint Maarten |
| 368 | { .windowsIdKey: 97, .country: 200, .ianaIdIndex: 5108 }, // Saint Pierre Standard Time / Saint Pierre And Miquelon |
| 369 | { .windowsIdKey: 98, .country: 178, .ianaIdIndex: 5125 }, // Sakhalin Standard Time / Russia |
| 370 | { .windowsIdKey: 99, .country: 183, .ianaIdIndex: 5139 }, // Samoa Standard Time / Samoa |
| 371 | { .windowsIdKey: 100, .country: 185, .ianaIdIndex: 5152 }, // Sao Tome Standard Time / Sao Tome And Principe |
| 372 | { .windowsIdKey: 101, .country: 178, .ianaIdIndex: 5168 }, // Saratov Standard Time / Russia |
| 373 | { .windowsIdKey: 102, .country: 0, .ianaIdIndex: 5183 }, // SE Asia Standard Time / AnyCountry |
| 374 | { .windowsIdKey: 102, .country: 8, .ianaIdIndex: 5193 }, // SE Asia Standard Time / Antarctica |
| 375 | { .windowsIdKey: 102, .country: 36, .ianaIdIndex: 5210 }, // SE Asia Standard Time / Cambodia |
| 376 | { .windowsIdKey: 102, .country: 45, .ianaIdIndex: 5226 }, // SE Asia Standard Time / Christmas Island |
| 377 | { .windowsIdKey: 102, .country: 101, .ianaIdIndex: 5243 }, // SE Asia Standard Time / Indonesia |
| 378 | { .windowsIdKey: 102, .country: 117, .ianaIdIndex: 5271 }, // SE Asia Standard Time / Laos |
| 379 | { .windowsIdKey: 102, .country: 211, .ianaIdIndex: 5286 }, // SE Asia Standard Time / Thailand |
| 380 | { .windowsIdKey: 102, .country: 232, .ianaIdIndex: 5299 }, // SE Asia Standard Time / Vietnam |
| 381 | { .windowsIdKey: 103, .country: 0, .ianaIdIndex: 5311 }, // Singapore Standard Time / AnyCountry |
| 382 | { .windowsIdKey: 103, .country: 32, .ianaIdIndex: 5321 }, // Singapore Standard Time / Brunei |
| 383 | { .windowsIdKey: 103, .country: 101, .ianaIdIndex: 5333 }, // Singapore Standard Time / Indonesia |
| 384 | { .windowsIdKey: 103, .country: 130, .ianaIdIndex: 5347 }, // Singapore Standard Time / Malaysia |
| 385 | { .windowsIdKey: 103, .country: 170, .ianaIdIndex: 5378 }, // Singapore Standard Time / Philippines |
| 386 | { .windowsIdKey: 103, .country: 190, .ianaIdIndex: 5390 }, // Singapore Standard Time / Singapore |
| 387 | { .windowsIdKey: 104, .country: 0, .ianaIdIndex: 5405 }, // South Africa Standard Time / AnyCountry |
| 388 | { .windowsIdKey: 104, .country: 28, .ianaIdIndex: 5415 }, // South Africa Standard Time / Botswana |
| 389 | { .windowsIdKey: 104, .country: 35, .ianaIdIndex: 5431 }, // South Africa Standard Time / Burundi |
| 390 | { .windowsIdKey: 104, .country: 49, .ianaIdIndex: 5448 }, // South Africa Standard Time / Congo Kinshasa |
| 391 | { .windowsIdKey: 104, .country: 120, .ianaIdIndex: 5466 }, // South Africa Standard Time / Lesotho |
| 392 | { .windowsIdKey: 104, .country: 129, .ianaIdIndex: 5480 }, // South Africa Standard Time / Malawi |
| 393 | { .windowsIdKey: 104, .country: 146, .ianaIdIndex: 5496 }, // South Africa Standard Time / Mozambique |
| 394 | { .windowsIdKey: 104, .country: 179, .ianaIdIndex: 5510 }, // South Africa Standard Time / Rwanda |
| 395 | { .windowsIdKey: 104, .country: 195, .ianaIdIndex: 5524 }, // South Africa Standard Time / South Africa |
| 396 | { .windowsIdKey: 104, .country: 204, .ianaIdIndex: 5544 }, // South Africa Standard Time / Swaziland |
| 397 | { .windowsIdKey: 104, .country: 239, .ianaIdIndex: 5559 }, // South Africa Standard Time / Zambia |
| 398 | { .windowsIdKey: 104, .country: 240, .ianaIdIndex: 5573 }, // South Africa Standard Time / Zimbabwe |
| 399 | { .windowsIdKey: 104, .country: 254, .ianaIdIndex: 5587 }, // South Africa Standard Time / South Sudan |
| 400 | { .windowsIdKey: 105, .country: 198, .ianaIdIndex: 5599 }, // Sri Lanka Standard Time / Sri Lanka |
| 401 | { .windowsIdKey: 106, .country: 201, .ianaIdIndex: 5612 }, // Sudan Standard Time / Sudan |
| 402 | { .windowsIdKey: 107, .country: 207, .ianaIdIndex: 5628 }, // Syria Standard Time / Syria |
| 403 | { .windowsIdKey: 108, .country: 208, .ianaIdIndex: 5642 }, // Taipei Standard Time / Taiwan |
| 404 | { .windowsIdKey: 109, .country: 13, .ianaIdIndex: 5654 }, // Tasmania Standard Time / Australia |
| 405 | { .windowsIdKey: 110, .country: 30, .ianaIdIndex: 5709 }, // Tocantins Standard Time / Brazil |
| 406 | { .windowsIdKey: 111, .country: 0, .ianaIdIndex: 5727 }, // Tokyo Standard Time / AnyCountry |
| 407 | { .windowsIdKey: 111, .country: 62, .ianaIdIndex: 5737 }, // Tokyo Standard Time / East Timor |
| 408 | { .windowsIdKey: 111, .country: 101, .ianaIdIndex: 5747 }, // Tokyo Standard Time / Indonesia |
| 409 | { .windowsIdKey: 111, .country: 108, .ianaIdIndex: 5761 }, // Tokyo Standard Time / Japan |
| 410 | { .windowsIdKey: 111, .country: 164, .ianaIdIndex: 5772 }, // Tokyo Standard Time / Palau |
| 411 | { .windowsIdKey: 112, .country: 178, .ianaIdIndex: 5786 }, // Tomsk Standard Time / Russia |
| 412 | { .windowsIdKey: 113, .country: 214, .ianaIdIndex: 5797 }, // Tonga Standard Time / Tonga |
| 413 | { .windowsIdKey: 114, .country: 178, .ianaIdIndex: 5815 }, // Transbaikal Standard Time / Russia |
| 414 | { .windowsIdKey: 115, .country: 217, .ianaIdIndex: 5826 }, // Turkey Standard Time / Turkey |
| 415 | { .windowsIdKey: 116, .country: 219, .ianaIdIndex: 5842 }, // Turks And Caicos Standard Time / Turks And Caicos Islands |
| 416 | { .windowsIdKey: 117, .country: 143, .ianaIdIndex: 5861 }, // Ulaanbaatar Standard Time / Mongolia |
| 417 | { .windowsIdKey: 118, .country: 225, .ianaIdIndex: 5894 }, // US Eastern Standard Time / United States |
| 418 | { .windowsIdKey: 119, .country: 0, .ianaIdIndex: 5961 }, // US Mountain Standard Time / AnyCountry |
| 419 | { .windowsIdKey: 119, .country: 38, .ianaIdIndex: 5971 }, // US Mountain Standard Time / Canada |
| 420 | { .windowsIdKey: 119, .country: 139, .ianaIdIndex: 6028 }, // US Mountain Standard Time / Mexico |
| 421 | { .windowsIdKey: 119, .country: 225, .ianaIdIndex: 6047 }, // US Mountain Standard Time / United States |
| 422 | { .windowsIdKey: 120, .country: 0, .ianaIdIndex: 6063 }, // UTC-11 / AnyCountry |
| 423 | { .windowsIdKey: 120, .country: 4, .ianaIdIndex: 6074 }, // UTC-11 / American Samoa |
| 424 | { .windowsIdKey: 120, .country: 158, .ianaIdIndex: 6092 }, // UTC-11 / Niue |
| 425 | { .windowsIdKey: 120, .country: 226, .ianaIdIndex: 6105 }, // UTC-11 / United States Minor Outlying Islands |
| 426 | { .windowsIdKey: 121, .country: 0, .ianaIdIndex: 6120 }, // UTC-09 / AnyCountry |
| 427 | { .windowsIdKey: 121, .country: 77, .ianaIdIndex: 6130 }, // UTC-09 / French Polynesia |
| 428 | { .windowsIdKey: 122, .country: 0, .ianaIdIndex: 6146 }, // UTC-08 / AnyCountry |
| 429 | { .windowsIdKey: 122, .country: 171, .ianaIdIndex: 6156 }, // UTC-08 / Pitcairn |
| 430 | { .windowsIdKey: 123, .country: 0, .ianaIdIndex: 6173 }, // UTC-02 / AnyCountry |
| 431 | { .windowsIdKey: 123, .country: 30, .ianaIdIndex: 6183 }, // UTC-02 / Brazil |
| 432 | { .windowsIdKey: 123, .country: 196, .ianaIdIndex: 6199 }, // UTC-02 / South Georgia And The South Sandwich Islands |
| 433 | { .windowsIdKey: 124, .country: 0, .ianaIdIndex: 6222 }, // UTC / AnyCountry |
| 434 | { .windowsIdKey: 125, .country: 0, .ianaIdIndex: 6238 }, // UTC+12 / AnyCountry |
| 435 | { .windowsIdKey: 125, .country: 112, .ianaIdIndex: 6249 }, // UTC+12 / Kiribati |
| 436 | { .windowsIdKey: 125, .country: 134, .ianaIdIndex: 6264 }, // UTC+12 / Marshall Islands |
| 437 | { .windowsIdKey: 125, .country: 149, .ianaIdIndex: 6297 }, // UTC+12 / Nauru |
| 438 | { .windowsIdKey: 125, .country: 220, .ianaIdIndex: 6311 }, // UTC+12 / Tuvalu |
| 439 | { .windowsIdKey: 125, .country: 226, .ianaIdIndex: 6328 }, // UTC+12 / United States Minor Outlying Islands |
| 440 | { .windowsIdKey: 125, .country: 235, .ianaIdIndex: 6341 }, // UTC+12 / Wallis And Futuna Islands |
| 441 | { .windowsIdKey: 126, .country: 0, .ianaIdIndex: 6356 }, // UTC+13 / AnyCountry |
| 442 | { .windowsIdKey: 126, .country: 112, .ianaIdIndex: 6367 }, // UTC+13 / Kiribati |
| 443 | { .windowsIdKey: 126, .country: 213, .ianaIdIndex: 6385 }, // UTC+13 / Tokelau |
| 444 | { .windowsIdKey: 127, .country: 231, .ianaIdIndex: 6401 }, // Venezuela Standard Time / Venezuela |
| 445 | { .windowsIdKey: 128, .country: 178, .ianaIdIndex: 6417 }, // Vladivostok Standard Time / Russia |
| 446 | { .windowsIdKey: 129, .country: 178, .ianaIdIndex: 6448 }, // Volgograd Standard Time / Russia |
| 447 | { .windowsIdKey: 130, .country: 13, .ianaIdIndex: 6465 }, // W. Australia Standard Time / Australia |
| 448 | { .windowsIdKey: 131, .country: 0, .ianaIdIndex: 6481 }, // W. Central Africa Standard Time / AnyCountry |
| 449 | { .windowsIdKey: 131, .country: 3, .ianaIdIndex: 6491 }, // W. Central Africa Standard Time / Algeria |
| 450 | { .windowsIdKey: 131, .country: 6, .ianaIdIndex: 6506 }, // W. Central Africa Standard Time / Angola |
| 451 | { .windowsIdKey: 131, .country: 23, .ianaIdIndex: 6520 }, // W. Central Africa Standard Time / Benin |
| 452 | { .windowsIdKey: 131, .country: 37, .ianaIdIndex: 6538 }, // W. Central Africa Standard Time / Cameroon |
| 453 | { .windowsIdKey: 131, .country: 41, .ianaIdIndex: 6552 }, // W. Central Africa Standard Time / Central African Republic |
| 454 | { .windowsIdKey: 131, .country: 42, .ianaIdIndex: 6566 }, // W. Central Africa Standard Time / Chad |
| 455 | { .windowsIdKey: 131, .country: 49, .ianaIdIndex: 6582 }, // W. Central Africa Standard Time / Congo Kinshasa |
| 456 | { .windowsIdKey: 131, .country: 50, .ianaIdIndex: 6598 }, // W. Central Africa Standard Time / Congo Brazzaville |
| 457 | { .windowsIdKey: 131, .country: 66, .ianaIdIndex: 6617 }, // W. Central Africa Standard Time / Equatorial Guinea |
| 458 | { .windowsIdKey: 131, .country: 79, .ianaIdIndex: 6631 }, // W. Central Africa Standard Time / Gabon |
| 459 | { .windowsIdKey: 131, .country: 156, .ianaIdIndex: 6649 }, // W. Central Africa Standard Time / Niger |
| 460 | { .windowsIdKey: 131, .country: 157, .ianaIdIndex: 6663 }, // W. Central Africa Standard Time / Nigeria |
| 461 | { .windowsIdKey: 131, .country: 216, .ianaIdIndex: 6676 }, // W. Central Africa Standard Time / Tunisia |
| 462 | { .windowsIdKey: 132, .country: 5, .ianaIdIndex: 6689 }, // W. Europe Standard Time / Andorra |
| 463 | { .windowsIdKey: 132, .country: 14, .ianaIdIndex: 6704 }, // W. Europe Standard Time / Austria |
| 464 | { .windowsIdKey: 132, .country: 82, .ianaIdIndex: 6718 }, // W. Europe Standard Time / Germany |
| 465 | { .windowsIdKey: 132, .country: 84, .ianaIdIndex: 6748 }, // W. Europe Standard Time / Gibraltar |
| 466 | { .windowsIdKey: 132, .country: 106, .ianaIdIndex: 6765 }, // W. Europe Standard Time / Italy |
| 467 | { .windowsIdKey: 132, .country: 123, .ianaIdIndex: 6777 }, // W. Europe Standard Time / Liechtenstein |
| 468 | { .windowsIdKey: 132, .country: 125, .ianaIdIndex: 6790 }, // W. Europe Standard Time / Luxembourg |
| 469 | { .windowsIdKey: 132, .country: 133, .ianaIdIndex: 6808 }, // W. Europe Standard Time / Malta |
| 470 | { .windowsIdKey: 132, .country: 142, .ianaIdIndex: 6821 }, // W. Europe Standard Time / Monaco |
| 471 | { .windowsIdKey: 132, .country: 151, .ianaIdIndex: 6835 }, // W. Europe Standard Time / Netherlands |
| 472 | { .windowsIdKey: 132, .country: 161, .ianaIdIndex: 6852 }, // W. Europe Standard Time / Norway |
| 473 | { .windowsIdKey: 132, .country: 184, .ianaIdIndex: 6864 }, // W. Europe Standard Time / San Marino |
| 474 | { .windowsIdKey: 132, .country: 203, .ianaIdIndex: 6882 }, // W. Europe Standard Time / Svalbard And Jan Mayen Islands |
| 475 | { .windowsIdKey: 132, .country: 205, .ianaIdIndex: 6902 }, // W. Europe Standard Time / Sweden |
| 476 | { .windowsIdKey: 132, .country: 206, .ianaIdIndex: 6919 }, // W. Europe Standard Time / Switzerland |
| 477 | { .windowsIdKey: 132, .country: 230, .ianaIdIndex: 6933 }, // W. Europe Standard Time / Vatican City State |
| 478 | { .windowsIdKey: 133, .country: 143, .ianaIdIndex: 6948 }, // W. Mongolia Standard Time / Mongolia |
| 479 | { .windowsIdKey: 134, .country: 0, .ianaIdIndex: 6958 }, // West Asia Standard Time / AnyCountry |
| 480 | { .windowsIdKey: 134, .country: 8, .ianaIdIndex: 6968 }, // West Asia Standard Time / Antarctica |
| 481 | { .windowsIdKey: 134, .country: 78, .ianaIdIndex: 6986 }, // West Asia Standard Time / French Southern Territories |
| 482 | { .windowsIdKey: 134, .country: 110, .ianaIdIndex: 7003 }, // West Asia Standard Time / Kazakhstan |
| 483 | { .windowsIdKey: 134, .country: 131, .ianaIdIndex: 7048 }, // West Asia Standard Time / Maldives |
| 484 | { .windowsIdKey: 134, .country: 209, .ianaIdIndex: 7064 }, // West Asia Standard Time / Tajikistan |
| 485 | { .windowsIdKey: 134, .country: 218, .ianaIdIndex: 7078 }, // West Asia Standard Time / Turkmenistan |
| 486 | { .windowsIdKey: 134, .country: 228, .ianaIdIndex: 7092 }, // West Asia Standard Time / Uzbekistan |
| 487 | { .windowsIdKey: 135, .country: 165, .ianaIdIndex: 7121 }, // West Bank Standard Time / Palestinian Territories |
| 488 | { .windowsIdKey: 136, .country: 0, .ianaIdIndex: 7143 }, // West Pacific Standard Time / AnyCountry |
| 489 | { .windowsIdKey: 136, .country: 8, .ianaIdIndex: 7154 }, // West Pacific Standard Time / Antarctica |
| 490 | { .windowsIdKey: 136, .country: 89, .ianaIdIndex: 7180 }, // West Pacific Standard Time / Guam |
| 491 | { .windowsIdKey: 136, .country: 140, .ianaIdIndex: 7193 }, // West Pacific Standard Time / Micronesia |
| 492 | { .windowsIdKey: 136, .country: 160, .ianaIdIndex: 7206 }, // West Pacific Standard Time / Northern Mariana Islands |
| 493 | { .windowsIdKey: 136, .country: 167, .ianaIdIndex: 7221 }, // West Pacific Standard Time / Papua New Guinea |
| 494 | { .windowsIdKey: 137, .country: 178, .ianaIdIndex: 7242 }, // Yakutsk Standard Time / Russia |
| 495 | { .windowsIdKey: 138, .country: 38, .ianaIdIndex: 7269 }, // Yukon Standard Time / Canada |
| 496 | { .windowsIdKey: 0, .country: 0, .ianaIdIndex: 0 } // Trailing zeroes |
| 497 | }; |
| 498 | |
| 499 | // Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset |
| 500 | static const QWindowsData windowsDataTable[] = { |
| 501 | { .windowsIdKey: 1, .windowsIdIndex: 0, .ianaIdIndex: 0, .offsetFromUtc: 16200 }, // Afghanistan Standard Time |
| 502 | { .windowsIdKey: 2, .windowsIdIndex: 26, .ianaIdIndex: 7303,.offsetFromUtc: -32400 }, // Alaskan Standard Time |
| 503 | { .windowsIdKey: 3, .windowsIdIndex: 48, .ianaIdIndex: 106,.offsetFromUtc: -36000 }, // Aleutian Standard Time |
| 504 | { .windowsIdKey: 4, .windowsIdIndex: 71, .ianaIdIndex: 119, .offsetFromUtc: 25200 }, // Altai Standard Time |
| 505 | { .windowsIdKey: 5, .windowsIdIndex: 91, .ianaIdIndex: 168, .offsetFromUtc: 10800 }, // Arab Standard Time |
| 506 | { .windowsIdKey: 6, .windowsIdIndex: 110, .ianaIdIndex: 212, .offsetFromUtc: 14400 }, // Arabian Standard Time |
| 507 | { .windowsIdKey: 7, .windowsIdIndex: 132, .ianaIdIndex: 223, .offsetFromUtc: 10800 }, // Arabic Standard Time |
| 508 | { .windowsIdKey: 8, .windowsIdIndex: 153, .ianaIdIndex: 7321,.offsetFromUtc: -10800 }, // Argentina Standard Time |
| 509 | { .windowsIdKey: 9, .windowsIdIndex: 177, .ianaIdIndex: 7342, .offsetFromUtc: 14400 }, // Astrakhan Standard Time |
| 510 | { .windowsIdKey: 10, .windowsIdIndex: 201, .ianaIdIndex: 7359,.offsetFromUtc: -14400 }, // Atlantic Standard Time |
| 511 | { .windowsIdKey: 11, .windowsIdIndex: 224, .ianaIdIndex: 642, .offsetFromUtc: 34200 }, // AUS Central Standard Time |
| 512 | { .windowsIdKey: 12, .windowsIdIndex: 250, .ianaIdIndex: 659, .offsetFromUtc: 31500 }, // Aus Central W. Standard Time |
| 513 | { .windowsIdKey: 13, .windowsIdIndex: 279, .ianaIdIndex: 7375, .offsetFromUtc: 36000 }, // AUS Eastern Standard Time |
| 514 | { .windowsIdKey: 14, .windowsIdIndex: 305, .ianaIdIndex: 712, .offsetFromUtc: 14400 }, // Azerbaijan Standard Time |
| 515 | { .windowsIdKey: 15, .windowsIdIndex: 330, .ianaIdIndex: 743, .offsetFromUtc: -3600 }, // Azores Standard Time |
| 516 | { .windowsIdKey: 16, .windowsIdIndex: 351, .ianaIdIndex: 759,.offsetFromUtc: -10800 }, // Bahia Standard Time |
| 517 | { .windowsIdKey: 17, .windowsIdIndex: 371, .ianaIdIndex: 773, .offsetFromUtc: 21600 }, // Bangladesh Standard Time |
| 518 | { .windowsIdKey: 18, .windowsIdIndex: 396, .ianaIdIndex: 797, .offsetFromUtc: 10800 }, // Belarus Standard Time |
| 519 | { .windowsIdKey: 19, .windowsIdIndex: 418, .ianaIdIndex: 810, .offsetFromUtc: 39600 }, // Bougainville Standard Time |
| 520 | { .windowsIdKey: 20, .windowsIdIndex: 445, .ianaIdIndex: 7392,.offsetFromUtc: -21600 }, // Canada Central Standard Time |
| 521 | { .windowsIdKey: 21, .windowsIdIndex: 474, .ianaIdIndex: 878, .offsetFromUtc: -3600 }, // Cape Verde Standard Time |
| 522 | { .windowsIdKey: 22, .windowsIdIndex: 499, .ianaIdIndex: 898, .offsetFromUtc: 14400 }, // Caucasus Standard Time |
| 523 | { .windowsIdKey: 23, .windowsIdIndex: 522, .ianaIdIndex: 7407, .offsetFromUtc: 34200 }, // Cen. Australia Standard Time |
| 524 | { .windowsIdKey: 24, .windowsIdIndex: 551, .ianaIdIndex: 1034,.offsetFromUtc: -21600 }, // Central America Standard Time |
| 525 | { .windowsIdKey: 25, .windowsIdIndex: 581, .ianaIdIndex: 7426, .offsetFromUtc: 21600 }, // Central Asia Standard Time |
| 526 | { .windowsIdKey: 26, .windowsIdIndex: 608, .ianaIdIndex: 7438,.offsetFromUtc: -14400 }, // Central Brazilian Standard Time |
| 527 | { .windowsIdKey: 27, .windowsIdIndex: 640, .ianaIdIndex: 1245, .offsetFromUtc: 3600 }, // Central Europe Standard Time |
| 528 | { .windowsIdKey: 28, .windowsIdIndex: 669, .ianaIdIndex: 1373, .offsetFromUtc: 3600 }, // Central European Standard Time |
| 529 | { .windowsIdKey: 29, .windowsIdIndex: 700, .ianaIdIndex: 1460, .offsetFromUtc: 39600 }, // Central Pacific Standard Time |
| 530 | { .windowsIdKey: 30, .windowsIdIndex: 730, .ianaIdIndex: 7453,.offsetFromUtc: -21600 }, // Central Standard Time (Mexico) |
| 531 | { .windowsIdKey: 31, .windowsIdIndex: 761, .ianaIdIndex: 7473,.offsetFromUtc: -21600 }, // Central Standard Time |
| 532 | { .windowsIdKey: 32, .windowsIdIndex: 783, .ianaIdIndex: 1839, .offsetFromUtc: 28800 }, // China Standard Time |
| 533 | { .windowsIdKey: 33, .windowsIdIndex: 803, .ianaIdIndex: 1879, .offsetFromUtc: 45900 }, // Chatham Islands Standard Time |
| 534 | { .windowsIdKey: 34, .windowsIdIndex: 833, .ianaIdIndex: 1895,.offsetFromUtc: -18000 }, // Cuba Standard Time |
| 535 | { .windowsIdKey: 35, .windowsIdIndex: 852, .ianaIdIndex: 1910,.offsetFromUtc: -43200 }, // Dateline Standard Time |
| 536 | { .windowsIdKey: 36, .windowsIdIndex: 875, .ianaIdIndex: 2011, .offsetFromUtc: 10800 }, // E. Africa Standard Time |
| 537 | { .windowsIdKey: 37, .windowsIdIndex: 899, .ianaIdIndex: 7489, .offsetFromUtc: 36000 }, // E. Australia Standard Time |
| 538 | { .windowsIdKey: 38, .windowsIdIndex: 926, .ianaIdIndex: 2152, .offsetFromUtc: 7200 }, // E. Europe Standard Time |
| 539 | { .windowsIdKey: 39, .windowsIdIndex: 950, .ianaIdIndex: 2168,.offsetFromUtc: -10800 }, // E. South America Standard Time |
| 540 | { .windowsIdKey: 40, .windowsIdIndex: 981, .ianaIdIndex: 2186,.offsetFromUtc: -21600 }, // Easter Island Standard Time |
| 541 | { .windowsIdKey: 41, .windowsIdIndex: 1009, .ianaIdIndex: 7508,.offsetFromUtc: -18000 }, // Eastern Standard Time |
| 542 | { .windowsIdKey: 42, .windowsIdIndex: 1031, .ianaIdIndex: 2486,.offsetFromUtc: -18000 }, // Eastern Standard Time (Mexico) |
| 543 | { .windowsIdKey: 43, .windowsIdIndex: 1062, .ianaIdIndex: 2501, .offsetFromUtc: 7200 }, // Egypt Standard Time |
| 544 | { .windowsIdKey: 44, .windowsIdIndex: 1082, .ianaIdIndex: 2514, .offsetFromUtc: 18000 }, // Ekaterinburg Standard Time |
| 545 | { .windowsIdKey: 45, .windowsIdIndex: 1109, .ianaIdIndex: 2533, .offsetFromUtc: 43200 }, // Fiji Standard Time |
| 546 | { .windowsIdKey: 46, .windowsIdIndex: 1128, .ianaIdIndex: 7525, .offsetFromUtc: 7200 }, // FLE Standard Time |
| 547 | { .windowsIdKey: 47, .windowsIdIndex: 1146, .ianaIdIndex: 2680, .offsetFromUtc: 14400 }, // Georgian Standard Time |
| 548 | { .windowsIdKey: 48, .windowsIdIndex: 1169, .ianaIdIndex: 2786, .offsetFromUtc: 0 }, // GMT Standard Time |
| 549 | { .windowsIdKey: 49, .windowsIdIndex: 1187, .ianaIdIndex: 2833,.offsetFromUtc: -10800 }, // Greenland Standard Time |
| 550 | { .windowsIdKey: 50, .windowsIdIndex: 1211, .ianaIdIndex: 2960, .offsetFromUtc: 0 }, // Greenwich Standard Time |
| 551 | { .windowsIdKey: 51, .windowsIdIndex: 1235, .ianaIdIndex: 3129, .offsetFromUtc: 7200 }, // GTB Standard Time |
| 552 | { .windowsIdKey: 52, .windowsIdIndex: 1253, .ianaIdIndex: 3146,.offsetFromUtc: -18000 }, // Haiti Standard Time |
| 553 | { .windowsIdKey: 53, .windowsIdIndex: 1273, .ianaIdIndex: 3213,.offsetFromUtc: -36000 }, // Hawaiian Standard Time |
| 554 | { .windowsIdKey: 54, .windowsIdIndex: 1296, .ianaIdIndex: 3247, .offsetFromUtc: 19800 }, // India Standard Time |
| 555 | { .windowsIdKey: 55, .windowsIdIndex: 1316, .ianaIdIndex: 3261, .offsetFromUtc: 12600 }, // Iran Standard Time |
| 556 | { .windowsIdKey: 56, .windowsIdIndex: 1335, .ianaIdIndex: 3273, .offsetFromUtc: 7200 }, // Israel Standard Time |
| 557 | { .windowsIdKey: 57, .windowsIdIndex: 1356, .ianaIdIndex: 3288, .offsetFromUtc: 7200 }, // Jordan Standard Time |
| 558 | { .windowsIdKey: 58, .windowsIdIndex: 1377, .ianaIdIndex: 3299, .offsetFromUtc: 7200 }, // Kaliningrad Standard Time |
| 559 | { .windowsIdKey: 59, .windowsIdIndex: 1403, .ianaIdIndex: 3318, .offsetFromUtc: 32400 }, // Korea Standard Time |
| 560 | { .windowsIdKey: 60, .windowsIdIndex: 1423, .ianaIdIndex: 3329, .offsetFromUtc: 7200 }, // Libya Standard Time |
| 561 | { .windowsIdKey: 61, .windowsIdIndex: 1443, .ianaIdIndex: 3355, .offsetFromUtc: 50400 }, // Line Islands Standard Time |
| 562 | { .windowsIdKey: 62, .windowsIdIndex: 1470, .ianaIdIndex: 3374, .offsetFromUtc: 37800 }, // Lord Howe Standard Time |
| 563 | { .windowsIdKey: 63, .windowsIdIndex: 1494, .ianaIdIndex: 3394, .offsetFromUtc: 36000 }, // Magadan Standard Time |
| 564 | { .windowsIdKey: 64, .windowsIdIndex: 1516, .ianaIdIndex: 3407,.offsetFromUtc: -10800 }, // Magallanes Standard Time |
| 565 | { .windowsIdKey: 65, .windowsIdIndex: 1541, .ianaIdIndex: 3428,.offsetFromUtc: -34200 }, // Marquesas Standard Time |
| 566 | { .windowsIdKey: 66, .windowsIdIndex: 1565, .ianaIdIndex: 3446, .offsetFromUtc: 14400 }, // Mauritius Standard Time |
| 567 | { .windowsIdKey: 67, .windowsIdIndex: 1589, .ianaIdIndex: 3490, .offsetFromUtc: 7200 }, // Middle East Standard Time |
| 568 | { .windowsIdKey: 68, .windowsIdIndex: 1615, .ianaIdIndex: 3502,.offsetFromUtc: -10800 }, // Montevideo Standard Time |
| 569 | { .windowsIdKey: 69, .windowsIdIndex: 1640, .ianaIdIndex: 3521, .offsetFromUtc: 0 }, // Morocco Standard Time |
| 570 | { .windowsIdKey: 70, .windowsIdIndex: 1662, .ianaIdIndex: 7537,.offsetFromUtc: -25200 }, // Mountain Standard Time (Mexico) |
| 571 | { .windowsIdKey: 71, .windowsIdIndex: 1694, .ianaIdIndex: 7555,.offsetFromUtc: -25200 }, // Mountain Standard Time |
| 572 | { .windowsIdKey: 72, .windowsIdIndex: 1717, .ianaIdIndex: 3730, .offsetFromUtc: 23400 }, // Myanmar Standard Time |
| 573 | { .windowsIdKey: 73, .windowsIdIndex: 1739, .ianaIdIndex: 3743, .offsetFromUtc: 21600 }, // N. Central Asia Standard Time |
| 574 | { .windowsIdKey: 74, .windowsIdIndex: 1769, .ianaIdIndex: 3760, .offsetFromUtc: 3600 }, // Namibia Standard Time |
| 575 | { .windowsIdKey: 75, .windowsIdIndex: 1791, .ianaIdIndex: 3776, .offsetFromUtc: 20700 }, // Nepal Standard Time |
| 576 | { .windowsIdKey: 76, .windowsIdIndex: 1811, .ianaIdIndex: 3809, .offsetFromUtc: 43200 }, // New Zealand Standard Time |
| 577 | { .windowsIdKey: 77, .windowsIdIndex: 1837, .ianaIdIndex: 3826,.offsetFromUtc: -12600 }, // Newfoundland Standard Time |
| 578 | { .windowsIdKey: 78, .windowsIdIndex: 1864, .ianaIdIndex: 3843, .offsetFromUtc: 39600 }, // Norfolk Standard Time |
| 579 | { .windowsIdKey: 79, .windowsIdIndex: 1886, .ianaIdIndex: 3859, .offsetFromUtc: 28800 }, // North Asia East Standard Time |
| 580 | { .windowsIdKey: 80, .windowsIdIndex: 1916, .ianaIdIndex: 7570, .offsetFromUtc: 25200 }, // North Asia Standard Time |
| 581 | { .windowsIdKey: 81, .windowsIdIndex: 1941, .ianaIdIndex: 3907, .offsetFromUtc: 30600 }, // North Korea Standard Time |
| 582 | { .windowsIdKey: 82, .windowsIdIndex: 1967, .ianaIdIndex: 3922, .offsetFromUtc: 21600 }, // Omsk Standard Time |
| 583 | { .windowsIdKey: 83, .windowsIdIndex: 1986, .ianaIdIndex: 3932,.offsetFromUtc: -10800 }, // Pacific SA Standard Time |
| 584 | { .windowsIdKey: 84, .windowsIdIndex: 2011, .ianaIdIndex: 3975,.offsetFromUtc: -28800 }, // Pacific Standard Time |
| 585 | { .windowsIdKey: 85, .windowsIdIndex: 2033, .ianaIdIndex: 7587,.offsetFromUtc: -28800 }, // Pacific Standard Time (Mexico) |
| 586 | { .windowsIdKey: 86, .windowsIdIndex: 2064, .ianaIdIndex: 4032, .offsetFromUtc: 18000 }, // Pakistan Standard Time |
| 587 | { .windowsIdKey: 87, .windowsIdIndex: 2087, .ianaIdIndex: 4045,.offsetFromUtc: -14400 }, // Paraguay Standard Time |
| 588 | { .windowsIdKey: 88, .windowsIdIndex: 2110, .ianaIdIndex: 4062, .offsetFromUtc: 18000 }, // Qyzylorda Standard Time |
| 589 | { .windowsIdKey: 89, .windowsIdIndex: 2134, .ianaIdIndex: 4111, .offsetFromUtc: 3600 }, // Romance Standard Time |
| 590 | { .windowsIdKey: 90, .windowsIdIndex: 2156, .ianaIdIndex: 4151, .offsetFromUtc: 14400 }, // Russia Time Zone 3 |
| 591 | { .windowsIdKey: 91, .windowsIdIndex: 2175, .ianaIdIndex: 4165, .offsetFromUtc: 39600 }, // Russia Time Zone 10 |
| 592 | { .windowsIdKey: 92, .windowsIdIndex: 2195, .ianaIdIndex: 7603, .offsetFromUtc: 43200 }, // Russia Time Zone 11 |
| 593 | { .windowsIdKey: 93, .windowsIdIndex: 2215, .ianaIdIndex: 7618, .offsetFromUtc: 10800 }, // Russian Standard Time |
| 594 | { .windowsIdKey: 94, .windowsIdIndex: 2237, .ianaIdIndex: 4399,.offsetFromUtc: -10800 }, // SA Eastern Standard Time |
| 595 | { .windowsIdKey: 95, .windowsIdIndex: 2262, .ianaIdIndex: 4517,.offsetFromUtc: -18000 }, // SA Pacific Standard Time |
| 596 | { .windowsIdKey: 96, .windowsIdIndex: 2287, .ianaIdIndex: 4668,.offsetFromUtc: -14400 }, // SA Western Standard Time |
| 597 | { .windowsIdKey: 97, .windowsIdIndex: 2312, .ianaIdIndex: 5108,.offsetFromUtc: -10800 }, // Saint Pierre Standard Time |
| 598 | { .windowsIdKey: 98, .windowsIdIndex: 2339, .ianaIdIndex: 5125, .offsetFromUtc: 39600 }, // Sakhalin Standard Time |
| 599 | { .windowsIdKey: 99, .windowsIdIndex: 2362, .ianaIdIndex: 5139, .offsetFromUtc: 46800 }, // Samoa Standard Time |
| 600 | { .windowsIdKey: 100, .windowsIdIndex: 2382, .ianaIdIndex: 5152, .offsetFromUtc: 0 }, // Sao Tome Standard Time |
| 601 | { .windowsIdKey: 101, .windowsIdIndex: 2405, .ianaIdIndex: 5168, .offsetFromUtc: 14400 }, // Saratov Standard Time |
| 602 | { .windowsIdKey: 102, .windowsIdIndex: 2427, .ianaIdIndex: 5286, .offsetFromUtc: 25200 }, // SE Asia Standard Time |
| 603 | { .windowsIdKey: 103, .windowsIdIndex: 2449, .ianaIdIndex: 5390, .offsetFromUtc: 28800 }, // Singapore Standard Time |
| 604 | { .windowsIdKey: 104, .windowsIdIndex: 2473, .ianaIdIndex: 5524, .offsetFromUtc: 7200 }, // South Africa Standard Time |
| 605 | { .windowsIdKey: 105, .windowsIdIndex: 2500, .ianaIdIndex: 5599, .offsetFromUtc: 19800 }, // Sri Lanka Standard Time |
| 606 | { .windowsIdKey: 106, .windowsIdIndex: 2524, .ianaIdIndex: 5612, .offsetFromUtc: 7200 }, // Sudan Standard Time |
| 607 | { .windowsIdKey: 107, .windowsIdIndex: 2544, .ianaIdIndex: 5628, .offsetFromUtc: 7200 }, // Syria Standard Time |
| 608 | { .windowsIdKey: 108, .windowsIdIndex: 2564, .ianaIdIndex: 5642, .offsetFromUtc: 28800 }, // Taipei Standard Time |
| 609 | { .windowsIdKey: 109, .windowsIdIndex: 2585, .ianaIdIndex: 7632, .offsetFromUtc: 36000 }, // Tasmania Standard Time |
| 610 | { .windowsIdKey: 110, .windowsIdIndex: 2608, .ianaIdIndex: 5709,.offsetFromUtc: -10800 }, // Tocantins Standard Time |
| 611 | { .windowsIdKey: 111, .windowsIdIndex: 2632, .ianaIdIndex: 5761, .offsetFromUtc: 32400 }, // Tokyo Standard Time |
| 612 | { .windowsIdKey: 112, .windowsIdIndex: 2652, .ianaIdIndex: 5786, .offsetFromUtc: 25200 }, // Tomsk Standard Time |
| 613 | { .windowsIdKey: 113, .windowsIdIndex: 2672, .ianaIdIndex: 5797, .offsetFromUtc: 46800 }, // Tonga Standard Time |
| 614 | { .windowsIdKey: 114, .windowsIdIndex: 2692, .ianaIdIndex: 5815, .offsetFromUtc: 32400 }, // Transbaikal Standard Time |
| 615 | { .windowsIdKey: 115, .windowsIdIndex: 2718, .ianaIdIndex: 5826, .offsetFromUtc: 7200 }, // Turkey Standard Time |
| 616 | { .windowsIdKey: 116, .windowsIdIndex: 2739, .ianaIdIndex: 5842,.offsetFromUtc: -14400 }, // Turks And Caicos Standard Time |
| 617 | { .windowsIdKey: 117, .windowsIdIndex: 2770, .ianaIdIndex: 7649, .offsetFromUtc: 28800 }, // Ulaanbaatar Standard Time |
| 618 | { .windowsIdKey: 118, .windowsIdIndex: 2796, .ianaIdIndex: 7666,.offsetFromUtc: -18000 }, // US Eastern Standard Time |
| 619 | { .windowsIdKey: 119, .windowsIdIndex: 2821, .ianaIdIndex: 6047,.offsetFromUtc: -25200 }, // US Mountain Standard Time |
| 620 | { .windowsIdKey: 120, .windowsIdIndex: 2847, .ianaIdIndex: 6063,.offsetFromUtc: -39600 }, // UTC-11 |
| 621 | { .windowsIdKey: 121, .windowsIdIndex: 2854, .ianaIdIndex: 6120,.offsetFromUtc: -32400 }, // UTC-09 |
| 622 | { .windowsIdKey: 122, .windowsIdIndex: 2861, .ianaIdIndex: 6146,.offsetFromUtc: -28800 }, // UTC-08 |
| 623 | { .windowsIdKey: 123, .windowsIdIndex: 2868, .ianaIdIndex: 6173, .offsetFromUtc: -7200 }, // UTC-02 |
| 624 | { .windowsIdKey: 124, .windowsIdIndex: 2875, .ianaIdIndex: 7687, .offsetFromUtc: 0 }, // UTC |
| 625 | { .windowsIdKey: 125, .windowsIdIndex: 2879, .ianaIdIndex: 6238, .offsetFromUtc: 43200 }, // UTC+12 |
| 626 | { .windowsIdKey: 126, .windowsIdIndex: 2886, .ianaIdIndex: 6356, .offsetFromUtc: 46800 }, // UTC+13 |
| 627 | { .windowsIdKey: 127, .windowsIdIndex: 2893, .ianaIdIndex: 6401,.offsetFromUtc: -16200 }, // Venezuela Standard Time |
| 628 | { .windowsIdKey: 128, .windowsIdIndex: 2917, .ianaIdIndex: 7695, .offsetFromUtc: 36000 }, // Vladivostok Standard Time |
| 629 | { .windowsIdKey: 129, .windowsIdIndex: 2943, .ianaIdIndex: 6448, .offsetFromUtc: 14400 }, // Volgograd Standard Time |
| 630 | { .windowsIdKey: 130, .windowsIdIndex: 2967, .ianaIdIndex: 6465, .offsetFromUtc: 28800 }, // W. Australia Standard Time |
| 631 | { .windowsIdKey: 131, .windowsIdIndex: 2994, .ianaIdIndex: 6663, .offsetFromUtc: 3600 }, // W. Central Africa Standard Time |
| 632 | { .windowsIdKey: 132, .windowsIdIndex: 3026, .ianaIdIndex: 7712, .offsetFromUtc: 3600 }, // W. Europe Standard Time |
| 633 | { .windowsIdKey: 133, .windowsIdIndex: 3050, .ianaIdIndex: 6948, .offsetFromUtc: 25200 }, // W. Mongolia Standard Time |
| 634 | { .windowsIdKey: 134, .windowsIdIndex: 3076, .ianaIdIndex: 7726, .offsetFromUtc: 18000 }, // West Asia Standard Time |
| 635 | { .windowsIdKey: 135, .windowsIdIndex: 3100, .ianaIdIndex: 7740, .offsetFromUtc: 7200 }, // West Bank Standard Time |
| 636 | { .windowsIdKey: 136, .windowsIdIndex: 3124, .ianaIdIndex: 7221, .offsetFromUtc: 36000 }, // West Pacific Standard Time |
| 637 | { .windowsIdKey: 137, .windowsIdIndex: 3151, .ianaIdIndex: 7752, .offsetFromUtc: 32400 }, // Yakutsk Standard Time |
| 638 | { .windowsIdKey: 138, .windowsIdIndex: 3173, .ianaIdIndex: 7765,.offsetFromUtc: -25200 }, // Yukon Standard Time |
| 639 | { .windowsIdKey: 0, .windowsIdIndex: 0, .ianaIdIndex: 0, .offsetFromUtc: 0 } // Trailing zeroes |
| 640 | }; |
| 641 | |
| 642 | // IANA ID Index, UTC Offset |
| 643 | static const QUtcData utcDataTable[] = { |
| 644 | { .ianaIdIndex: 7784, .offsetFromUtc: 0 }, // UTC |
| 645 | { .ianaIdIndex: 7788,.offsetFromUtc: -50400 }, // UTC-14:00 |
| 646 | { .ianaIdIndex: 7798,.offsetFromUtc: -46800 }, // UTC-13:00 |
| 647 | { .ianaIdIndex: 7808,.offsetFromUtc: -43200 }, // UTC-12:00 |
| 648 | { .ianaIdIndex: 7818,.offsetFromUtc: -39600 }, // UTC-11:00 |
| 649 | { .ianaIdIndex: 7828,.offsetFromUtc: -36000 }, // UTC-10:00 |
| 650 | { .ianaIdIndex: 7838,.offsetFromUtc: -32400 }, // UTC-09:00 |
| 651 | { .ianaIdIndex: 7848,.offsetFromUtc: -28800 }, // UTC-08:00 |
| 652 | { .ianaIdIndex: 7858,.offsetFromUtc: -25200 }, // UTC-07:00 |
| 653 | { .ianaIdIndex: 7868,.offsetFromUtc: -21600 }, // UTC-06:00 |
| 654 | { .ianaIdIndex: 7878,.offsetFromUtc: -18000 }, // UTC-05:00 |
| 655 | { .ianaIdIndex: 7888,.offsetFromUtc: -16200 }, // UTC-04:30 |
| 656 | { .ianaIdIndex: 7898,.offsetFromUtc: -14400 }, // UTC-04:00 |
| 657 | { .ianaIdIndex: 7908,.offsetFromUtc: -12600 }, // UTC-03:30 |
| 658 | { .ianaIdIndex: 7918,.offsetFromUtc: -10800 }, // UTC-03:00 |
| 659 | { .ianaIdIndex: 7928, .offsetFromUtc: -7200 }, // UTC-02:00 |
| 660 | { .ianaIdIndex: 7938, .offsetFromUtc: -3600 }, // UTC-01:00 |
| 661 | { .ianaIdIndex: 7948, .offsetFromUtc: 0 }, // UTC-00:00 |
| 662 | { .ianaIdIndex: 7958, .offsetFromUtc: 0 }, // UTC+00:00 |
| 663 | { .ianaIdIndex: 7968, .offsetFromUtc: 3600 }, // UTC+01:00 |
| 664 | { .ianaIdIndex: 7978, .offsetFromUtc: 7200 }, // UTC+02:00 |
| 665 | { .ianaIdIndex: 7988, .offsetFromUtc: 10800 }, // UTC+03:00 |
| 666 | { .ianaIdIndex: 7998, .offsetFromUtc: 12600 }, // UTC+03:30 |
| 667 | { .ianaIdIndex: 8008, .offsetFromUtc: 14400 }, // UTC+04:00 |
| 668 | { .ianaIdIndex: 8018, .offsetFromUtc: 16200 }, // UTC+04:30 |
| 669 | { .ianaIdIndex: 8028, .offsetFromUtc: 18000 }, // UTC+05:00 |
| 670 | { .ianaIdIndex: 8038, .offsetFromUtc: 19800 }, // UTC+05:30 |
| 671 | { .ianaIdIndex: 8048, .offsetFromUtc: 20700 }, // UTC+05:45 |
| 672 | { .ianaIdIndex: 8058, .offsetFromUtc: 21600 }, // UTC+06:00 |
| 673 | { .ianaIdIndex: 8068, .offsetFromUtc: 23400 }, // UTC+06:30 |
| 674 | { .ianaIdIndex: 8078, .offsetFromUtc: 25200 }, // UTC+07:00 |
| 675 | { .ianaIdIndex: 8088, .offsetFromUtc: 28800 }, // UTC+08:00 |
| 676 | { .ianaIdIndex: 8098, .offsetFromUtc: 30600 }, // UTC+08:30 |
| 677 | { .ianaIdIndex: 8108, .offsetFromUtc: 32400 }, // UTC+09:00 |
| 678 | { .ianaIdIndex: 8118, .offsetFromUtc: 34200 }, // UTC+09:30 |
| 679 | { .ianaIdIndex: 8128, .offsetFromUtc: 36000 }, // UTC+10:00 |
| 680 | { .ianaIdIndex: 8138, .offsetFromUtc: 39600 }, // UTC+11:00 |
| 681 | { .ianaIdIndex: 8148, .offsetFromUtc: 43200 }, // UTC+12:00 |
| 682 | { .ianaIdIndex: 8158, .offsetFromUtc: 46800 }, // UTC+13:00 |
| 683 | { .ianaIdIndex: 8168, .offsetFromUtc: 50400 }, // UTC+14:00 |
| 684 | { .ianaIdIndex: 0, .offsetFromUtc: 0 } // Trailing zeroes |
| 685 | }; |
| 686 | |
| 687 | static const char windowsIdData[] = { |
| 688 | 0x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 689 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 690 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, |
| 691 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x74, 0x61, 0x69, 0x20, 0x53, 0x74, 0x61, |
| 692 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 693 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, |
| 694 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x63, 0x20, 0x53, |
| 695 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, |
| 696 | 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x73, 0x74, |
| 697 | 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 698 | 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 699 | 0x69, 0x6d, 0x65, 0x0, 0x41, 0x55, 0x53, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 700 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x75, 0x73, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
| 701 | 0x6c, 0x20, 0x57, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, |
| 702 | 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 703 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 704 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, |
| 705 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x61, 0x68, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, |
| 706 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x61, 0x6e, 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73, |
| 707 | 0x68, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x65, 0x6c, 0x61, |
| 708 | 0x72, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x6f, |
| 709 | 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 710 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, |
| 711 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x70, 0x65, 0x20, 0x56, |
| 712 | 0x65, 0x72, 0x64, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, |
| 713 | 0x61, 0x75, 0x63, 0x61, 0x73, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 714 | 0x65, 0x0, 0x43, 0x65, 0x6e, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, |
| 715 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, |
| 716 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 717 | 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 718 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x42, 0x72, 0x61, 0x7a, |
| 719 | 0x69, 0x6c, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 720 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 721 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, |
| 722 | 0x6f, 0x70, 0x65, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 723 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 724 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, |
| 725 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, |
| 726 | 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 727 | 0x6d, 0x65, 0x0, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 728 | 0x6d, 0x65, 0x0, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, |
| 729 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x75, 0x62, 0x61, 0x20, 0x53, 0x74, |
| 730 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x44, 0x61, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x65, |
| 731 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x66, |
| 732 | 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, |
| 733 | 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 734 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 735 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
| 736 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 737 | 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 738 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, |
| 739 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, |
| 740 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, |
| 741 | 0x29, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 742 | 0x65, 0x0, 0x45, 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 743 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x69, 0x6a, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 744 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x4c, 0x45, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 745 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 746 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x4d, 0x54, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 747 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, |
| 748 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, |
| 749 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x54, 0x42, 0x20, 0x53, |
| 750 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x69, 0x74, 0x69, 0x20, 0x53, |
| 751 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x61, |
| 752 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x6e, 0x64, 0x69, |
| 753 | 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x72, 0x61, 0x6e, |
| 754 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, |
| 755 | 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4a, 0x6f, 0x72, 0x64, |
| 756 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4b, 0x61, 0x6c, |
| 757 | 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 758 | 0x6d, 0x65, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 759 | 0x6d, 0x65, 0x0, 0x4c, 0x69, 0x62, 0x79, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 760 | 0x6d, 0x65, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 761 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, 0x6f, 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x20, |
| 762 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, |
| 763 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, |
| 764 | 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 765 | 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 766 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 767 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x45, 0x61, 0x73, 0x74, |
| 768 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x6e, 0x74, 0x65, |
| 769 | 0x76, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 770 | 0x4d, 0x6f, 0x72, 0x6f, 0x63, 0x63, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 771 | 0x65, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 772 | 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, |
| 773 | 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x79, 0x61, |
| 774 | 0x6e, 0x6d, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, |
| 775 | 0x2e, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 776 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x61, 0x6d, 0x69, 0x62, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, |
| 777 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x70, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, |
| 778 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, 0x20, 0x5a, 0x65, 0x61, 0x6c, 0x61, |
| 779 | 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, |
| 780 | 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 781 | 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 782 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x45, 0x61, 0x73, |
| 783 | 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, |
| 784 | 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 785 | 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 786 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 787 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x41, 0x20, 0x53, 0x74, 0x61, |
| 788 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, |
| 789 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 790 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, |
| 791 | 0x63, 0x6f, 0x29, 0x0, 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 792 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 793 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x20, |
| 794 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x6f, 0x6d, 0x61, 0x6e, 0x63, |
| 795 | 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x75, 0x73, 0x73, |
| 796 | 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x33, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, |
| 797 | 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x30, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, |
| 798 | 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x31, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, |
| 799 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, |
| 800 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 801 | 0x65, 0x0, 0x53, 0x41, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 802 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, |
| 803 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x69, 0x6e, 0x74, 0x20, 0x50, 0x69, |
| 804 | 0x65, 0x72, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, |
| 805 | 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 806 | 0x65, 0x0, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 807 | 0x65, 0x0, 0x53, 0x61, 0x6f, 0x20, 0x54, 0x6f, 0x6d, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 808 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x76, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 809 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x45, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 810 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x20, 0x53, |
| 811 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
| 812 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 813 | 0x53, 0x72, 0x69, 0x20, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 814 | 0x69, 0x6d, 0x65, 0x0, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 815 | 0x69, 0x6d, 0x65, 0x0, 0x53, 0x79, 0x72, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 816 | 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 817 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 818 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x63, 0x61, 0x6e, 0x74, 0x69, 0x6e, 0x73, 0x20, 0x53, 0x74, |
| 819 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x20, 0x53, 0x74, |
| 820 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, |
| 821 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x20, 0x53, 0x74, |
| 822 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x62, 0x61, 0x69, |
| 823 | 0x6b, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, |
| 824 | 0x72, 0x6b, 0x65, 0x79, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, |
| 825 | 0x75, 0x72, 0x6b, 0x73, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x69, 0x63, 0x6f, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 826 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, |
| 827 | 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x53, 0x20, 0x45, |
| 828 | 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 829 | 0x0, 0x55, 0x53, 0x20, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 830 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, |
| 831 | 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, |
| 832 | 0x54, 0x43, 0x2b, 0x31, 0x32, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x0, 0x56, 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, |
| 833 | 0x6c, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, 0x6c, 0x61, |
| 834 | 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 835 | 0x6d, 0x65, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 836 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, |
| 837 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x43, 0x65, 0x6e, |
| 838 | 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 839 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 840 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, |
| 841 | 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, |
| 842 | 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 843 | 0x57, 0x65, 0x73, 0x74, 0x20, 0x42, 0x61, 0x6e, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 844 | 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, |
| 845 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20, 0x53, |
| 846 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x75, 0x6b, 0x6f, 0x6e, 0x20, 0x53, |
| 847 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0 |
| 848 | }; |
| 849 | |
| 850 | static const char ianaIdData[] = { |
| 851 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 852 | 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, |
| 853 | 0x65, 0x61, 0x75, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, |
| 854 | 0x6c, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 855 | 0x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x59, 0x61, |
| 856 | 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, 0x0, 0x41, |
| 857 | 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, 0x61, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68, |
| 858 | 0x72, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69, |
| 859 | 0x61, 0x2f, 0x51, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, 0x61, 0x64, 0x68, 0x0, |
| 860 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x34, 0x0, |
| 861 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73, 0x63, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x62, |
| 862 | 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, 0x64, 0x61, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 863 | 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, |
| 864 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x52, 0x69, |
| 865 | 0x6f, 0x6a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, |
| 866 | 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, 0x65, 0x67, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 867 | 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x20, 0x41, |
| 868 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, |
| 869 | 0x5f, 0x4a, 0x75, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, |
| 870 | 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4c, 0x75, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 871 | 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x41, |
| 872 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55, 0x73, 0x68, |
| 873 | 0x75, 0x61, 0x69, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x74, 0x61, 0x6d, 0x61, 0x72, |
| 874 | 0x63, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x20, 0x41, |
| 875 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 876 | 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, |
| 877 | 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76, |
| 878 | 0x73, 0x6b, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64, 0x61, 0x0, |
| 879 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 880 | 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 881 | 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 882 | 0x4d, 0x6f, 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6c, |
| 883 | 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x77, 0x69, 0x6e, 0x0, 0x41, |
| 884 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45, 0x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
| 885 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, |
| 886 | 0x61, 0x2f, 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6b, |
| 887 | 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x73, 0x62, 0x79, 0x73, 0x75, |
| 888 | 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41, |
| 889 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, |
| 890 | 0x61, 0x6b, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, 0x75, 0x0, 0x45, 0x75, 0x72, |
| 891 | 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x42, 0x6f, |
| 892 | 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, |
| 893 | 0x65, 0x67, 0x69, 0x6e, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f, |
| 894 | 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x0, 0x41, 0x74, |
| 895 | 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, 0x72, 0x64, 0x65, 0x0, 0x41, 0x73, |
| 896 | 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 897 | 0x2f, 0x41, 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 898 | 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, |
| 899 | 0x36, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, 0x7a, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 900 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, 0x5f, 0x52, 0x69, 0x63, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 901 | 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, 0x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 902 | 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 903 | 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 904 | 0x54, 0x65, 0x67, 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 905 | 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x36, 0x0, 0x41, 0x6e, |
| 906 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x49, 0x6e, 0x64, 0x69, |
| 907 | 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x72, 0x75, 0x6d, 0x71, |
| 908 | 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, |
| 909 | 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x68, 0x6b, 0x65, 0x6b, |
| 910 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 911 | 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x70, 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, |
| 912 | 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72, |
| 913 | 0x61, 0x67, 0x75, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, |
| 914 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, |
| 915 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 916 | 0x70, 0x65, 0x2f, 0x50, 0x6f, 0x64, 0x67, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 917 | 0x42, 0x65, 0x6c, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, |
| 918 | 0x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x67, 0x72, 0x65, 0x62, 0x0, 0x45, |
| 919 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 920 | 0x57, 0x61, 0x72, 0x73, 0x61, 0x77, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x31, 0x0, 0x41, 0x6e, |
| 921 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 922 | 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x6f, |
| 923 | 0x73, 0x72, 0x61, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, |
| 924 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, 0x6c, 0x0, |
| 925 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 926 | 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 927 | 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x20, 0x41, 0x6d, 0x65, |
| 928 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 929 | 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x0, 0x43, 0x53, 0x54, 0x36, 0x43, 0x44, 0x54, 0x0, 0x41, 0x6d, |
| 930 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 931 | 0x63, 0x61, 0x2f, 0x52, 0x61, 0x69, 0x6e, 0x79, 0x5f, 0x52, 0x69, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 932 | 0x63, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, 0x6e, 0x6c, 0x65, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 933 | 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 934 | 0x2f, 0x4d, 0x61, 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, |
| 935 | 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, |
| 936 | 0x6e, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, |
| 937 | 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, 0x6c, 0x6c, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 938 | 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 939 | 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x42, 0x65, 0x75, 0x6c, 0x61, 0x68, 0x20, |
| 940 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, |
| 941 | 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, |
| 942 | 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, |
| 943 | 0x73, 0x69, 0x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, |
| 944 | 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x50, |
| 945 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 946 | 0x63, 0x61, 0x2f, 0x48, 0x61, 0x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, |
| 947 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, |
| 948 | 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, 0x72, |
| 949 | 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, 0x74, 0x69, 0x0, 0x41, 0x66, |
| 950 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x65, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 951 | 0x64, 0x64, 0x69, 0x73, 0x5f, 0x41, 0x62, 0x61, 0x62, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, |
| 952 | 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x41, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x6e, |
| 953 | 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, |
| 954 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, |
| 955 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, 0x6d, 0x0, 0x41, |
| 956 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, |
| 957 | 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 958 | 0x69, 0x61, 0x2f, 0x4c, 0x69, 0x6e, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, |
| 959 | 0x68, 0x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, |
| 960 | 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, |
| 961 | 0x0, 0x45, 0x53, 0x54, 0x35, 0x45, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x73, |
| 962 | 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x20, |
| 963 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x71, 0x61, 0x6c, 0x75, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 964 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x72, 0x65, 0x61, 0x6c, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 965 | 0x2f, 0x4e, 0x69, 0x70, 0x69, 0x67, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, |
| 966 | 0x67, 0x6e, 0x69, 0x72, 0x74, 0x75, 0x6e, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, |
| 967 | 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, |
| 968 | 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, |
| 969 | 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x50, 0x65, |
| 970 | 0x74, 0x65, 0x72, 0x73, 0x62, 0x75, 0x72, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, |
| 971 | 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 972 | 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x61, 0x6d, 0x61, 0x63, 0x20, 0x41, |
| 973 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, |
| 974 | 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, |
| 975 | 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, |
| 976 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, |
| 977 | 0x65, 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 978 | 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6f, 0x66, 0x69, 0x61, 0x0, 0x45, |
| 979 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, 0x6c, 0x6c, 0x69, 0x6e, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 980 | 0x2f, 0x48, 0x65, 0x6c, 0x73, 0x69, 0x6e, 0x6b, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, |
| 981 | 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, 0x73, 0x0, 0x45, 0x75, 0x72, |
| 982 | 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x7a, 0x68, 0x67, |
| 983 | 0x6f, 0x72, 0x6f, 0x64, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x70, 0x6f, 0x72, 0x6f, 0x7a, 0x68, |
| 984 | 0x79, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x72, 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, |
| 985 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, |
| 986 | 0x63, 0x2f, 0x46, 0x61, 0x65, 0x72, 0x6f, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x75, 0x65, 0x72, |
| 987 | 0x6e, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, 0x45, |
| 988 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x20, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, |
| 989 | 0x63, 0x2f, 0x4d, 0x61, 0x64, 0x65, 0x69, 0x72, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, |
| 990 | 0x61, 0x6e, 0x61, 0x72, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f, 0x6e, 0x64, 0x6f, 0x6e, 0x0, |
| 991 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, 0x6c, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, |
| 992 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 993 | 0x2f, 0x47, 0x6f, 0x64, 0x74, 0x68, 0x61, 0x62, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, 0x61, 0x67, |
| 994 | 0x61, 0x64, 0x6f, 0x75, 0x67, 0x6f, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, 0x6a, |
| 995 | 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x6a, 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, |
| 996 | 0x69, 0x63, 0x61, 0x2f, 0x41, 0x63, 0x63, 0x72, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, |
| 997 | 0x6e, 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, |
| 998 | 0x6e, 0x61, 0x6b, 0x72, 0x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x73, 0x61, 0x75, 0x0, |
| 999 | 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, 0x61, 0x76, 0x69, 0x6b, 0x0, 0x41, |
| 1000 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x72, 0x6f, 0x76, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 1001 | 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, |
| 1002 | 0x6b, 0x63, 0x68, 0x6f, 0x74, 0x74, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6b, 0x61, 0x72, 0x0, |
| 1003 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x72, 0x65, 0x65, 0x74, 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x74, 0x6c, 0x61, |
| 1004 | 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x5f, 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 1005 | 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x20, |
| 1006 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x46, 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1007 | 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x63, 0x68, |
| 1008 | 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, |
| 1009 | 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x30, 0x0, |
| 1010 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x50, 0x61, |
| 1011 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1012 | 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, 0x75, 0x6c, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4a, 0x6f, |
| 1013 | 0x68, 0x6e, 0x73, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x74, 0x74, 0x61, |
| 1014 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x65, |
| 1015 | 0x72, 0x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, 0x6e, 0x0, 0x45, |
| 1016 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x73, |
| 1017 | 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, |
| 1018 | 0x6f, 0x6c, 0x69, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x34, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 1019 | 0x69, 0x63, 0x2f, 0x4b, 0x69, 0x72, 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, |
| 1020 | 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, |
| 1021 | 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, |
| 1022 | 0x5f, 0x41, 0x72, 0x65, 0x6e, 0x61, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, |
| 1023 | 0x75, 0x65, 0x73, 0x61, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, |
| 1024 | 0x75, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x49, 0x6e, |
| 1025 | 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x68, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, |
| 1026 | 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, |
| 1027 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61, 0x62, 0x6c, 0x61, 0x6e, 0x63, 0x61, 0x0, 0x41, |
| 1028 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1029 | 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1030 | 0x2f, 0x4d, 0x61, 0x7a, 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x4d, 0x53, 0x54, 0x37, 0x4d, 0x44, 0x54, 0x0, 0x41, 0x6d, |
| 1031 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1032 | 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, |
| 1033 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1034 | 0x59, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x6b, 0x6e, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1035 | 0x4f, 0x6a, 0x69, 0x6e, 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, |
| 1036 | 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, 0x0, 0x49, 0x6e, 0x64, |
| 1037 | 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x67, 0x6f, |
| 1038 | 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x73, 0x69, 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, |
| 1039 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1040 | 0x2f, 0x4b, 0x61, 0x74, 0x6d, 0x61, 0x6e, 0x64, 0x75, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, |
| 1041 | 0x2f, 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x75, 0x63, |
| 1042 | 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, |
| 1043 | 0x6e, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x41, |
| 1044 | 0x73, 0x69, 0x61, 0x2f, 0x49, 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, |
| 1045 | 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x6b, 0x75, |
| 1046 | 0x7a, 0x6e, 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x79, 0x6f, 0x6e, 0x67, 0x79, 0x61, 0x6e, |
| 1047 | 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1048 | 0x53, 0x61, 0x6e, 0x74, 0x69, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x53, 0x54, 0x38, 0x50, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, |
| 1049 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1050 | 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1051 | 0x63, 0x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1052 | 0x61, 0x6e, 0x74, 0x61, 0x5f, 0x49, 0x73, 0x61, 0x62, 0x65, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x72, |
| 1053 | 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x75, 0x6e, 0x63, 0x69, 0x6f, |
| 1054 | 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, 0x75, 0x72, |
| 1055 | 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1056 | 0x43, 0x6f, 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x61, |
| 1057 | 0x72, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64, 0x20, 0x41, 0x66, |
| 1058 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x65, 0x75, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, |
| 1059 | 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, 0x6c, 0x79, |
| 1060 | 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x20, 0x41, |
| 1061 | 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, |
| 1062 | 0x73, 0x63, 0x6f, 0x77, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0, 0x45, 0x75, |
| 1063 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 1064 | 0x47, 0x4d, 0x54, 0x2b, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x6f, 0x74, |
| 1065 | 0x68, 0x65, 0x72, 0x61, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6c, 0x6d, |
| 1066 | 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x65, 0x7a, 0x61, |
| 1067 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1068 | 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, |
| 1069 | 0x63, 0x69, 0x66, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x72, 0x65, |
| 1070 | 0x6d, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x61, 0x6e, 0x6c, 0x65, 0x79, 0x0, 0x41, |
| 1071 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1072 | 0x63, 0x61, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 1073 | 0x54, 0x2b, 0x35, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, |
| 1074 | 0x63, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, 0x65, 0x0, |
| 1075 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x61, 0x6c, 0x5f, 0x48, 0x61, 0x72, 0x62, 0x6f, 0x75, |
| 1076 | 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, |
| 1077 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1078 | 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x61, |
| 1079 | 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, |
| 1080 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 1081 | 0x54, 0x2b, 0x34, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x61, |
| 1082 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x61, 0x0, 0x41, 0x6d, 0x65, |
| 1083 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, |
| 1084 | 0x61, 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x50, |
| 1085 | 0x61, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x75, 0x73, 0x20, 0x41, 0x6d, |
| 1086 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, 0x74, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 1087 | 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x5f, 0x56, 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1088 | 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, |
| 1089 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1090 | 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, 0x5f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1091 | 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x65, 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1092 | 0x47, 0x75, 0x61, 0x64, 0x65, 0x6c, 0x6f, 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, |
| 1093 | 0x75, 0x79, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x74, 0x69, 0x6e, |
| 1094 | 0x69, 0x71, 0x75, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, |
| 1095 | 0x72, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, |
| 1096 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, |
| 1097 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, |
| 1098 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1099 | 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1100 | 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1101 | 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1102 | 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, |
| 1103 | 0x42, 0x61, 0x72, 0x74, 0x68, 0x65, 0x6c, 0x65, 0x6d, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
| 1104 | 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x6c, 0x65, |
| 1105 | 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x5f, |
| 1106 | 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x69, 0x71, 0x75, |
| 1107 | 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x50, |
| 1108 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1109 | 0x61, 0x6f, 0x5f, 0x54, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, 0x74, |
| 1110 | 0x6f, 0x76, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x37, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, |
| 1111 | 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, 0x6f, 0x6d, |
| 1112 | 0x5f, 0x50, 0x65, 0x6e, 0x68, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, 0x74, 0x6d, |
| 1113 | 0x61, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x20, 0x41, 0x73, 0x69, 0x61, |
| 1114 | 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x69, 0x65, 0x6e, |
| 1115 | 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, 0x0, 0x41, |
| 1116 | 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x69, 0x67, 0x6f, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x38, |
| 1117 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, |
| 1118 | 0x6b, 0x61, 0x73, 0x73, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, 0x4c, 0x75, |
| 1119 | 0x6d, 0x70, 0x75, 0x72, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, |
| 1120 | 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, 0x67, 0x61, |
| 1121 | 0x70, 0x6f, 0x72, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x32, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 1122 | 0x61, 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, |
| 1123 | 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x62, 0x75, 0x6d, |
| 1124 | 0x62, 0x61, 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, 0x0, |
| 1125 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 1126 | 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, |
| 1127 | 0x61, 0x6c, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, |
| 1128 | 0x75, 0x72, 0x67, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, |
| 1129 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1130 | 0x48, 0x61, 0x72, 0x61, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, 0x0, 0x41, |
| 1131 | 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, |
| 1132 | 0x68, 0x61, 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73, 0x63, 0x75, |
| 1133 | 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, |
| 1134 | 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 1135 | 0x2f, 0x43, 0x75, 0x72, 0x72, 0x69, 0x65, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
| 1136 | 0x61, 0x63, 0x71, 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x61, |
| 1137 | 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x39, 0x0, 0x41, 0x73, 0x69, |
| 1138 | 0x61, 0x2f, 0x44, 0x69, 0x6c, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, |
| 1139 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1140 | 0x50, 0x61, 0x6c, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, |
| 1141 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1142 | 0x43, 0x68, 0x69, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, |
| 1143 | 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x54, 0x75, 0x72, 0x6b, |
| 1144 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, 0x41, 0x73, |
| 1145 | 0x69, 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x69, 0x62, 0x61, 0x6c, 0x73, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1146 | 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1147 | 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, 0x6e, 0x67, 0x6f, 0x20, 0x41, |
| 1148 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, 0x61, 0x79, |
| 1149 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x37, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, |
| 1150 | 0x72, 0x65, 0x73, 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, 0x6f, |
| 1151 | 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, |
| 1152 | 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65, 0x72, 0x6d, |
| 1153 | 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, |
| 1154 | 0x69, 0x78, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x31, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 1155 | 0x63, 0x2f, 0x50, 0x61, 0x67, 0x6f, 0x5f, 0x50, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1156 | 0x4e, 0x69, 0x75, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, 0x79, 0x0, |
| 1157 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, |
| 1158 | 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 1159 | 0x66, 0x69, 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, |
| 1160 | 0x2b, 0x32, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, |
| 1161 | 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, |
| 1162 | 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x20, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, 0x45, 0x74, |
| 1163 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x32, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x72, |
| 1164 | 0x61, 0x77, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, 0x20, 0x50, |
| 1165 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, |
| 1166 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, |
| 1167 | 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6b, 0x65, |
| 1168 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 1169 | 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x6e, 0x64, 0x65, 0x72, |
| 1170 | 0x62, 0x75, 0x72, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, 0x66, 0x6f, |
| 1171 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41, 0x73, 0x69, |
| 1172 | 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, |
| 1173 | 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, 0x6c, 0x67, 0x6f, |
| 1174 | 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74, 0x68, |
| 1175 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6c, |
| 1176 | 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x61, 0x6e, 0x64, 0x61, 0x0, |
| 1177 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, 0x41, 0x66, |
| 1178 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, |
| 1179 | 0x61, 0x6e, 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, 0x6a, 0x61, 0x6d, 0x65, 0x6e, |
| 1180 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, 0x66, |
| 1181 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, 0x61, 0x7a, 0x7a, 0x61, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, |
| 1182 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, |
| 1183 | 0x62, 0x72, 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x61, 0x6d, |
| 1184 | 0x65, 0x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 1185 | 0x63, 0x61, 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6e, 0x64, 0x6f, |
| 1186 | 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x6e, 0x61, 0x0, 0x45, 0x75, |
| 1187 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, |
| 1188 | 0x75, 0x73, 0x69, 0x6e, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x69, 0x62, 0x72, 0x61, |
| 1189 | 0x6c, 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, |
| 1190 | 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x75, 0x78, |
| 1191 | 0x65, 0x6d, 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c, 0x74, 0x61, |
| 1192 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1193 | 0x65, 0x2f, 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4f, |
| 1194 | 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x6e, |
| 1195 | 0x6f, 0x0, 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, 0x79, 0x65, 0x61, 0x72, 0x62, 0x79, 0x65, |
| 1196 | 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x68, 0x6f, 0x6c, 0x6d, 0x0, 0x45, |
| 1197 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, 0x63, 0x68, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1198 | 0x56, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, 0x45, 0x74, |
| 1199 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x35, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
| 1200 | 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, 0x65, 0x72, 0x67, 0x75, 0x65, 0x6c, |
| 1201 | 0x65, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, |
| 1202 | 0x74, 0x61, 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x6f, 0x62, 0x65, 0x20, 0x41, 0x73, 0x69, 0x61, |
| 1203 | 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, 0x75, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x6c, 0x64, 0x69, |
| 1204 | 0x76, 0x65, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x41, 0x73, |
| 1205 | 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, |
| 1206 | 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, |
| 1207 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x47, 0x61, |
| 1208 | 0x7a, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x30, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 1209 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, |
| 1210 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1211 | 0x2f, 0x54, 0x72, 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, 0x61, 0x6e, |
| 1212 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, 0x73, 0x62, |
| 1213 | 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1214 | 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, |
| 1215 | 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, |
| 1216 | 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, |
| 1217 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, |
| 1218 | 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x0, 0x41, |
| 1219 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, 0x78, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
| 1220 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1221 | 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, |
| 1222 | 0x6c, 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0, 0x41, 0x6d, |
| 1223 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1224 | 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1225 | 0x2f, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, |
| 1226 | 0x72, 0x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, |
| 1227 | 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x0, 0x41, 0x6d, 0x65, |
| 1228 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1229 | 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x73, 0x6e, |
| 1230 | 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, |
| 1231 | 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x0, 0x45, 0x75, |
| 1232 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, |
| 1233 | 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, |
| 1234 | 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, |
| 1235 | 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1236 | 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, |
| 1237 | 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x0, |
| 1238 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, |
| 1239 | 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, |
| 1240 | 0x72, 0x73, 0x65, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1241 | 0x43, 0x2d, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1242 | 0x43, 0x2d, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1243 | 0x43, 0x2d, 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1244 | 0x43, 0x2d, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1245 | 0x43, 0x2d, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, |
| 1246 | 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, |
| 1247 | 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1248 | 0x43, 0x2d, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1249 | 0x43, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1250 | 0x43, 0x2b, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1251 | 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1252 | 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1253 | 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, |
| 1254 | 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, |
| 1255 | 0x43, 0x2b, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1256 | 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1257 | 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1258 | 0x43, 0x2b, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1259 | 0x43, 0x2b, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x34, 0x3a, 0x30, 0x30, 0x0 |
| 1260 | }; |
| 1261 | // GENERATED PART ENDS HERE |
| 1262 | |
| 1263 | QT_END_NAMESPACE |
| 1264 | |
| 1265 | #endif // QTIMEZONEPRIVATE_DATA_P_H |
| 1266 | |