tzinfo 1.2.11 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.yardopts +3 -0
  4. data/CHANGES.md +469 -431
  5. data/LICENSE +13 -13
  6. data/README.md +368 -114
  7. data/lib/tzinfo/country.rb +131 -129
  8. data/lib/tzinfo/country_timezone.rb +70 -112
  9. data/lib/tzinfo/data_source.rb +389 -144
  10. data/lib/tzinfo/data_sources/constant_offset_data_timezone_info.rb +56 -0
  11. data/lib/tzinfo/data_sources/country_info.rb +42 -0
  12. data/lib/tzinfo/data_sources/data_timezone_info.rb +91 -0
  13. data/lib/tzinfo/data_sources/linked_timezone_info.rb +33 -0
  14. data/lib/tzinfo/data_sources/ruby_data_source.rb +141 -0
  15. data/lib/tzinfo/data_sources/timezone_info.rb +47 -0
  16. data/lib/tzinfo/data_sources/transitions_data_timezone_info.rb +214 -0
  17. data/lib/tzinfo/data_sources/zoneinfo_data_source.rb +573 -0
  18. data/lib/tzinfo/data_sources/zoneinfo_reader.rb +284 -0
  19. data/lib/tzinfo/data_sources.rb +8 -0
  20. data/lib/tzinfo/data_timezone.rb +33 -47
  21. data/lib/tzinfo/datetime_with_offset.rb +153 -0
  22. data/lib/tzinfo/format1/country_definer.rb +17 -0
  23. data/lib/tzinfo/format1/country_index_definition.rb +64 -0
  24. data/lib/tzinfo/format1/timezone_definer.rb +64 -0
  25. data/lib/tzinfo/format1/timezone_definition.rb +39 -0
  26. data/lib/tzinfo/format1/timezone_index_definition.rb +77 -0
  27. data/lib/tzinfo/format1.rb +10 -0
  28. data/lib/tzinfo/format2/country_definer.rb +68 -0
  29. data/lib/tzinfo/format2/country_index_definer.rb +68 -0
  30. data/lib/tzinfo/format2/country_index_definition.rb +46 -0
  31. data/lib/tzinfo/format2/timezone_definer.rb +94 -0
  32. data/lib/tzinfo/format2/timezone_definition.rb +73 -0
  33. data/lib/tzinfo/format2/timezone_index_definer.rb +45 -0
  34. data/lib/tzinfo/format2/timezone_index_definition.rb +55 -0
  35. data/lib/tzinfo/format2.rb +10 -0
  36. data/lib/tzinfo/info_timezone.rb +26 -21
  37. data/lib/tzinfo/linked_timezone.rb +33 -52
  38. data/lib/tzinfo/offset_timezone_period.rb +42 -0
  39. data/lib/tzinfo/string_deduper.rb +118 -0
  40. data/lib/tzinfo/time_with_offset.rb +128 -0
  41. data/lib/tzinfo/timestamp.rb +548 -0
  42. data/lib/tzinfo/timestamp_with_offset.rb +85 -0
  43. data/lib/tzinfo/timezone.rb +979 -502
  44. data/lib/tzinfo/timezone_offset.rb +84 -74
  45. data/lib/tzinfo/timezone_period.rb +151 -217
  46. data/lib/tzinfo/timezone_proxy.rb +70 -79
  47. data/lib/tzinfo/timezone_transition.rb +77 -109
  48. data/lib/tzinfo/transitions_timezone_period.rb +63 -0
  49. data/lib/tzinfo/version.rb +7 -0
  50. data/lib/tzinfo/with_offset.rb +61 -0
  51. data/lib/tzinfo.rb +60 -40
  52. data.tar.gz.sig +0 -0
  53. metadata +51 -115
  54. metadata.gz.sig +2 -3
  55. data/Rakefile +0 -107
  56. data/lib/tzinfo/annual_rules.rb +0 -51
  57. data/lib/tzinfo/country_index_definition.rb +0 -31
  58. data/lib/tzinfo/country_info.rb +0 -42
  59. data/lib/tzinfo/data_timezone_info.rb +0 -55
  60. data/lib/tzinfo/linked_timezone_info.rb +0 -26
  61. data/lib/tzinfo/offset_rationals.rb +0 -77
  62. data/lib/tzinfo/posix_time_zone_parser.rb +0 -136
  63. data/lib/tzinfo/ruby_core_support.rb +0 -176
  64. data/lib/tzinfo/ruby_country_info.rb +0 -74
  65. data/lib/tzinfo/ruby_data_source.rb +0 -136
  66. data/lib/tzinfo/time_or_datetime.rb +0 -351
  67. data/lib/tzinfo/timezone_definition.rb +0 -36
  68. data/lib/tzinfo/timezone_index_definition.rb +0 -54
  69. data/lib/tzinfo/timezone_info.rb +0 -30
  70. data/lib/tzinfo/timezone_transition_definition.rb +0 -104
  71. data/lib/tzinfo/transition_data_timezone_info.rb +0 -274
  72. data/lib/tzinfo/transition_rule.rb +0 -325
  73. data/lib/tzinfo/zoneinfo_country_info.rb +0 -37
  74. data/lib/tzinfo/zoneinfo_data_source.rb +0 -504
  75. data/lib/tzinfo/zoneinfo_timezone_info.rb +0 -516
  76. data/test/assets/payload.rb +0 -1
  77. data/test/tc_annual_rules.rb +0 -95
  78. data/test/tc_country.rb +0 -240
  79. data/test/tc_country_index_definition.rb +0 -69
  80. data/test/tc_country_info.rb +0 -16
  81. data/test/tc_country_timezone.rb +0 -173
  82. data/test/tc_data_source.rb +0 -218
  83. data/test/tc_data_timezone.rb +0 -99
  84. data/test/tc_data_timezone_info.rb +0 -18
  85. data/test/tc_info_timezone.rb +0 -34
  86. data/test/tc_linked_timezone.rb +0 -155
  87. data/test/tc_linked_timezone_info.rb +0 -23
  88. data/test/tc_offset_rationals.rb +0 -23
  89. data/test/tc_posix_time_zone_parser.rb +0 -261
  90. data/test/tc_ruby_core_support.rb +0 -168
  91. data/test/tc_ruby_country_info.rb +0 -110
  92. data/test/tc_ruby_data_source.rb +0 -175
  93. data/test/tc_time_or_datetime.rb +0 -674
  94. data/test/tc_timezone.rb +0 -1361
  95. data/test/tc_timezone_definition.rb +0 -113
  96. data/test/tc_timezone_index_definition.rb +0 -73
  97. data/test/tc_timezone_info.rb +0 -11
  98. data/test/tc_timezone_london.rb +0 -143
  99. data/test/tc_timezone_melbourne.rb +0 -142
  100. data/test/tc_timezone_new_york.rb +0 -142
  101. data/test/tc_timezone_offset.rb +0 -126
  102. data/test/tc_timezone_period.rb +0 -555
  103. data/test/tc_timezone_proxy.rb +0 -136
  104. data/test/tc_timezone_transition.rb +0 -366
  105. data/test/tc_timezone_transition_definition.rb +0 -295
  106. data/test/tc_timezone_utc.rb +0 -27
  107. data/test/tc_transition_data_timezone_info.rb +0 -433
  108. data/test/tc_transition_rule.rb +0 -663
  109. data/test/tc_zoneinfo_country_info.rb +0 -78
  110. data/test/tc_zoneinfo_data_source.rb +0 -1226
  111. data/test/tc_zoneinfo_timezone_info.rb +0 -2149
  112. data/test/test_utils.rb +0 -214
  113. data/test/ts_all.rb +0 -7
  114. data/test/ts_all_ruby.rb +0 -5
  115. data/test/ts_all_zoneinfo.rb +0 -9
  116. data/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +0 -89
  117. data/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +0 -327
  118. data/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +0 -230
  119. data/test/tzinfo-data/tzinfo/data/definitions/EST.rb +0 -19
  120. data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +0 -21
  121. data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +0 -21
  122. data/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +0 -21
  123. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +0 -273
  124. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +0 -198
  125. data/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +0 -333
  126. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +0 -277
  127. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +0 -235
  128. data/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +0 -16
  129. data/test/tzinfo-data/tzinfo/data/indexes/countries.rb +0 -940
  130. data/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +0 -609
  131. data/test/tzinfo-data/tzinfo/data/version.rb +0 -20
  132. data/test/tzinfo-data/tzinfo/data.rb +0 -8
  133. data/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  134. data/test/zoneinfo/America/New_York +0 -0
  135. data/test/zoneinfo/Australia/Melbourne +0 -0
  136. data/test/zoneinfo/EST +0 -0
  137. data/test/zoneinfo/Etc/UTC +0 -0
  138. data/test/zoneinfo/Europe/Amsterdam +0 -0
  139. data/test/zoneinfo/Europe/Andorra +0 -0
  140. data/test/zoneinfo/Europe/London +0 -0
  141. data/test/zoneinfo/Europe/Paris +0 -0
  142. data/test/zoneinfo/Europe/Prague +0 -0
  143. data/test/zoneinfo/Factory +0 -0
  144. data/test/zoneinfo/iso3166.tab +0 -274
  145. data/test/zoneinfo/leapseconds +0 -78
  146. data/test/zoneinfo/posix/Europe/London +0 -0
  147. data/test/zoneinfo/posixrules +0 -0
  148. data/test/zoneinfo/right/Europe/London +0 -0
  149. data/test/zoneinfo/zone.tab +0 -452
  150. data/test/zoneinfo/zone1970.tab +0 -384
  151. data/tzinfo.gemspec +0 -21
@@ -1,940 +0,0 @@
1
- # encoding: UTF-8
2
-
3
- # This file contains data derived from the IANA Time Zone Database
4
- # (https://www.iana.org/time-zones).
5
-
6
- module TZInfo
7
- module Data
8
- module Indexes
9
- module Countries
10
- include CountryIndexDefinition
11
-
12
- country 'AD', 'Andorra' do |c|
13
- c.timezone 'Europe/Andorra', 85, 2, 91, 60
14
- end
15
- country 'AE', 'United Arab Emirates' do |c|
16
- c.timezone 'Asia/Dubai', 253, 10, 553, 10
17
- end
18
- country 'AF', 'Afghanistan' do |c|
19
- c.timezone 'Asia/Kabul', 2071, 60, 346, 5
20
- end
21
- country 'AG', 'Antigua & Barbuda' do |c|
22
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
23
- end
24
- country 'AI', 'Anguilla' do |c|
25
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
26
- end
27
- country 'AL', 'Albania' do |c|
28
- c.timezone 'Europe/Tirane', 124, 3, 119, 6
29
- end
30
- country 'AM', 'Armenia' do |c|
31
- c.timezone 'Asia/Yerevan', 2411, 60, 89, 2
32
- end
33
- country 'AO', 'Angola' do |c|
34
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
35
- end
36
- country 'AQ', 'Antarctica' do |c|
37
- c.timezone 'Antarctica/Casey', -3977, 60, 6631, 60, 'Casey'
38
- c.timezone 'Antarctica/Davis', -823, 12, 2339, 30, 'Davis'
39
- c.timezone 'Antarctica/DumontDUrville', -200, 3, 8401, 60, 'Dumont-d\'Urville'
40
- c.timezone 'Antarctica/Mawson', -338, 5, 3773, 60, 'Mawson'
41
- c.timezone 'Antarctica/Palmer', -324, 5, -641, 10, 'Palmer'
42
- c.timezone 'Antarctica/Rothera', -2027, 30, -1022, 15, 'Rothera'
43
- c.timezone 'Antarctica/Syowa', -124211, 1800, 3959, 100, 'Syowa'
44
- c.timezone 'Antarctica/Troll', -259241, 3600, 507, 200, 'Troll'
45
- c.timezone 'Antarctica/Vostok', -392, 5, 1069, 10, 'Vostok'
46
- c.timezone 'Pacific/Auckland', -553, 15, 5243, 30, 'New Zealand time'
47
- end
48
- country 'AR', 'Argentina' do |c|
49
- c.timezone 'America/Argentina/Buenos_Aires', -173, 5, -1169, 20, 'Buenos Aires (BA, CF)'
50
- c.timezone 'America/Argentina/Cordoba', -157, 5, -3851, 60, 'Argentina (most areas: CB, CC, CN, ER, FM, MN, SE, SF)'
51
- c.timezone 'America/Argentina/Salta', -1487, 60, -785, 12, 'Salta (SA, LP, NQ, RN)'
52
- c.timezone 'America/Argentina/Jujuy', -1451, 60, -653, 10, 'Jujuy (JY)'
53
- c.timezone 'America/Argentina/Tucuman', -1609, 60, -3913, 60, 'Tucumán (TM)'
54
- c.timezone 'America/Argentina/Catamarca', -427, 15, -3947, 60, 'Catamarca (CT); Chubut (CH)'
55
- c.timezone 'America/Argentina/La_Rioja', -883, 30, -1337, 20, 'La Rioja (LR)'
56
- c.timezone 'America/Argentina/San_Juan', -473, 15, -4111, 60, 'San Juan (SJ)'
57
- c.timezone 'America/Argentina/Mendoza', -1973, 60, -4129, 60, 'Mendoza (MZ)'
58
- c.timezone 'America/Argentina/San_Luis', -1999, 60, -1327, 20, 'San Luis (SL)'
59
- c.timezone 'America/Argentina/Rio_Gallegos', -1549, 30, -4153, 60, 'Santa Cruz (SC)'
60
- c.timezone 'America/Argentina/Ushuaia', -274, 5, -683, 10, 'Tierra del Fuego (TF)'
61
- end
62
- country 'AS', 'Samoa (American)' do |c|
63
- c.timezone 'Pacific/Pago_Pago', -214, 15, -1707, 10, 'Samoa, Midway'
64
- end
65
- country 'AT', 'Austria' do |c|
66
- c.timezone 'Europe/Vienna', 2893, 60, 49, 3
67
- end
68
- country 'AU', 'Australia' do |c|
69
- c.timezone 'Australia/Lord_Howe', -631, 20, 1909, 12, 'Lord Howe Island'
70
- c.timezone 'Antarctica/Macquarie', -109, 2, 3179, 20, 'Macquarie Island'
71
- c.timezone 'Australia/Hobart', -2573, 60, 8839, 60, 'Tasmania (most areas)'
72
- c.timezone 'Australia/Currie', -599, 15, 2158, 15, 'Tasmania (King Island)'
73
- c.timezone 'Australia/Melbourne', -2269, 60, 4349, 30, 'Victoria'
74
- c.timezone 'Australia/Sydney', -508, 15, 9073, 60, 'New South Wales (most areas)'
75
- c.timezone 'Australia/Broken_Hill', -639, 20, 2829, 20, 'New South Wales (Yancowinna)'
76
- c.timezone 'Australia/Brisbane', -412, 15, 4591, 30, 'Queensland (most areas)'
77
- c.timezone 'Australia/Lindeman', -304, 15, 149, 1, 'Queensland (Whitsunday Islands)'
78
- c.timezone 'Australia/Adelaide', -419, 12, 1663, 12, 'South Australia'
79
- c.timezone 'Australia/Darwin', -187, 15, 785, 6, 'Northern Territory'
80
- c.timezone 'Australia/Perth', -639, 20, 2317, 20, 'Western Australia (most areas)'
81
- c.timezone 'Australia/Eucla', -1903, 60, 1933, 15, 'Western Australia (Eucla)'
82
- end
83
- country 'AW', 'Aruba' do |c|
84
- c.timezone 'America/Curacao', 731, 60, -69, 1
85
- end
86
- country 'AX', 'Åland Islands' do |c|
87
- c.timezone 'Europe/Helsinki', 361, 6, 749, 30
88
- end
89
- country 'AZ', 'Azerbaijan' do |c|
90
- c.timezone 'Asia/Baku', 2423, 60, 997, 20
91
- end
92
- country 'BA', 'Bosnia & Herzegovina' do |c|
93
- c.timezone 'Europe/Belgrade', 269, 6, 41, 2
94
- end
95
- country 'BB', 'Barbados' do |c|
96
- c.timezone 'America/Barbados', 131, 10, -3577, 60
97
- end
98
- country 'BD', 'Bangladesh' do |c|
99
- c.timezone 'Asia/Dhaka', 1423, 60, 1085, 12
100
- end
101
- country 'BE', 'Belgium' do |c|
102
- c.timezone 'Europe/Brussels', 305, 6, 13, 3
103
- end
104
- country 'BF', 'Burkina Faso' do |c|
105
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
106
- end
107
- country 'BG', 'Bulgaria' do |c|
108
- c.timezone 'Europe/Sofia', 2561, 60, 1399, 60
109
- end
110
- country 'BH', 'Bahrain' do |c|
111
- c.timezone 'Asia/Qatar', 1517, 60, 773, 15
112
- end
113
- country 'BI', 'Burundi' do |c|
114
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
115
- end
116
- country 'BJ', 'Benin' do |c|
117
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
118
- end
119
- country 'BL', 'St Barthelemy' do |c|
120
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
121
- end
122
- country 'BM', 'Bermuda' do |c|
123
- c.timezone 'Atlantic/Bermuda', 1937, 60, -1943, 30
124
- end
125
- country 'BN', 'Brunei' do |c|
126
- c.timezone 'Asia/Brunei', 74, 15, 1379, 12
127
- end
128
- country 'BO', 'Bolivia' do |c|
129
- c.timezone 'America/La_Paz', -33, 2, -1363, 20
130
- end
131
- country 'BQ', 'Caribbean NL' do |c|
132
- c.timezone 'America/Curacao', 731, 60, -69, 1
133
- end
134
- country 'BR', 'Brazil' do |c|
135
- c.timezone 'America/Noronha', -77, 20, -389, 12, 'Atlantic islands'
136
- c.timezone 'America/Belem', -29, 20, -2909, 60, 'Pará (east); Amapá'
137
- c.timezone 'America/Fortaleza', -223, 60, -77, 2, 'Brazil (northeast: MA, PI, CE, RN, PB)'
138
- c.timezone 'America/Recife', -161, 20, -349, 10, 'Pernambuco'
139
- c.timezone 'America/Araguaina', -36, 5, -241, 5, 'Tocantins'
140
- c.timezone 'America/Maceio', -29, 3, -2143, 60, 'Alagoas, Sergipe'
141
- c.timezone 'America/Bahia', -779, 60, -2311, 60, 'Bahia'
142
- c.timezone 'America/Sao_Paulo', -353, 15, -2797, 60, 'Brazil (southeast: GO, DF, MG, ES, RJ, SP, PR, SC, RS)'
143
- c.timezone 'America/Campo_Grande', -409, 20, -3277, 60, 'Mato Grosso do Sul'
144
- c.timezone 'America/Cuiaba', -187, 12, -673, 12, 'Mato Grosso'
145
- c.timezone 'America/Santarem', -73, 30, -823, 15, 'Pará (west)'
146
- c.timezone 'America/Porto_Velho', -263, 30, -639, 10, 'Rondônia'
147
- c.timezone 'America/Boa_Vista', 169, 60, -182, 3, 'Roraima'
148
- c.timezone 'America/Manaus', -47, 15, -3601, 60, 'Amazonas (east)'
149
- c.timezone 'America/Eirunepe', -20, 3, -1048, 15, 'Amazonas (west)'
150
- c.timezone 'America/Rio_Branco', -299, 30, -339, 5, 'Acre'
151
- end
152
- country 'BS', 'Bahamas' do |c|
153
- c.timezone 'America/Nassau', 301, 12, -1547, 20
154
- end
155
- country 'BT', 'Bhutan' do |c|
156
- c.timezone 'Asia/Thimphu', 412, 15, 1793, 20
157
- end
158
- country 'BV', 'Bouvet Island'
159
- country 'BW', 'Botswana' do |c|
160
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
161
- end
162
- country 'BY', 'Belarus' do |c|
163
- c.timezone 'Europe/Minsk', 539, 10, 827, 30
164
- end
165
- country 'BZ', 'Belize' do |c|
166
- c.timezone 'America/Belize', 35, 2, -441, 5
167
- end
168
- country 'CA', 'Canada' do |c|
169
- c.timezone 'America/St_Johns', 1427, 30, -3163, 60, 'Newfoundland; Labrador (southeast)'
170
- c.timezone 'America/Halifax', 893, 20, -318, 5, 'Atlantic - NS (most areas); PE'
171
- c.timezone 'America/Glace_Bay', 231, 5, -1199, 20, 'Atlantic - NS (Cape Breton)'
172
- c.timezone 'America/Moncton', 461, 10, -3887, 60, 'Atlantic - New Brunswick'
173
- c.timezone 'America/Goose_Bay', 160, 3, -725, 12, 'Atlantic - Labrador (most areas)'
174
- c.timezone 'America/Blanc-Sablon', 617, 12, -3427, 60, 'AST - QC (Lower North Shore)'
175
- c.timezone 'America/Toronto', 873, 20, -4763, 60, 'Eastern - ON, QC (most areas)'
176
- c.timezone 'America/Nipigon', 2941, 60, -1324, 15, 'Eastern - ON, QC (no DST 1967-73)'
177
- c.timezone 'America/Thunder_Bay', 2903, 60, -357, 4, 'Eastern - ON (Thunder Bay)'
178
- c.timezone 'America/Iqaluit', 956, 15, -1027, 15, 'Eastern - NU (most east areas)'
179
- c.timezone 'America/Pangnirtung', 992, 15, -986, 15, 'Eastern - NU (Pangnirtung)'
180
- c.timezone 'America/Atikokan', 175531, 3600, -54973, 600, 'EST - ON (Atikokan); NU (Coral H)'
181
- c.timezone 'America/Winnipeg', 2993, 60, -1943, 20, 'Central - ON (west); Manitoba'
182
- c.timezone 'America/Rainy_River', 2923, 60, -2837, 30, 'Central - ON (Rainy R, Ft Frances)'
183
- c.timezone 'America/Resolute', 33613, 450, -22759, 240, 'Central - NU (Resolute)'
184
- c.timezone 'America/Rankin_Inlet', 3769, 60, -331499, 3600, 'Central - NU (central)'
185
- c.timezone 'America/Regina', 252, 5, -2093, 20, 'CST - SK (most areas)'
186
- c.timezone 'America/Swift_Current', 3017, 60, -647, 6, 'CST - SK (midwest)'
187
- c.timezone 'America/Edmonton', 1071, 20, -1702, 15, 'Mountain - AB; BC (E); SK (W)'
188
- c.timezone 'America/Cambridge_Bay', 24881, 360, -37819, 360, 'Mountain - NU (west)'
189
- c.timezone 'America/Yellowknife', 1249, 20, -2287, 20, 'Mountain - NT (central)'
190
- c.timezone 'America/Inuvik', 246059, 3600, -8023, 60, 'Mountain - NT (west)'
191
- c.timezone 'America/Creston', 491, 10, -6991, 60, 'MST - BC (Creston)'
192
- c.timezone 'America/Dawson_Creek', 1793, 30, -3607, 30, 'MST - BC (Dawson Cr, Ft St John)'
193
- c.timezone 'America/Fort_Nelson', 294, 5, -1227, 10, 'MST - BC (Ft Nelson)'
194
- c.timezone 'America/Vancouver', 739, 15, -7387, 60, 'Pacific - BC (most areas)'
195
- c.timezone 'America/Whitehorse', 3643, 60, -2701, 20, 'Pacific - Yukon (east)'
196
- c.timezone 'America/Dawson', 961, 15, -1673, 12, 'Pacific - Yukon (west)'
197
- end
198
- country 'CC', 'Cocos (Keeling) Islands' do |c|
199
- c.timezone 'Indian/Cocos', -73, 6, 1163, 12
200
- end
201
- country 'CD', 'Congo (Dem. Rep.)' do |c|
202
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
203
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
204
- end
205
- country 'CF', 'Central African Rep.' do |c|
206
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
207
- end
208
- country 'CG', 'Congo (Rep.)' do |c|
209
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
210
- end
211
- country 'CH', 'Switzerland' do |c|
212
- c.timezone 'Europe/Zurich', 2843, 60, 128, 15, 'Swiss time'
213
- end
214
- country 'CI', 'Côte d\'Ivoire' do |c|
215
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
216
- end
217
- country 'CK', 'Cook Islands' do |c|
218
- c.timezone 'Pacific/Rarotonga', -637, 30, -4793, 30
219
- end
220
- country 'CL', 'Chile' do |c|
221
- c.timezone 'America/Santiago', -669, 20, -212, 3, 'Chile (most areas)'
222
- c.timezone 'America/Punta_Arenas', -1063, 20, -851, 12, 'Region of Magallanes'
223
- c.timezone 'Pacific/Easter', -543, 20, -3283, 30, 'Easter Island'
224
- end
225
- country 'CM', 'Cameroon' do |c|
226
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
227
- end
228
- country 'CN', 'China' do |c|
229
- c.timezone 'Asia/Shanghai', 937, 30, 1822, 15, 'Beijing Time'
230
- c.timezone 'Asia/Urumqi', 219, 5, 1051, 12, 'Xinjiang Time'
231
- end
232
- country 'CO', 'Colombia' do |c|
233
- c.timezone 'America/Bogota', 23, 5, -889, 12
234
- end
235
- country 'CR', 'Costa Rica' do |c|
236
- c.timezone 'America/Costa_Rica', 149, 15, -1009, 12
237
- end
238
- country 'CU', 'Cuba' do |c|
239
- c.timezone 'America/Havana', 347, 15, -2471, 30
240
- end
241
- country 'CV', 'Cape Verde' do |c|
242
- c.timezone 'Atlantic/Cape_Verde', 179, 12, -1411, 60
243
- end
244
- country 'CW', 'Curaçao' do |c|
245
- c.timezone 'America/Curacao', 731, 60, -69, 1
246
- end
247
- country 'CX', 'Christmas Island' do |c|
248
- c.timezone 'Indian/Christmas', -125, 12, 6343, 60
249
- end
250
- country 'CY', 'Cyprus' do |c|
251
- c.timezone 'Asia/Nicosia', 211, 6, 1001, 30, 'Cyprus (most areas)'
252
- c.timezone 'Asia/Famagusta', 2107, 60, 679, 20, 'Northern Cyprus'
253
- end
254
- country 'CZ', 'Czech Republic' do |c|
255
- c.timezone 'Europe/Prague', 601, 12, 433, 30
256
- end
257
- country 'DE', 'Germany' do |c|
258
- c.timezone 'Europe/Berlin', 105, 2, 401, 30, 'Germany (most areas)'
259
- c.timezone 'Europe/Zurich', 2843, 60, 128, 15, 'Swiss time'
260
- end
261
- country 'DJ', 'Djibouti' do |c|
262
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
263
- end
264
- country 'DK', 'Denmark' do |c|
265
- c.timezone 'Europe/Copenhagen', 167, 3, 151, 12
266
- end
267
- country 'DM', 'Dominica' do |c|
268
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
269
- end
270
- country 'DO', 'Dominican Republic' do |c|
271
- c.timezone 'America/Santo_Domingo', 277, 15, -699, 10
272
- end
273
- country 'DZ', 'Algeria' do |c|
274
- c.timezone 'Africa/Algiers', 2207, 60, 61, 20
275
- end
276
- country 'EC', 'Ecuador' do |c|
277
- c.timezone 'America/Guayaquil', -13, 6, -479, 6, 'Ecuador (mainland)'
278
- c.timezone 'Pacific/Galapagos', -9, 10, -448, 5, 'Galápagos Islands'
279
- end
280
- country 'EE', 'Estonia' do |c|
281
- c.timezone 'Europe/Tallinn', 713, 12, 99, 4
282
- end
283
- country 'EG', 'Egypt' do |c|
284
- c.timezone 'Africa/Cairo', 601, 20, 125, 4
285
- end
286
- country 'EH', 'Western Sahara' do |c|
287
- c.timezone 'Africa/El_Aaiun', 543, 20, -66, 5
288
- end
289
- country 'ER', 'Eritrea' do |c|
290
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
291
- end
292
- country 'ES', 'Spain' do |c|
293
- c.timezone 'Europe/Madrid', 202, 5, -221, 60, 'Spain (mainland)'
294
- c.timezone 'Africa/Ceuta', 2153, 60, -319, 60, 'Ceuta, Melilla'
295
- c.timezone 'Atlantic/Canary', 281, 10, -77, 5, 'Canary Islands'
296
- end
297
- country 'ET', 'Ethiopia' do |c|
298
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
299
- end
300
- country 'FI', 'Finland' do |c|
301
- c.timezone 'Europe/Helsinki', 361, 6, 749, 30
302
- end
303
- country 'FJ', 'Fiji' do |c|
304
- c.timezone 'Pacific/Fiji', -272, 15, 2141, 12
305
- end
306
- country 'FK', 'Falkland Islands' do |c|
307
- c.timezone 'Atlantic/Stanley', -517, 10, -1157, 20
308
- end
309
- country 'FM', 'Micronesia' do |c|
310
- c.timezone 'Pacific/Chuuk', 89, 12, 9107, 60, 'Chuuk/Truk, Yap'
311
- c.timezone 'Pacific/Pohnpei', 209, 30, 9493, 60, 'Pohnpei/Ponape'
312
- c.timezone 'Pacific/Kosrae', 319, 60, 9779, 60, 'Kosrae'
313
- end
314
- country 'FO', 'Faroe Islands' do |c|
315
- c.timezone 'Atlantic/Faroe', 3721, 60, -203, 30
316
- end
317
- country 'FR', 'France' do |c|
318
- c.timezone 'Europe/Paris', 733, 15, 7, 3
319
- end
320
- country 'GA', 'Gabon' do |c|
321
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
322
- end
323
- country 'GB', 'Britain (UK)' do |c|
324
- c.timezone 'Europe/London', 6181, 120, -451, 3600
325
- end
326
- country 'GD', 'Grenada' do |c|
327
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
328
- end
329
- country 'GE', 'Georgia' do |c|
330
- c.timezone 'Asia/Tbilisi', 2503, 60, 2689, 60
331
- end
332
- country 'GF', 'French Guiana' do |c|
333
- c.timezone 'America/Cayenne', 74, 15, -157, 3
334
- end
335
- country 'GG', 'Guernsey' do |c|
336
- c.timezone 'Europe/London', 6181, 120, -451, 3600
337
- end
338
- country 'GH', 'Ghana' do |c|
339
- c.timezone 'Africa/Accra', 111, 20, -13, 60
340
- end
341
- country 'GI', 'Gibraltar' do |c|
342
- c.timezone 'Europe/Gibraltar', 542, 15, -107, 20
343
- end
344
- country 'GL', 'Greenland' do |c|
345
- c.timezone 'America/Nuuk', 3851, 60, -776, 15, 'Greenland (most areas)'
346
- c.timezone 'America/Danmarkshavn', 2303, 30, -56, 3, 'National Park (east coast)'
347
- c.timezone 'America/Scoresbysund', 4229, 60, -659, 30, 'Scoresbysund/Ittoqqortoormiit'
348
- c.timezone 'America/Thule', 2297, 30, -4127, 60, 'Thule/Pituffik'
349
- end
350
- country 'GM', 'Gambia' do |c|
351
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
352
- end
353
- country 'GN', 'Guinea' do |c|
354
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
355
- end
356
- country 'GP', 'Guadeloupe' do |c|
357
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
358
- end
359
- country 'GQ', 'Equatorial Guinea' do |c|
360
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
361
- end
362
- country 'GR', 'Greece' do |c|
363
- c.timezone 'Europe/Athens', 1139, 30, 1423, 60
364
- end
365
- country 'GS', 'South Georgia & the South Sandwich Islands' do |c|
366
- c.timezone 'Atlantic/South_Georgia', -814, 15, -548, 15
367
- end
368
- country 'GT', 'Guatemala' do |c|
369
- c.timezone 'America/Guatemala', 439, 30, -5431, 60
370
- end
371
- country 'GU', 'Guam' do |c|
372
- c.timezone 'Pacific/Guam', 202, 15, 579, 4
373
- end
374
- country 'GW', 'Guinea-Bissau' do |c|
375
- c.timezone 'Africa/Bissau', 237, 20, -187, 12
376
- end
377
- country 'GY', 'Guyana' do |c|
378
- c.timezone 'America/Guyana', 34, 5, -349, 6
379
- end
380
- country 'HK', 'Hong Kong' do |c|
381
- c.timezone 'Asia/Hong_Kong', 1337, 60, 2283, 20
382
- end
383
- country 'HM', 'Heard Island & McDonald Islands'
384
- country 'HN', 'Honduras' do |c|
385
- c.timezone 'America/Tegucigalpa', 141, 10, -5233, 60
386
- end
387
- country 'HR', 'Croatia' do |c|
388
- c.timezone 'Europe/Belgrade', 269, 6, 41, 2
389
- end
390
- country 'HT', 'Haiti' do |c|
391
- c.timezone 'America/Port-au-Prince', 278, 15, -217, 3
392
- end
393
- country 'HU', 'Hungary' do |c|
394
- c.timezone 'Europe/Budapest', 95, 2, 229, 12
395
- end
396
- country 'ID', 'Indonesia' do |c|
397
- c.timezone 'Asia/Jakarta', -37, 6, 534, 5, 'Java, Sumatra'
398
- c.timezone 'Asia/Pontianak', -1, 30, 328, 3, 'Borneo (west, central)'
399
- c.timezone 'Asia/Makassar', -307, 60, 597, 5, 'Borneo (east, south); Sulawesi/Celebes, Bali, Nusa Tengarra; Timor (west)'
400
- c.timezone 'Asia/Jayapura', -38, 15, 1407, 10, 'New Guinea (West Papua / Irian Jaya); Malukus/Moluccas'
401
- end
402
- country 'IE', 'Ireland' do |c|
403
- c.timezone 'Europe/Dublin', 160, 3, -25, 4
404
- end
405
- country 'IL', 'Israel' do |c|
406
- c.timezone 'Asia/Jerusalem', 11441, 360, 63403, 1800
407
- end
408
- country 'IM', 'Isle of Man' do |c|
409
- c.timezone 'Europe/London', 6181, 120, -451, 3600
410
- end
411
- country 'IN', 'India' do |c|
412
- c.timezone 'Asia/Kolkata', 338, 15, 2651, 30
413
- end
414
- country 'IO', 'British Indian Ocean Territory' do |c|
415
- c.timezone 'Indian/Chagos', -22, 3, 869, 12
416
- end
417
- country 'IQ', 'Iraq' do |c|
418
- c.timezone 'Asia/Baghdad', 667, 20, 533, 12
419
- end
420
- country 'IR', 'Iran' do |c|
421
- c.timezone 'Asia/Tehran', 107, 3, 1543, 30
422
- end
423
- country 'IS', 'Iceland' do |c|
424
- c.timezone 'Atlantic/Reykjavik', 1283, 20, -437, 20
425
- end
426
- country 'IT', 'Italy' do |c|
427
- c.timezone 'Europe/Rome', 419, 10, 749, 60
428
- end
429
- country 'JE', 'Jersey' do |c|
430
- c.timezone 'Europe/London', 6181, 120, -451, 3600
431
- end
432
- country 'JM', 'Jamaica' do |c|
433
- c.timezone 'America/Jamaica', 12937, 720, -11519, 150
434
- end
435
- country 'JO', 'Jordan' do |c|
436
- c.timezone 'Asia/Amman', 639, 20, 539, 15
437
- end
438
- country 'JP', 'Japan' do |c|
439
- c.timezone 'Asia/Tokyo', 32089, 900, 503081, 3600
440
- end
441
- country 'KE', 'Kenya' do |c|
442
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
443
- end
444
- country 'KG', 'Kyrgyzstan' do |c|
445
- c.timezone 'Asia/Bishkek', 429, 10, 373, 5
446
- end
447
- country 'KH', 'Cambodia' do |c|
448
- c.timezone 'Asia/Bangkok', 55, 4, 6031, 60, 'Indochina (most areas)'
449
- end
450
- country 'KI', 'Kiribati' do |c|
451
- c.timezone 'Pacific/Tarawa', 17, 12, 173, 1, 'Gilbert Islands'
452
- c.timezone 'Pacific/Enderbury', -47, 15, -2053, 12, 'Phoenix Islands'
453
- c.timezone 'Pacific/Kiritimati', 28, 15, -472, 3, 'Line Islands'
454
- end
455
- country 'KM', 'Comoros' do |c|
456
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
457
- end
458
- country 'KN', 'St Kitts & Nevis' do |c|
459
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
460
- end
461
- country 'KP', 'Korea (North)' do |c|
462
- c.timezone 'Asia/Pyongyang', 2341, 60, 503, 4
463
- end
464
- country 'KR', 'Korea (South)' do |c|
465
- c.timezone 'Asia/Seoul', 751, 20, 3809, 30
466
- end
467
- country 'KW', 'Kuwait' do |c|
468
- c.timezone 'Asia/Riyadh', 739, 30, 2803, 60
469
- end
470
- country 'KY', 'Cayman Islands' do |c|
471
- c.timezone 'America/Panama', 269, 30, -1193, 15
472
- end
473
- country 'KZ', 'Kazakhstan' do |c|
474
- c.timezone 'Asia/Almaty', 173, 4, 1539, 20, 'Kazakhstan (most areas)'
475
- c.timezone 'Asia/Qyzylorda', 224, 5, 982, 15, 'Qyzylorda/Kyzylorda/Kzyl-Orda'
476
- c.timezone 'Asia/Qostanay', 266, 5, 3817, 60, 'Qostanay/Kostanay/Kustanay'
477
- c.timezone 'Asia/Aqtobe', 3017, 60, 343, 6, 'Aqtöbe/Aktobe'
478
- c.timezone 'Asia/Aqtau', 2671, 60, 754, 15, 'Mangghystaū/Mankistau'
479
- c.timezone 'Asia/Atyrau', 2827, 60, 779, 15, 'Atyraū/Atirau/Gur\'yev'
480
- c.timezone 'Asia/Oral', 3073, 60, 1027, 20, 'West Kazakhstan'
481
- end
482
- country 'LA', 'Laos' do |c|
483
- c.timezone 'Asia/Bangkok', 55, 4, 6031, 60, 'Indochina (most areas)'
484
- end
485
- country 'LB', 'Lebanon' do |c|
486
- c.timezone 'Asia/Beirut', 2033, 60, 71, 2
487
- end
488
- country 'LC', 'St Lucia' do |c|
489
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
490
- end
491
- country 'LI', 'Liechtenstein' do |c|
492
- c.timezone 'Europe/Zurich', 2843, 60, 128, 15, 'Swiss time'
493
- end
494
- country 'LK', 'Sri Lanka' do |c|
495
- c.timezone 'Asia/Colombo', 104, 15, 1597, 20
496
- end
497
- country 'LR', 'Liberia' do |c|
498
- c.timezone 'Africa/Monrovia', 63, 10, -647, 60
499
- end
500
- country 'LS', 'Lesotho' do |c|
501
- c.timezone 'Africa/Johannesburg', -105, 4, 28, 1
502
- end
503
- country 'LT', 'Lithuania' do |c|
504
- c.timezone 'Europe/Vilnius', 3281, 60, 1519, 60
505
- end
506
- country 'LU', 'Luxembourg' do |c|
507
- c.timezone 'Europe/Luxembourg', 248, 5, 123, 20
508
- end
509
- country 'LV', 'Latvia' do |c|
510
- c.timezone 'Europe/Riga', 1139, 20, 241, 10
511
- end
512
- country 'LY', 'Libya' do |c|
513
- c.timezone 'Africa/Tripoli', 329, 10, 791, 60
514
- end
515
- country 'MA', 'Morocco' do |c|
516
- c.timezone 'Africa/Casablanca', 673, 20, -91, 12
517
- end
518
- country 'MC', 'Monaco' do |c|
519
- c.timezone 'Europe/Monaco', 437, 10, 443, 60
520
- end
521
- country 'MD', 'Moldova' do |c|
522
- c.timezone 'Europe/Chisinau', 47, 1, 173, 6
523
- end
524
- country 'ME', 'Montenegro' do |c|
525
- c.timezone 'Europe/Belgrade', 269, 6, 41, 2
526
- end
527
- country 'MF', 'St Martin (French)' do |c|
528
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
529
- end
530
- country 'MG', 'Madagascar' do |c|
531
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
532
- end
533
- country 'MH', 'Marshall Islands' do |c|
534
- c.timezone 'Pacific/Majuro', 143, 20, 856, 5, 'Marshall Islands (most areas)'
535
- c.timezone 'Pacific/Kwajalein', 109, 12, 502, 3, 'Kwajalein'
536
- end
537
- country 'MK', 'North Macedonia' do |c|
538
- c.timezone 'Europe/Belgrade', 269, 6, 41, 2
539
- end
540
- country 'ML', 'Mali' do |c|
541
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
542
- end
543
- country 'MM', 'Myanmar (Burma)' do |c|
544
- c.timezone 'Asia/Yangon', 1007, 60, 577, 6
545
- end
546
- country 'MN', 'Mongolia' do |c|
547
- c.timezone 'Asia/Ulaanbaatar', 575, 12, 6413, 60, 'Mongolia (most areas)'
548
- c.timezone 'Asia/Hovd', 2881, 60, 1833, 20, 'Bayan-Ölgii, Govi-Altai, Hovd, Uvs, Zavkhan'
549
- c.timezone 'Asia/Choibalsan', 721, 15, 229, 2, 'Dornod, Sükhbaatar'
550
- end
551
- country 'MO', 'Macau' do |c|
552
- c.timezone 'Asia/Macau', 7991, 360, 2725, 24
553
- end
554
- country 'MP', 'Northern Mariana Islands' do |c|
555
- c.timezone 'Pacific/Guam', 202, 15, 579, 4
556
- end
557
- country 'MQ', 'Martinique' do |c|
558
- c.timezone 'America/Martinique', 73, 5, -733, 12
559
- end
560
- country 'MR', 'Mauritania' do |c|
561
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
562
- end
563
- country 'MS', 'Montserrat' do |c|
564
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
565
- end
566
- country 'MT', 'Malta' do |c|
567
- c.timezone 'Europe/Malta', 359, 10, 871, 60
568
- end
569
- country 'MU', 'Mauritius' do |c|
570
- c.timezone 'Indian/Mauritius', -121, 6, 115, 2
571
- end
572
- country 'MV', 'Maldives' do |c|
573
- c.timezone 'Indian/Maldives', 25, 6, 147, 2
574
- end
575
- country 'MW', 'Malawi' do |c|
576
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
577
- end
578
- country 'MX', 'Mexico' do |c|
579
- c.timezone 'America/Mexico_City', 97, 5, -1983, 20, 'Central Time'
580
- c.timezone 'America/Cancun', 253, 12, -2603, 30, 'Eastern Standard Time - Quintana Roo'
581
- c.timezone 'America/Merida', 629, 30, -5377, 60, 'Central Time - Campeche, Yucatán'
582
- c.timezone 'America/Monterrey', 77, 3, -6019, 60, 'Central Time - Durango; Coahuila, Nuevo León, Tamaulipas (most areas)'
583
- c.timezone 'America/Matamoros', 155, 6, -195, 2, 'Central Time US - Coahuila, Nuevo León, Tamaulipas (US border)'
584
- c.timezone 'America/Mazatlan', 1393, 60, -1277, 12, 'Mountain Time - Baja California Sur, Nayarit, Sinaloa'
585
- c.timezone 'America/Chihuahua', 859, 30, -1273, 12, 'Mountain Time - Chihuahua (most areas)'
586
- c.timezone 'America/Ojinaga', 887, 30, -1253, 12, 'Mountain Time US - Chihuahua (US border)'
587
- c.timezone 'America/Hermosillo', 436, 15, -3329, 30, 'Mountain Standard Time - Sonora'
588
- c.timezone 'America/Tijuana', 488, 15, -7021, 60, 'Pacific Time US - Baja California'
589
- c.timezone 'America/Bahia_Banderas', 104, 5, -421, 4, 'Central Time - Bahía de Banderas'
590
- end
591
- country 'MY', 'Malaysia' do |c|
592
- c.timezone 'Asia/Kuala_Lumpur', 19, 6, 1017, 10, 'Malaysia (peninsula)'
593
- c.timezone 'Asia/Kuching', 31, 20, 331, 3, 'Sabah, Sarawak'
594
- end
595
- country 'MZ', 'Mozambique' do |c|
596
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
597
- end
598
- country 'NA', 'Namibia' do |c|
599
- c.timezone 'Africa/Windhoek', -677, 30, 171, 10
600
- end
601
- country 'NC', 'New Caledonia' do |c|
602
- c.timezone 'Pacific/Noumea', -334, 15, 3329, 20
603
- end
604
- country 'NE', 'Niger' do |c|
605
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
606
- end
607
- country 'NF', 'Norfolk Island' do |c|
608
- c.timezone 'Pacific/Norfolk', -581, 20, 5039, 30
609
- end
610
- country 'NG', 'Nigeria' do |c|
611
- c.timezone 'Africa/Lagos', 129, 20, 17, 5, 'West Africa Time'
612
- end
613
- country 'NI', 'Nicaragua' do |c|
614
- c.timezone 'America/Managua', 243, 20, -5177, 60
615
- end
616
- country 'NL', 'Netherlands' do |c|
617
- c.timezone 'Europe/Amsterdam', 1571, 30, 49, 10
618
- end
619
- country 'NO', 'Norway' do |c|
620
- c.timezone 'Europe/Oslo', 719, 12, 43, 4
621
- end
622
- country 'NP', 'Nepal' do |c|
623
- c.timezone 'Asia/Kathmandu', 1663, 60, 5119, 60
624
- end
625
- country 'NR', 'Nauru' do |c|
626
- c.timezone 'Pacific/Nauru', -31, 60, 2003, 12
627
- end
628
- country 'NU', 'Niue' do |c|
629
- c.timezone 'Pacific/Niue', -1141, 60, -2039, 12
630
- end
631
- country 'NZ', 'New Zealand' do |c|
632
- c.timezone 'Pacific/Auckland', -553, 15, 5243, 30, 'New Zealand time'
633
- c.timezone 'Pacific/Chatham', -879, 20, -3531, 20, 'Chatham Islands'
634
- end
635
- country 'OM', 'Oman' do |c|
636
- c.timezone 'Asia/Dubai', 253, 10, 553, 10
637
- end
638
- country 'PA', 'Panama' do |c|
639
- c.timezone 'America/Panama', 269, 30, -1193, 15
640
- end
641
- country 'PE', 'Peru' do |c|
642
- c.timezone 'America/Lima', -241, 20, -1541, 20
643
- end
644
- country 'PF', 'French Polynesia' do |c|
645
- c.timezone 'Pacific/Tahiti', -263, 15, -4487, 30, 'Society Islands'
646
- c.timezone 'Pacific/Marquesas', -9, 1, -279, 2, 'Marquesas Islands'
647
- c.timezone 'Pacific/Gambier', -347, 15, -2699, 20, 'Gambier Islands'
648
- end
649
- country 'PG', 'Papua New Guinea' do |c|
650
- c.timezone 'Pacific/Port_Moresby', -19, 2, 883, 6, 'Papua New Guinea (most areas)'
651
- c.timezone 'Pacific/Bougainville', -373, 60, 4667, 30, 'Bougainville'
652
- end
653
- country 'PH', 'Philippines' do |c|
654
- c.timezone 'Asia/Manila', 175, 12, 121, 1
655
- end
656
- country 'PK', 'Pakistan' do |c|
657
- c.timezone 'Asia/Karachi', 373, 15, 1341, 20
658
- end
659
- country 'PL', 'Poland' do |c|
660
- c.timezone 'Europe/Warsaw', 209, 4, 21, 1
661
- end
662
- country 'PM', 'St Pierre & Miquelon' do |c|
663
- c.timezone 'America/Miquelon', 941, 20, -169, 3
664
- end
665
- country 'PN', 'Pitcairn' do |c|
666
- c.timezone 'Pacific/Pitcairn', -376, 15, -1561, 12
667
- end
668
- country 'PR', 'Puerto Rico' do |c|
669
- c.timezone 'America/Puerto_Rico', 11081, 600, -118991, 1800
670
- end
671
- country 'PS', 'Palestine' do |c|
672
- c.timezone 'Asia/Gaza', 63, 2, 517, 15, 'Gaza Strip'
673
- c.timezone 'Asia/Hebron', 473, 15, 7019, 200, 'West Bank'
674
- end
675
- country 'PT', 'Portugal' do |c|
676
- c.timezone 'Europe/Lisbon', 2323, 60, -137, 15, 'Portugal (mainland)'
677
- c.timezone 'Atlantic/Madeira', 979, 30, -169, 10, 'Madeira Islands'
678
- c.timezone 'Atlantic/Azores', 566, 15, -77, 3, 'Azores'
679
- end
680
- country 'PW', 'Palau' do |c|
681
- c.timezone 'Pacific/Palau', 22, 3, 8069, 60
682
- end
683
- country 'PY', 'Paraguay' do |c|
684
- c.timezone 'America/Asuncion', -379, 15, -173, 3
685
- end
686
- country 'QA', 'Qatar' do |c|
687
- c.timezone 'Asia/Qatar', 1517, 60, 773, 15
688
- end
689
- country 'RE', 'Réunion' do |c|
690
- c.timezone 'Indian/Reunion', -313, 15, 832, 15, 'Réunion, Crozet, Scattered Islands'
691
- end
692
- country 'RO', 'Romania' do |c|
693
- c.timezone 'Europe/Bucharest', 1333, 30, 261, 10
694
- end
695
- country 'RS', 'Serbia' do |c|
696
- c.timezone 'Europe/Belgrade', 269, 6, 41, 2
697
- end
698
- country 'RU', 'Russia' do |c|
699
- c.timezone 'Europe/Kaliningrad', 3283, 60, 41, 2, 'MSK-01 - Kaliningrad'
700
- c.timezone 'Europe/Moscow', 66907, 1200, 8464, 225, 'MSK+00 - Moscow area'
701
- c.timezone 'Europe/Simferopol', 899, 20, 341, 10, 'Crimea'
702
- c.timezone 'Europe/Kirov', 293, 5, 993, 20, 'MSK+00 - Kirov'
703
- c.timezone 'Europe/Astrakhan', 927, 20, 961, 20, 'MSK+01 - Astrakhan'
704
- c.timezone 'Europe/Volgograd', 731, 15, 533, 12, 'MSK+01 - Volgograd'
705
- c.timezone 'Europe/Saratov', 1547, 30, 1381, 30, 'MSK+01 - Saratov'
706
- c.timezone 'Europe/Ulyanovsk', 163, 3, 242, 5, 'MSK+01 - Ulyanovsk'
707
- c.timezone 'Europe/Samara', 266, 5, 1003, 20, 'MSK+01 - Samara, Udmurtia'
708
- c.timezone 'Asia/Yekaterinburg', 1137, 20, 303, 5, 'MSK+02 - Urals'
709
- c.timezone 'Asia/Omsk', 55, 1, 367, 5, 'MSK+03 - Omsk'
710
- c.timezone 'Asia/Novosibirsk', 1651, 30, 995, 12, 'MSK+04 - Novosibirsk'
711
- c.timezone 'Asia/Barnaul', 1601, 30, 335, 4, 'MSK+04 - Altai'
712
- c.timezone 'Asia/Tomsk', 113, 2, 2549, 30, 'MSK+04 - Tomsk'
713
- c.timezone 'Asia/Novokuznetsk', 215, 4, 5227, 60, 'MSK+04 - Kemerovo'
714
- c.timezone 'Asia/Krasnoyarsk', 3361, 60, 557, 6, 'MSK+04 - Krasnoyarsk area'
715
- c.timezone 'Asia/Irkutsk', 784, 15, 313, 3, 'MSK+05 - Irkutsk, Buryatia'
716
- c.timezone 'Asia/Chita', 1041, 20, 1702, 15, 'MSK+06 - Zabaykalsky'
717
- c.timezone 'Asia/Yakutsk', 62, 1, 389, 3, 'MSK+06 - Lena River'
718
- c.timezone 'Asia/Khandyga', 225563, 3600, 243997, 1800, 'MSK+06 - Tomponsky, Ust-Maysky'
719
- c.timezone 'Asia/Vladivostok', 259, 6, 1979, 15, 'MSK+07 - Amur River'
720
- c.timezone 'Asia/Ust-Nera', 232417, 3600, 10742, 75, 'MSK+07 - Oymyakonsky'
721
- c.timezone 'Asia/Magadan', 1787, 30, 754, 5, 'MSK+08 - Magadan'
722
- c.timezone 'Asia/Sakhalin', 1409, 30, 1427, 10, 'MSK+08 - Sakhalin Island'
723
- c.timezone 'Asia/Srednekolymsk', 1012, 15, 9223, 60, 'MSK+08 - Sakha (E); North Kuril Is'
724
- c.timezone 'Asia/Kamchatka', 3181, 60, 3173, 20, 'MSK+09 - Kamchatka'
725
- c.timezone 'Asia/Anadyr', 259, 4, 10649, 60, 'MSK+09 - Bering Sea'
726
- end
727
- country 'RW', 'Rwanda' do |c|
728
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
729
- end
730
- country 'SA', 'Saudi Arabia' do |c|
731
- c.timezone 'Asia/Riyadh', 739, 30, 2803, 60
732
- end
733
- country 'SB', 'Solomon Islands' do |c|
734
- c.timezone 'Pacific/Guadalcanal', -143, 15, 801, 5
735
- end
736
- country 'SC', 'Seychelles' do |c|
737
- c.timezone 'Indian/Mahe', -14, 3, 832, 15
738
- end
739
- country 'SD', 'Sudan' do |c|
740
- c.timezone 'Africa/Khartoum', 78, 5, 488, 15
741
- end
742
- country 'SE', 'Sweden' do |c|
743
- c.timezone 'Europe/Stockholm', 178, 3, 361, 20
744
- end
745
- country 'SG', 'Singapore' do |c|
746
- c.timezone 'Asia/Singapore', 77, 60, 2077, 20
747
- end
748
- country 'SH', 'St Helena' do |c|
749
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
750
- end
751
- country 'SI', 'Slovenia' do |c|
752
- c.timezone 'Europe/Belgrade', 269, 6, 41, 2
753
- end
754
- country 'SJ', 'Svalbard & Jan Mayen' do |c|
755
- c.timezone 'Europe/Oslo', 719, 12, 43, 4
756
- end
757
- country 'SK', 'Slovakia' do |c|
758
- c.timezone 'Europe/Prague', 601, 12, 433, 30
759
- end
760
- country 'SL', 'Sierra Leone' do |c|
761
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
762
- end
763
- country 'SM', 'San Marino' do |c|
764
- c.timezone 'Europe/Rome', 419, 10, 749, 60
765
- end
766
- country 'SN', 'Senegal' do |c|
767
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
768
- end
769
- country 'SO', 'Somalia' do |c|
770
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
771
- end
772
- country 'SR', 'Suriname' do |c|
773
- c.timezone 'America/Paramaribo', 35, 6, -331, 6
774
- end
775
- country 'SS', 'South Sudan' do |c|
776
- c.timezone 'Africa/Juba', 97, 20, 1897, 60
777
- end
778
- country 'ST', 'Sao Tome & Principe' do |c|
779
- c.timezone 'Africa/Sao_Tome', 1, 3, 101, 15
780
- end
781
- country 'SV', 'El Salvador' do |c|
782
- c.timezone 'America/El_Salvador', 137, 10, -446, 5
783
- end
784
- country 'SX', 'St Maarten (Dutch)' do |c|
785
- c.timezone 'America/Curacao', 731, 60, -69, 1
786
- end
787
- country 'SY', 'Syria' do |c|
788
- c.timezone 'Asia/Damascus', 67, 2, 363, 10
789
- end
790
- country 'SZ', 'Eswatini (Swaziland)' do |c|
791
- c.timezone 'Africa/Johannesburg', -105, 4, 28, 1
792
- end
793
- country 'TC', 'Turks & Caicos Is' do |c|
794
- c.timezone 'America/Grand_Turk', 322, 15, -1067, 15
795
- end
796
- country 'TD', 'Chad' do |c|
797
- c.timezone 'Africa/Ndjamena', 727, 60, 301, 20
798
- end
799
- country 'TF', 'French Southern & Antarctic Lands' do |c|
800
- c.timezone 'Indian/Kerguelen', -17767, 360, 28087, 400, 'Kerguelen, St Paul Island, Amsterdam Island'
801
- c.timezone 'Indian/Reunion', -313, 15, 832, 15, 'Réunion, Crozet, Scattered Islands'
802
- end
803
- country 'TG', 'Togo' do |c|
804
- c.timezone 'Africa/Abidjan', 319, 60, -121, 30
805
- end
806
- country 'TH', 'Thailand' do |c|
807
- c.timezone 'Asia/Bangkok', 55, 4, 6031, 60, 'Indochina (most areas)'
808
- end
809
- country 'TJ', 'Tajikistan' do |c|
810
- c.timezone 'Asia/Dushanbe', 463, 12, 344, 5
811
- end
812
- country 'TK', 'Tokelau' do |c|
813
- c.timezone 'Pacific/Fakaofo', -281, 30, -5137, 30
814
- end
815
- country 'TL', 'East Timor' do |c|
816
- c.timezone 'Asia/Dili', -171, 20, 1507, 12
817
- end
818
- country 'TM', 'Turkmenistan' do |c|
819
- c.timezone 'Asia/Ashgabat', 759, 20, 3503, 60
820
- end
821
- country 'TN', 'Tunisia' do |c|
822
- c.timezone 'Africa/Tunis', 184, 5, 611, 60
823
- end
824
- country 'TO', 'Tonga' do |c|
825
- c.timezone 'Pacific/Tongatapu', -127, 6, -1051, 6
826
- end
827
- country 'TR', 'Turkey' do |c|
828
- c.timezone 'Europe/Istanbul', 2461, 60, 869, 30
829
- end
830
- country 'TT', 'Trinidad & Tobago' do |c|
831
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
832
- end
833
- country 'TV', 'Tuvalu' do |c|
834
- c.timezone 'Pacific/Funafuti', -511, 60, 10753, 60
835
- end
836
- country 'TW', 'Taiwan' do |c|
837
- c.timezone 'Asia/Taipei', 501, 20, 243, 2
838
- end
839
- country 'TZ', 'Tanzania' do |c|
840
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
841
- end
842
- country 'UA', 'Ukraine' do |c|
843
- c.timezone 'Europe/Kiev', 1513, 30, 1831, 60, 'Ukraine (most areas)'
844
- c.timezone 'Europe/Uzhgorod', 2917, 60, 223, 10, 'Transcarpathia'
845
- c.timezone 'Europe/Zaporozhye', 287, 6, 211, 6, 'Zaporozhye and east Lugansk'
846
- c.timezone 'Europe/Simferopol', 899, 20, 341, 10, 'Crimea'
847
- end
848
- country 'UG', 'Uganda' do |c|
849
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
850
- end
851
- country 'UM', 'US minor outlying islands' do |c|
852
- c.timezone 'Pacific/Wake', 1157, 60, 9997, 60, 'Wake Island'
853
- c.timezone 'Pacific/Pago_Pago', -214, 15, -1707, 10, 'Samoa, Midway'
854
- c.timezone 'Pacific/Honolulu', 15341, 720, -18943, 120, 'Hawaii'
855
- end
856
- country 'US', 'United States' do |c|
857
- c.timezone 'America/New_York', 48857, 1200, -266423, 3600, 'Eastern (most areas)'
858
- c.timezone 'America/Detroit', 152393, 3600, -19931, 240, 'Eastern - MI (most areas)'
859
- c.timezone 'America/Kentucky/Louisville', 9181, 240, -154367, 1800, 'Eastern - KY (Louisville area)'
860
- c.timezone 'America/Kentucky/Monticello', 132587, 3600, -101819, 1200, 'Eastern - KY (Wayne)'
861
- c.timezone 'America/Indiana/Indianapolis', 23861, 600, -310169, 3600, 'Eastern - IN (most areas)'
862
- c.timezone 'America/Indiana/Vincennes', 69619, 1800, -315103, 3600, 'Eastern - IN (Da, Du, K, Mn)'
863
- c.timezone 'America/Indiana/Winamac', 29557, 720, -311771, 3600, 'Eastern - IN (Pulaski)'
864
- c.timezone 'America/Indiana/Marengo', 17269, 450, -310841, 3600, 'Eastern - IN (Crawford)'
865
- c.timezone 'America/Indiana/Petersburg', 138571, 3600, -314203, 3600, 'Eastern - IN (Pike)'
866
- c.timezone 'America/Indiana/Vevay', 34873, 900, -153121, 1800, 'Eastern - IN (Switzerland)'
867
- c.timezone 'America/Chicago', 837, 20, -1753, 20, 'Central (most areas)'
868
- c.timezone 'America/Indiana/Tell_City', 136631, 3600, -312341, 3600, 'Central - IN (Perry)'
869
- c.timezone 'America/Indiana/Knox', 9911, 240, -693, 8, 'Central - IN (Starke)'
870
- c.timezone 'America/Menominee', 40597, 900, -105137, 1200, 'Central - MI (Wisconsin border)'
871
- c.timezone 'America/North_Dakota/Center', 169619, 3600, -121559, 1200, 'Central - ND (Oliver)'
872
- c.timezone 'America/North_Dakota/New_Salem', 9369, 200, -121693, 1200, 'Central - ND (Morton rural)'
873
- c.timezone 'America/North_Dakota/Beulah', 56717, 1200, -916, 9, 'Central - ND (Mercer)'
874
- c.timezone 'America/Denver', 47687, 1200, -125981, 1200, 'Mountain (most areas)'
875
- c.timezone 'America/Boise', 157009, 3600, -46481, 400, 'Mountain - ID (south); OR (east)'
876
- c.timezone 'America/Phoenix', 20069, 600, -16811, 150, 'MST - Arizona (except Navajo)'
877
- c.timezone 'America/Los_Angeles', 30647, 900, -212837, 1800, 'Pacific'
878
- c.timezone 'America/Anchorage', 44077, 720, -539641, 3600, 'Alaska (most areas)'
879
- c.timezone 'America/Juneau', 209887, 3600, -483911, 3600, 'Alaska - Juneau area'
880
- c.timezone 'America/Sitka', 41167, 720, -487087, 3600, 'Alaska - Sitka area'
881
- c.timezone 'America/Metlakatla', 198457, 3600, -18947, 144, 'Alaska - Annette Island'
882
- c.timezone 'America/Yakutat', 214369, 3600, -251509, 1800, 'Alaska - Yakutat'
883
- c.timezone 'America/Nome', 58051, 900, -595463, 3600, 'Alaska (west)'
884
- c.timezone 'America/Adak', 1297, 25, -635969, 3600, 'Aleutian Islands'
885
- c.timezone 'Pacific/Honolulu', 15341, 720, -18943, 120, 'Hawaii'
886
- end
887
- country 'UY', 'Uruguay' do |c|
888
- c.timezone 'America/Montevideo', -41891, 1200, -4497, 80
889
- end
890
- country 'UZ', 'Uzbekistan' do |c|
891
- c.timezone 'Asia/Samarkand', 119, 3, 334, 5, 'Uzbekistan (west)'
892
- c.timezone 'Asia/Tashkent', 124, 3, 693, 10, 'Uzbekistan (east)'
893
- end
894
- country 'VA', 'Vatican City' do |c|
895
- c.timezone 'Europe/Rome', 419, 10, 749, 60
896
- end
897
- country 'VC', 'St Vincent' do |c|
898
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
899
- end
900
- country 'VE', 'Venezuela' do |c|
901
- c.timezone 'America/Caracas', 21, 2, -1004, 15
902
- end
903
- country 'VG', 'Virgin Islands (UK)' do |c|
904
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
905
- end
906
- country 'VI', 'Virgin Islands (US)' do |c|
907
- c.timezone 'America/Port_of_Spain', 213, 20, -3691, 60
908
- end
909
- country 'VN', 'Vietnam' do |c|
910
- c.timezone 'Asia/Ho_Chi_Minh', 43, 4, 320, 3, 'Vietnam (south)'
911
- c.timezone 'Asia/Bangkok', 55, 4, 6031, 60, 'Indochina (most areas)'
912
- end
913
- country 'VU', 'Vanuatu' do |c|
914
- c.timezone 'Pacific/Efate', -53, 3, 2021, 12
915
- end
916
- country 'WF', 'Wallis & Futuna' do |c|
917
- c.timezone 'Pacific/Wallis', -133, 10, -1057, 6
918
- end
919
- country 'WS', 'Samoa (western)' do |c|
920
- c.timezone 'Pacific/Apia', -83, 6, -2576, 15
921
- end
922
- country 'YE', 'Yemen' do |c|
923
- c.timezone 'Asia/Riyadh', 739, 30, 2803, 60
924
- end
925
- country 'YT', 'Mayotte' do |c|
926
- c.timezone 'Africa/Nairobi', -77, 60, 2209, 60
927
- end
928
- country 'ZA', 'South Africa' do |c|
929
- c.timezone 'Africa/Johannesburg', -105, 4, 28, 1
930
- end
931
- country 'ZM', 'Zambia' do |c|
932
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
933
- end
934
- country 'ZW', 'Zimbabwe' do |c|
935
- c.timezone 'Africa/Maputo', -779, 30, 391, 12, 'Central Africa Time'
936
- end
937
- end
938
- end
939
- end
940
- end