1// Copyright (C) 2021 The Qt Company Ltd.
2// Copyright (C) 2013 John Layt <jlayt@kde.org>
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
4
5
6#ifndef QTIMEZONEPRIVATE_DATA_P_H
7#define QTIMEZONEPRIVATE_DATA_P_H
8
9//
10// W A R N I N G
11// -------------
12//
13// This file is not part of the Qt API. It exists for the convenience
14// of internal files. This header file may change from version to version
15// without notice, or even be removed.
16//
17// We mean it.
18//
19
20#include <QtCore/private/qglobal_p.h>
21#include "qbytearrayview.h"
22#include "qstring.h"
23
24QT_BEGIN_NAMESPACE
25
26/*
27 Windows Zone ID support, included in default base class build so can be used on all platforms,
28 e.g. an app running on Linux may need to communicate with a Windows Outlook server. These
29 tables can also be used to look-up Region Codes and UTC Offsets on platforms that don't directly
30 support them., e.g. Mac does not support availableTimeZones() filtering by region or offset.
31
32 Another data table is provided for generic UTC+00:00 format time zones to be used as a
33 fall-back if no system time zones are available (QT_NO_SYSTEMLOCALE is set) or for QDateTimes
34 with a QT:Spec of OffsetFromUTC
35
36 These tables are automatically adapted from the CLDR supplemental/windowsZones.xml data file
37 using a script in qtbase/util/locale_database. Please do not edit this data directly. In the
38 future if ICU is made a hard dependency then the ICU resource can be used directly and this
39 table removed
40*/
41
42struct QZoneData
43{
44 quint16 windowsIdKey; // Windows ID Key
45 quint16 territory; // Territory of IANA ID's, AnyTerritory means No Territory
46 quint16 ianaIdIndex; // All IANA ID's for the Windows ID and Country, space separated
47 inline QLatin1StringView id() const; // Space-joined list of IANA IDs
48 inline auto ids() const { return id().tokenize(needle: u' '); }
49};
50
51struct QWindowsData
52{
53 quint16 windowsIdKey; // Windows ID Key
54 quint16 windowsIdIndex; // Windows ID Literal
55 quint16 ianaIdIndex; // IANA IDs for the Windows ID
56 qint32 offsetFromUtc; // Standard Time Offset from UTC, used for quick look-ups
57 inline QByteArrayView windowsId() const;
58 inline QByteArrayView ianaId() const; // Space-joined list of IANA IDs
59};
60
61struct QUtcData
62{
63 quint16 ianaIdIndex; // IANA IDs
64 qint32 offsetFromUtc; // Offset form UTC is seconds
65 inline QByteArrayView id() const; // Space-joined list of IANA IDs
66};
67
68/*
69 COPYRIGHT AND PERMISSION NOTICE
70
71 Copyright © 1991-2012 Unicode, Inc. All rights reserved. Distributed under
72 the Terms of Use in http://www.unicode.org/copyright.html.
73
74 Permission is hereby granted, free of charge, to any person obtaining a
75 copy of the Unicode data files and any associated documentation (the "Data
76 Files") or Unicode software and any associated documentation (the "Software")
77 to deal in the Data Files or Software without restriction, including without
78 limitation the rights to use, copy, modify, merge, publish, distribute, and/or
79 sell copies of the Data Files or Software, and to permit persons to whom the
80 Data Files or Software are furnished to do so, provided that (a) the above
81 copyright notice(s) and this permission notice appear with all copies of the
82 Data Files or Software, (b) both the above copyright notice(s) and this
83 permission notice appear in associated documentation, and (c) there is clear
84 notice in each modified Data File or in the Software as well as in the
85 documentation associated with the Data File(s) or Software that the data or
86 software has been modified.
87*/
88
89// GENERATED PART STARTS HERE
90
91/*
92 This part of the file was generated on 2023-08-01 from the
93 Common Locale Data Repository v43 file supplemental/windowsZones.xml
94
95 http://www.unicode.org/cldr/
96
97 Do not edit this code: run cldr2qtimezone.py on updated (or
98 edited) CLDR data; see qtbase/util/locale_database/.
99*/
100
101// Windows ID Key, Territory Enum, IANA ID Index
102static constexpr QZoneData zoneDataTable[] = {
103 { .windowsIdKey: 1, .territory: 1, .ianaIdIndex: 0 }, // Afghanistan Standard Time / Afghanistan
104 { .windowsIdKey: 2, .territory: 248, .ianaIdIndex: 11 }, // Alaskan Standard Time / United States
105 { .windowsIdKey: 3, .territory: 248, .ianaIdIndex: 106 }, // Aleutian Standard Time / United States
106 { .windowsIdKey: 4, .territory: 193, .ianaIdIndex: 119 }, // Altai Standard Time / Russia
107 { .windowsIdKey: 5, .territory: 19, .ianaIdIndex: 132 }, // Arab Standard Time / Bahrain
108 { .windowsIdKey: 5, .territory: 127, .ianaIdIndex: 145 }, // Arab Standard Time / Kuwait
109 { .windowsIdKey: 5, .territory: 190, .ianaIdIndex: 157 }, // Arab Standard Time / Qatar
110 { .windowsIdKey: 5, .territory: 205, .ianaIdIndex: 168 }, // Arab Standard Time / Saudi Arabia
111 { .windowsIdKey: 5, .territory: 259, .ianaIdIndex: 180 }, // Arab Standard Time / Yemen
112 { .windowsIdKey: 6, .territory: 0, .ianaIdIndex: 190 }, // Arabian Standard Time / AnyTerritory
113 { .windowsIdKey: 6, .territory: 176, .ianaIdIndex: 200 }, // Arabian Standard Time / Oman
114 { .windowsIdKey: 6, .territory: 245, .ianaIdIndex: 212 }, // Arabian Standard Time / United Arab Emirates
115 { .windowsIdKey: 7, .territory: 113, .ianaIdIndex: 223 }, // Arabic Standard Time / Iraq
116 { .windowsIdKey: 8, .territory: 11, .ianaIdIndex: 236 }, // Argentina Standard Time / Argentina
117 { .windowsIdKey: 9, .territory: 193, .ianaIdIndex: 509 }, // Astrakhan Standard Time / Russia
118 { .windowsIdKey: 10, .territory: 26, .ianaIdIndex: 543 }, // Atlantic Standard Time / Bermuda
119 { .windowsIdKey: 10, .territory: 41, .ianaIdIndex: 560 }, // Atlantic Standard Time / Canada
120 { .windowsIdKey: 10, .territory: 95, .ianaIdIndex: 628 }, // Atlantic Standard Time / Greenland
121 { .windowsIdKey: 11, .territory: 15, .ianaIdIndex: 642 }, // AUS Central Standard Time / Australia
122 { .windowsIdKey: 12, .territory: 15, .ianaIdIndex: 659 }, // Aus Central W. Standard Time / Australia
123 { .windowsIdKey: 13, .territory: 15, .ianaIdIndex: 675 }, // AUS Eastern Standard Time / Australia
124 { .windowsIdKey: 14, .territory: 17, .ianaIdIndex: 712 }, // Azerbaijan Standard Time / Azerbaijan
125 { .windowsIdKey: 15, .territory: 95, .ianaIdIndex: 722 }, // Azores Standard Time / Greenland
126 { .windowsIdKey: 15, .territory: 188, .ianaIdIndex: 743 }, // Azores Standard Time / Portugal
127 { .windowsIdKey: 16, .territory: 32, .ianaIdIndex: 759 }, // Bahia Standard Time / Brazil
128 { .windowsIdKey: 17, .territory: 20, .ianaIdIndex: 773 }, // Bangladesh Standard Time / Bangladesh
129 { .windowsIdKey: 17, .territory: 27, .ianaIdIndex: 784 }, // Bangladesh Standard Time / Bhutan
130 { .windowsIdKey: 18, .territory: 22, .ianaIdIndex: 797 }, // Belarus Standard Time / Belarus
131 { .windowsIdKey: 19, .territory: 182, .ianaIdIndex: 810 }, // Bougainville Standard Time / Papua New Guinea
132 { .windowsIdKey: 20, .territory: 41, .ianaIdIndex: 831 }, // Canada Central Standard Time / Canada
133 { .windowsIdKey: 21, .territory: 0, .ianaIdIndex: 868 }, // Cape Verde Standard Time / AnyTerritory
134 { .windowsIdKey: 21, .territory: 43, .ianaIdIndex: 878 }, // Cape Verde Standard Time / Cape Verde
135 { .windowsIdKey: 22, .territory: 12, .ianaIdIndex: 898 }, // Caucasus Standard Time / Armenia
136 { .windowsIdKey: 23, .territory: 15, .ianaIdIndex: 911 }, // Cen. Australia Standard Time / Australia
137 { .windowsIdKey: 24, .territory: 0, .ianaIdIndex: 952 }, // Central America Standard Time / AnyTerritory
138 { .windowsIdKey: 24, .territory: 24, .ianaIdIndex: 962 }, // Central America Standard Time / Belize
139 { .windowsIdKey: 24, .territory: 59, .ianaIdIndex: 977 }, // Central America Standard Time / Costa Rica
140 { .windowsIdKey: 24, .territory: 70, .ianaIdIndex: 996 }, // Central America Standard Time / Ecuador
141 { .windowsIdKey: 24, .territory: 72, .ianaIdIndex: 1014 }, // Central America Standard Time / El Salvador
142 { .windowsIdKey: 24, .territory: 99, .ianaIdIndex: 1034 }, // Central America Standard Time / Guatemala
143 { .windowsIdKey: 24, .territory: 106, .ianaIdIndex: 1052 }, // Central America Standard Time / Honduras
144 { .windowsIdKey: 24, .territory: 168, .ianaIdIndex: 1072 }, // Central America Standard Time / Nicaragua
145 { .windowsIdKey: 25, .territory: 0, .ianaIdIndex: 1088 }, // Central Asia Standard Time / AnyTerritory
146 { .windowsIdKey: 25, .territory: 9, .ianaIdIndex: 1098 }, // Central Asia Standard Time / Antarctica
147 { .windowsIdKey: 25, .territory: 33, .ianaIdIndex: 1116 }, // Central Asia Standard Time / British Indian Ocean Territory
148 { .windowsIdKey: 25, .territory: 50, .ianaIdIndex: 1130 }, // Central Asia Standard Time / China
149 { .windowsIdKey: 25, .territory: 123, .ianaIdIndex: 1142 }, // Central Asia Standard Time / Kazakhstan
150 { .windowsIdKey: 25, .territory: 128, .ianaIdIndex: 1168 }, // Central Asia Standard Time / Kyrgyzstan
151 { .windowsIdKey: 26, .territory: 32, .ianaIdIndex: 1181 }, // Central Brazilian Standard Time / Brazil
152 { .windowsIdKey: 27, .territory: 3, .ianaIdIndex: 1217 }, // Central Europe Standard Time / Albania
153 { .windowsIdKey: 27, .territory: 64, .ianaIdIndex: 1231 }, // Central Europe Standard Time / Czechia
154 { .windowsIdKey: 27, .territory: 108, .ianaIdIndex: 1245 }, // Central Europe Standard Time / Hungary
155 { .windowsIdKey: 27, .territory: 157, .ianaIdIndex: 1261 }, // Central Europe Standard Time / Montenegro
156 { .windowsIdKey: 27, .territory: 207, .ianaIdIndex: 1278 }, // Central Europe Standard Time / Serbia
157 { .windowsIdKey: 27, .territory: 212, .ianaIdIndex: 1294 }, // Central Europe Standard Time / Slovakia
158 { .windowsIdKey: 27, .territory: 213, .ianaIdIndex: 1312 }, // Central Europe Standard Time / Slovenia
159 { .windowsIdKey: 28, .territory: 29, .ianaIdIndex: 1329 }, // Central European Standard Time / Bosnia And Herzegovina
160 { .windowsIdKey: 28, .territory: 60, .ianaIdIndex: 1345 }, // Central European Standard Time / Croatia
161 { .windowsIdKey: 28, .territory: 140, .ianaIdIndex: 1359 }, // Central European Standard Time / Macedonia
162 { .windowsIdKey: 28, .territory: 187, .ianaIdIndex: 1373 }, // Central European Standard Time / Poland
163 { .windowsIdKey: 29, .territory: 0, .ianaIdIndex: 1387 }, // Central Pacific Standard Time / AnyTerritory
164 { .windowsIdKey: 29, .territory: 9, .ianaIdIndex: 1398 }, // Central Pacific Standard Time / Antarctica
165 { .windowsIdKey: 29, .territory: 153, .ianaIdIndex: 1415 }, // Central Pacific Standard Time / Micronesia
166 { .windowsIdKey: 29, .territory: 166, .ianaIdIndex: 1445 }, // Central Pacific Standard Time / New Caledonia
167 { .windowsIdKey: 29, .territory: 214, .ianaIdIndex: 1460 }, // Central Pacific Standard Time / Solomon Islands
168 { .windowsIdKey: 29, .territory: 252, .ianaIdIndex: 1480 }, // Central Pacific Standard Time / Vanuatu
169 { .windowsIdKey: 30, .territory: 152, .ianaIdIndex: 1494 }, // Central Standard Time (Mexico) / Mexico
170 { .windowsIdKey: 31, .territory: 0, .ianaIdIndex: 1588 }, // Central Standard Time / AnyTerritory
171 { .windowsIdKey: 31, .territory: 41, .ianaIdIndex: 1596 }, // Central Standard Time / Canada
172 { .windowsIdKey: 31, .territory: 152, .ianaIdIndex: 1671 }, // Central Standard Time / Mexico
173 { .windowsIdKey: 31, .territory: 248, .ianaIdIndex: 1705 }, // Central Standard Time / United States
174 { .windowsIdKey: 32, .territory: 50, .ianaIdIndex: 1873 }, // China Standard Time / China
175 { .windowsIdKey: 32, .territory: 107, .ianaIdIndex: 1887 }, // China Standard Time / Hong Kong
176 { .windowsIdKey: 32, .territory: 139, .ianaIdIndex: 1902 }, // China Standard Time / Macao
177 { .windowsIdKey: 33, .territory: 167, .ianaIdIndex: 1913 }, // Chatham Islands Standard Time / New Zealand
178 { .windowsIdKey: 34, .territory: 61, .ianaIdIndex: 1929 }, // Cuba Standard Time / Cuba
179 { .windowsIdKey: 35, .territory: 0, .ianaIdIndex: 1944 }, // Dateline Standard Time / AnyTerritory
180 { .windowsIdKey: 36, .territory: 0, .ianaIdIndex: 1955 }, // E. Africa Standard Time / AnyTerritory
181 { .windowsIdKey: 36, .territory: 9, .ianaIdIndex: 1965 }, // E. Africa Standard Time / Antarctica
182 { .windowsIdKey: 36, .territory: 55, .ianaIdIndex: 1982 }, // E. Africa Standard Time / Comoros
183 { .windowsIdKey: 36, .territory: 67, .ianaIdIndex: 1996 }, // E. Africa Standard Time / Djibouti
184 { .windowsIdKey: 36, .territory: 74, .ianaIdIndex: 2012 }, // E. Africa Standard Time / Eritrea
185 { .windowsIdKey: 36, .territory: 77, .ianaIdIndex: 2026 }, // E. Africa Standard Time / Ethiopia
186 { .windowsIdKey: 36, .territory: 124, .ianaIdIndex: 2045 }, // E. Africa Standard Time / Kenya
187 { .windowsIdKey: 36, .territory: 141, .ianaIdIndex: 2060 }, // E. Africa Standard Time / Madagascar
188 { .windowsIdKey: 36, .territory: 151, .ianaIdIndex: 2080 }, // E. Africa Standard Time / Mayotte
189 { .windowsIdKey: 36, .territory: 215, .ianaIdIndex: 2095 }, // E. Africa Standard Time / Somalia
190 { .windowsIdKey: 36, .territory: 230, .ianaIdIndex: 2112 }, // E. Africa Standard Time / Tanzania
191 { .windowsIdKey: 36, .territory: 243, .ianaIdIndex: 2133 }, // E. Africa Standard Time / Uganda
192 { .windowsIdKey: 37, .territory: 15, .ianaIdIndex: 2148 }, // E. Australia Standard Time / Australia
193 { .windowsIdKey: 38, .territory: 154, .ianaIdIndex: 2186 }, // E. Europe Standard Time / Moldova
194 { .windowsIdKey: 39, .territory: 32, .ianaIdIndex: 2202 }, // E. South America Standard Time / Brazil
195 { .windowsIdKey: 40, .territory: 49, .ianaIdIndex: 2220 }, // Easter Island Standard Time / Chile
196 { .windowsIdKey: 41, .territory: 0, .ianaIdIndex: 2235 }, // Eastern Standard Time / AnyTerritory
197 { .windowsIdKey: 41, .territory: 18, .ianaIdIndex: 2243 }, // Eastern Standard Time / Bahamas
198 { .windowsIdKey: 41, .territory: 41, .ianaIdIndex: 2258 }, // Eastern Standard Time / Canada
199 { .windowsIdKey: 41, .territory: 248, .ianaIdIndex: 2363 }, // Eastern Standard Time / United States
200 { .windowsIdKey: 42, .territory: 152, .ianaIdIndex: 2520 }, // Eastern Standard Time (Mexico) / Mexico
201 { .windowsIdKey: 43, .territory: 71, .ianaIdIndex: 2535 }, // Egypt Standard Time / Egypt
202 { .windowsIdKey: 44, .territory: 193, .ianaIdIndex: 2548 }, // Ekaterinburg Standard Time / Russia
203 { .windowsIdKey: 45, .territory: 82, .ianaIdIndex: 2567 }, // Fiji Standard Time / Fiji
204 { .windowsIdKey: 46, .territory: 2, .ianaIdIndex: 2580 }, // FLE Standard Time / Aland Islands
205 { .windowsIdKey: 46, .territory: 36, .ianaIdIndex: 2597 }, // FLE Standard Time / Bulgaria
206 { .windowsIdKey: 46, .territory: 75, .ianaIdIndex: 2610 }, // FLE Standard Time / Estonia
207 { .windowsIdKey: 46, .territory: 83, .ianaIdIndex: 2625 }, // FLE Standard Time / Finland
208 { .windowsIdKey: 46, .territory: 131, .ianaIdIndex: 2641 }, // FLE Standard Time / Latvia
209 { .windowsIdKey: 46, .territory: 137, .ianaIdIndex: 2653 }, // FLE Standard Time / Lithuania
210 { .windowsIdKey: 46, .territory: 244, .ianaIdIndex: 2668 }, // FLE Standard Time / Ukraine
211 { .windowsIdKey: 47, .territory: 90, .ianaIdIndex: 2714 }, // Georgian Standard Time / Georgia
212 { .windowsIdKey: 48, .territory: 81, .ianaIdIndex: 2727 }, // GMT Standard Time / Faroe Islands
213 { .windowsIdKey: 48, .territory: 100, .ianaIdIndex: 2743 }, // GMT Standard Time / Guernsey
214 { .windowsIdKey: 48, .territory: 114, .ianaIdIndex: 2759 }, // GMT Standard Time / Ireland
215 { .windowsIdKey: 48, .territory: 115, .ianaIdIndex: 2773 }, // GMT Standard Time / Isle Of Man
216 { .windowsIdKey: 48, .territory: 121, .ianaIdIndex: 2792 }, // GMT Standard Time / Jersey
217 { .windowsIdKey: 48, .territory: 188, .ianaIdIndex: 2806 }, // GMT Standard Time / Portugal
218 { .windowsIdKey: 48, .territory: 220, .ianaIdIndex: 2837 }, // GMT Standard Time / Spain
219 { .windowsIdKey: 48, .territory: 246, .ianaIdIndex: 2853 }, // GMT Standard Time / United Kingdom
220 { .windowsIdKey: 49, .territory: 95, .ianaIdIndex: 2867 }, // Greenland Standard Time / Greenland
221 { .windowsIdKey: 50, .territory: 37, .ianaIdIndex: 2883 }, // Greenwich Standard Time / Burkina Faso
222 { .windowsIdKey: 50, .territory: 89, .ianaIdIndex: 2902 }, // Greenwich Standard Time / Gambia
223 { .windowsIdKey: 50, .territory: 92, .ianaIdIndex: 2916 }, // Greenwich Standard Time / Ghana
224 { .windowsIdKey: 50, .territory: 95, .ianaIdIndex: 2929 }, // Greenwich Standard Time / Greenland
225 { .windowsIdKey: 50, .territory: 101, .ianaIdIndex: 2950 }, // Greenwich Standard Time / Guinea Bissau
226 { .windowsIdKey: 50, .territory: 102, .ianaIdIndex: 2964 }, // Greenwich Standard Time / Guinea
227 { .windowsIdKey: 50, .territory: 109, .ianaIdIndex: 2979 }, // Greenwich Standard Time / Iceland
228 { .windowsIdKey: 50, .territory: 118, .ianaIdIndex: 2998 }, // Greenwich Standard Time / Ivory Coast
229 { .windowsIdKey: 50, .territory: 134, .ianaIdIndex: 3013 }, // Greenwich Standard Time / Liberia
230 { .windowsIdKey: 50, .territory: 145, .ianaIdIndex: 3029 }, // Greenwich Standard Time / Mali
231 { .windowsIdKey: 50, .territory: 149, .ianaIdIndex: 3043 }, // Greenwich Standard Time / Mauritania
232 { .windowsIdKey: 50, .territory: 196, .ianaIdIndex: 3061 }, // Greenwich Standard Time / Saint Helena
233 { .windowsIdKey: 50, .territory: 206, .ianaIdIndex: 3080 }, // Greenwich Standard Time / Senegal
234 { .windowsIdKey: 50, .territory: 209, .ianaIdIndex: 3093 }, // Greenwich Standard Time / Sierra Leone
235 { .windowsIdKey: 50, .territory: 233, .ianaIdIndex: 3109 }, // Greenwich Standard Time / Togo
236 { .windowsIdKey: 51, .territory: 63, .ianaIdIndex: 3121 }, // GTB Standard Time / Cyprus
237 { .windowsIdKey: 51, .territory: 94, .ianaIdIndex: 3149 }, // GTB Standard Time / Greece
238 { .windowsIdKey: 51, .territory: 192, .ianaIdIndex: 3163 }, // GTB Standard Time / Romania
239 { .windowsIdKey: 52, .territory: 104, .ianaIdIndex: 3180 }, // Haiti Standard Time / Haiti
240 { .windowsIdKey: 53, .territory: 0, .ianaIdIndex: 3203 }, // Hawaiian Standard Time / AnyTerritory
241 { .windowsIdKey: 53, .territory: 58, .ianaIdIndex: 3214 }, // Hawaiian Standard Time / Cook Islands
242 { .windowsIdKey: 53, .territory: 86, .ianaIdIndex: 3232 }, // Hawaiian Standard Time / French Polynesia
243 { .windowsIdKey: 53, .territory: 247, .ianaIdIndex: 3247 }, // Hawaiian Standard Time / United States Outlying Islands
244 { .windowsIdKey: 53, .territory: 248, .ianaIdIndex: 3264 }, // Hawaiian Standard Time / United States
245 { .windowsIdKey: 54, .territory: 110, .ianaIdIndex: 3281 }, // India Standard Time / India
246 { .windowsIdKey: 55, .territory: 112, .ianaIdIndex: 3295 }, // Iran Standard Time / Iran
247 { .windowsIdKey: 56, .territory: 116, .ianaIdIndex: 3307 }, // Israel Standard Time / Israel
248 { .windowsIdKey: 57, .territory: 122, .ianaIdIndex: 3322 }, // Jordan Standard Time / Jordan
249 { .windowsIdKey: 58, .territory: 193, .ianaIdIndex: 3333 }, // Kaliningrad Standard Time / Russia
250 { .windowsIdKey: 59, .territory: 218, .ianaIdIndex: 3352 }, // Korea Standard Time / South Korea
251 { .windowsIdKey: 60, .territory: 135, .ianaIdIndex: 3363 }, // Libya Standard Time / Libya
252 { .windowsIdKey: 61, .territory: 0, .ianaIdIndex: 3378 }, // Line Islands Standard Time / AnyTerritory
253 { .windowsIdKey: 61, .territory: 125, .ianaIdIndex: 3389 }, // Line Islands Standard Time / Kiribati
254 { .windowsIdKey: 62, .territory: 15, .ianaIdIndex: 3408 }, // Lord Howe Standard Time / Australia
255 { .windowsIdKey: 63, .territory: 193, .ianaIdIndex: 3428 }, // Magadan Standard Time / Russia
256 { .windowsIdKey: 64, .territory: 49, .ianaIdIndex: 3441 }, // Magallanes Standard Time / Chile
257 { .windowsIdKey: 65, .territory: 86, .ianaIdIndex: 3462 }, // Marquesas Standard Time / French Polynesia
258 { .windowsIdKey: 66, .territory: 150, .ianaIdIndex: 3480 }, // Mauritius Standard Time / Mauritius
259 { .windowsIdKey: 66, .territory: 191, .ianaIdIndex: 3497 }, // Mauritius Standard Time / Reunion
260 { .windowsIdKey: 66, .territory: 208, .ianaIdIndex: 3512 }, // Mauritius Standard Time / Seychelles
261 { .windowsIdKey: 67, .territory: 132, .ianaIdIndex: 3524 }, // Middle East Standard Time / Lebanon
262 { .windowsIdKey: 68, .territory: 250, .ianaIdIndex: 3536 }, // Montevideo Standard Time / Uruguay
263 { .windowsIdKey: 69, .territory: 159, .ianaIdIndex: 3555 }, // Morocco Standard Time / Morocco
264 { .windowsIdKey: 69, .territory: 257, .ianaIdIndex: 3573 }, // Morocco Standard Time / Western Sahara
265 { .windowsIdKey: 70, .territory: 152, .ianaIdIndex: 3589 }, // Mountain Standard Time (Mexico) / Mexico
266 { .windowsIdKey: 71, .territory: 0, .ianaIdIndex: 3606 }, // Mountain Standard Time / AnyTerritory
267 { .windowsIdKey: 71, .territory: 41, .ianaIdIndex: 3614 }, // Mountain Standard Time / Canada
268 { .windowsIdKey: 71, .territory: 152, .ianaIdIndex: 3688 }, // Mountain Standard Time / Mexico
269 { .windowsIdKey: 71, .territory: 248, .ianaIdIndex: 3710 }, // Mountain Standard Time / United States
270 { .windowsIdKey: 72, .territory: 53, .ianaIdIndex: 3739 }, // Myanmar Standard Time / Cocos Islands
271 { .windowsIdKey: 72, .territory: 161, .ianaIdIndex: 3752 }, // Myanmar Standard Time / Myanmar
272 { .windowsIdKey: 73, .territory: 193, .ianaIdIndex: 3765 }, // N. Central Asia Standard Time / Russia
273 { .windowsIdKey: 74, .territory: 162, .ianaIdIndex: 3782 }, // Namibia Standard Time / Namibia
274 { .windowsIdKey: 75, .territory: 164, .ianaIdIndex: 3798 }, // Nepal Standard Time / Nepal
275 { .windowsIdKey: 76, .territory: 9, .ianaIdIndex: 3812 }, // New Zealand Standard Time / Antarctica
276 { .windowsIdKey: 76, .territory: 167, .ianaIdIndex: 3831 }, // New Zealand Standard Time / New Zealand
277 { .windowsIdKey: 77, .territory: 41, .ianaIdIndex: 3848 }, // Newfoundland Standard Time / Canada
278 { .windowsIdKey: 78, .territory: 172, .ianaIdIndex: 3865 }, // Norfolk Standard Time / Norfolk Island
279 { .windowsIdKey: 79, .territory: 193, .ianaIdIndex: 3881 }, // North Asia East Standard Time / Russia
280 { .windowsIdKey: 80, .territory: 193, .ianaIdIndex: 3894 }, // North Asia Standard Time / Russia
281 { .windowsIdKey: 81, .territory: 174, .ianaIdIndex: 3929 }, // North Korea Standard Time / North Korea
282 { .windowsIdKey: 82, .territory: 193, .ianaIdIndex: 3944 }, // Omsk Standard Time / Russia
283 { .windowsIdKey: 83, .territory: 49, .ianaIdIndex: 3954 }, // Pacific SA Standard Time / Chile
284 { .windowsIdKey: 84, .territory: 0, .ianaIdIndex: 3971 }, // Pacific Standard Time / AnyTerritory
285 { .windowsIdKey: 84, .territory: 41, .ianaIdIndex: 3979 }, // Pacific Standard Time / Canada
286 { .windowsIdKey: 84, .territory: 248, .ianaIdIndex: 3997 }, // Pacific Standard Time / United States
287 { .windowsIdKey: 85, .territory: 152, .ianaIdIndex: 4017 }, // Pacific Standard Time (Mexico) / Mexico
288 { .windowsIdKey: 86, .territory: 178, .ianaIdIndex: 4054 }, // Pakistan Standard Time / Pakistan
289 { .windowsIdKey: 87, .territory: 183, .ianaIdIndex: 4067 }, // Paraguay Standard Time / Paraguay
290 { .windowsIdKey: 88, .territory: 123, .ianaIdIndex: 4084 }, // Qyzylorda Standard Time / Kazakhstan
291 { .windowsIdKey: 89, .territory: 23, .ianaIdIndex: 4099 }, // Romance Standard Time / Belgium
292 { .windowsIdKey: 89, .territory: 65, .ianaIdIndex: 4115 }, // Romance Standard Time / Denmark
293 { .windowsIdKey: 89, .territory: 84, .ianaIdIndex: 4133 }, // Romance Standard Time / France
294 { .windowsIdKey: 89, .territory: 220, .ianaIdIndex: 4146 }, // Romance Standard Time / Spain
295 { .windowsIdKey: 90, .territory: 193, .ianaIdIndex: 4173 }, // Russia Time Zone 3 / Russia
296 { .windowsIdKey: 91, .territory: 193, .ianaIdIndex: 4187 }, // Russia Time Zone 10 / Russia
297 { .windowsIdKey: 92, .territory: 193, .ianaIdIndex: 4206 }, // Russia Time Zone 11 / Russia
298 { .windowsIdKey: 93, .territory: 193, .ianaIdIndex: 4233 }, // Russian Standard Time / Russia
299 { .windowsIdKey: 93, .territory: 244, .ianaIdIndex: 4260 }, // Russian Standard Time / Ukraine
300 { .windowsIdKey: 94, .territory: 0, .ianaIdIndex: 4278 }, // SA Eastern Standard Time / AnyTerritory
301 { .windowsIdKey: 94, .territory: 9, .ianaIdIndex: 4288 }, // SA Eastern Standard Time / Antarctica
302 { .windowsIdKey: 94, .territory: 32, .ianaIdIndex: 4325 }, // SA Eastern Standard Time / Brazil
303 { .windowsIdKey: 94, .territory: 80, .ianaIdIndex: 4404 }, // SA Eastern Standard Time / Falkland Islands
304 { .windowsIdKey: 94, .territory: 85, .ianaIdIndex: 4421 }, // SA Eastern Standard Time / French Guiana
305 { .windowsIdKey: 94, .territory: 223, .ianaIdIndex: 4437 }, // SA Eastern Standard Time / Suriname
306 { .windowsIdKey: 95, .territory: 0, .ianaIdIndex: 4456 }, // SA Pacific Standard Time / AnyTerritory
307 { .windowsIdKey: 95, .territory: 32, .ianaIdIndex: 4466 }, // SA Pacific Standard Time / Brazil
308 { .windowsIdKey: 95, .territory: 41, .ianaIdIndex: 4502 }, // SA Pacific Standard Time / Canada
309 { .windowsIdKey: 95, .territory: 45, .ianaIdIndex: 4524 }, // SA Pacific Standard Time / Cayman Islands
310 { .windowsIdKey: 95, .territory: 54, .ianaIdIndex: 4539 }, // SA Pacific Standard Time / Colombia
311 { .windowsIdKey: 95, .territory: 70, .ianaIdIndex: 4554 }, // SA Pacific Standard Time / Ecuador
312 { .windowsIdKey: 95, .territory: 119, .ianaIdIndex: 4572 }, // SA Pacific Standard Time / Jamaica
313 { .windowsIdKey: 95, .territory: 181, .ianaIdIndex: 4588 }, // SA Pacific Standard Time / Panama
314 { .windowsIdKey: 95, .territory: 184, .ianaIdIndex: 4603 }, // SA Pacific Standard Time / Peru
315 { .windowsIdKey: 96, .territory: 0, .ianaIdIndex: 4616 }, // SA Western Standard Time / AnyTerritory
316 { .windowsIdKey: 96, .territory: 8, .ianaIdIndex: 4626 }, // SA Western Standard Time / Anguilla
317 { .windowsIdKey: 96, .territory: 10, .ianaIdIndex: 4643 }, // SA Western Standard Time / Antigua And Barbuda
318 { .windowsIdKey: 96, .territory: 13, .ianaIdIndex: 4659 }, // SA Western Standard Time / Aruba
319 { .windowsIdKey: 96, .territory: 21, .ianaIdIndex: 4673 }, // SA Western Standard Time / Barbados
320 { .windowsIdKey: 96, .territory: 28, .ianaIdIndex: 4690 }, // SA Western Standard Time / Bolivia
321 { .windowsIdKey: 96, .territory: 32, .ianaIdIndex: 4705 }, // SA Western Standard Time / Brazil
322 { .windowsIdKey: 96, .territory: 34, .ianaIdIndex: 4758 }, // SA Western Standard Time / British Virgin Islands
323 { .windowsIdKey: 96, .territory: 41, .ianaIdIndex: 4774 }, // SA Western Standard Time / Canada
324 { .windowsIdKey: 96, .territory: 44, .ianaIdIndex: 4795 }, // SA Western Standard Time / Caribbean Netherlands
325 { .windowsIdKey: 96, .territory: 62, .ianaIdIndex: 4814 }, // SA Western Standard Time / Curacao
326 { .windowsIdKey: 96, .territory: 68, .ianaIdIndex: 4830 }, // SA Western Standard Time / Dominica
327 { .windowsIdKey: 96, .territory: 69, .ianaIdIndex: 4847 }, // SA Western Standard Time / Dominican Republic
328 { .windowsIdKey: 96, .territory: 96, .ianaIdIndex: 4869 }, // SA Western Standard Time / Grenada
329 { .windowsIdKey: 96, .territory: 97, .ianaIdIndex: 4885 }, // SA Western Standard Time / Guadeloupe
330 { .windowsIdKey: 96, .territory: 103, .ianaIdIndex: 4904 }, // SA Western Standard Time / Guyana
331 { .windowsIdKey: 96, .territory: 148, .ianaIdIndex: 4919 }, // SA Western Standard Time / Martinique
332 { .windowsIdKey: 96, .territory: 158, .ianaIdIndex: 4938 }, // SA Western Standard Time / Montserrat
333 { .windowsIdKey: 96, .territory: 189, .ianaIdIndex: 4957 }, // SA Western Standard Time / Puerto Rico
334 { .windowsIdKey: 96, .territory: 195, .ianaIdIndex: 4977 }, // SA Western Standard Time / Saint Barthelemy
335 { .windowsIdKey: 96, .territory: 197, .ianaIdIndex: 4999 }, // SA Western Standard Time / Saint Kitts And Nevis
336 { .windowsIdKey: 96, .territory: 198, .ianaIdIndex: 5016 }, // SA Western Standard Time / Saint Lucia
337 { .windowsIdKey: 96, .territory: 199, .ianaIdIndex: 5033 }, // SA Western Standard Time / Saint Martin
338 { .windowsIdKey: 96, .territory: 201, .ianaIdIndex: 5049 }, // SA Western Standard Time / Saint Vincent And Grenadines
339 { .windowsIdKey: 96, .territory: 211, .ianaIdIndex: 5068 }, // SA Western Standard Time / Sint Maarten
340 { .windowsIdKey: 96, .territory: 236, .ianaIdIndex: 5090 }, // SA Western Standard Time / Trinidad And Tobago
341 { .windowsIdKey: 96, .territory: 249, .ianaIdIndex: 5112 }, // SA Western Standard Time / United States Virgin Islands
342 { .windowsIdKey: 97, .territory: 200, .ianaIdIndex: 5130 }, // Saint Pierre Standard Time / Saint Pierre And Miquelon
343 { .windowsIdKey: 98, .territory: 193, .ianaIdIndex: 5147 }, // Sakhalin Standard Time / Russia
344 { .windowsIdKey: 99, .territory: 202, .ianaIdIndex: 5161 }, // Samoa Standard Time / Samoa
345 { .windowsIdKey: 100, .territory: 204, .ianaIdIndex: 5174 }, // Sao Tome Standard Time / Sao Tome And Principe
346 { .windowsIdKey: 101, .territory: 193, .ianaIdIndex: 5190 }, // Saratov Standard Time / Russia
347 { .windowsIdKey: 102, .territory: 0, .ianaIdIndex: 5205 }, // SE Asia Standard Time / AnyTerritory
348 { .windowsIdKey: 102, .territory: 9, .ianaIdIndex: 5215 }, // SE Asia Standard Time / Antarctica
349 { .windowsIdKey: 102, .territory: 39, .ianaIdIndex: 5232 }, // SE Asia Standard Time / Cambodia
350 { .windowsIdKey: 102, .territory: 51, .ianaIdIndex: 5248 }, // SE Asia Standard Time / Christmas Island
351 { .windowsIdKey: 102, .territory: 111, .ianaIdIndex: 5265 }, // SE Asia Standard Time / Indonesia
352 { .windowsIdKey: 102, .territory: 129, .ianaIdIndex: 5293 }, // SE Asia Standard Time / Laos
353 { .windowsIdKey: 102, .territory: 231, .ianaIdIndex: 5308 }, // SE Asia Standard Time / Thailand
354 { .windowsIdKey: 102, .territory: 255, .ianaIdIndex: 5321 }, // SE Asia Standard Time / Vietnam
355 { .windowsIdKey: 103, .territory: 0, .ianaIdIndex: 5333 }, // Singapore Standard Time / AnyTerritory
356 { .windowsIdKey: 103, .territory: 35, .ianaIdIndex: 5343 }, // Singapore Standard Time / Brunei
357 { .windowsIdKey: 103, .territory: 111, .ianaIdIndex: 5355 }, // Singapore Standard Time / Indonesia
358 { .windowsIdKey: 103, .territory: 143, .ianaIdIndex: 5369 }, // Singapore Standard Time / Malaysia
359 { .windowsIdKey: 103, .territory: 185, .ianaIdIndex: 5400 }, // Singapore Standard Time / Philippines
360 { .windowsIdKey: 103, .territory: 210, .ianaIdIndex: 5412 }, // Singapore Standard Time / Singapore
361 { .windowsIdKey: 104, .territory: 0, .ianaIdIndex: 5427 }, // South Africa Standard Time / AnyTerritory
362 { .windowsIdKey: 104, .territory: 30, .ianaIdIndex: 5437 }, // South Africa Standard Time / Botswana
363 { .windowsIdKey: 104, .territory: 38, .ianaIdIndex: 5453 }, // South Africa Standard Time / Burundi
364 { .windowsIdKey: 104, .territory: 57, .ianaIdIndex: 5470 }, // South Africa Standard Time / Congo Kinshasa
365 { .windowsIdKey: 104, .territory: 76, .ianaIdIndex: 5488 }, // South Africa Standard Time / Eswatini
366 { .windowsIdKey: 104, .territory: 133, .ianaIdIndex: 5503 }, // South Africa Standard Time / Lesotho
367 { .windowsIdKey: 104, .territory: 142, .ianaIdIndex: 5517 }, // South Africa Standard Time / Malawi
368 { .windowsIdKey: 104, .territory: 160, .ianaIdIndex: 5533 }, // South Africa Standard Time / Mozambique
369 { .windowsIdKey: 104, .territory: 194, .ianaIdIndex: 5547 }, // South Africa Standard Time / Rwanda
370 { .windowsIdKey: 104, .territory: 216, .ianaIdIndex: 5561 }, // South Africa Standard Time / South Africa
371 { .windowsIdKey: 104, .territory: 260, .ianaIdIndex: 5581 }, // South Africa Standard Time / Zambia
372 { .windowsIdKey: 104, .territory: 261, .ianaIdIndex: 5595 }, // South Africa Standard Time / Zimbabwe
373 { .windowsIdKey: 105, .territory: 219, .ianaIdIndex: 5609 }, // South Sudan Standard Time / South Sudan
374 { .windowsIdKey: 106, .territory: 221, .ianaIdIndex: 5621 }, // Sri Lanka Standard Time / Sri Lanka
375 { .windowsIdKey: 107, .territory: 222, .ianaIdIndex: 5634 }, // Sudan Standard Time / Sudan
376 { .windowsIdKey: 108, .territory: 227, .ianaIdIndex: 5650 }, // Syria Standard Time / Syria
377 { .windowsIdKey: 109, .territory: 228, .ianaIdIndex: 5664 }, // Taipei Standard Time / Taiwan
378 { .windowsIdKey: 110, .territory: 15, .ianaIdIndex: 5676 }, // Tasmania Standard Time / Australia
379 { .windowsIdKey: 111, .territory: 32, .ianaIdIndex: 5731 }, // Tocantins Standard Time / Brazil
380 { .windowsIdKey: 112, .territory: 0, .ianaIdIndex: 5749 }, // Tokyo Standard Time / AnyTerritory
381 { .windowsIdKey: 112, .territory: 111, .ianaIdIndex: 5759 }, // Tokyo Standard Time / Indonesia
382 { .windowsIdKey: 112, .territory: 120, .ianaIdIndex: 5773 }, // Tokyo Standard Time / Japan
383 { .windowsIdKey: 112, .territory: 179, .ianaIdIndex: 5784 }, // Tokyo Standard Time / Palau
384 { .windowsIdKey: 112, .territory: 232, .ianaIdIndex: 5798 }, // Tokyo Standard Time / Timor-Leste
385 { .windowsIdKey: 113, .territory: 193, .ianaIdIndex: 5808 }, // Tomsk Standard Time / Russia
386 { .windowsIdKey: 114, .territory: 235, .ianaIdIndex: 5819 }, // Tonga Standard Time / Tonga
387 { .windowsIdKey: 115, .territory: 193, .ianaIdIndex: 5837 }, // Transbaikal Standard Time / Russia
388 { .windowsIdKey: 116, .territory: 239, .ianaIdIndex: 5848 }, // Turkey Standard Time / Turkey
389 { .windowsIdKey: 117, .territory: 241, .ianaIdIndex: 5864 }, // Turks And Caicos Standard Time / Turks And Caicos Islands
390 { .windowsIdKey: 118, .territory: 156, .ianaIdIndex: 5883 }, // Ulaanbaatar Standard Time / Mongolia
391 { .windowsIdKey: 119, .territory: 248, .ianaIdIndex: 5916 }, // US Eastern Standard Time / United States
392 { .windowsIdKey: 120, .territory: 0, .ianaIdIndex: 5983 }, // US Mountain Standard Time / AnyTerritory
393 { .windowsIdKey: 120, .territory: 41, .ianaIdIndex: 5993 }, // US Mountain Standard Time / Canada
394 { .windowsIdKey: 120, .territory: 152, .ianaIdIndex: 6050 }, // US Mountain Standard Time / Mexico
395 { .windowsIdKey: 120, .territory: 248, .ianaIdIndex: 6069 }, // US Mountain Standard Time / United States
396 { .windowsIdKey: 121, .territory: 0, .ianaIdIndex: 6085 }, // UTC-11 / AnyTerritory
397 { .windowsIdKey: 121, .territory: 5, .ianaIdIndex: 6096 }, // UTC-11 / American Samoa
398 { .windowsIdKey: 121, .territory: 171, .ianaIdIndex: 6114 }, // UTC-11 / Niue
399 { .windowsIdKey: 121, .territory: 247, .ianaIdIndex: 6127 }, // UTC-11 / United States Outlying Islands
400 { .windowsIdKey: 122, .territory: 0, .ianaIdIndex: 6142 }, // UTC-09 / AnyTerritory
401 { .windowsIdKey: 122, .territory: 86, .ianaIdIndex: 6152 }, // UTC-09 / French Polynesia
402 { .windowsIdKey: 123, .territory: 0, .ianaIdIndex: 6168 }, // UTC-08 / AnyTerritory
403 { .windowsIdKey: 123, .territory: 186, .ianaIdIndex: 6178 }, // UTC-08 / Pitcairn
404 { .windowsIdKey: 124, .territory: 0, .ianaIdIndex: 6195 }, // UTC-02 / AnyTerritory
405 { .windowsIdKey: 124, .territory: 32, .ianaIdIndex: 6205 }, // UTC-02 / Brazil
406 { .windowsIdKey: 124, .territory: 217, .ianaIdIndex: 6221 }, // UTC-02 / South Georgia And South Sandwich Islands
407 { .windowsIdKey: 125, .territory: 0, .ianaIdIndex: 6244 }, // UTC / AnyTerritory
408 { .windowsIdKey: 126, .territory: 0, .ianaIdIndex: 6260 }, // UTC+12 / AnyTerritory
409 { .windowsIdKey: 126, .territory: 125, .ianaIdIndex: 6271 }, // UTC+12 / Kiribati
410 { .windowsIdKey: 126, .territory: 147, .ianaIdIndex: 6286 }, // UTC+12 / Marshall Islands
411 { .windowsIdKey: 126, .territory: 163, .ianaIdIndex: 6319 }, // UTC+12 / Nauru
412 { .windowsIdKey: 126, .territory: 242, .ianaIdIndex: 6333 }, // UTC+12 / Tuvalu
413 { .windowsIdKey: 126, .territory: 247, .ianaIdIndex: 6350 }, // UTC+12 / United States Outlying Islands
414 { .windowsIdKey: 126, .territory: 256, .ianaIdIndex: 6363 }, // UTC+12 / Wallis And Futuna
415 { .windowsIdKey: 127, .territory: 0, .ianaIdIndex: 6378 }, // UTC+13 / AnyTerritory
416 { .windowsIdKey: 127, .territory: 125, .ianaIdIndex: 6389 }, // UTC+13 / Kiribati
417 { .windowsIdKey: 127, .territory: 234, .ianaIdIndex: 6407 }, // UTC+13 / Tokelau
418 { .windowsIdKey: 128, .territory: 254, .ianaIdIndex: 6423 }, // Venezuela Standard Time / Venezuela
419 { .windowsIdKey: 129, .territory: 193, .ianaIdIndex: 6439 }, // Vladivostok Standard Time / Russia
420 { .windowsIdKey: 130, .territory: 193, .ianaIdIndex: 6470 }, // Volgograd Standard Time / Russia
421 { .windowsIdKey: 131, .territory: 15, .ianaIdIndex: 6487 }, // W. Australia Standard Time / Australia
422 { .windowsIdKey: 132, .territory: 0, .ianaIdIndex: 6503 }, // W. Central Africa Standard Time / AnyTerritory
423 { .windowsIdKey: 132, .territory: 4, .ianaIdIndex: 6513 }, // W. Central Africa Standard Time / Algeria
424 { .windowsIdKey: 132, .territory: 7, .ianaIdIndex: 6528 }, // W. Central Africa Standard Time / Angola
425 { .windowsIdKey: 132, .territory: 25, .ianaIdIndex: 6542 }, // W. Central Africa Standard Time / Benin
426 { .windowsIdKey: 132, .territory: 40, .ianaIdIndex: 6560 }, // W. Central Africa Standard Time / Cameroon
427 { .windowsIdKey: 132, .territory: 46, .ianaIdIndex: 6574 }, // W. Central Africa Standard Time / Central African Republic
428 { .windowsIdKey: 132, .territory: 48, .ianaIdIndex: 6588 }, // W. Central Africa Standard Time / Chad
429 { .windowsIdKey: 132, .territory: 56, .ianaIdIndex: 6604 }, // W. Central Africa Standard Time / Congo Brazzaville
430 { .windowsIdKey: 132, .territory: 57, .ianaIdIndex: 6623 }, // W. Central Africa Standard Time / Congo Kinshasa
431 { .windowsIdKey: 132, .territory: 73, .ianaIdIndex: 6639 }, // W. Central Africa Standard Time / Equatorial Guinea
432 { .windowsIdKey: 132, .territory: 88, .ianaIdIndex: 6653 }, // W. Central Africa Standard Time / Gabon
433 { .windowsIdKey: 132, .territory: 169, .ianaIdIndex: 6671 }, // W. Central Africa Standard Time / Nigeria
434 { .windowsIdKey: 132, .territory: 170, .ianaIdIndex: 6684 }, // W. Central Africa Standard Time / Niger
435 { .windowsIdKey: 132, .territory: 238, .ianaIdIndex: 6698 }, // W. Central Africa Standard Time / Tunisia
436 { .windowsIdKey: 133, .territory: 6, .ianaIdIndex: 6711 }, // W. Europe Standard Time / Andorra
437 { .windowsIdKey: 133, .territory: 16, .ianaIdIndex: 6726 }, // W. Europe Standard Time / Austria
438 { .windowsIdKey: 133, .territory: 91, .ianaIdIndex: 6740 }, // W. Europe Standard Time / Germany
439 { .windowsIdKey: 133, .territory: 93, .ianaIdIndex: 6770 }, // W. Europe Standard Time / Gibraltar
440 { .windowsIdKey: 133, .territory: 117, .ianaIdIndex: 6787 }, // W. Europe Standard Time / Italy
441 { .windowsIdKey: 133, .territory: 136, .ianaIdIndex: 6799 }, // W. Europe Standard Time / Liechtenstein
442 { .windowsIdKey: 133, .territory: 138, .ianaIdIndex: 6812 }, // W. Europe Standard Time / Luxembourg
443 { .windowsIdKey: 133, .territory: 146, .ianaIdIndex: 6830 }, // W. Europe Standard Time / Malta
444 { .windowsIdKey: 133, .territory: 155, .ianaIdIndex: 6843 }, // W. Europe Standard Time / Monaco
445 { .windowsIdKey: 133, .territory: 165, .ianaIdIndex: 6857 }, // W. Europe Standard Time / Netherlands
446 { .windowsIdKey: 133, .territory: 175, .ianaIdIndex: 6874 }, // W. Europe Standard Time / Norway
447 { .windowsIdKey: 133, .territory: 203, .ianaIdIndex: 6886 }, // W. Europe Standard Time / San Marino
448 { .windowsIdKey: 133, .territory: 224, .ianaIdIndex: 6904 }, // W. Europe Standard Time / Svalbard And Jan Mayen
449 { .windowsIdKey: 133, .territory: 225, .ianaIdIndex: 6924 }, // W. Europe Standard Time / Sweden
450 { .windowsIdKey: 133, .territory: 226, .ianaIdIndex: 6941 }, // W. Europe Standard Time / Switzerland
451 { .windowsIdKey: 133, .territory: 253, .ianaIdIndex: 6955 }, // W. Europe Standard Time / Vatican City
452 { .windowsIdKey: 134, .territory: 156, .ianaIdIndex: 6970 }, // W. Mongolia Standard Time / Mongolia
453 { .windowsIdKey: 135, .territory: 0, .ianaIdIndex: 6980 }, // West Asia Standard Time / AnyTerritory
454 { .windowsIdKey: 135, .territory: 9, .ianaIdIndex: 6990 }, // West Asia Standard Time / Antarctica
455 { .windowsIdKey: 135, .territory: 87, .ianaIdIndex: 7008 }, // West Asia Standard Time / French Southern Territories
456 { .windowsIdKey: 135, .territory: 123, .ianaIdIndex: 7025 }, // West Asia Standard Time / Kazakhstan
457 { .windowsIdKey: 135, .territory: 144, .ianaIdIndex: 7070 }, // West Asia Standard Time / Maldives
458 { .windowsIdKey: 135, .territory: 229, .ianaIdIndex: 7086 }, // West Asia Standard Time / Tajikistan
459 { .windowsIdKey: 135, .territory: 240, .ianaIdIndex: 7100 }, // West Asia Standard Time / Turkmenistan
460 { .windowsIdKey: 135, .territory: 251, .ianaIdIndex: 7114 }, // West Asia Standard Time / Uzbekistan
461 { .windowsIdKey: 136, .territory: 180, .ianaIdIndex: 7143 }, // West Bank Standard Time / Palestinian Territories
462 { .windowsIdKey: 137, .territory: 0, .ianaIdIndex: 7165 }, // West Pacific Standard Time / AnyTerritory
463 { .windowsIdKey: 137, .territory: 9, .ianaIdIndex: 7176 }, // West Pacific Standard Time / Antarctica
464 { .windowsIdKey: 137, .territory: 98, .ianaIdIndex: 7202 }, // West Pacific Standard Time / Guam
465 { .windowsIdKey: 137, .territory: 153, .ianaIdIndex: 7215 }, // West Pacific Standard Time / Micronesia
466 { .windowsIdKey: 137, .territory: 173, .ianaIdIndex: 7228 }, // West Pacific Standard Time / Northern Mariana Islands
467 { .windowsIdKey: 137, .territory: 182, .ianaIdIndex: 7243 }, // West Pacific Standard Time / Papua New Guinea
468 { .windowsIdKey: 138, .territory: 193, .ianaIdIndex: 7264 }, // Yakutsk Standard Time / Russia
469 { .windowsIdKey: 139, .territory: 41, .ianaIdIndex: 7291 }, // Yukon Standard Time / Canada
470};
471
472// Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset
473static constexpr QWindowsData windowsDataTable[] = {
474 { .windowsIdKey: 1, .windowsIdIndex: 0, .ianaIdIndex: 0, .offsetFromUtc: 16200 }, // Afghanistan Standard Time
475 { .windowsIdKey: 2, .windowsIdIndex: 26, .ianaIdIndex: 7325,.offsetFromUtc: -32400 }, // Alaskan Standard Time
476 { .windowsIdKey: 3, .windowsIdIndex: 48, .ianaIdIndex: 106,.offsetFromUtc: -36000 }, // Aleutian Standard Time
477 { .windowsIdKey: 4, .windowsIdIndex: 71, .ianaIdIndex: 119, .offsetFromUtc: 25200 }, // Altai Standard Time
478 { .windowsIdKey: 5, .windowsIdIndex: 91, .ianaIdIndex: 168, .offsetFromUtc: 10800 }, // Arab Standard Time
479 { .windowsIdKey: 6, .windowsIdIndex: 110, .ianaIdIndex: 212, .offsetFromUtc: 14400 }, // Arabian Standard Time
480 { .windowsIdKey: 7, .windowsIdIndex: 132, .ianaIdIndex: 223, .offsetFromUtc: 10800 }, // Arabic Standard Time
481 { .windowsIdKey: 8, .windowsIdIndex: 153, .ianaIdIndex: 7343,.offsetFromUtc: -10800 }, // Argentina Standard Time
482 { .windowsIdKey: 9, .windowsIdIndex: 177, .ianaIdIndex: 7364, .offsetFromUtc: 14400 }, // Astrakhan Standard Time
483 { .windowsIdKey: 10, .windowsIdIndex: 201, .ianaIdIndex: 7381,.offsetFromUtc: -14400 }, // Atlantic Standard Time
484 { .windowsIdKey: 11, .windowsIdIndex: 224, .ianaIdIndex: 642, .offsetFromUtc: 34200 }, // AUS Central Standard Time
485 { .windowsIdKey: 12, .windowsIdIndex: 250, .ianaIdIndex: 659, .offsetFromUtc: 31500 }, // Aus Central W. Standard Time
486 { .windowsIdKey: 13, .windowsIdIndex: 279, .ianaIdIndex: 7397, .offsetFromUtc: 36000 }, // AUS Eastern Standard Time
487 { .windowsIdKey: 14, .windowsIdIndex: 305, .ianaIdIndex: 712, .offsetFromUtc: 14400 }, // Azerbaijan Standard Time
488 { .windowsIdKey: 15, .windowsIdIndex: 330, .ianaIdIndex: 743, .offsetFromUtc: -3600 }, // Azores Standard Time
489 { .windowsIdKey: 16, .windowsIdIndex: 351, .ianaIdIndex: 759,.offsetFromUtc: -10800 }, // Bahia Standard Time
490 { .windowsIdKey: 17, .windowsIdIndex: 371, .ianaIdIndex: 773, .offsetFromUtc: 21600 }, // Bangladesh Standard Time
491 { .windowsIdKey: 18, .windowsIdIndex: 396, .ianaIdIndex: 797, .offsetFromUtc: 10800 }, // Belarus Standard Time
492 { .windowsIdKey: 19, .windowsIdIndex: 418, .ianaIdIndex: 810, .offsetFromUtc: 39600 }, // Bougainville Standard Time
493 { .windowsIdKey: 20, .windowsIdIndex: 445, .ianaIdIndex: 7414,.offsetFromUtc: -21600 }, // Canada Central Standard Time
494 { .windowsIdKey: 21, .windowsIdIndex: 474, .ianaIdIndex: 878, .offsetFromUtc: -3600 }, // Cape Verde Standard Time
495 { .windowsIdKey: 22, .windowsIdIndex: 499, .ianaIdIndex: 898, .offsetFromUtc: 14400 }, // Caucasus Standard Time
496 { .windowsIdKey: 23, .windowsIdIndex: 522, .ianaIdIndex: 7429, .offsetFromUtc: 34200 }, // Cen. Australia Standard Time
497 { .windowsIdKey: 24, .windowsIdIndex: 551, .ianaIdIndex: 1034,.offsetFromUtc: -21600 }, // Central America Standard Time
498 { .windowsIdKey: 25, .windowsIdIndex: 581, .ianaIdIndex: 7448, .offsetFromUtc: 21600 }, // Central Asia Standard Time
499 { .windowsIdKey: 26, .windowsIdIndex: 608, .ianaIdIndex: 7460,.offsetFromUtc: -14400 }, // Central Brazilian Standard Time
500 { .windowsIdKey: 27, .windowsIdIndex: 640, .ianaIdIndex: 1245, .offsetFromUtc: 3600 }, // Central Europe Standard Time
501 { .windowsIdKey: 28, .windowsIdIndex: 669, .ianaIdIndex: 1373, .offsetFromUtc: 3600 }, // Central European Standard Time
502 { .windowsIdKey: 29, .windowsIdIndex: 700, .ianaIdIndex: 1460, .offsetFromUtc: 39600 }, // Central Pacific Standard Time
503 { .windowsIdKey: 30, .windowsIdIndex: 730, .ianaIdIndex: 7475,.offsetFromUtc: -21600 }, // Central Standard Time (Mexico)
504 { .windowsIdKey: 31, .windowsIdIndex: 761, .ianaIdIndex: 7495,.offsetFromUtc: -21600 }, // Central Standard Time
505 { .windowsIdKey: 32, .windowsIdIndex: 783, .ianaIdIndex: 1873, .offsetFromUtc: 28800 }, // China Standard Time
506 { .windowsIdKey: 33, .windowsIdIndex: 803, .ianaIdIndex: 1913, .offsetFromUtc: 45900 }, // Chatham Islands Standard Time
507 { .windowsIdKey: 34, .windowsIdIndex: 833, .ianaIdIndex: 1929,.offsetFromUtc: -18000 }, // Cuba Standard Time
508 { .windowsIdKey: 35, .windowsIdIndex: 852, .ianaIdIndex: 1944,.offsetFromUtc: -43200 }, // Dateline Standard Time
509 { .windowsIdKey: 36, .windowsIdIndex: 875, .ianaIdIndex: 2045, .offsetFromUtc: 10800 }, // E. Africa Standard Time
510 { .windowsIdKey: 37, .windowsIdIndex: 899, .ianaIdIndex: 7511, .offsetFromUtc: 36000 }, // E. Australia Standard Time
511 { .windowsIdKey: 38, .windowsIdIndex: 926, .ianaIdIndex: 2186, .offsetFromUtc: 7200 }, // E. Europe Standard Time
512 { .windowsIdKey: 39, .windowsIdIndex: 950, .ianaIdIndex: 2202,.offsetFromUtc: -10800 }, // E. South America Standard Time
513 { .windowsIdKey: 40, .windowsIdIndex: 981, .ianaIdIndex: 2220,.offsetFromUtc: -21600 }, // Easter Island Standard Time
514 { .windowsIdKey: 41, .windowsIdIndex: 1009, .ianaIdIndex: 7530,.offsetFromUtc: -18000 }, // Eastern Standard Time
515 { .windowsIdKey: 42, .windowsIdIndex: 1031, .ianaIdIndex: 2520,.offsetFromUtc: -18000 }, // Eastern Standard Time (Mexico)
516 { .windowsIdKey: 43, .windowsIdIndex: 1062, .ianaIdIndex: 2535, .offsetFromUtc: 7200 }, // Egypt Standard Time
517 { .windowsIdKey: 44, .windowsIdIndex: 1082, .ianaIdIndex: 2548, .offsetFromUtc: 18000 }, // Ekaterinburg Standard Time
518 { .windowsIdKey: 45, .windowsIdIndex: 1109, .ianaIdIndex: 2567, .offsetFromUtc: 43200 }, // Fiji Standard Time
519 { .windowsIdKey: 46, .windowsIdIndex: 1128, .ianaIdIndex: 7547, .offsetFromUtc: 7200 }, // FLE Standard Time
520 { .windowsIdKey: 47, .windowsIdIndex: 1146, .ianaIdIndex: 2714, .offsetFromUtc: 14400 }, // Georgian Standard Time
521 { .windowsIdKey: 48, .windowsIdIndex: 1169, .ianaIdIndex: 2853, .offsetFromUtc: 0 }, // GMT Standard Time
522 { .windowsIdKey: 49, .windowsIdIndex: 1187, .ianaIdIndex: 2867,.offsetFromUtc: -10800 }, // Greenland Standard Time
523 { .windowsIdKey: 50, .windowsIdIndex: 1211, .ianaIdIndex: 2979, .offsetFromUtc: 0 }, // Greenwich Standard Time
524 { .windowsIdKey: 51, .windowsIdIndex: 1235, .ianaIdIndex: 3163, .offsetFromUtc: 7200 }, // GTB Standard Time
525 { .windowsIdKey: 52, .windowsIdIndex: 1253, .ianaIdIndex: 3180,.offsetFromUtc: -18000 }, // Haiti Standard Time
526 { .windowsIdKey: 53, .windowsIdIndex: 1273, .ianaIdIndex: 3264,.offsetFromUtc: -36000 }, // Hawaiian Standard Time
527 { .windowsIdKey: 54, .windowsIdIndex: 1296, .ianaIdIndex: 3281, .offsetFromUtc: 19800 }, // India Standard Time
528 { .windowsIdKey: 55, .windowsIdIndex: 1316, .ianaIdIndex: 3295, .offsetFromUtc: 12600 }, // Iran Standard Time
529 { .windowsIdKey: 56, .windowsIdIndex: 1335, .ianaIdIndex: 3307, .offsetFromUtc: 7200 }, // Israel Standard Time
530 { .windowsIdKey: 57, .windowsIdIndex: 1356, .ianaIdIndex: 3322, .offsetFromUtc: 7200 }, // Jordan Standard Time
531 { .windowsIdKey: 58, .windowsIdIndex: 1377, .ianaIdIndex: 3333, .offsetFromUtc: 7200 }, // Kaliningrad Standard Time
532 { .windowsIdKey: 59, .windowsIdIndex: 1403, .ianaIdIndex: 3352, .offsetFromUtc: 32400 }, // Korea Standard Time
533 { .windowsIdKey: 60, .windowsIdIndex: 1423, .ianaIdIndex: 3363, .offsetFromUtc: 7200 }, // Libya Standard Time
534 { .windowsIdKey: 61, .windowsIdIndex: 1443, .ianaIdIndex: 3389, .offsetFromUtc: 50400 }, // Line Islands Standard Time
535 { .windowsIdKey: 62, .windowsIdIndex: 1470, .ianaIdIndex: 3408, .offsetFromUtc: 37800 }, // Lord Howe Standard Time
536 { .windowsIdKey: 63, .windowsIdIndex: 1494, .ianaIdIndex: 3428, .offsetFromUtc: 36000 }, // Magadan Standard Time
537 { .windowsIdKey: 64, .windowsIdIndex: 1516, .ianaIdIndex: 3441,.offsetFromUtc: -10800 }, // Magallanes Standard Time
538 { .windowsIdKey: 65, .windowsIdIndex: 1541, .ianaIdIndex: 3462,.offsetFromUtc: -34200 }, // Marquesas Standard Time
539 { .windowsIdKey: 66, .windowsIdIndex: 1565, .ianaIdIndex: 3480, .offsetFromUtc: 14400 }, // Mauritius Standard Time
540 { .windowsIdKey: 67, .windowsIdIndex: 1589, .ianaIdIndex: 3524, .offsetFromUtc: 7200 }, // Middle East Standard Time
541 { .windowsIdKey: 68, .windowsIdIndex: 1615, .ianaIdIndex: 3536,.offsetFromUtc: -10800 }, // Montevideo Standard Time
542 { .windowsIdKey: 69, .windowsIdIndex: 1640, .ianaIdIndex: 3555, .offsetFromUtc: 0 }, // Morocco Standard Time
543 { .windowsIdKey: 70, .windowsIdIndex: 1662, .ianaIdIndex: 3589,.offsetFromUtc: -25200 }, // Mountain Standard Time (Mexico)
544 { .windowsIdKey: 71, .windowsIdIndex: 1694, .ianaIdIndex: 7559,.offsetFromUtc: -25200 }, // Mountain Standard Time
545 { .windowsIdKey: 72, .windowsIdIndex: 1717, .ianaIdIndex: 3752, .offsetFromUtc: 23400 }, // Myanmar Standard Time
546 { .windowsIdKey: 73, .windowsIdIndex: 1739, .ianaIdIndex: 3765, .offsetFromUtc: 21600 }, // N. Central Asia Standard Time
547 { .windowsIdKey: 74, .windowsIdIndex: 1769, .ianaIdIndex: 3782, .offsetFromUtc: 3600 }, // Namibia Standard Time
548 { .windowsIdKey: 75, .windowsIdIndex: 1791, .ianaIdIndex: 3798, .offsetFromUtc: 20700 }, // Nepal Standard Time
549 { .windowsIdKey: 76, .windowsIdIndex: 1811, .ianaIdIndex: 3831, .offsetFromUtc: 43200 }, // New Zealand Standard Time
550 { .windowsIdKey: 77, .windowsIdIndex: 1837, .ianaIdIndex: 3848,.offsetFromUtc: -12600 }, // Newfoundland Standard Time
551 { .windowsIdKey: 78, .windowsIdIndex: 1864, .ianaIdIndex: 3865, .offsetFromUtc: 39600 }, // Norfolk Standard Time
552 { .windowsIdKey: 79, .windowsIdIndex: 1886, .ianaIdIndex: 3881, .offsetFromUtc: 28800 }, // North Asia East Standard Time
553 { .windowsIdKey: 80, .windowsIdIndex: 1916, .ianaIdIndex: 7574, .offsetFromUtc: 25200 }, // North Asia Standard Time
554 { .windowsIdKey: 81, .windowsIdIndex: 1941, .ianaIdIndex: 3929, .offsetFromUtc: 30600 }, // North Korea Standard Time
555 { .windowsIdKey: 82, .windowsIdIndex: 1967, .ianaIdIndex: 3944, .offsetFromUtc: 21600 }, // Omsk Standard Time
556 { .windowsIdKey: 83, .windowsIdIndex: 1986, .ianaIdIndex: 3954,.offsetFromUtc: -10800 }, // Pacific SA Standard Time
557 { .windowsIdKey: 84, .windowsIdIndex: 2011, .ianaIdIndex: 3997,.offsetFromUtc: -28800 }, // Pacific Standard Time
558 { .windowsIdKey: 85, .windowsIdIndex: 2033, .ianaIdIndex: 7591,.offsetFromUtc: -28800 }, // Pacific Standard Time (Mexico)
559 { .windowsIdKey: 86, .windowsIdIndex: 2064, .ianaIdIndex: 4054, .offsetFromUtc: 18000 }, // Pakistan Standard Time
560 { .windowsIdKey: 87, .windowsIdIndex: 2087, .ianaIdIndex: 4067,.offsetFromUtc: -14400 }, // Paraguay Standard Time
561 { .windowsIdKey: 88, .windowsIdIndex: 2110, .ianaIdIndex: 4084, .offsetFromUtc: 18000 }, // Qyzylorda Standard Time
562 { .windowsIdKey: 89, .windowsIdIndex: 2134, .ianaIdIndex: 4133, .offsetFromUtc: 3600 }, // Romance Standard Time
563 { .windowsIdKey: 90, .windowsIdIndex: 2156, .ianaIdIndex: 4173, .offsetFromUtc: 14400 }, // Russia Time Zone 3
564 { .windowsIdKey: 91, .windowsIdIndex: 2175, .ianaIdIndex: 4187, .offsetFromUtc: 39600 }, // Russia Time Zone 10
565 { .windowsIdKey: 92, .windowsIdIndex: 2195, .ianaIdIndex: 7607, .offsetFromUtc: 43200 }, // Russia Time Zone 11
566 { .windowsIdKey: 93, .windowsIdIndex: 2215, .ianaIdIndex: 7622, .offsetFromUtc: 10800 }, // Russian Standard Time
567 { .windowsIdKey: 94, .windowsIdIndex: 2237, .ianaIdIndex: 4421,.offsetFromUtc: -10800 }, // SA Eastern Standard Time
568 { .windowsIdKey: 95, .windowsIdIndex: 2262, .ianaIdIndex: 4539,.offsetFromUtc: -18000 }, // SA Pacific Standard Time
569 { .windowsIdKey: 96, .windowsIdIndex: 2287, .ianaIdIndex: 4690,.offsetFromUtc: -14400 }, // SA Western Standard Time
570 { .windowsIdKey: 97, .windowsIdIndex: 2312, .ianaIdIndex: 5130,.offsetFromUtc: -10800 }, // Saint Pierre Standard Time
571 { .windowsIdKey: 98, .windowsIdIndex: 2339, .ianaIdIndex: 5147, .offsetFromUtc: 39600 }, // Sakhalin Standard Time
572 { .windowsIdKey: 99, .windowsIdIndex: 2362, .ianaIdIndex: 5161, .offsetFromUtc: 46800 }, // Samoa Standard Time
573 { .windowsIdKey: 100, .windowsIdIndex: 2382, .ianaIdIndex: 5174, .offsetFromUtc: 0 }, // Sao Tome Standard Time
574 { .windowsIdKey: 101, .windowsIdIndex: 2405, .ianaIdIndex: 5190, .offsetFromUtc: 14400 }, // Saratov Standard Time
575 { .windowsIdKey: 102, .windowsIdIndex: 2427, .ianaIdIndex: 5308, .offsetFromUtc: 25200 }, // SE Asia Standard Time
576 { .windowsIdKey: 103, .windowsIdIndex: 2449, .ianaIdIndex: 5412, .offsetFromUtc: 28800 }, // Singapore Standard Time
577 { .windowsIdKey: 104, .windowsIdIndex: 2473, .ianaIdIndex: 5561, .offsetFromUtc: 7200 }, // South Africa Standard Time
578 { .windowsIdKey: 105, .windowsIdIndex: 2500, .ianaIdIndex: 5609, .offsetFromUtc: 7200 }, // South Sudan Standard Time
579 { .windowsIdKey: 106, .windowsIdIndex: 2526, .ianaIdIndex: 5621, .offsetFromUtc: 19800 }, // Sri Lanka Standard Time
580 { .windowsIdKey: 107, .windowsIdIndex: 2550, .ianaIdIndex: 5634, .offsetFromUtc: 7200 }, // Sudan Standard Time
581 { .windowsIdKey: 108, .windowsIdIndex: 2570, .ianaIdIndex: 5650, .offsetFromUtc: 7200 }, // Syria Standard Time
582 { .windowsIdKey: 109, .windowsIdIndex: 2590, .ianaIdIndex: 5664, .offsetFromUtc: 28800 }, // Taipei Standard Time
583 { .windowsIdKey: 110, .windowsIdIndex: 2611, .ianaIdIndex: 7636, .offsetFromUtc: 36000 }, // Tasmania Standard Time
584 { .windowsIdKey: 111, .windowsIdIndex: 2634, .ianaIdIndex: 5731,.offsetFromUtc: -10800 }, // Tocantins Standard Time
585 { .windowsIdKey: 112, .windowsIdIndex: 2658, .ianaIdIndex: 5773, .offsetFromUtc: 32400 }, // Tokyo Standard Time
586 { .windowsIdKey: 113, .windowsIdIndex: 2678, .ianaIdIndex: 5808, .offsetFromUtc: 25200 }, // Tomsk Standard Time
587 { .windowsIdKey: 114, .windowsIdIndex: 2698, .ianaIdIndex: 5819, .offsetFromUtc: 46800 }, // Tonga Standard Time
588 { .windowsIdKey: 115, .windowsIdIndex: 2718, .ianaIdIndex: 5837, .offsetFromUtc: 32400 }, // Transbaikal Standard Time
589 { .windowsIdKey: 116, .windowsIdIndex: 2744, .ianaIdIndex: 5848, .offsetFromUtc: 7200 }, // Turkey Standard Time
590 { .windowsIdKey: 117, .windowsIdIndex: 2765, .ianaIdIndex: 5864,.offsetFromUtc: -14400 }, // Turks And Caicos Standard Time
591 { .windowsIdKey: 118, .windowsIdIndex: 2796, .ianaIdIndex: 7653, .offsetFromUtc: 28800 }, // Ulaanbaatar Standard Time
592 { .windowsIdKey: 119, .windowsIdIndex: 2822, .ianaIdIndex: 7670,.offsetFromUtc: -18000 }, // US Eastern Standard Time
593 { .windowsIdKey: 120, .windowsIdIndex: 2847, .ianaIdIndex: 6069,.offsetFromUtc: -25200 }, // US Mountain Standard Time
594 { .windowsIdKey: 121, .windowsIdIndex: 2873, .ianaIdIndex: 6085,.offsetFromUtc: -39600 }, // UTC-11
595 { .windowsIdKey: 122, .windowsIdIndex: 2880, .ianaIdIndex: 6142,.offsetFromUtc: -32400 }, // UTC-09
596 { .windowsIdKey: 123, .windowsIdIndex: 2887, .ianaIdIndex: 6168,.offsetFromUtc: -28800 }, // UTC-08
597 { .windowsIdKey: 124, .windowsIdIndex: 2894, .ianaIdIndex: 6195, .offsetFromUtc: -7200 }, // UTC-02
598 { .windowsIdKey: 125, .windowsIdIndex: 2901, .ianaIdIndex: 7691, .offsetFromUtc: 0 }, // UTC
599 { .windowsIdKey: 126, .windowsIdIndex: 2905, .ianaIdIndex: 6260, .offsetFromUtc: 43200 }, // UTC+12
600 { .windowsIdKey: 127, .windowsIdIndex: 2912, .ianaIdIndex: 6378, .offsetFromUtc: 46800 }, // UTC+13
601 { .windowsIdKey: 128, .windowsIdIndex: 2919, .ianaIdIndex: 6423,.offsetFromUtc: -16200 }, // Venezuela Standard Time
602 { .windowsIdKey: 129, .windowsIdIndex: 2943, .ianaIdIndex: 7699, .offsetFromUtc: 36000 }, // Vladivostok Standard Time
603 { .windowsIdKey: 130, .windowsIdIndex: 2969, .ianaIdIndex: 6470, .offsetFromUtc: 14400 }, // Volgograd Standard Time
604 { .windowsIdKey: 131, .windowsIdIndex: 2993, .ianaIdIndex: 6487, .offsetFromUtc: 28800 }, // W. Australia Standard Time
605 { .windowsIdKey: 132, .windowsIdIndex: 3020, .ianaIdIndex: 6671, .offsetFromUtc: 3600 }, // W. Central Africa Standard Time
606 { .windowsIdKey: 133, .windowsIdIndex: 3052, .ianaIdIndex: 7716, .offsetFromUtc: 3600 }, // W. Europe Standard Time
607 { .windowsIdKey: 134, .windowsIdIndex: 3076, .ianaIdIndex: 6970, .offsetFromUtc: 25200 }, // W. Mongolia Standard Time
608 { .windowsIdKey: 135, .windowsIdIndex: 3102, .ianaIdIndex: 7730, .offsetFromUtc: 18000 }, // West Asia Standard Time
609 { .windowsIdKey: 136, .windowsIdIndex: 3126, .ianaIdIndex: 7744, .offsetFromUtc: 7200 }, // West Bank Standard Time
610 { .windowsIdKey: 137, .windowsIdIndex: 3150, .ianaIdIndex: 7243, .offsetFromUtc: 36000 }, // West Pacific Standard Time
611 { .windowsIdKey: 138, .windowsIdIndex: 3177, .ianaIdIndex: 7756, .offsetFromUtc: 32400 }, // Yakutsk Standard Time
612 { .windowsIdKey: 139, .windowsIdIndex: 3199, .ianaIdIndex: 7769,.offsetFromUtc: -25200 }, // Yukon Standard Time
613};
614
615// IANA ID Index, UTC Offset
616static constexpr QUtcData utcDataTable[] = {
617 { .ianaIdIndex: 7788, .offsetFromUtc: 0 }, // UTC
618 { .ianaIdIndex: 7792,.offsetFromUtc: -50400 }, // UTC-14:00
619 { .ianaIdIndex: 7802,.offsetFromUtc: -46800 }, // UTC-13:00
620 { .ianaIdIndex: 7812,.offsetFromUtc: -43200 }, // UTC-12:00
621 { .ianaIdIndex: 7822,.offsetFromUtc: -39600 }, // UTC-11:00
622 { .ianaIdIndex: 7832,.offsetFromUtc: -36000 }, // UTC-10:00
623 { .ianaIdIndex: 7842,.offsetFromUtc: -32400 }, // UTC-09:00
624 { .ianaIdIndex: 7852,.offsetFromUtc: -28800 }, // UTC-08:00
625 { .ianaIdIndex: 7862,.offsetFromUtc: -25200 }, // UTC-07:00
626 { .ianaIdIndex: 7872,.offsetFromUtc: -21600 }, // UTC-06:00
627 { .ianaIdIndex: 7882,.offsetFromUtc: -18000 }, // UTC-05:00
628 { .ianaIdIndex: 7892,.offsetFromUtc: -16200 }, // UTC-04:30
629 { .ianaIdIndex: 7902,.offsetFromUtc: -14400 }, // UTC-04:00
630 { .ianaIdIndex: 7912,.offsetFromUtc: -12600 }, // UTC-03:30
631 { .ianaIdIndex: 7922,.offsetFromUtc: -10800 }, // UTC-03:00
632 { .ianaIdIndex: 7932, .offsetFromUtc: -7200 }, // UTC-02:00
633 { .ianaIdIndex: 7942, .offsetFromUtc: -3600 }, // UTC-01:00
634 { .ianaIdIndex: 7952, .offsetFromUtc: 0 }, // UTC-00:00
635 { .ianaIdIndex: 7962, .offsetFromUtc: 0 }, // UTC+00:00
636 { .ianaIdIndex: 7972, .offsetFromUtc: 3600 }, // UTC+01:00
637 { .ianaIdIndex: 7982, .offsetFromUtc: 7200 }, // UTC+02:00
638 { .ianaIdIndex: 7992, .offsetFromUtc: 10800 }, // UTC+03:00
639 { .ianaIdIndex: 8002, .offsetFromUtc: 12600 }, // UTC+03:30
640 { .ianaIdIndex: 8012, .offsetFromUtc: 14400 }, // UTC+04:00
641 { .ianaIdIndex: 8022, .offsetFromUtc: 16200 }, // UTC+04:30
642 { .ianaIdIndex: 8032, .offsetFromUtc: 18000 }, // UTC+05:00
643 { .ianaIdIndex: 8042, .offsetFromUtc: 19800 }, // UTC+05:30
644 { .ianaIdIndex: 8052, .offsetFromUtc: 20700 }, // UTC+05:45
645 { .ianaIdIndex: 8062, .offsetFromUtc: 21600 }, // UTC+06:00
646 { .ianaIdIndex: 8072, .offsetFromUtc: 23400 }, // UTC+06:30
647 { .ianaIdIndex: 8082, .offsetFromUtc: 25200 }, // UTC+07:00
648 { .ianaIdIndex: 8092, .offsetFromUtc: 28800 }, // UTC+08:00
649 { .ianaIdIndex: 8102, .offsetFromUtc: 30600 }, // UTC+08:30
650 { .ianaIdIndex: 8112, .offsetFromUtc: 32400 }, // UTC+09:00
651 { .ianaIdIndex: 8122, .offsetFromUtc: 34200 }, // UTC+09:30
652 { .ianaIdIndex: 8132, .offsetFromUtc: 36000 }, // UTC+10:00
653 { .ianaIdIndex: 8142, .offsetFromUtc: 39600 }, // UTC+11:00
654 { .ianaIdIndex: 8152, .offsetFromUtc: 43200 }, // UTC+12:00
655 { .ianaIdIndex: 8162, .offsetFromUtc: 46800 }, // UTC+13:00
656 { .ianaIdIndex: 8172, .offsetFromUtc: 50400 }, // UTC+14:00
657};
658
659static constexpr char windowsIdData[] = {
6600x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
6610x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
6620x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61,
6630x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x74, 0x61, 0x69, 0x20, 0x53, 0x74, 0x61,
6640x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x20, 0x53, 0x74, 0x61, 0x6e,
6650x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74,
6660x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x63, 0x20, 0x53,
6670x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69,
6680x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x73, 0x74,
6690x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
6700x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
6710x69, 0x6d, 0x65, 0x0, 0x41, 0x55, 0x53, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e,
6720x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x75, 0x73, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61,
6730x6c, 0x20, 0x57, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41,
6740x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
6750x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e,
6760x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61,
6770x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x61, 0x68, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61,
6780x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x61, 0x6e, 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73,
6790x68, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x65, 0x6c, 0x61,
6800x72, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x6f,
6810x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
6820x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20,
6830x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x70, 0x65, 0x20, 0x56,
6840x65, 0x72, 0x64, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43,
6850x61, 0x75, 0x63, 0x61, 0x73, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
6860x65, 0x0, 0x43, 0x65, 0x6e, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61,
6870x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41,
6880x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
6890x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
6900x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x42, 0x72, 0x61, 0x7a,
6910x69, 0x6c, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
6920x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
6930x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72,
6940x6f, 0x70, 0x65, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
6950x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e,
6960x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74,
6970x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29,
6980x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
6990x6d, 0x65, 0x0, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
7000x6d, 0x65, 0x0, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53,
7010x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x75, 0x62, 0x61, 0x20, 0x53, 0x74,
7020x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x44, 0x61, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x65,
7030x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x66,
7040x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45,
7050x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
7060x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e,
7070x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41,
7080x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
7090x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
7100x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61,
7110x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53,
7120x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f,
7130x29, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
7140x65, 0x0, 0x45, 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
7150x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x69, 0x6a, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
7160x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x4c, 0x45, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
7170x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
7180x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x4d, 0x54, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
7190x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61,
7200x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68,
7210x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x54, 0x42, 0x20, 0x53,
7220x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x69, 0x74, 0x69, 0x20, 0x53,
7230x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x61,
7240x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x6e, 0x64, 0x69,
7250x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x72, 0x61, 0x6e,
7260x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65,
7270x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4a, 0x6f, 0x72, 0x64,
7280x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4b, 0x61, 0x6c,
7290x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
7300x6d, 0x65, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
7310x6d, 0x65, 0x0, 0x4c, 0x69, 0x62, 0x79, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
7320x6d, 0x65, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e,
7330x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, 0x6f, 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x20,
7340x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61,
7350x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61,
7360x6c, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
7370x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
7380x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
7390x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x45, 0x61, 0x73, 0x74,
7400x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x6e, 0x74, 0x65,
7410x76, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
7420x4d, 0x6f, 0x72, 0x6f, 0x63, 0x63, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
7430x65, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
7440x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61,
7450x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x79, 0x61,
7460x6e, 0x6d, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e,
7470x2e, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
7480x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x61, 0x6d, 0x69, 0x62, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61,
7490x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x70, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61,
7500x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, 0x20, 0x5a, 0x65, 0x61, 0x6c, 0x61,
7510x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77,
7520x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
7530x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
7540x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x45, 0x61, 0x73,
7550x74, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74,
7560x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65,
7570x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
7580x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
7590x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x41, 0x20, 0x53, 0x74, 0x61,
7600x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53,
7610x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
7620x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69,
7630x63, 0x6f, 0x29, 0x0, 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
7640x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x20, 0x53, 0x74, 0x61, 0x6e,
7650x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x20,
7660x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x6f, 0x6d, 0x61, 0x6e, 0x63,
7670x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x75, 0x73, 0x73,
7680x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x33, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69,
7690x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x30, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69,
7700x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x31, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69,
7710x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20,
7720x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
7730x65, 0x0, 0x53, 0x41, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
7740x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74,
7750x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x69, 0x6e, 0x74, 0x20, 0x50, 0x69,
7760x65, 0x72, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53,
7770x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
7780x65, 0x0, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
7790x65, 0x0, 0x53, 0x61, 0x6f, 0x20, 0x54, 0x6f, 0x6d, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
7800x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x76, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
7810x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x45, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
7820x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x20, 0x53,
7830x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41,
7840x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
7850x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
7860x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x72, 0x69, 0x20, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e,
7870x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e,
7880x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x79, 0x72, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e,
7890x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x20, 0x53, 0x74, 0x61,
7900x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x20,
7910x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x63, 0x61, 0x6e, 0x74,
7920x69, 0x6e, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f,
7930x6b, 0x79, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f,
7940x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f,
7950x6e, 0x67, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x72,
7960x61, 0x6e, 0x73, 0x62, 0x61, 0x69, 0x6b, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54,
7970x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20,
7980x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x73, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x69, 0x63, 0x6f,
7990x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x6c, 0x61, 0x61,
8000x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
8010x65, 0x0, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
8020x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x53, 0x20, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53,
8030x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x0,
8040x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32,
8050x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x0, 0x56,
8060x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69,
8070x6d, 0x65, 0x0, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64,
8080x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53,
8090x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74,
8100x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0,
8110x57, 0x2e, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74,
8120x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70,
8130x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x4d,
8140x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d,
8150x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
8160x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x42, 0x61, 0x6e, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e,
8170x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66,
8180x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x61, 0x6b,
8190x75, 0x74, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59,
8200x75, 0x6b, 0x6f, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0
821};
822
823static constexpr char ianaIdData[] = {
8240x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
8250x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e,
8260x65, 0x61, 0x75, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74,
8270x6c, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72,
8280x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x59, 0x61,
8290x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, 0x0, 0x41,
8300x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, 0x61, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68,
8310x72, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69,
8320x61, 0x2f, 0x51, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, 0x61, 0x64, 0x68, 0x0,
8330x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x34, 0x0,
8340x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73, 0x63, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x62,
8350x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, 0x64, 0x61, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72,
8360x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65,
8370x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x52, 0x69,
8380x6f, 0x6a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e,
8390x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, 0x65, 0x67, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69,
8400x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x20, 0x41,
8410x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e,
8420x5f, 0x4a, 0x75, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74,
8430x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4c, 0x75, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
8440x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x41,
8450x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55, 0x73, 0x68,
8460x75, 0x61, 0x69, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x74, 0x61, 0x6d, 0x61, 0x72,
8470x63, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x20, 0x41,
8480x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
8490x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72,
8500x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76,
8510x73, 0x6b, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64, 0x61, 0x0,
8520x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72,
8530x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
8540x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
8550x4d, 0x6f, 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6c,
8560x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x77, 0x69, 0x6e, 0x0, 0x41,
8570x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45, 0x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72,
8580x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69,
8590x61, 0x2f, 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6b,
8600x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x73, 0x62, 0x79, 0x73, 0x75,
8610x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41,
8620x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68,
8630x61, 0x6b, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, 0x75, 0x0, 0x45, 0x75, 0x72,
8640x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x42, 0x6f,
8650x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52,
8660x65, 0x67, 0x69, 0x6e, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f,
8670x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x0, 0x41, 0x74,
8680x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, 0x72, 0x64, 0x65, 0x0, 0x41, 0x73,
8690x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61,
8700x2f, 0x41, 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f,
8710x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b,
8720x36, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, 0x7a, 0x65, 0x0, 0x41, 0x6d, 0x65,
8730x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, 0x5f, 0x52, 0x69, 0x63, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69,
8740x66, 0x69, 0x63, 0x2f, 0x47, 0x61, 0x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
8750x61, 0x2f, 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
8760x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
8770x54, 0x65, 0x67, 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
8780x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x36, 0x0, 0x41, 0x6e,
8790x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x49, 0x6e, 0x64, 0x69,
8800x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x72, 0x75, 0x6d, 0x71,
8810x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51,
8820x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x68, 0x6b, 0x65, 0x6b,
8830x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72,
8840x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x70, 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72,
8850x6f, 0x70, 0x65, 0x2f, 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72,
8860x61, 0x67, 0x75, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74,
8870x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x6f, 0x64, 0x67, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75,
8880x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
8890x2f, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c,
8900x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61,
8910x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x67, 0x72, 0x65, 0x62, 0x0, 0x45,
8920x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
8930x57, 0x61, 0x72, 0x73, 0x61, 0x77, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x31, 0x0, 0x41, 0x6e,
8940x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
8950x69, 0x63, 0x2f, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x6f,
8960x73, 0x72, 0x61, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0,
8970x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, 0x6c, 0x0,
8980x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
8990x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
9000x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x20, 0x41, 0x6d, 0x65,
9010x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
9020x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68,
9030x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x43, 0x53, 0x54, 0x36, 0x43, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72,
9040x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
9050x2f, 0x52, 0x61, 0x69, 0x6e, 0x79, 0x5f, 0x52, 0x69, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
9060x2f, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, 0x6e, 0x6c, 0x65, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
9070x61, 0x2f, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d,
9080x61, 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x6a, 0x69,
9090x6e, 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f,
9100x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4b, 0x6e, 0x6f,
9110x78, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65,
9120x6c, 0x6c, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x6f,
9130x6d, 0x69, 0x6e, 0x65, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f,
9140x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x42, 0x65, 0x75, 0x6c, 0x61, 0x68, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
9150x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x65,
9160x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f,
9170x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x68,
9180x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e,
9190x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
9200x2f, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x76,
9210x61, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47,
9220x4d, 0x54, 0x2d, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77,
9230x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, 0x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69,
9240x63, 0x61, 0x2f, 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, 0x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
9250x73, 0x6d, 0x65, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x64, 0x69, 0x73, 0x5f, 0x41,
9260x62, 0x61, 0x62, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0,
9270x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x41, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0,
9280x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
9290x61, 0x2f, 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44,
9300x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, 0x6d, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
9310x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72,
9320x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69, 0x6e,
9330x64, 0x65, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68, 0x69, 0x73, 0x69, 0x6e, 0x61,
9340x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0,
9350x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x45, 0x53, 0x54, 0x35, 0x45,
9360x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d,
9370x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
9380x61, 0x2f, 0x49, 0x71, 0x61, 0x6c, 0x75, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f,
9390x6e, 0x74, 0x72, 0x65, 0x61, 0x6c, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x70, 0x69, 0x67,
9400x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x67, 0x6e, 0x69, 0x72, 0x74, 0x75,
9410x6e, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x42,
9420x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x20,
9430x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72,
9440x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75,
9450x72, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56,
9460x69, 0x6e, 0x63, 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64,
9470x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x61, 0x6d, 0x61, 0x63, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
9480x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f,
9490x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0,
9500x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
9510x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x6b, 0x61, 0x74, 0x65, 0x72,
9520x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0,
9530x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x72, 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72,
9540x6f, 0x70, 0x65, 0x2f, 0x53, 0x6f, 0x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, 0x6c,
9550x6c, 0x69, 0x6e, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c, 0x73, 0x69, 0x6e, 0x6b, 0x69,
9560x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
9570x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x20,
9580x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x7a, 0x68, 0x67, 0x6f, 0x72, 0x6f, 0x64, 0x20, 0x45, 0x75, 0x72, 0x6f,
9590x70, 0x65, 0x2f, 0x5a, 0x61, 0x70, 0x6f, 0x72, 0x6f, 0x7a, 0x68, 0x79, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54,
9600x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x65, 0x72,
9610x6f, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x75, 0x65, 0x72, 0x6e, 0x73, 0x65, 0x79, 0x0, 0x45,
9620x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
9630x49, 0x73, 0x6c, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4a,
9640x65, 0x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x20,
9650x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x64, 0x65, 0x69, 0x72, 0x61, 0x0, 0x41, 0x74, 0x6c,
9660x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x6e, 0x61, 0x72, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
9670x4c, 0x6f, 0x6e, 0x64, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x64, 0x74, 0x68,
9680x61, 0x62, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, 0x61, 0x67, 0x61, 0x64, 0x6f, 0x75, 0x67, 0x6f,
9690x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x6a, 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69,
9700x63, 0x61, 0x2f, 0x41, 0x63, 0x63, 0x72, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e,
9710x6d, 0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x69, 0x73,
9720x73, 0x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61, 0x6b, 0x72, 0x79, 0x0, 0x41,
9730x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, 0x61, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x66,
9740x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, 0x6a, 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
9750x4d, 0x6f, 0x6e, 0x72, 0x6f, 0x76, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61,
9760x6b, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63, 0x68, 0x6f, 0x74, 0x74,
9770x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x5f, 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0,
9780x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
9790x46, 0x72, 0x65, 0x65, 0x74, 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65,
9800x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x46,
9810x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65,
9820x6e, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0,
9830x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e,
9840x63, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x30, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
9850x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
9860x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4a, 0x6f, 0x68, 0x6e, 0x73,
9870x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, 0x75, 0x6c, 0x75,
9880x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x74, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
9890x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x65, 0x72, 0x75, 0x73, 0x61, 0x6c, 0x65,
9900x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
9910x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f,
9920x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, 0x0, 0x45, 0x74,
9930x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x34, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x69, 0x72,
9940x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f,
9950x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e,
9960x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e, 0x61,
9970x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x0,
9980x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x49, 0x6e, 0x64,
9990x69, 0x61, 0x6e, 0x2f, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d,
10000x61, 0x68, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72,
10010x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
10020x61, 0x2f, 0x43, 0x61, 0x73, 0x61, 0x62, 0x6c, 0x61, 0x6e, 0x63, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
10030x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a,
10040x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x4d, 0x53, 0x54, 0x37, 0x4d, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
10050x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43,
10060x61, 0x6d, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
10070x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x59, 0x65, 0x6c, 0x6c,
10080x6f, 0x77, 0x6b, 0x6e, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x69, 0x75, 0x64,
10090x61, 0x64, 0x5f, 0x4a, 0x75, 0x61, 0x72, 0x65, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65,
10100x6e, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, 0x0, 0x49,
10110x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x61, 0x6e,
10120x67, 0x6f, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x73, 0x69, 0x62, 0x69, 0x72, 0x73,
10130x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x41, 0x73,
10140x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x6d, 0x61, 0x6e, 0x64, 0x75, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69,
10150x63, 0x61, 0x2f, 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41,
10160x75, 0x63, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4a,
10170x6f, 0x68, 0x6e, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b,
10180x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49, 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b,
10190x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f,
10200x6b, 0x75, 0x7a, 0x6e, 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x79, 0x6f, 0x6e, 0x67, 0x79,
10210x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
10220x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x53, 0x54, 0x38, 0x50, 0x44, 0x54, 0x0, 0x41,
10230x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65,
10240x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65,
10250x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
10260x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x5f, 0x49, 0x73, 0x61, 0x62, 0x65, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b,
10270x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x75, 0x6e, 0x63,
10280x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45,
10290x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
10300x65, 0x2f, 0x43, 0x6f, 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
10310x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64, 0x20,
10320x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x65, 0x75, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
10330x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f,
10340x6c, 0x79, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61,
10350x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f,
10360x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0,
10370x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x74,
10380x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52,
10390x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61,
10400x6c, 0x6d, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x65,
10410x7a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x20, 0x41, 0x6d, 0x65,
10420x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
10430x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61,
10440x72, 0x65, 0x6d, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x61, 0x6e, 0x6c, 0x65, 0x79,
10450x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65,
10460x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, 0x45, 0x74, 0x63, 0x2f,
10470x47, 0x4d, 0x54, 0x2b, 0x35, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x42, 0x72,
10480x61, 0x6e, 0x63, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70,
10490x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x61, 0x6c, 0x5f, 0x48, 0x61, 0x72, 0x62,
10500x6f, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41,
10510x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
10520x61, 0x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
10530x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61,
10540x6d, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f,
10550x47, 0x4d, 0x54, 0x2b, 0x34, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x67, 0x75, 0x69, 0x6c,
10560x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x61, 0x0, 0x41,
10570x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
10580x2f, 0x42, 0x61, 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61,
10590x5f, 0x50, 0x61, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x75, 0x73, 0x20,
10600x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, 0x74, 0x61, 0x20, 0x41, 0x6d,
10610x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x5f, 0x56, 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d,
10620x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
10630x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
10640x63, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
10650x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f,
10660x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f,
10670x5f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x65,
10680x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x65, 0x6c, 0x6f,
10690x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x79, 0x61, 0x6e, 0x61, 0x0, 0x41,
10700x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0, 0x41, 0x6d,
10710x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65,
10720x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65,
10730x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68, 0x65, 0x6c, 0x65, 0x6d, 0x79, 0x0, 0x41,
10740x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72,
10750x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
10760x2f, 0x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f,
10770x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65,
10780x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f,
10790x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f,
10800x53, 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x69,
10810x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e,
10820x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
10830x2f, 0x53, 0x61, 0x6f, 0x5f, 0x54, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72,
10840x61, 0x74, 0x6f, 0x76, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x37, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72,
10850x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e,
10860x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73,
10870x74, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x20, 0x41, 0x73,
10880x69, 0x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x69,
10890x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b,
10900x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x69, 0x67, 0x6f, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54,
10910x2d, 0x38, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f,
10920x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f,
10930x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0,
10940x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e,
10950x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x32, 0x0, 0x41, 0x66, 0x72,
10960x69, 0x63, 0x61, 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
10970x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x62,
10980x75, 0x6d, 0x62, 0x61, 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61,
10990x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, 0x0, 0x41, 0x66, 0x72,
11000x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
11010x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69,
11020x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75, 0x72, 0x67,
11030x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63,
11040x61, 0x2f, 0x48, 0x61, 0x72, 0x61, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61,
11050x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
11060x2f, 0x4b, 0x68, 0x61, 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73,
11070x63, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, 0x41, 0x75, 0x73, 0x74,
11080x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c,
11090x69, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x72, 0x69, 0x65, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61,
11100x2f, 0x4d, 0x61, 0x63, 0x71, 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41,
11110x72, 0x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x39, 0x0, 0x41,
11120x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f,
11130x6b, 0x79, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75, 0x0, 0x41, 0x73,
11140x69, 0x61, 0x2f, 0x44, 0x69, 0x6c, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50,
11150x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, 0x41, 0x73, 0x69,
11160x61, 0x2f, 0x43, 0x68, 0x69, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e,
11170x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x54, 0x75,
11180x72, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20,
11190x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x69, 0x62, 0x61, 0x6c, 0x73, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72,
11200x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65,
11210x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, 0x6e, 0x67, 0x6f,
11220x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76,
11230x61, 0x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x37, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61,
11240x2f, 0x43, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77,
11250x73, 0x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f,
11260x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65,
11270x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f,
11280x65, 0x6e, 0x69, 0x78, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x31, 0x0, 0x50, 0x61, 0x63, 0x69,
11290x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x67, 0x6f, 0x5f, 0x50, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69,
11300x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61,
11310x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f,
11320x47, 0x61, 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, 0x0, 0x50, 0x61,
11330x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47,
11340x4d, 0x54, 0x2b, 0x32, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61,
11350x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72,
11360x67, 0x69, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x20, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0,
11370x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x32, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54,
11380x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f,
11390x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50,
11400x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63,
11410x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61,
11420x6b, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74,
11430x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x6e, 0x64,
11440x65, 0x72, 0x62, 0x75, 0x72, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f,
11450x66, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41,
11460x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61,
11470x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, 0x6c,
11480x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72,
11490x74, 0x68, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
11500x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x61, 0x6e, 0x64,
11510x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0,
11520x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61,
11530x2f, 0x42, 0x61, 0x6e, 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, 0x6a, 0x61, 0x6d,
11540x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, 0x61, 0x7a, 0x7a, 0x61, 0x76, 0x69, 0x6c,
11550x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41,
11560x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f,
11570x4c, 0x69, 0x62, 0x72, 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61,
11580x67, 0x6f, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65, 0x79, 0x0, 0x41, 0x66,
11590x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6e,
11600x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x6e, 0x61, 0x0,
11610x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
11620x2f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x69, 0x62,
11630x72, 0x61, 0x6c, 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, 0x45,
11640x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c,
11650x75, 0x78, 0x65, 0x6d, 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c,
11660x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, 0x0, 0x45, 0x75, 0x72,
11670x6f, 0x70, 0x65, 0x2f, 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65,
11680x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4d, 0x61, 0x72,
11690x69, 0x6e, 0x6f, 0x0, 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, 0x79, 0x65, 0x61, 0x72, 0x62,
11700x79, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x68, 0x6f, 0x6c, 0x6d,
11710x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, 0x63, 0x68, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70,
11720x65, 0x2f, 0x56, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0,
11730x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x35, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61,
11740x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, 0x65, 0x72, 0x67, 0x75,
11750x65, 0x6c, 0x65, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f,
11760x41, 0x71, 0x74, 0x61, 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x6f, 0x62, 0x65, 0x20, 0x41, 0x73,
11770x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, 0x75, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x6c,
11780x64, 0x69, 0x76, 0x65, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0,
11790x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54,
11800x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61,
11810x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f,
11820x47, 0x61, 0x7a, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x30, 0x0, 0x41, 0x6e, 0x74, 0x61,
11830x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c, 0x6c,
11840x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66,
11850x69, 0x63, 0x2f, 0x54, 0x72, 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70,
11860x61, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65,
11870x73, 0x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69,
11880x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57,
11890x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61,
11900x77, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61,
11910x67, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69,
11920x72, 0x65, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e,
11930x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, 0x78, 0x0, 0x41, 0x75, 0x73,
11940x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63,
11950x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41,
11960x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0,
11970x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
11980x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69,
11990x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61,
12000x2f, 0x42, 0x72, 0x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x65,
12010x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x0, 0x41,
12020x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b,
12030x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54,
12040x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b,
12050x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x41, 0x75, 0x73, 0x74,
12060x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c,
12070x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e,
12080x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x41,
12090x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f,
12100x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b,
12110x65, 0x6e, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61,
12120x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69,
12130x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x34, 0x3a, 0x30,
12140x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x32, 0x3a, 0x30,
12150x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x30, 0x3a, 0x30,
12160x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x3a, 0x30,
12170x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x36, 0x3a, 0x30,
12180x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x33,
12190x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x33,
12200x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, 0x3a, 0x30,
12210x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x30, 0x3a, 0x30,
12220x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x31, 0x3a, 0x30,
12230x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x30,
12240x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x30,
12250x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x30,
12260x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x34,
12270x35, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x33,
12280x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x30,
12290x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x30,
12300x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x30,
12310x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x3a, 0x30,
12320x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x34, 0x3a, 0x30,
12330x30, 0x0
1234};
1235// GENERATED PART ENDS HERE
1236
1237inline QByteArrayView QWindowsData::windowsId() const { return windowsIdData + windowsIdIndex; }
1238// Each of the following returns a space-joined sequence of IANA IDs:
1239inline QByteArrayView QWindowsData::ianaId() const { return ianaIdData + ianaIdIndex; }
1240inline QByteArrayView QUtcData::id() const { return ianaIdData + ianaIdIndex; }
1241inline QLatin1StringView QZoneData::id() const
1242{ return QLatin1StringView(ianaIdData + ianaIdIndex); }
1243
1244QT_END_NAMESPACE
1245
1246#endif // QTIMEZONEPRIVATE_DATA_P_H
1247

source code of qtbase/src/corelib/time/qtimezoneprivate_data_p.h