erp_base_erp_svcs 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/GPL-3-LICENSE +674 -0
- data/README.rdoc +2 -0
- data/Rakefile +31 -0
- data/app/assets/javascripts/erp_base_erp_svcs/application.js +9 -0
- data/app/assets/stylesheets/erp_base_erp_svcs/application.css +7 -0
- data/app/controllers/erp_base_erp_svcs/application_controller.rb +4 -0
- data/app/helpers/erp_base_erp_svcs/application_helper.rb +4 -0
- data/app/models/category.rb +11 -0
- data/app/models/category_classification.rb +4 -0
- data/app/models/compass_ae_instance.rb +11 -0
- data/app/models/contact.rb +42 -0
- data/app/models/contact_purpose.rb +6 -0
- data/app/models/contact_type.rb +3 -0
- data/app/models/currency.rb +16 -0
- data/app/models/descriptive_asset.rb +4 -0
- data/app/models/email_address.rb +15 -0
- data/app/models/geo_country.rb +8 -0
- data/app/models/geo_zone.rb +8 -0
- data/app/models/individual.rb +76 -0
- data/app/models/iso_country_code.rb +10 -0
- data/app/models/money.rb +19 -0
- data/app/models/note.rb +14 -0
- data/app/models/note_type.rb +7 -0
- data/app/models/organization.rb +32 -0
- data/app/models/party.rb +191 -0
- data/app/models/party_relationship.rb +9 -0
- data/app/models/party_role.rb +8 -0
- data/app/models/phone_number.rb +16 -0
- data/app/models/postal_address.rb +19 -0
- data/app/models/relationship_type.rb +7 -0
- data/app/models/role_type.rb +7 -0
- data/app/models/valid_note_type.rb +4 -0
- data/app/models/view_type.rb +3 -0
- data/app/views/layouts/erp_base_erp_svcs/application.html.erb +14 -0
- data/config/initializers/erp_base_erp_svcs.rb +4 -0
- data/config/routes.rb +2 -0
- data/db/data_migrations/20110525001935_add_usd_currency.rb +11 -0
- data/db/data_migrations/20110609150135_add_iso_codes.rb +18 -0
- data/db/data_migrations/20110913145838_setup_compass_ae_instance.rb +11 -0
- data/db/data_sets/geo_countries.yml +2952 -0
- data/db/data_sets/geo_zones.yml +1233 -0
- data/db/migrate/20080805000020_base_erp_services.rb +461 -0
- data/db/migrate/20110913145329_create_compass_ae_instance.rb +15 -0
- data/db/migrate/upgrade/20110907171257_add_notes.rb +63 -0
- data/lib/erp_base_erp_svcs/ar_fixtures.rb +103 -0
- data/lib/erp_base_erp_svcs/command.rb +37 -0
- data/lib/erp_base_erp_svcs/config.rb +27 -0
- data/lib/erp_base_erp_svcs/engine.rb +27 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/acts_as_category.rb +50 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/acts_as_erp_type.rb +148 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/acts_as_note_type.rb +47 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/data_migrator.rb +46 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/has_contact.rb +56 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/has_notes.rb +32 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/is_describable.rb +44 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/migrator.rb +76 -0
- data/lib/erp_base_erp_svcs/extensions/active_record/sti_instantiation.rb +37 -0
- data/lib/erp_base_erp_svcs/extensions/core/array.rb +20 -0
- data/lib/erp_base_erp_svcs/extensions/core/hash.rb +19 -0
- data/lib/erp_base_erp_svcs/extensions/core/numbers.rb +27 -0
- data/lib/erp_base_erp_svcs/extensions/core/object.rb +6 -0
- data/lib/erp_base_erp_svcs/extensions/railties/engine.rb +85 -0
- data/lib/erp_base_erp_svcs/extensions.rb +19 -0
- data/lib/erp_base_erp_svcs/non_escape_json_string.rb +5 -0
- data/lib/erp_base_erp_svcs/rails_template.rb +93 -0
- data/lib/erp_base_erp_svcs/version.rb +3 -0
- data/lib/erp_base_erp_svcs.rb +17 -0
- data/lib/tasks/compass_backup.rake +87 -0
- data/lib/tasks/erp_base_erp_svcs_tasks.rake +59 -0
- data/lib/tasks/release_notes/NOTES +21 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +9 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config/application.rb +42 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +8 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/spec.rb +27 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/spec.sqlite3 +0 -0
- data/spec/dummy/log/spec.log +4820 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/factories/business_party.rb +21 -0
- data/spec/factories/contact_purpose.rb +8 -0
- data/spec/factories/party.rb +16 -0
- data/spec/factories/party_relationship.rb +10 -0
- data/spec/factories/party_role.rb +7 -0
- data/spec/factories/phone_number.rb +7 -0
- data/spec/factories/relationship_type.rb +8 -0
- data/spec/factories/role_type.rb +8 -0
- data/spec/models/category_classification_spec.rb +11 -0
- data/spec/models/category_spec.rb +18 -0
- data/spec/models/contact_purpose_spec.rb +12 -0
- data/spec/models/contact_spec.rb +12 -0
- data/spec/models/contact_type_spec.rb +12 -0
- data/spec/models/currency_spec.rb +12 -0
- data/spec/models/descriptive_asset_spec.rb +12 -0
- data/spec/models/email_address_spec.rb +12 -0
- data/spec/models/geo_country_spec.rb +13 -0
- data/spec/models/geo_zone_spec.rb +12 -0
- data/spec/models/individual_spec.rb +40 -0
- data/spec/models/money_spec.rb +12 -0
- data/spec/models/note_spec.rb +26 -0
- data/spec/models/note_type_spec.rb +12 -0
- data/spec/models/organization_spec.rb +33 -0
- data/spec/models/party_relationship_spec.rb +12 -0
- data/spec/models/party_role_spec.rb +12 -0
- data/spec/models/party_spec.rb +98 -0
- data/spec/models/phone_number_spec.rb +12 -0
- data/spec/models/postal_address_spec.rb +12 -0
- data/spec/models/relationship_type_spec.rb +11 -0
- data/spec/models/role_type_spec.rb +12 -0
- data/spec/models/view_type_spec.rb +12 -0
- data/spec/spec_helper.rb +57 -0
- metadata +391 -0
@@ -0,0 +1,2952 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/object:GeoCountry
|
3
|
+
attributes:
|
4
|
+
name: Afghanistan
|
5
|
+
created_at: 2010-01-22 19:42:22
|
6
|
+
external_id:
|
7
|
+
iso_code_2: AF
|
8
|
+
iso_code_3: AFG
|
9
|
+
id: "1"
|
10
|
+
display: "1"
|
11
|
+
attributes_cache: {}
|
12
|
+
|
13
|
+
- !ruby/object:GeoCountry
|
14
|
+
attributes:
|
15
|
+
name: Albania
|
16
|
+
created_at: 2010-01-22 19:42:22
|
17
|
+
external_id:
|
18
|
+
iso_code_2: AL
|
19
|
+
iso_code_3: ALB
|
20
|
+
id: "2"
|
21
|
+
display: "1"
|
22
|
+
|
23
|
+
attributes_cache: {}
|
24
|
+
|
25
|
+
- !ruby/object:GeoCountry
|
26
|
+
attributes:
|
27
|
+
name: Algeria
|
28
|
+
created_at: 2010-01-22 19:42:22
|
29
|
+
external_id:
|
30
|
+
iso_code_2: DZ
|
31
|
+
iso_code_3: DZA
|
32
|
+
id: "3"
|
33
|
+
display: "1"
|
34
|
+
|
35
|
+
attributes_cache: {}
|
36
|
+
|
37
|
+
- !ruby/object:GeoCountry
|
38
|
+
attributes:
|
39
|
+
name: American Samoa
|
40
|
+
created_at: 2010-01-22 19:42:22
|
41
|
+
external_id:
|
42
|
+
iso_code_2: AS
|
43
|
+
iso_code_3: ASM
|
44
|
+
id: "4"
|
45
|
+
display: "1"
|
46
|
+
|
47
|
+
attributes_cache: {}
|
48
|
+
|
49
|
+
- !ruby/object:GeoCountry
|
50
|
+
attributes:
|
51
|
+
name: Andorra
|
52
|
+
created_at: 2010-01-22 19:42:22
|
53
|
+
external_id:
|
54
|
+
iso_code_2: AD
|
55
|
+
iso_code_3: AND
|
56
|
+
id: "5"
|
57
|
+
display: "1"
|
58
|
+
|
59
|
+
attributes_cache: {}
|
60
|
+
|
61
|
+
- !ruby/object:GeoCountry
|
62
|
+
attributes:
|
63
|
+
name: Angola
|
64
|
+
created_at: 2010-01-22 19:42:22
|
65
|
+
external_id:
|
66
|
+
iso_code_2: AO
|
67
|
+
iso_code_3: AGO
|
68
|
+
id: "6"
|
69
|
+
display: "1"
|
70
|
+
|
71
|
+
attributes_cache: {}
|
72
|
+
|
73
|
+
- !ruby/object:GeoCountry
|
74
|
+
attributes:
|
75
|
+
name: Anguilla
|
76
|
+
created_at: 2010-01-22 19:42:22
|
77
|
+
external_id:
|
78
|
+
iso_code_2: AI
|
79
|
+
iso_code_3: AIA
|
80
|
+
id: "7"
|
81
|
+
display: "1"
|
82
|
+
|
83
|
+
attributes_cache: {}
|
84
|
+
|
85
|
+
- !ruby/object:GeoCountry
|
86
|
+
attributes:
|
87
|
+
name: Antarctica
|
88
|
+
created_at: 2010-01-22 19:42:22
|
89
|
+
external_id:
|
90
|
+
iso_code_2: AQ
|
91
|
+
iso_code_3: ATA
|
92
|
+
id: "8"
|
93
|
+
display: "1"
|
94
|
+
|
95
|
+
attributes_cache: {}
|
96
|
+
|
97
|
+
- !ruby/object:GeoCountry
|
98
|
+
attributes:
|
99
|
+
name: Antigua
|
100
|
+
created_at: 2010-01-22 19:42:22
|
101
|
+
external_id:
|
102
|
+
iso_code_2: AG
|
103
|
+
iso_code_3: ATG
|
104
|
+
id: "9"
|
105
|
+
display: "1"
|
106
|
+
|
107
|
+
attributes_cache: {}
|
108
|
+
|
109
|
+
- !ruby/object:GeoCountry
|
110
|
+
attributes:
|
111
|
+
name: Argentina
|
112
|
+
created_at: 2010-01-22 19:42:22
|
113
|
+
external_id:
|
114
|
+
iso_code_2: AR
|
115
|
+
iso_code_3: ARG
|
116
|
+
id: "10"
|
117
|
+
display: "1"
|
118
|
+
|
119
|
+
attributes_cache: {}
|
120
|
+
|
121
|
+
- !ruby/object:GeoCountry
|
122
|
+
attributes:
|
123
|
+
name: Armenia
|
124
|
+
created_at: 2010-01-22 19:42:22
|
125
|
+
external_id:
|
126
|
+
iso_code_2: AM
|
127
|
+
iso_code_3: ARM
|
128
|
+
id: "11"
|
129
|
+
display: "1"
|
130
|
+
|
131
|
+
attributes_cache: {}
|
132
|
+
|
133
|
+
- !ruby/object:GeoCountry
|
134
|
+
attributes:
|
135
|
+
name: Aruba
|
136
|
+
created_at: 2010-01-22 19:42:22
|
137
|
+
external_id:
|
138
|
+
iso_code_2: AW
|
139
|
+
iso_code_3: ABW
|
140
|
+
id: "12"
|
141
|
+
display: "1"
|
142
|
+
|
143
|
+
attributes_cache: {}
|
144
|
+
|
145
|
+
- !ruby/object:GeoCountry
|
146
|
+
attributes:
|
147
|
+
name: Australia
|
148
|
+
created_at: 2010-01-22 19:42:22
|
149
|
+
external_id:
|
150
|
+
iso_code_2: AU
|
151
|
+
iso_code_3: AUS
|
152
|
+
id: "13"
|
153
|
+
display: "1"
|
154
|
+
|
155
|
+
attributes_cache: {}
|
156
|
+
|
157
|
+
- !ruby/object:GeoCountry
|
158
|
+
attributes:
|
159
|
+
name: Austria
|
160
|
+
created_at: 2010-01-22 19:42:22
|
161
|
+
external_id:
|
162
|
+
iso_code_2: AT
|
163
|
+
iso_code_3: AUT
|
164
|
+
id: "14"
|
165
|
+
display: "1"
|
166
|
+
|
167
|
+
attributes_cache: {}
|
168
|
+
|
169
|
+
- !ruby/object:GeoCountry
|
170
|
+
attributes:
|
171
|
+
name: Azerbaijan
|
172
|
+
created_at: 2010-01-22 19:42:22
|
173
|
+
external_id:
|
174
|
+
iso_code_2: AZ
|
175
|
+
iso_code_3: AZE
|
176
|
+
id: "15"
|
177
|
+
display: "1"
|
178
|
+
|
179
|
+
attributes_cache: {}
|
180
|
+
|
181
|
+
- !ruby/object:GeoCountry
|
182
|
+
attributes:
|
183
|
+
name: Bahamas
|
184
|
+
created_at: 2010-01-22 19:42:23
|
185
|
+
external_id:
|
186
|
+
iso_code_2: BS
|
187
|
+
iso_code_3: BHS
|
188
|
+
id: "16"
|
189
|
+
display: "1"
|
190
|
+
|
191
|
+
attributes_cache: {}
|
192
|
+
|
193
|
+
- !ruby/object:GeoCountry
|
194
|
+
attributes:
|
195
|
+
name: Bahrain
|
196
|
+
created_at: 2010-01-22 19:42:23
|
197
|
+
external_id:
|
198
|
+
iso_code_2: BH
|
199
|
+
iso_code_3: BHR
|
200
|
+
id: "17"
|
201
|
+
display: "1"
|
202
|
+
|
203
|
+
attributes_cache: {}
|
204
|
+
|
205
|
+
- !ruby/object:GeoCountry
|
206
|
+
attributes:
|
207
|
+
name: Bangladesh
|
208
|
+
created_at: 2010-01-22 19:42:23
|
209
|
+
external_id:
|
210
|
+
iso_code_2: BD
|
211
|
+
iso_code_3: BGD
|
212
|
+
id: "18"
|
213
|
+
display: "1"
|
214
|
+
|
215
|
+
attributes_cache: {}
|
216
|
+
|
217
|
+
- !ruby/object:GeoCountry
|
218
|
+
attributes:
|
219
|
+
name: Barbados
|
220
|
+
created_at: 2010-01-22 19:42:23
|
221
|
+
external_id:
|
222
|
+
iso_code_2: BB
|
223
|
+
iso_code_3: BRB
|
224
|
+
id: "19"
|
225
|
+
display: "1"
|
226
|
+
|
227
|
+
attributes_cache: {}
|
228
|
+
|
229
|
+
- !ruby/object:GeoCountry
|
230
|
+
attributes:
|
231
|
+
name: Belarus
|
232
|
+
created_at: 2010-01-22 19:42:23
|
233
|
+
external_id:
|
234
|
+
iso_code_2: BY
|
235
|
+
iso_code_3: BLR
|
236
|
+
id: "20"
|
237
|
+
display: "1"
|
238
|
+
|
239
|
+
attributes_cache: {}
|
240
|
+
|
241
|
+
- !ruby/object:GeoCountry
|
242
|
+
attributes:
|
243
|
+
name: Belgium
|
244
|
+
created_at: 2010-01-22 19:42:23
|
245
|
+
external_id:
|
246
|
+
iso_code_2: BE
|
247
|
+
iso_code_3: BEL
|
248
|
+
id: "21"
|
249
|
+
display: "1"
|
250
|
+
|
251
|
+
attributes_cache: {}
|
252
|
+
|
253
|
+
- !ruby/object:GeoCountry
|
254
|
+
attributes:
|
255
|
+
name: Belize
|
256
|
+
created_at: 2010-01-22 19:42:23
|
257
|
+
external_id:
|
258
|
+
iso_code_2: BZ
|
259
|
+
iso_code_3: BLZ
|
260
|
+
id: "22"
|
261
|
+
display: "1"
|
262
|
+
|
263
|
+
attributes_cache: {}
|
264
|
+
|
265
|
+
- !ruby/object:GeoCountry
|
266
|
+
attributes:
|
267
|
+
name: Benin
|
268
|
+
created_at: 2010-01-22 19:42:23
|
269
|
+
external_id:
|
270
|
+
iso_code_2: BJ
|
271
|
+
iso_code_3: BEN
|
272
|
+
id: "23"
|
273
|
+
display: "1"
|
274
|
+
|
275
|
+
attributes_cache: {}
|
276
|
+
|
277
|
+
- !ruby/object:GeoCountry
|
278
|
+
attributes:
|
279
|
+
name: Bermuda
|
280
|
+
created_at: 2010-01-22 19:42:23
|
281
|
+
external_id:
|
282
|
+
iso_code_2: BM
|
283
|
+
iso_code_3: BMU
|
284
|
+
id: "24"
|
285
|
+
display: "1"
|
286
|
+
|
287
|
+
attributes_cache: {}
|
288
|
+
|
289
|
+
- !ruby/object:GeoCountry
|
290
|
+
attributes:
|
291
|
+
name: Bhutan
|
292
|
+
created_at: 2010-01-22 19:42:23
|
293
|
+
external_id:
|
294
|
+
iso_code_2: BT
|
295
|
+
iso_code_3: BTN
|
296
|
+
id: "25"
|
297
|
+
display: "1"
|
298
|
+
|
299
|
+
attributes_cache: {}
|
300
|
+
|
301
|
+
- !ruby/object:GeoCountry
|
302
|
+
attributes:
|
303
|
+
name: Bolivia
|
304
|
+
created_at: 2010-01-22 19:42:23
|
305
|
+
external_id:
|
306
|
+
iso_code_2: BO
|
307
|
+
iso_code_3: BOL
|
308
|
+
id: "26"
|
309
|
+
display: "1"
|
310
|
+
|
311
|
+
attributes_cache: {}
|
312
|
+
|
313
|
+
- !ruby/object:GeoCountry
|
314
|
+
attributes:
|
315
|
+
name: Bosnia and Herzegowina
|
316
|
+
created_at: 2010-01-22 19:42:23
|
317
|
+
external_id:
|
318
|
+
iso_code_2: BA
|
319
|
+
iso_code_3: BIH
|
320
|
+
id: "27"
|
321
|
+
display: "1"
|
322
|
+
|
323
|
+
attributes_cache: {}
|
324
|
+
|
325
|
+
- !ruby/object:GeoCountry
|
326
|
+
attributes:
|
327
|
+
name: Botswana
|
328
|
+
created_at: 2010-01-22 19:42:23
|
329
|
+
external_id:
|
330
|
+
iso_code_2: BW
|
331
|
+
iso_code_3: BWA
|
332
|
+
id: "28"
|
333
|
+
display: "1"
|
334
|
+
|
335
|
+
attributes_cache: {}
|
336
|
+
|
337
|
+
- !ruby/object:GeoCountry
|
338
|
+
attributes:
|
339
|
+
name: Bouvet Island
|
340
|
+
created_at: 2010-01-22 19:42:23
|
341
|
+
external_id:
|
342
|
+
iso_code_2: BV
|
343
|
+
iso_code_3: BVT
|
344
|
+
id: "29"
|
345
|
+
display: "1"
|
346
|
+
|
347
|
+
attributes_cache: {}
|
348
|
+
|
349
|
+
- !ruby/object:GeoCountry
|
350
|
+
attributes:
|
351
|
+
name: Brazil
|
352
|
+
created_at: 2010-01-22 19:42:23
|
353
|
+
external_id:
|
354
|
+
iso_code_2: BR
|
355
|
+
iso_code_3: BRA
|
356
|
+
id: "30"
|
357
|
+
display: "1"
|
358
|
+
|
359
|
+
attributes_cache: {}
|
360
|
+
|
361
|
+
- !ruby/object:GeoCountry
|
362
|
+
attributes:
|
363
|
+
name: British Indian Ocean Territory
|
364
|
+
created_at: 2010-01-22 19:42:23
|
365
|
+
external_id:
|
366
|
+
iso_code_2: IO
|
367
|
+
iso_code_3: IOT
|
368
|
+
id: "31"
|
369
|
+
display: "1"
|
370
|
+
|
371
|
+
attributes_cache: {}
|
372
|
+
|
373
|
+
- !ruby/object:GeoCountry
|
374
|
+
attributes:
|
375
|
+
name: Brunei Darussalam
|
376
|
+
created_at: 2010-01-22 19:42:23
|
377
|
+
external_id:
|
378
|
+
iso_code_2: BN
|
379
|
+
iso_code_3: BRN
|
380
|
+
id: "32"
|
381
|
+
display: "1"
|
382
|
+
|
383
|
+
attributes_cache: {}
|
384
|
+
|
385
|
+
- !ruby/object:GeoCountry
|
386
|
+
attributes:
|
387
|
+
name: Bulgaria
|
388
|
+
created_at: 2010-01-22 19:42:23
|
389
|
+
external_id:
|
390
|
+
iso_code_2: BG
|
391
|
+
iso_code_3: BGR
|
392
|
+
id: "33"
|
393
|
+
display: "1"
|
394
|
+
|
395
|
+
attributes_cache: {}
|
396
|
+
|
397
|
+
- !ruby/object:GeoCountry
|
398
|
+
attributes:
|
399
|
+
name: Burkina Faso
|
400
|
+
created_at: 2010-01-22 19:42:23
|
401
|
+
external_id:
|
402
|
+
iso_code_2: BF
|
403
|
+
iso_code_3: BFA
|
404
|
+
id: "34"
|
405
|
+
display: "1"
|
406
|
+
|
407
|
+
attributes_cache: {}
|
408
|
+
|
409
|
+
- !ruby/object:GeoCountry
|
410
|
+
attributes:
|
411
|
+
name: Burundi
|
412
|
+
created_at: 2010-01-22 19:42:23
|
413
|
+
external_id:
|
414
|
+
iso_code_2: BI
|
415
|
+
iso_code_3: BDI
|
416
|
+
id: "35"
|
417
|
+
display: "1"
|
418
|
+
|
419
|
+
attributes_cache: {}
|
420
|
+
|
421
|
+
- !ruby/object:GeoCountry
|
422
|
+
attributes:
|
423
|
+
name: Cambodia
|
424
|
+
created_at: 2010-01-22 19:42:23
|
425
|
+
external_id:
|
426
|
+
iso_code_2: KH
|
427
|
+
iso_code_3: KHM
|
428
|
+
id: "36"
|
429
|
+
display: "1"
|
430
|
+
|
431
|
+
attributes_cache: {}
|
432
|
+
|
433
|
+
- !ruby/object:GeoCountry
|
434
|
+
attributes:
|
435
|
+
name: Cameroon
|
436
|
+
created_at: 2010-01-22 19:42:23
|
437
|
+
external_id:
|
438
|
+
iso_code_2: CM
|
439
|
+
iso_code_3: CMR
|
440
|
+
id: "37"
|
441
|
+
display: "1"
|
442
|
+
|
443
|
+
attributes_cache: {}
|
444
|
+
|
445
|
+
- !ruby/object:GeoCountry
|
446
|
+
attributes:
|
447
|
+
name: Canada
|
448
|
+
created_at: 2010-01-22 19:42:24
|
449
|
+
external_id:
|
450
|
+
iso_code_2: CA
|
451
|
+
iso_code_3: CAN
|
452
|
+
id: "38"
|
453
|
+
display: "1"
|
454
|
+
|
455
|
+
attributes_cache: {}
|
456
|
+
|
457
|
+
- !ruby/object:GeoCountry
|
458
|
+
attributes:
|
459
|
+
name: Cape Verde
|
460
|
+
created_at: 2010-01-22 19:42:24
|
461
|
+
external_id:
|
462
|
+
iso_code_2: CV
|
463
|
+
iso_code_3: CPV
|
464
|
+
id: "39"
|
465
|
+
display: "1"
|
466
|
+
|
467
|
+
attributes_cache: {}
|
468
|
+
|
469
|
+
- !ruby/object:GeoCountry
|
470
|
+
attributes:
|
471
|
+
name: Cayman Islands
|
472
|
+
created_at: 2010-01-22 19:42:24
|
473
|
+
external_id:
|
474
|
+
iso_code_2: KY
|
475
|
+
iso_code_3: CYM
|
476
|
+
id: "40"
|
477
|
+
display: "1"
|
478
|
+
|
479
|
+
attributes_cache: {}
|
480
|
+
|
481
|
+
- !ruby/object:GeoCountry
|
482
|
+
attributes:
|
483
|
+
name: Central African Republic
|
484
|
+
created_at: 2010-01-22 19:42:24
|
485
|
+
external_id:
|
486
|
+
iso_code_2: CF
|
487
|
+
iso_code_3: CAF
|
488
|
+
id: "41"
|
489
|
+
display: "1"
|
490
|
+
|
491
|
+
attributes_cache: {}
|
492
|
+
|
493
|
+
- !ruby/object:GeoCountry
|
494
|
+
attributes:
|
495
|
+
name: Chad
|
496
|
+
created_at: 2010-01-22 19:42:24
|
497
|
+
external_id:
|
498
|
+
iso_code_2: TD
|
499
|
+
iso_code_3: TCD
|
500
|
+
id: "42"
|
501
|
+
display: "1"
|
502
|
+
|
503
|
+
attributes_cache: {}
|
504
|
+
|
505
|
+
- !ruby/object:GeoCountry
|
506
|
+
attributes:
|
507
|
+
name: Chile
|
508
|
+
created_at: 2010-01-22 19:42:24
|
509
|
+
external_id:
|
510
|
+
iso_code_2: CL
|
511
|
+
iso_code_3: CHL
|
512
|
+
id: "43"
|
513
|
+
display: "1"
|
514
|
+
|
515
|
+
attributes_cache: {}
|
516
|
+
|
517
|
+
- !ruby/object:GeoCountry
|
518
|
+
attributes:
|
519
|
+
name: China
|
520
|
+
created_at: 2010-01-22 19:42:24
|
521
|
+
external_id:
|
522
|
+
iso_code_2: CN
|
523
|
+
iso_code_3: CHN
|
524
|
+
id: "44"
|
525
|
+
display: "1"
|
526
|
+
|
527
|
+
attributes_cache: {}
|
528
|
+
|
529
|
+
- !ruby/object:GeoCountry
|
530
|
+
attributes:
|
531
|
+
name: Christmas Island
|
532
|
+
created_at: 2010-01-22 19:42:24
|
533
|
+
external_id:
|
534
|
+
iso_code_2: CX
|
535
|
+
iso_code_3: CXR
|
536
|
+
id: "45"
|
537
|
+
display: "1"
|
538
|
+
|
539
|
+
attributes_cache: {}
|
540
|
+
|
541
|
+
- !ruby/object:GeoCountry
|
542
|
+
attributes:
|
543
|
+
name: Cocos (Keeling) Islands
|
544
|
+
created_at: 2010-01-22 19:42:24
|
545
|
+
external_id:
|
546
|
+
iso_code_2: CC
|
547
|
+
iso_code_3: CCK
|
548
|
+
id: "46"
|
549
|
+
display: "1"
|
550
|
+
|
551
|
+
attributes_cache: {}
|
552
|
+
|
553
|
+
- !ruby/object:GeoCountry
|
554
|
+
attributes:
|
555
|
+
name: Colombia
|
556
|
+
created_at: 2010-01-22 19:42:24
|
557
|
+
external_id:
|
558
|
+
iso_code_2: CO
|
559
|
+
iso_code_3: COL
|
560
|
+
id: "47"
|
561
|
+
display: "1"
|
562
|
+
|
563
|
+
attributes_cache: {}
|
564
|
+
|
565
|
+
- !ruby/object:GeoCountry
|
566
|
+
attributes:
|
567
|
+
name: Comoros
|
568
|
+
created_at: 2010-01-22 19:42:24
|
569
|
+
external_id:
|
570
|
+
iso_code_2: KM
|
571
|
+
iso_code_3: COM
|
572
|
+
id: "48"
|
573
|
+
display: "1"
|
574
|
+
|
575
|
+
attributes_cache: {}
|
576
|
+
|
577
|
+
- !ruby/object:GeoCountry
|
578
|
+
attributes:
|
579
|
+
name: Congo
|
580
|
+
created_at: 2010-01-22 19:42:24
|
581
|
+
external_id:
|
582
|
+
iso_code_2: CG
|
583
|
+
iso_code_3: COG
|
584
|
+
id: "49"
|
585
|
+
display: "1"
|
586
|
+
|
587
|
+
attributes_cache: {}
|
588
|
+
|
589
|
+
- !ruby/object:GeoCountry
|
590
|
+
attributes:
|
591
|
+
name: Cook Islands
|
592
|
+
created_at: 2010-01-22 19:42:24
|
593
|
+
external_id:
|
594
|
+
iso_code_2: CK
|
595
|
+
iso_code_3: COK
|
596
|
+
id: "50"
|
597
|
+
display: "1"
|
598
|
+
|
599
|
+
attributes_cache: {}
|
600
|
+
|
601
|
+
- !ruby/object:GeoCountry
|
602
|
+
attributes:
|
603
|
+
name: Costa Rica
|
604
|
+
created_at: 2010-01-22 19:42:24
|
605
|
+
external_id:
|
606
|
+
iso_code_2: CR
|
607
|
+
iso_code_3: CRI
|
608
|
+
id: "51"
|
609
|
+
display: "1"
|
610
|
+
|
611
|
+
attributes_cache: {}
|
612
|
+
|
613
|
+
- !ruby/object:GeoCountry
|
614
|
+
attributes:
|
615
|
+
name: Cote DIvoire
|
616
|
+
created_at: 2010-01-22 19:42:24
|
617
|
+
external_id:
|
618
|
+
iso_code_2: CI
|
619
|
+
iso_code_3: CIV
|
620
|
+
id: "52"
|
621
|
+
display: "1"
|
622
|
+
|
623
|
+
attributes_cache: {}
|
624
|
+
|
625
|
+
- !ruby/object:GeoCountry
|
626
|
+
attributes:
|
627
|
+
name: Croatia
|
628
|
+
created_at: 2010-01-22 19:42:24
|
629
|
+
external_id:
|
630
|
+
iso_code_2: HR
|
631
|
+
iso_code_3: HRV
|
632
|
+
id: "53"
|
633
|
+
display: "1"
|
634
|
+
|
635
|
+
attributes_cache: {}
|
636
|
+
|
637
|
+
- !ruby/object:GeoCountry
|
638
|
+
attributes:
|
639
|
+
name: Cuba
|
640
|
+
created_at: 2010-01-22 19:42:24
|
641
|
+
external_id:
|
642
|
+
iso_code_2: CU
|
643
|
+
iso_code_3: CUB
|
644
|
+
id: "54"
|
645
|
+
display: "1"
|
646
|
+
|
647
|
+
attributes_cache: {}
|
648
|
+
|
649
|
+
- !ruby/object:GeoCountry
|
650
|
+
attributes:
|
651
|
+
name: Cyprus
|
652
|
+
created_at: 2010-01-22 19:42:24
|
653
|
+
external_id:
|
654
|
+
iso_code_2: CY
|
655
|
+
iso_code_3: CYP
|
656
|
+
id: "55"
|
657
|
+
display: "1"
|
658
|
+
|
659
|
+
attributes_cache: {}
|
660
|
+
|
661
|
+
- !ruby/object:GeoCountry
|
662
|
+
attributes:
|
663
|
+
name: Czech Republic
|
664
|
+
created_at: 2010-01-22 19:42:24
|
665
|
+
external_id:
|
666
|
+
iso_code_2: CZ
|
667
|
+
iso_code_3: CZE
|
668
|
+
id: "56"
|
669
|
+
display: "1"
|
670
|
+
|
671
|
+
attributes_cache: {}
|
672
|
+
|
673
|
+
- !ruby/object:GeoCountry
|
674
|
+
attributes:
|
675
|
+
name: Denmark
|
676
|
+
created_at: 2010-01-22 19:42:24
|
677
|
+
external_id:
|
678
|
+
iso_code_2: DK
|
679
|
+
iso_code_3: DNK
|
680
|
+
id: "57"
|
681
|
+
display: "1"
|
682
|
+
|
683
|
+
attributes_cache: {}
|
684
|
+
|
685
|
+
- !ruby/object:GeoCountry
|
686
|
+
attributes:
|
687
|
+
name: Djibouti
|
688
|
+
created_at: 2010-01-22 19:42:24
|
689
|
+
external_id:
|
690
|
+
iso_code_2: DJ
|
691
|
+
iso_code_3: DJI
|
692
|
+
id: "58"
|
693
|
+
display: "1"
|
694
|
+
|
695
|
+
attributes_cache: {}
|
696
|
+
|
697
|
+
- !ruby/object:GeoCountry
|
698
|
+
attributes:
|
699
|
+
name: Dominica
|
700
|
+
created_at: 2010-01-22 19:42:24
|
701
|
+
external_id:
|
702
|
+
iso_code_2: DM
|
703
|
+
iso_code_3: DMA
|
704
|
+
id: "59"
|
705
|
+
display: "1"
|
706
|
+
|
707
|
+
attributes_cache: {}
|
708
|
+
|
709
|
+
- !ruby/object:GeoCountry
|
710
|
+
attributes:
|
711
|
+
name: Dominican Republic
|
712
|
+
created_at: 2010-01-22 19:42:25
|
713
|
+
external_id:
|
714
|
+
iso_code_2: DO
|
715
|
+
iso_code_3: DOM
|
716
|
+
id: "60"
|
717
|
+
display: "1"
|
718
|
+
|
719
|
+
attributes_cache: {}
|
720
|
+
|
721
|
+
- !ruby/object:GeoCountry
|
722
|
+
attributes:
|
723
|
+
name: Ecuador
|
724
|
+
created_at: 2010-01-22 19:42:25
|
725
|
+
external_id:
|
726
|
+
iso_code_2: EC
|
727
|
+
iso_code_3: ECU
|
728
|
+
id: "62"
|
729
|
+
display: "1"
|
730
|
+
|
731
|
+
attributes_cache: {}
|
732
|
+
|
733
|
+
- !ruby/object:GeoCountry
|
734
|
+
attributes:
|
735
|
+
name: Egypt
|
736
|
+
created_at: 2010-01-22 19:42:25
|
737
|
+
external_id:
|
738
|
+
iso_code_2: EG
|
739
|
+
iso_code_3: EGY
|
740
|
+
id: "63"
|
741
|
+
display: "1"
|
742
|
+
|
743
|
+
attributes_cache: {}
|
744
|
+
|
745
|
+
- !ruby/object:GeoCountry
|
746
|
+
attributes:
|
747
|
+
name: El Salvador
|
748
|
+
created_at: 2010-01-22 19:42:25
|
749
|
+
external_id:
|
750
|
+
iso_code_2: SV
|
751
|
+
iso_code_3: SLV
|
752
|
+
id: "64"
|
753
|
+
display: "1"
|
754
|
+
|
755
|
+
attributes_cache: {}
|
756
|
+
|
757
|
+
- !ruby/object:GeoCountry
|
758
|
+
attributes:
|
759
|
+
name: Equatorial Guinea
|
760
|
+
created_at: 2010-01-22 19:42:25
|
761
|
+
external_id:
|
762
|
+
iso_code_2: GQ
|
763
|
+
iso_code_3: GNQ
|
764
|
+
id: "65"
|
765
|
+
display: "1"
|
766
|
+
|
767
|
+
attributes_cache: {}
|
768
|
+
|
769
|
+
- !ruby/object:GeoCountry
|
770
|
+
attributes:
|
771
|
+
name: Eritrea
|
772
|
+
created_at: 2010-01-22 19:42:25
|
773
|
+
external_id:
|
774
|
+
iso_code_2: ER
|
775
|
+
iso_code_3: ERI
|
776
|
+
id: "66"
|
777
|
+
display: "1"
|
778
|
+
|
779
|
+
attributes_cache: {}
|
780
|
+
|
781
|
+
- !ruby/object:GeoCountry
|
782
|
+
attributes:
|
783
|
+
name: Estonia
|
784
|
+
created_at: 2010-01-22 19:42:25
|
785
|
+
external_id:
|
786
|
+
iso_code_2: EE
|
787
|
+
iso_code_3: EST
|
788
|
+
id: "67"
|
789
|
+
display: "1"
|
790
|
+
|
791
|
+
attributes_cache: {}
|
792
|
+
|
793
|
+
- !ruby/object:GeoCountry
|
794
|
+
attributes:
|
795
|
+
name: Ethiopia
|
796
|
+
created_at: 2010-01-22 19:42:25
|
797
|
+
external_id:
|
798
|
+
iso_code_2: ET
|
799
|
+
iso_code_3: ETH
|
800
|
+
id: "68"
|
801
|
+
display: "1"
|
802
|
+
|
803
|
+
attributes_cache: {}
|
804
|
+
|
805
|
+
- !ruby/object:GeoCountry
|
806
|
+
attributes:
|
807
|
+
name: Falkland Islands (Malvinas)
|
808
|
+
created_at: 2010-01-22 19:42:25
|
809
|
+
external_id:
|
810
|
+
iso_code_2: FK
|
811
|
+
iso_code_3: FLK
|
812
|
+
id: "69"
|
813
|
+
display: "1"
|
814
|
+
|
815
|
+
attributes_cache: {}
|
816
|
+
|
817
|
+
- !ruby/object:GeoCountry
|
818
|
+
attributes:
|
819
|
+
name: Faroe Islands
|
820
|
+
created_at: 2010-01-22 19:42:25
|
821
|
+
external_id:
|
822
|
+
iso_code_2: FO
|
823
|
+
iso_code_3: FRO
|
824
|
+
id: "70"
|
825
|
+
display: "1"
|
826
|
+
|
827
|
+
attributes_cache: {}
|
828
|
+
|
829
|
+
- !ruby/object:GeoCountry
|
830
|
+
attributes:
|
831
|
+
name: Fiji
|
832
|
+
created_at: 2010-01-22 19:42:25
|
833
|
+
external_id:
|
834
|
+
iso_code_2: FJ
|
835
|
+
iso_code_3: FJI
|
836
|
+
id: "71"
|
837
|
+
display: "1"
|
838
|
+
|
839
|
+
attributes_cache: {}
|
840
|
+
|
841
|
+
- !ruby/object:GeoCountry
|
842
|
+
attributes:
|
843
|
+
name: Finland
|
844
|
+
created_at: 2010-01-22 19:42:25
|
845
|
+
external_id:
|
846
|
+
iso_code_2: FI
|
847
|
+
iso_code_3: FIN
|
848
|
+
id: "72"
|
849
|
+
display: "1"
|
850
|
+
|
851
|
+
attributes_cache: {}
|
852
|
+
|
853
|
+
- !ruby/object:GeoCountry
|
854
|
+
attributes:
|
855
|
+
name: France
|
856
|
+
created_at: 2010-01-22 19:42:25
|
857
|
+
external_id:
|
858
|
+
iso_code_2: FR
|
859
|
+
iso_code_3: FRA
|
860
|
+
id: "73"
|
861
|
+
display: "1"
|
862
|
+
|
863
|
+
attributes_cache: {}
|
864
|
+
|
865
|
+
- !ruby/object:GeoCountry
|
866
|
+
attributes:
|
867
|
+
name: French Guiana
|
868
|
+
created_at: 2010-01-22 19:42:25
|
869
|
+
external_id:
|
870
|
+
iso_code_2: GF
|
871
|
+
iso_code_3: GUF
|
872
|
+
id: "75"
|
873
|
+
display: "1"
|
874
|
+
|
875
|
+
attributes_cache: {}
|
876
|
+
|
877
|
+
- !ruby/object:GeoCountry
|
878
|
+
attributes:
|
879
|
+
name: French Polynesia
|
880
|
+
created_at: 2010-01-22 19:42:25
|
881
|
+
external_id:
|
882
|
+
iso_code_2: PF
|
883
|
+
iso_code_3: PYF
|
884
|
+
id: "76"
|
885
|
+
display: "1"
|
886
|
+
|
887
|
+
attributes_cache: {}
|
888
|
+
|
889
|
+
- !ruby/object:GeoCountry
|
890
|
+
attributes:
|
891
|
+
name: French Southern Territories
|
892
|
+
created_at: 2010-01-22 19:42:25
|
893
|
+
external_id:
|
894
|
+
iso_code_2: TF
|
895
|
+
iso_code_3: ATF
|
896
|
+
id: "77"
|
897
|
+
display: "1"
|
898
|
+
|
899
|
+
attributes_cache: {}
|
900
|
+
|
901
|
+
- !ruby/object:GeoCountry
|
902
|
+
attributes:
|
903
|
+
name: Gabon
|
904
|
+
created_at: 2010-01-22 19:42:25
|
905
|
+
external_id:
|
906
|
+
iso_code_2: GA
|
907
|
+
iso_code_3: GAB
|
908
|
+
id: "78"
|
909
|
+
display: "1"
|
910
|
+
|
911
|
+
attributes_cache: {}
|
912
|
+
|
913
|
+
- !ruby/object:GeoCountry
|
914
|
+
attributes:
|
915
|
+
name: Gambia
|
916
|
+
created_at: 2010-01-22 19:42:25
|
917
|
+
external_id:
|
918
|
+
iso_code_2: GM
|
919
|
+
iso_code_3: GMB
|
920
|
+
id: "79"
|
921
|
+
display: "1"
|
922
|
+
|
923
|
+
attributes_cache: {}
|
924
|
+
|
925
|
+
- !ruby/object:GeoCountry
|
926
|
+
attributes:
|
927
|
+
name: Georgia
|
928
|
+
created_at: 2010-01-22 19:42:25
|
929
|
+
external_id:
|
930
|
+
iso_code_2: GE
|
931
|
+
iso_code_3: GEO
|
932
|
+
id: "80"
|
933
|
+
display: "1"
|
934
|
+
|
935
|
+
attributes_cache: {}
|
936
|
+
|
937
|
+
- !ruby/object:GeoCountry
|
938
|
+
attributes:
|
939
|
+
name: Germany
|
940
|
+
created_at: 2010-01-22 19:42:25
|
941
|
+
external_id:
|
942
|
+
iso_code_2: DE
|
943
|
+
iso_code_3: DEU
|
944
|
+
id: "81"
|
945
|
+
display: "1"
|
946
|
+
|
947
|
+
attributes_cache: {}
|
948
|
+
|
949
|
+
- !ruby/object:GeoCountry
|
950
|
+
attributes:
|
951
|
+
name: Ghana
|
952
|
+
created_at: 2010-01-22 19:42:26
|
953
|
+
external_id:
|
954
|
+
iso_code_2: GH
|
955
|
+
iso_code_3: GHA
|
956
|
+
id: "82"
|
957
|
+
display: "1"
|
958
|
+
|
959
|
+
attributes_cache: {}
|
960
|
+
|
961
|
+
- !ruby/object:GeoCountry
|
962
|
+
attributes:
|
963
|
+
name: Gibraltar
|
964
|
+
created_at: 2010-01-22 19:42:26
|
965
|
+
external_id:
|
966
|
+
iso_code_2: GI
|
967
|
+
iso_code_3: GIB
|
968
|
+
id: "83"
|
969
|
+
display: "1"
|
970
|
+
|
971
|
+
attributes_cache: {}
|
972
|
+
|
973
|
+
- !ruby/object:GeoCountry
|
974
|
+
attributes:
|
975
|
+
name: Greece
|
976
|
+
created_at: 2010-01-22 19:42:26
|
977
|
+
external_id:
|
978
|
+
iso_code_2: GR
|
979
|
+
iso_code_3: GRC
|
980
|
+
id: "84"
|
981
|
+
display: "1"
|
982
|
+
|
983
|
+
attributes_cache: {}
|
984
|
+
|
985
|
+
- !ruby/object:GeoCountry
|
986
|
+
attributes:
|
987
|
+
name: Greenland
|
988
|
+
created_at: 2010-01-22 19:42:26
|
989
|
+
external_id:
|
990
|
+
iso_code_2: GL
|
991
|
+
iso_code_3: GRL
|
992
|
+
id: "85"
|
993
|
+
display: "1"
|
994
|
+
|
995
|
+
attributes_cache: {}
|
996
|
+
|
997
|
+
- !ruby/object:GeoCountry
|
998
|
+
attributes:
|
999
|
+
name: Grenada
|
1000
|
+
created_at: 2010-01-22 19:42:26
|
1001
|
+
external_id:
|
1002
|
+
iso_code_2: GD
|
1003
|
+
iso_code_3: GRD
|
1004
|
+
id: "86"
|
1005
|
+
display: "1"
|
1006
|
+
|
1007
|
+
attributes_cache: {}
|
1008
|
+
|
1009
|
+
- !ruby/object:GeoCountry
|
1010
|
+
attributes:
|
1011
|
+
name: Guadeloupe
|
1012
|
+
created_at: 2010-01-22 19:42:26
|
1013
|
+
external_id:
|
1014
|
+
iso_code_2: GP
|
1015
|
+
iso_code_3: GLP
|
1016
|
+
id: "87"
|
1017
|
+
display: "1"
|
1018
|
+
|
1019
|
+
attributes_cache: {}
|
1020
|
+
|
1021
|
+
- !ruby/object:GeoCountry
|
1022
|
+
attributes:
|
1023
|
+
name: Guam
|
1024
|
+
created_at: 2010-01-22 19:42:26
|
1025
|
+
external_id:
|
1026
|
+
iso_code_2: GU
|
1027
|
+
iso_code_3: GUM
|
1028
|
+
id: "88"
|
1029
|
+
display: "1"
|
1030
|
+
|
1031
|
+
attributes_cache: {}
|
1032
|
+
|
1033
|
+
- !ruby/object:GeoCountry
|
1034
|
+
attributes:
|
1035
|
+
name: Guatemala
|
1036
|
+
created_at: 2010-01-22 19:42:26
|
1037
|
+
external_id:
|
1038
|
+
iso_code_2: GT
|
1039
|
+
iso_code_3: GTM
|
1040
|
+
id: "89"
|
1041
|
+
display: "1"
|
1042
|
+
|
1043
|
+
attributes_cache: {}
|
1044
|
+
|
1045
|
+
- !ruby/object:GeoCountry
|
1046
|
+
attributes:
|
1047
|
+
name: Guinea
|
1048
|
+
created_at: 2010-01-22 19:42:26
|
1049
|
+
external_id:
|
1050
|
+
iso_code_2: GN
|
1051
|
+
iso_code_3: GIN
|
1052
|
+
id: "90"
|
1053
|
+
display: "1"
|
1054
|
+
|
1055
|
+
attributes_cache: {}
|
1056
|
+
|
1057
|
+
- !ruby/object:GeoCountry
|
1058
|
+
attributes:
|
1059
|
+
name: Guinea-bissau
|
1060
|
+
created_at: 2010-01-22 19:42:26
|
1061
|
+
external_id:
|
1062
|
+
iso_code_2: GW
|
1063
|
+
iso_code_3: GNB
|
1064
|
+
id: "91"
|
1065
|
+
display: "1"
|
1066
|
+
|
1067
|
+
attributes_cache: {}
|
1068
|
+
|
1069
|
+
- !ruby/object:GeoCountry
|
1070
|
+
attributes:
|
1071
|
+
name: Guyana
|
1072
|
+
created_at: 2010-01-22 19:42:26
|
1073
|
+
external_id:
|
1074
|
+
iso_code_2: GY
|
1075
|
+
iso_code_3: GUY
|
1076
|
+
id: "92"
|
1077
|
+
display: "1"
|
1078
|
+
|
1079
|
+
attributes_cache: {}
|
1080
|
+
|
1081
|
+
- !ruby/object:GeoCountry
|
1082
|
+
attributes:
|
1083
|
+
name: Haiti
|
1084
|
+
created_at: 2010-01-22 19:42:26
|
1085
|
+
external_id:
|
1086
|
+
iso_code_2: HT
|
1087
|
+
iso_code_3: HTI
|
1088
|
+
id: "93"
|
1089
|
+
display: "1"
|
1090
|
+
|
1091
|
+
attributes_cache: {}
|
1092
|
+
|
1093
|
+
- !ruby/object:GeoCountry
|
1094
|
+
attributes:
|
1095
|
+
name: Heard and Mc Donald Islands
|
1096
|
+
created_at: 2010-01-22 19:42:26
|
1097
|
+
external_id:
|
1098
|
+
iso_code_2: HM
|
1099
|
+
iso_code_3: HMD
|
1100
|
+
id: "94"
|
1101
|
+
display: "1"
|
1102
|
+
|
1103
|
+
attributes_cache: {}
|
1104
|
+
|
1105
|
+
- !ruby/object:GeoCountry
|
1106
|
+
attributes:
|
1107
|
+
name: Honduras
|
1108
|
+
created_at: 2010-01-22 19:42:26
|
1109
|
+
external_id:
|
1110
|
+
iso_code_2: HN
|
1111
|
+
iso_code_3: HND
|
1112
|
+
id: "95"
|
1113
|
+
display: "1"
|
1114
|
+
|
1115
|
+
attributes_cache: {}
|
1116
|
+
|
1117
|
+
- !ruby/object:GeoCountry
|
1118
|
+
attributes:
|
1119
|
+
name: Hong Kong
|
1120
|
+
created_at: 2010-01-22 19:42:26
|
1121
|
+
external_id:
|
1122
|
+
iso_code_2: HK
|
1123
|
+
iso_code_3: HKG
|
1124
|
+
id: "96"
|
1125
|
+
display: "1"
|
1126
|
+
|
1127
|
+
attributes_cache: {}
|
1128
|
+
|
1129
|
+
- !ruby/object:GeoCountry
|
1130
|
+
attributes:
|
1131
|
+
name: Hungary
|
1132
|
+
created_at: 2010-01-22 19:42:26
|
1133
|
+
external_id:
|
1134
|
+
iso_code_2: HU
|
1135
|
+
iso_code_3: HUN
|
1136
|
+
id: "97"
|
1137
|
+
display: "1"
|
1138
|
+
|
1139
|
+
attributes_cache: {}
|
1140
|
+
|
1141
|
+
- !ruby/object:GeoCountry
|
1142
|
+
attributes:
|
1143
|
+
name: Iceland
|
1144
|
+
created_at: 2010-01-22 19:42:26
|
1145
|
+
external_id:
|
1146
|
+
iso_code_2: IS
|
1147
|
+
iso_code_3: ISL
|
1148
|
+
id: "98"
|
1149
|
+
display: "1"
|
1150
|
+
|
1151
|
+
attributes_cache: {}
|
1152
|
+
|
1153
|
+
- !ruby/object:GeoCountry
|
1154
|
+
attributes:
|
1155
|
+
name: India
|
1156
|
+
created_at: 2010-01-22 19:42:27
|
1157
|
+
external_id:
|
1158
|
+
iso_code_2: IN
|
1159
|
+
iso_code_3: IND
|
1160
|
+
id: "99"
|
1161
|
+
display: "1"
|
1162
|
+
|
1163
|
+
attributes_cache: {}
|
1164
|
+
|
1165
|
+
- !ruby/object:GeoCountry
|
1166
|
+
attributes:
|
1167
|
+
name: Indonesia
|
1168
|
+
created_at: 2010-01-22 19:42:27
|
1169
|
+
external_id:
|
1170
|
+
iso_code_2: ID
|
1171
|
+
iso_code_3: IDN
|
1172
|
+
id: "100"
|
1173
|
+
display: "1"
|
1174
|
+
|
1175
|
+
attributes_cache: {}
|
1176
|
+
|
1177
|
+
- !ruby/object:GeoCountry
|
1178
|
+
attributes:
|
1179
|
+
name: Iran, Islamic Republic o
|
1180
|
+
created_at: 2010-01-22 19:42:27
|
1181
|
+
external_id:
|
1182
|
+
iso_code_2: IR
|
1183
|
+
iso_code_3: IRN
|
1184
|
+
id: "101"
|
1185
|
+
display: "1"
|
1186
|
+
|
1187
|
+
attributes_cache: {}
|
1188
|
+
|
1189
|
+
- !ruby/object:GeoCountry
|
1190
|
+
attributes:
|
1191
|
+
name: Iraq
|
1192
|
+
created_at: 2010-01-22 19:42:27
|
1193
|
+
external_id:
|
1194
|
+
iso_code_2: IQ
|
1195
|
+
iso_code_3: IRQ
|
1196
|
+
id: "102"
|
1197
|
+
display: "1"
|
1198
|
+
|
1199
|
+
attributes_cache: {}
|
1200
|
+
|
1201
|
+
- !ruby/object:GeoCountry
|
1202
|
+
attributes:
|
1203
|
+
name: Ireland
|
1204
|
+
created_at: 2010-01-22 19:42:27
|
1205
|
+
external_id:
|
1206
|
+
iso_code_2: IE
|
1207
|
+
iso_code_3: IRL
|
1208
|
+
id: "103"
|
1209
|
+
display: "1"
|
1210
|
+
|
1211
|
+
attributes_cache: {}
|
1212
|
+
|
1213
|
+
- !ruby/object:GeoCountry
|
1214
|
+
attributes:
|
1215
|
+
name: Israel
|
1216
|
+
created_at: 2010-01-22 19:42:27
|
1217
|
+
external_id:
|
1218
|
+
iso_code_2: IL
|
1219
|
+
iso_code_3: ISR
|
1220
|
+
id: "104"
|
1221
|
+
display: "1"
|
1222
|
+
|
1223
|
+
attributes_cache: {}
|
1224
|
+
|
1225
|
+
- !ruby/object:GeoCountry
|
1226
|
+
attributes:
|
1227
|
+
name: Italy
|
1228
|
+
created_at: 2010-01-22 19:42:27
|
1229
|
+
external_id:
|
1230
|
+
iso_code_2: IT
|
1231
|
+
iso_code_3: ITA
|
1232
|
+
id: "105"
|
1233
|
+
display: "1"
|
1234
|
+
|
1235
|
+
attributes_cache: {}
|
1236
|
+
|
1237
|
+
- !ruby/object:GeoCountry
|
1238
|
+
attributes:
|
1239
|
+
name: Jamaica
|
1240
|
+
created_at: 2010-01-22 19:42:27
|
1241
|
+
external_id:
|
1242
|
+
iso_code_2: JM
|
1243
|
+
iso_code_3: JAM
|
1244
|
+
id: "106"
|
1245
|
+
display: "1"
|
1246
|
+
|
1247
|
+
attributes_cache: {}
|
1248
|
+
|
1249
|
+
- !ruby/object:GeoCountry
|
1250
|
+
attributes:
|
1251
|
+
name: Japan
|
1252
|
+
created_at: 2010-01-22 19:42:27
|
1253
|
+
external_id:
|
1254
|
+
iso_code_2: JP
|
1255
|
+
iso_code_3: JPN
|
1256
|
+
id: "107"
|
1257
|
+
display: "1"
|
1258
|
+
|
1259
|
+
attributes_cache: {}
|
1260
|
+
|
1261
|
+
- !ruby/object:GeoCountry
|
1262
|
+
attributes:
|
1263
|
+
name: Jordan
|
1264
|
+
created_at: 2010-01-22 19:42:27
|
1265
|
+
external_id:
|
1266
|
+
iso_code_2: JO
|
1267
|
+
iso_code_3: JOR
|
1268
|
+
id: "108"
|
1269
|
+
display: "1"
|
1270
|
+
|
1271
|
+
attributes_cache: {}
|
1272
|
+
|
1273
|
+
- !ruby/object:GeoCountry
|
1274
|
+
attributes:
|
1275
|
+
name: Kazakhstan
|
1276
|
+
created_at: 2010-01-22 19:42:27
|
1277
|
+
external_id:
|
1278
|
+
iso_code_2: KZ
|
1279
|
+
iso_code_3: KAZ
|
1280
|
+
id: "109"
|
1281
|
+
display: "1"
|
1282
|
+
|
1283
|
+
attributes_cache: {}
|
1284
|
+
|
1285
|
+
- !ruby/object:GeoCountry
|
1286
|
+
attributes:
|
1287
|
+
name: Kenya
|
1288
|
+
created_at: 2010-01-22 19:42:28
|
1289
|
+
external_id:
|
1290
|
+
iso_code_2: KE
|
1291
|
+
iso_code_3: KEN
|
1292
|
+
id: "110"
|
1293
|
+
display: "1"
|
1294
|
+
|
1295
|
+
attributes_cache: {}
|
1296
|
+
|
1297
|
+
- !ruby/object:GeoCountry
|
1298
|
+
attributes:
|
1299
|
+
name: Kiribati
|
1300
|
+
created_at: 2010-01-22 19:42:28
|
1301
|
+
external_id:
|
1302
|
+
iso_code_2: KI
|
1303
|
+
iso_code_3: KIR
|
1304
|
+
id: "111"
|
1305
|
+
display: "1"
|
1306
|
+
|
1307
|
+
attributes_cache: {}
|
1308
|
+
|
1309
|
+
- !ruby/object:GeoCountry
|
1310
|
+
attributes:
|
1311
|
+
name: "Korea, Democratic People's Republic of"
|
1312
|
+
created_at: 2010-01-22 19:42:28
|
1313
|
+
external_id:
|
1314
|
+
iso_code_2: KP
|
1315
|
+
iso_code_3: PRK
|
1316
|
+
id: "112"
|
1317
|
+
display: "1"
|
1318
|
+
|
1319
|
+
attributes_cache: {}
|
1320
|
+
|
1321
|
+
- !ruby/object:GeoCountry
|
1322
|
+
attributes:
|
1323
|
+
name: "Korea, Republic of"
|
1324
|
+
created_at: 2010-01-22 19:42:28
|
1325
|
+
external_id:
|
1326
|
+
iso_code_2: KR
|
1327
|
+
iso_code_3: KOR
|
1328
|
+
id: "113"
|
1329
|
+
display: "1"
|
1330
|
+
|
1331
|
+
attributes_cache: {}
|
1332
|
+
|
1333
|
+
- !ruby/object:GeoCountry
|
1334
|
+
attributes:
|
1335
|
+
name: Kuwait
|
1336
|
+
created_at: 2010-01-22 19:42:28
|
1337
|
+
external_id:
|
1338
|
+
iso_code_2: KW
|
1339
|
+
iso_code_3: KWT
|
1340
|
+
id: "114"
|
1341
|
+
display: "1"
|
1342
|
+
|
1343
|
+
attributes_cache: {}
|
1344
|
+
|
1345
|
+
- !ruby/object:GeoCountry
|
1346
|
+
attributes:
|
1347
|
+
name: Kyrgyzstan
|
1348
|
+
created_at: 2010-01-22 19:42:28
|
1349
|
+
external_id:
|
1350
|
+
iso_code_2: KG
|
1351
|
+
iso_code_3: KGZ
|
1352
|
+
id: "115"
|
1353
|
+
display: "1"
|
1354
|
+
|
1355
|
+
attributes_cache: {}
|
1356
|
+
|
1357
|
+
- !ruby/object:GeoCountry
|
1358
|
+
attributes:
|
1359
|
+
name: Lao Peoples Democratic Republic
|
1360
|
+
created_at: 2010-01-22 19:42:28
|
1361
|
+
external_id:
|
1362
|
+
iso_code_2: LA
|
1363
|
+
iso_code_3: LAO
|
1364
|
+
id: "116"
|
1365
|
+
display: "1"
|
1366
|
+
|
1367
|
+
attributes_cache: {}
|
1368
|
+
|
1369
|
+
- !ruby/object:GeoCountry
|
1370
|
+
attributes:
|
1371
|
+
name: Latvia
|
1372
|
+
created_at: 2010-01-22 19:42:28
|
1373
|
+
external_id:
|
1374
|
+
iso_code_2: LV
|
1375
|
+
iso_code_3: LVA
|
1376
|
+
id: "117"
|
1377
|
+
display: "1"
|
1378
|
+
|
1379
|
+
attributes_cache: {}
|
1380
|
+
|
1381
|
+
- !ruby/object:GeoCountry
|
1382
|
+
attributes:
|
1383
|
+
name: Lebanon
|
1384
|
+
created_at: 2010-01-22 19:42:28
|
1385
|
+
external_id:
|
1386
|
+
iso_code_2: LB
|
1387
|
+
iso_code_3: LBN
|
1388
|
+
id: "118"
|
1389
|
+
display: "1"
|
1390
|
+
|
1391
|
+
attributes_cache: {}
|
1392
|
+
|
1393
|
+
- !ruby/object:GeoCountry
|
1394
|
+
attributes:
|
1395
|
+
name: Lesotho
|
1396
|
+
created_at: 2010-01-22 19:42:28
|
1397
|
+
external_id:
|
1398
|
+
iso_code_2: LS
|
1399
|
+
iso_code_3: LSO
|
1400
|
+
id: "119"
|
1401
|
+
display: "1"
|
1402
|
+
|
1403
|
+
attributes_cache: {}
|
1404
|
+
|
1405
|
+
- !ruby/object:GeoCountry
|
1406
|
+
attributes:
|
1407
|
+
name: Liberia
|
1408
|
+
created_at: 2010-01-22 19:42:28
|
1409
|
+
external_id:
|
1410
|
+
iso_code_2: LR
|
1411
|
+
iso_code_3: LBR
|
1412
|
+
id: "120"
|
1413
|
+
display: "1"
|
1414
|
+
|
1415
|
+
attributes_cache: {}
|
1416
|
+
|
1417
|
+
- !ruby/object:GeoCountry
|
1418
|
+
attributes:
|
1419
|
+
name: Libyan Arab Jamahiriya
|
1420
|
+
created_at: 2010-01-22 19:42:28
|
1421
|
+
external_id:
|
1422
|
+
iso_code_2: LY
|
1423
|
+
iso_code_3: LBY
|
1424
|
+
id: "121"
|
1425
|
+
display: "1"
|
1426
|
+
|
1427
|
+
attributes_cache: {}
|
1428
|
+
|
1429
|
+
- !ruby/object:GeoCountry
|
1430
|
+
attributes:
|
1431
|
+
name: Liechtenstein
|
1432
|
+
created_at: 2010-01-22 19:42:28
|
1433
|
+
external_id:
|
1434
|
+
iso_code_2: LI
|
1435
|
+
iso_code_3: LIE
|
1436
|
+
id: "122"
|
1437
|
+
display: "1"
|
1438
|
+
|
1439
|
+
attributes_cache: {}
|
1440
|
+
|
1441
|
+
- !ruby/object:GeoCountry
|
1442
|
+
attributes:
|
1443
|
+
name: Lithuania
|
1444
|
+
created_at: 2010-01-22 19:42:28
|
1445
|
+
external_id:
|
1446
|
+
iso_code_2: LT
|
1447
|
+
iso_code_3: LTU
|
1448
|
+
id: "123"
|
1449
|
+
display: "1"
|
1450
|
+
|
1451
|
+
attributes_cache: {}
|
1452
|
+
|
1453
|
+
- !ruby/object:GeoCountry
|
1454
|
+
attributes:
|
1455
|
+
name: Luxembourg
|
1456
|
+
created_at: 2010-01-22 19:42:28
|
1457
|
+
external_id:
|
1458
|
+
iso_code_2: LU
|
1459
|
+
iso_code_3: LUX
|
1460
|
+
id: "124"
|
1461
|
+
display: "1"
|
1462
|
+
|
1463
|
+
attributes_cache: {}
|
1464
|
+
|
1465
|
+
- !ruby/object:GeoCountry
|
1466
|
+
attributes:
|
1467
|
+
name: Macao
|
1468
|
+
created_at: 2010-01-22 19:42:29
|
1469
|
+
external_id:
|
1470
|
+
iso_code_2: MO
|
1471
|
+
iso_code_3: MAC
|
1472
|
+
id: "125"
|
1473
|
+
display: "1"
|
1474
|
+
|
1475
|
+
attributes_cache: {}
|
1476
|
+
|
1477
|
+
- !ruby/object:GeoCountry
|
1478
|
+
attributes:
|
1479
|
+
name: "Macedonia, The Former Yugoslav Republic of"
|
1480
|
+
created_at: 2010-01-22 19:42:29
|
1481
|
+
external_id:
|
1482
|
+
iso_code_2: MK
|
1483
|
+
iso_code_3: MKD
|
1484
|
+
id: "126"
|
1485
|
+
display: "1"
|
1486
|
+
|
1487
|
+
attributes_cache: {}
|
1488
|
+
|
1489
|
+
- !ruby/object:GeoCountry
|
1490
|
+
attributes:
|
1491
|
+
name: Madagascar
|
1492
|
+
created_at: 2010-01-22 19:42:29
|
1493
|
+
external_id:
|
1494
|
+
iso_code_2: MG
|
1495
|
+
iso_code_3: MDG
|
1496
|
+
id: "127"
|
1497
|
+
display: "1"
|
1498
|
+
|
1499
|
+
attributes_cache: {}
|
1500
|
+
|
1501
|
+
- !ruby/object:GeoCountry
|
1502
|
+
attributes:
|
1503
|
+
name: Malawi
|
1504
|
+
created_at: 2010-01-22 19:42:29
|
1505
|
+
external_id:
|
1506
|
+
iso_code_2: MW
|
1507
|
+
iso_code_3: MWI
|
1508
|
+
id: "128"
|
1509
|
+
display: "1"
|
1510
|
+
|
1511
|
+
attributes_cache: {}
|
1512
|
+
|
1513
|
+
- !ruby/object:GeoCountry
|
1514
|
+
attributes:
|
1515
|
+
name: Malaysia
|
1516
|
+
created_at: 2010-01-22 19:42:29
|
1517
|
+
external_id:
|
1518
|
+
iso_code_2: MY
|
1519
|
+
iso_code_3: MYS
|
1520
|
+
id: "129"
|
1521
|
+
display: "1"
|
1522
|
+
|
1523
|
+
attributes_cache: {}
|
1524
|
+
|
1525
|
+
- !ruby/object:GeoCountry
|
1526
|
+
attributes:
|
1527
|
+
name: Maldives
|
1528
|
+
created_at: 2010-01-22 19:42:29
|
1529
|
+
external_id:
|
1530
|
+
iso_code_2: MV
|
1531
|
+
iso_code_3: MDV
|
1532
|
+
id: "130"
|
1533
|
+
display: "1"
|
1534
|
+
|
1535
|
+
attributes_cache: {}
|
1536
|
+
|
1537
|
+
- !ruby/object:GeoCountry
|
1538
|
+
attributes:
|
1539
|
+
name: Mali
|
1540
|
+
created_at: 2010-01-22 19:42:29
|
1541
|
+
external_id:
|
1542
|
+
iso_code_2: ML
|
1543
|
+
iso_code_3: MLI
|
1544
|
+
id: "131"
|
1545
|
+
display: "1"
|
1546
|
+
|
1547
|
+
attributes_cache: {}
|
1548
|
+
|
1549
|
+
- !ruby/object:GeoCountry
|
1550
|
+
attributes:
|
1551
|
+
name: Malta
|
1552
|
+
created_at: 2010-01-22 19:42:29
|
1553
|
+
external_id:
|
1554
|
+
iso_code_2: MT
|
1555
|
+
iso_code_3: MLT
|
1556
|
+
id: "132"
|
1557
|
+
display: "1"
|
1558
|
+
|
1559
|
+
attributes_cache: {}
|
1560
|
+
|
1561
|
+
- !ruby/object:GeoCountry
|
1562
|
+
attributes:
|
1563
|
+
name: Marshall Islands
|
1564
|
+
created_at: 2010-01-22 19:42:29
|
1565
|
+
external_id:
|
1566
|
+
iso_code_2: MH
|
1567
|
+
iso_code_3: MHL
|
1568
|
+
id: "133"
|
1569
|
+
display: "1"
|
1570
|
+
|
1571
|
+
attributes_cache: {}
|
1572
|
+
|
1573
|
+
- !ruby/object:GeoCountry
|
1574
|
+
attributes:
|
1575
|
+
name: Martinique
|
1576
|
+
created_at: 2010-01-22 19:42:29
|
1577
|
+
external_id:
|
1578
|
+
iso_code_2: MQ
|
1579
|
+
iso_code_3: MTQ
|
1580
|
+
id: "134"
|
1581
|
+
display: "1"
|
1582
|
+
|
1583
|
+
attributes_cache: {}
|
1584
|
+
|
1585
|
+
- !ruby/object:GeoCountry
|
1586
|
+
attributes:
|
1587
|
+
name: Mauritania
|
1588
|
+
created_at: 2010-01-22 19:42:29
|
1589
|
+
external_id:
|
1590
|
+
iso_code_2: MR
|
1591
|
+
iso_code_3: MRT
|
1592
|
+
id: "135"
|
1593
|
+
display: "1"
|
1594
|
+
|
1595
|
+
attributes_cache: {}
|
1596
|
+
|
1597
|
+
- !ruby/object:GeoCountry
|
1598
|
+
attributes:
|
1599
|
+
name: Mauritius
|
1600
|
+
created_at: 2010-01-22 19:42:29
|
1601
|
+
external_id:
|
1602
|
+
iso_code_2: MU
|
1603
|
+
iso_code_3: MUS
|
1604
|
+
id: "136"
|
1605
|
+
display: "1"
|
1606
|
+
|
1607
|
+
attributes_cache: {}
|
1608
|
+
|
1609
|
+
- !ruby/object:GeoCountry
|
1610
|
+
attributes:
|
1611
|
+
name: Mayotte
|
1612
|
+
created_at: 2010-01-22 19:42:29
|
1613
|
+
external_id:
|
1614
|
+
iso_code_2: YT
|
1615
|
+
iso_code_3: MYT
|
1616
|
+
id: "137"
|
1617
|
+
display: "1"
|
1618
|
+
|
1619
|
+
attributes_cache: {}
|
1620
|
+
|
1621
|
+
- !ruby/object:GeoCountry
|
1622
|
+
attributes:
|
1623
|
+
name: Mexico
|
1624
|
+
created_at: 2010-01-22 19:42:29
|
1625
|
+
external_id:
|
1626
|
+
iso_code_2: MX
|
1627
|
+
iso_code_3: MEX
|
1628
|
+
id: "138"
|
1629
|
+
display: "1"
|
1630
|
+
|
1631
|
+
attributes_cache: {}
|
1632
|
+
|
1633
|
+
- !ruby/object:GeoCountry
|
1634
|
+
attributes:
|
1635
|
+
name: "Micronesia, Federated States of"
|
1636
|
+
created_at: 2010-01-22 19:42:29
|
1637
|
+
external_id:
|
1638
|
+
iso_code_2: FM
|
1639
|
+
iso_code_3: FSM
|
1640
|
+
id: "139"
|
1641
|
+
display: "1"
|
1642
|
+
|
1643
|
+
attributes_cache: {}
|
1644
|
+
|
1645
|
+
- !ruby/object:GeoCountry
|
1646
|
+
attributes:
|
1647
|
+
name: "Moldova, Republic of"
|
1648
|
+
created_at: 2010-01-22 19:42:29
|
1649
|
+
external_id:
|
1650
|
+
iso_code_2: MD
|
1651
|
+
iso_code_3: MDA
|
1652
|
+
id: "140"
|
1653
|
+
display: "1"
|
1654
|
+
|
1655
|
+
attributes_cache: {}
|
1656
|
+
|
1657
|
+
- !ruby/object:GeoCountry
|
1658
|
+
attributes:
|
1659
|
+
name: Monaco
|
1660
|
+
created_at: 2010-01-22 19:42:29
|
1661
|
+
external_id:
|
1662
|
+
iso_code_2: MC
|
1663
|
+
iso_code_3: MCO
|
1664
|
+
id: "141"
|
1665
|
+
display: "1"
|
1666
|
+
|
1667
|
+
attributes_cache: {}
|
1668
|
+
|
1669
|
+
- !ruby/object:GeoCountry
|
1670
|
+
attributes:
|
1671
|
+
name: Mongolia
|
1672
|
+
created_at: 2010-01-22 19:42:29
|
1673
|
+
external_id:
|
1674
|
+
iso_code_2: MN
|
1675
|
+
iso_code_3: MNG
|
1676
|
+
id: "142"
|
1677
|
+
display: "1"
|
1678
|
+
|
1679
|
+
attributes_cache: {}
|
1680
|
+
|
1681
|
+
- !ruby/object:GeoCountry
|
1682
|
+
attributes:
|
1683
|
+
name: Montserrat
|
1684
|
+
created_at: 2010-01-22 19:42:29
|
1685
|
+
external_id:
|
1686
|
+
iso_code_2: MS
|
1687
|
+
iso_code_3: MSR
|
1688
|
+
id: "143"
|
1689
|
+
display: "1"
|
1690
|
+
|
1691
|
+
attributes_cache: {}
|
1692
|
+
|
1693
|
+
- !ruby/object:GeoCountry
|
1694
|
+
attributes:
|
1695
|
+
name: Morocco
|
1696
|
+
created_at: 2010-01-22 19:42:29
|
1697
|
+
external_id:
|
1698
|
+
iso_code_2: MA
|
1699
|
+
iso_code_3: MAR
|
1700
|
+
id: "144"
|
1701
|
+
display: "1"
|
1702
|
+
|
1703
|
+
attributes_cache: {}
|
1704
|
+
|
1705
|
+
- !ruby/object:GeoCountry
|
1706
|
+
attributes:
|
1707
|
+
name: Mozambique
|
1708
|
+
created_at: 2010-01-22 19:42:29
|
1709
|
+
external_id:
|
1710
|
+
iso_code_2: MZ
|
1711
|
+
iso_code_3: MOZ
|
1712
|
+
id: "145"
|
1713
|
+
display: "1"
|
1714
|
+
|
1715
|
+
attributes_cache: {}
|
1716
|
+
|
1717
|
+
- !ruby/object:GeoCountry
|
1718
|
+
attributes:
|
1719
|
+
name: Myanmar
|
1720
|
+
created_at: 2010-01-22 19:42:30
|
1721
|
+
external_id:
|
1722
|
+
iso_code_2: MM
|
1723
|
+
iso_code_3: MMR
|
1724
|
+
id: "146"
|
1725
|
+
display: "1"
|
1726
|
+
|
1727
|
+
attributes_cache: {}
|
1728
|
+
|
1729
|
+
- !ruby/object:GeoCountry
|
1730
|
+
attributes:
|
1731
|
+
name: Namibia
|
1732
|
+
created_at: 2010-01-22 19:42:30
|
1733
|
+
external_id:
|
1734
|
+
iso_code_2: NA
|
1735
|
+
iso_code_3: NAM
|
1736
|
+
id: "147"
|
1737
|
+
display: "1"
|
1738
|
+
|
1739
|
+
attributes_cache: {}
|
1740
|
+
|
1741
|
+
- !ruby/object:GeoCountry
|
1742
|
+
attributes:
|
1743
|
+
name: Nauru
|
1744
|
+
created_at: 2010-01-22 19:42:30
|
1745
|
+
external_id:
|
1746
|
+
iso_code_2: NR
|
1747
|
+
iso_code_3: NRU
|
1748
|
+
id: "148"
|
1749
|
+
display: "1"
|
1750
|
+
|
1751
|
+
attributes_cache: {}
|
1752
|
+
|
1753
|
+
- !ruby/object:GeoCountry
|
1754
|
+
attributes:
|
1755
|
+
name: Nepal
|
1756
|
+
created_at: 2010-01-22 19:42:30
|
1757
|
+
external_id:
|
1758
|
+
iso_code_2: NP
|
1759
|
+
iso_code_3: NPL
|
1760
|
+
id: "149"
|
1761
|
+
display: "1"
|
1762
|
+
|
1763
|
+
attributes_cache: {}
|
1764
|
+
|
1765
|
+
- !ruby/object:GeoCountry
|
1766
|
+
attributes:
|
1767
|
+
name: Netherlands
|
1768
|
+
created_at: 2010-01-22 19:42:30
|
1769
|
+
external_id:
|
1770
|
+
iso_code_2: NL
|
1771
|
+
iso_code_3: NLD
|
1772
|
+
id: "150"
|
1773
|
+
display: "1"
|
1774
|
+
|
1775
|
+
attributes_cache: {}
|
1776
|
+
|
1777
|
+
- !ruby/object:GeoCountry
|
1778
|
+
attributes:
|
1779
|
+
name: New Caledonia
|
1780
|
+
created_at: 2010-01-22 19:42:30
|
1781
|
+
external_id:
|
1782
|
+
iso_code_2: NC
|
1783
|
+
iso_code_3: NCL
|
1784
|
+
id: "152"
|
1785
|
+
display: "1"
|
1786
|
+
|
1787
|
+
attributes_cache: {}
|
1788
|
+
|
1789
|
+
- !ruby/object:GeoCountry
|
1790
|
+
attributes:
|
1791
|
+
name: New Zealand
|
1792
|
+
created_at: 2010-01-22 19:42:30
|
1793
|
+
external_id:
|
1794
|
+
iso_code_2: NZ
|
1795
|
+
iso_code_3: NZL
|
1796
|
+
id: "153"
|
1797
|
+
display: "1"
|
1798
|
+
|
1799
|
+
attributes_cache: {}
|
1800
|
+
|
1801
|
+
- !ruby/object:GeoCountry
|
1802
|
+
attributes:
|
1803
|
+
name: Nicaragua
|
1804
|
+
created_at: 2010-01-22 19:42:30
|
1805
|
+
external_id:
|
1806
|
+
iso_code_2: NI
|
1807
|
+
iso_code_3: NIC
|
1808
|
+
id: "154"
|
1809
|
+
display: "1"
|
1810
|
+
|
1811
|
+
attributes_cache: {}
|
1812
|
+
|
1813
|
+
- !ruby/object:GeoCountry
|
1814
|
+
attributes:
|
1815
|
+
name: Niger
|
1816
|
+
created_at: 2010-01-22 19:42:30
|
1817
|
+
external_id:
|
1818
|
+
iso_code_2: NE
|
1819
|
+
iso_code_3: NER
|
1820
|
+
id: "155"
|
1821
|
+
display: "1"
|
1822
|
+
|
1823
|
+
attributes_cache: {}
|
1824
|
+
|
1825
|
+
- !ruby/object:GeoCountry
|
1826
|
+
attributes:
|
1827
|
+
name: Nigeria
|
1828
|
+
created_at: 2010-01-22 19:42:30
|
1829
|
+
external_id:
|
1830
|
+
iso_code_2: NG
|
1831
|
+
iso_code_3: NGA
|
1832
|
+
id: "156"
|
1833
|
+
display: "1"
|
1834
|
+
|
1835
|
+
attributes_cache: {}
|
1836
|
+
|
1837
|
+
- !ruby/object:GeoCountry
|
1838
|
+
attributes:
|
1839
|
+
name: Niue
|
1840
|
+
created_at: 2010-01-22 19:42:30
|
1841
|
+
external_id:
|
1842
|
+
iso_code_2: NU
|
1843
|
+
iso_code_3: NIU
|
1844
|
+
id: "157"
|
1845
|
+
display: "1"
|
1846
|
+
|
1847
|
+
attributes_cache: {}
|
1848
|
+
|
1849
|
+
- !ruby/object:GeoCountry
|
1850
|
+
attributes:
|
1851
|
+
name: Norfolk Island
|
1852
|
+
created_at: 2010-01-22 19:42:30
|
1853
|
+
external_id:
|
1854
|
+
iso_code_2: NF
|
1855
|
+
iso_code_3: NFK
|
1856
|
+
id: "158"
|
1857
|
+
display: "1"
|
1858
|
+
|
1859
|
+
attributes_cache: {}
|
1860
|
+
|
1861
|
+
- !ruby/object:GeoCountry
|
1862
|
+
attributes:
|
1863
|
+
name: Northern Mariana Islands
|
1864
|
+
created_at: 2010-01-22 19:42:30
|
1865
|
+
external_id:
|
1866
|
+
iso_code_2: MP
|
1867
|
+
iso_code_3: MNP
|
1868
|
+
id: "159"
|
1869
|
+
display: "1"
|
1870
|
+
|
1871
|
+
attributes_cache: {}
|
1872
|
+
|
1873
|
+
- !ruby/object:GeoCountry
|
1874
|
+
attributes:
|
1875
|
+
name: Norway
|
1876
|
+
created_at: 2010-01-22 19:42:30
|
1877
|
+
external_id:
|
1878
|
+
iso_code_2: "NO"
|
1879
|
+
iso_code_3: NOR
|
1880
|
+
id: "160"
|
1881
|
+
display: "1"
|
1882
|
+
|
1883
|
+
attributes_cache: {}
|
1884
|
+
|
1885
|
+
- !ruby/object:GeoCountry
|
1886
|
+
attributes:
|
1887
|
+
name: Oman
|
1888
|
+
created_at: 2010-01-22 19:42:30
|
1889
|
+
external_id:
|
1890
|
+
iso_code_2: OM
|
1891
|
+
iso_code_3: OMN
|
1892
|
+
id: "161"
|
1893
|
+
display: "1"
|
1894
|
+
|
1895
|
+
attributes_cache: {}
|
1896
|
+
|
1897
|
+
- !ruby/object:GeoCountry
|
1898
|
+
attributes:
|
1899
|
+
name: Pakistan
|
1900
|
+
created_at: 2010-01-22 19:42:30
|
1901
|
+
external_id:
|
1902
|
+
iso_code_2: PK
|
1903
|
+
iso_code_3: PAK
|
1904
|
+
id: "162"
|
1905
|
+
display: "1"
|
1906
|
+
|
1907
|
+
attributes_cache: {}
|
1908
|
+
|
1909
|
+
- !ruby/object:GeoCountry
|
1910
|
+
attributes:
|
1911
|
+
name: Palau
|
1912
|
+
created_at: 2010-01-22 19:42:30
|
1913
|
+
external_id:
|
1914
|
+
iso_code_2: PW
|
1915
|
+
iso_code_3: PLW
|
1916
|
+
id: "163"
|
1917
|
+
display: "1"
|
1918
|
+
|
1919
|
+
attributes_cache: {}
|
1920
|
+
|
1921
|
+
- !ruby/object:GeoCountry
|
1922
|
+
attributes:
|
1923
|
+
name: Panama
|
1924
|
+
created_at: 2010-01-22 19:42:30
|
1925
|
+
external_id:
|
1926
|
+
iso_code_2: PA
|
1927
|
+
iso_code_3: PAN
|
1928
|
+
id: "164"
|
1929
|
+
display: "1"
|
1930
|
+
|
1931
|
+
attributes_cache: {}
|
1932
|
+
|
1933
|
+
- !ruby/object:GeoCountry
|
1934
|
+
attributes:
|
1935
|
+
name: Papua New Guinea
|
1936
|
+
created_at: 2010-01-22 19:42:30
|
1937
|
+
external_id:
|
1938
|
+
iso_code_2: PG
|
1939
|
+
iso_code_3: PNG
|
1940
|
+
id: "165"
|
1941
|
+
display: "1"
|
1942
|
+
|
1943
|
+
attributes_cache: {}
|
1944
|
+
|
1945
|
+
- !ruby/object:GeoCountry
|
1946
|
+
attributes:
|
1947
|
+
name: Paraguay
|
1948
|
+
created_at: 2010-01-22 19:42:30
|
1949
|
+
external_id:
|
1950
|
+
iso_code_2: PY
|
1951
|
+
iso_code_3: PRY
|
1952
|
+
id: "166"
|
1953
|
+
display: "1"
|
1954
|
+
|
1955
|
+
attributes_cache: {}
|
1956
|
+
|
1957
|
+
- !ruby/object:GeoCountry
|
1958
|
+
attributes:
|
1959
|
+
name: Peru
|
1960
|
+
created_at: 2010-01-22 19:42:30
|
1961
|
+
external_id:
|
1962
|
+
iso_code_2: PE
|
1963
|
+
iso_code_3: PER
|
1964
|
+
id: "167"
|
1965
|
+
display: "1"
|
1966
|
+
|
1967
|
+
attributes_cache: {}
|
1968
|
+
|
1969
|
+
- !ruby/object:GeoCountry
|
1970
|
+
attributes:
|
1971
|
+
name: Philippines
|
1972
|
+
created_at: 2010-01-22 19:42:31
|
1973
|
+
external_id:
|
1974
|
+
iso_code_2: PH
|
1975
|
+
iso_code_3: PHL
|
1976
|
+
id: "168"
|
1977
|
+
display: "1"
|
1978
|
+
|
1979
|
+
attributes_cache: {}
|
1980
|
+
|
1981
|
+
- !ruby/object:GeoCountry
|
1982
|
+
attributes:
|
1983
|
+
name: Pitcairn
|
1984
|
+
created_at: 2010-01-22 19:42:31
|
1985
|
+
external_id:
|
1986
|
+
iso_code_2: PN
|
1987
|
+
iso_code_3: PCN
|
1988
|
+
id: "169"
|
1989
|
+
display: "1"
|
1990
|
+
|
1991
|
+
attributes_cache: {}
|
1992
|
+
|
1993
|
+
- !ruby/object:GeoCountry
|
1994
|
+
attributes:
|
1995
|
+
name: Poland
|
1996
|
+
created_at: 2010-01-22 19:42:31
|
1997
|
+
external_id:
|
1998
|
+
iso_code_2: PL
|
1999
|
+
iso_code_3: POL
|
2000
|
+
id: "170"
|
2001
|
+
display: "1"
|
2002
|
+
|
2003
|
+
attributes_cache: {}
|
2004
|
+
|
2005
|
+
- !ruby/object:GeoCountry
|
2006
|
+
attributes:
|
2007
|
+
name: Portugal
|
2008
|
+
created_at: 2010-01-22 19:42:31
|
2009
|
+
external_id:
|
2010
|
+
iso_code_2: PT
|
2011
|
+
iso_code_3: PRT
|
2012
|
+
id: "171"
|
2013
|
+
display: "1"
|
2014
|
+
|
2015
|
+
attributes_cache: {}
|
2016
|
+
|
2017
|
+
- !ruby/object:GeoCountry
|
2018
|
+
attributes:
|
2019
|
+
name: Puerto Rico
|
2020
|
+
created_at: 2010-01-22 19:42:31
|
2021
|
+
external_id:
|
2022
|
+
iso_code_2: PR
|
2023
|
+
iso_code_3: PRI
|
2024
|
+
id: "172"
|
2025
|
+
display: "1"
|
2026
|
+
|
2027
|
+
attributes_cache: {}
|
2028
|
+
|
2029
|
+
- !ruby/object:GeoCountry
|
2030
|
+
attributes:
|
2031
|
+
name: Qatar
|
2032
|
+
created_at: 2010-01-22 19:42:31
|
2033
|
+
external_id:
|
2034
|
+
iso_code_2: QA
|
2035
|
+
iso_code_3: QAT
|
2036
|
+
id: "173"
|
2037
|
+
display: "1"
|
2038
|
+
|
2039
|
+
attributes_cache: {}
|
2040
|
+
|
2041
|
+
- !ruby/object:GeoCountry
|
2042
|
+
attributes:
|
2043
|
+
name: Reunion
|
2044
|
+
created_at: 2010-01-22 19:42:31
|
2045
|
+
external_id:
|
2046
|
+
iso_code_2: RE
|
2047
|
+
iso_code_3: REU
|
2048
|
+
id: "174"
|
2049
|
+
display: "1"
|
2050
|
+
|
2051
|
+
attributes_cache: {}
|
2052
|
+
|
2053
|
+
- !ruby/object:GeoCountry
|
2054
|
+
attributes:
|
2055
|
+
name: Romania
|
2056
|
+
created_at: 2010-01-22 19:42:31
|
2057
|
+
external_id:
|
2058
|
+
iso_code_2: RO
|
2059
|
+
iso_code_3: ROM
|
2060
|
+
id: "175"
|
2061
|
+
display: "1"
|
2062
|
+
|
2063
|
+
attributes_cache: {}
|
2064
|
+
|
2065
|
+
- !ruby/object:GeoCountry
|
2066
|
+
attributes:
|
2067
|
+
name: Russian Federation
|
2068
|
+
created_at: 2010-01-22 19:42:31
|
2069
|
+
external_id:
|
2070
|
+
iso_code_2: RU
|
2071
|
+
iso_code_3: RUS
|
2072
|
+
id: "176"
|
2073
|
+
display: "1"
|
2074
|
+
|
2075
|
+
attributes_cache: {}
|
2076
|
+
|
2077
|
+
- !ruby/object:GeoCountry
|
2078
|
+
attributes:
|
2079
|
+
name: Rwanda
|
2080
|
+
created_at: 2010-01-22 19:42:31
|
2081
|
+
external_id:
|
2082
|
+
iso_code_2: RW
|
2083
|
+
iso_code_3: RWA
|
2084
|
+
id: "177"
|
2085
|
+
display: "1"
|
2086
|
+
|
2087
|
+
attributes_cache: {}
|
2088
|
+
|
2089
|
+
- !ruby/object:GeoCountry
|
2090
|
+
attributes:
|
2091
|
+
name: Saint Kitts and Nevis
|
2092
|
+
created_at: 2010-01-22 19:42:31
|
2093
|
+
external_id:
|
2094
|
+
iso_code_2: KN
|
2095
|
+
iso_code_3: KNA
|
2096
|
+
id: "178"
|
2097
|
+
display: "1"
|
2098
|
+
|
2099
|
+
attributes_cache: {}
|
2100
|
+
|
2101
|
+
- !ruby/object:GeoCountry
|
2102
|
+
attributes:
|
2103
|
+
name: Saint Lucia
|
2104
|
+
created_at: 2010-01-22 19:42:31
|
2105
|
+
external_id:
|
2106
|
+
iso_code_2: LC
|
2107
|
+
iso_code_3: LCA
|
2108
|
+
id: "179"
|
2109
|
+
display: "1"
|
2110
|
+
|
2111
|
+
attributes_cache: {}
|
2112
|
+
|
2113
|
+
- !ruby/object:GeoCountry
|
2114
|
+
attributes:
|
2115
|
+
name: Saint Vincent and the Grenadines
|
2116
|
+
created_at: 2010-01-22 19:42:31
|
2117
|
+
external_id:
|
2118
|
+
iso_code_2: VC
|
2119
|
+
iso_code_3: VCT
|
2120
|
+
id: "180"
|
2121
|
+
display: "1"
|
2122
|
+
|
2123
|
+
attributes_cache: {}
|
2124
|
+
|
2125
|
+
- !ruby/object:GeoCountry
|
2126
|
+
attributes:
|
2127
|
+
name: Samoa
|
2128
|
+
created_at: 2010-01-22 19:42:31
|
2129
|
+
external_id:
|
2130
|
+
iso_code_2: WS
|
2131
|
+
iso_code_3: WSM
|
2132
|
+
id: "181"
|
2133
|
+
display: "1"
|
2134
|
+
|
2135
|
+
attributes_cache: {}
|
2136
|
+
|
2137
|
+
- !ruby/object:GeoCountry
|
2138
|
+
attributes:
|
2139
|
+
name: San Marino
|
2140
|
+
created_at: 2010-01-22 19:42:31
|
2141
|
+
external_id:
|
2142
|
+
iso_code_2: SM
|
2143
|
+
iso_code_3: SMR
|
2144
|
+
id: "182"
|
2145
|
+
display: "1"
|
2146
|
+
|
2147
|
+
attributes_cache: {}
|
2148
|
+
|
2149
|
+
- !ruby/object:GeoCountry
|
2150
|
+
attributes:
|
2151
|
+
name: Sao Tome and Principe
|
2152
|
+
created_at: 2010-01-22 19:42:31
|
2153
|
+
external_id:
|
2154
|
+
iso_code_2: ST
|
2155
|
+
iso_code_3: STP
|
2156
|
+
id: "183"
|
2157
|
+
display: "1"
|
2158
|
+
|
2159
|
+
attributes_cache: {}
|
2160
|
+
|
2161
|
+
- !ruby/object:GeoCountry
|
2162
|
+
attributes:
|
2163
|
+
name: Saudi Arabia
|
2164
|
+
created_at: 2010-01-22 19:42:31
|
2165
|
+
external_id:
|
2166
|
+
iso_code_2: SA
|
2167
|
+
iso_code_3: SAU
|
2168
|
+
id: "184"
|
2169
|
+
display: "1"
|
2170
|
+
|
2171
|
+
attributes_cache: {}
|
2172
|
+
|
2173
|
+
- !ruby/object:GeoCountry
|
2174
|
+
attributes:
|
2175
|
+
name: Senegal
|
2176
|
+
created_at: 2010-01-22 19:42:31
|
2177
|
+
external_id:
|
2178
|
+
iso_code_2: SN
|
2179
|
+
iso_code_3: SEN
|
2180
|
+
id: "185"
|
2181
|
+
display: "1"
|
2182
|
+
|
2183
|
+
attributes_cache: {}
|
2184
|
+
|
2185
|
+
- !ruby/object:GeoCountry
|
2186
|
+
attributes:
|
2187
|
+
name: Seychelles
|
2188
|
+
created_at: 2010-01-22 19:42:31
|
2189
|
+
external_id:
|
2190
|
+
iso_code_2: SC
|
2191
|
+
iso_code_3: SYC
|
2192
|
+
id: "186"
|
2193
|
+
display: "1"
|
2194
|
+
|
2195
|
+
attributes_cache: {}
|
2196
|
+
|
2197
|
+
- !ruby/object:GeoCountry
|
2198
|
+
attributes:
|
2199
|
+
name: Sierra Leone
|
2200
|
+
created_at: 2010-01-22 19:42:31
|
2201
|
+
external_id:
|
2202
|
+
iso_code_2: SL
|
2203
|
+
iso_code_3: SLE
|
2204
|
+
id: "187"
|
2205
|
+
display: "1"
|
2206
|
+
|
2207
|
+
attributes_cache: {}
|
2208
|
+
|
2209
|
+
- !ruby/object:GeoCountry
|
2210
|
+
attributes:
|
2211
|
+
name: Singapore
|
2212
|
+
created_at: 2010-01-22 19:42:32
|
2213
|
+
external_id:
|
2214
|
+
iso_code_2: SG
|
2215
|
+
iso_code_3: SGP
|
2216
|
+
id: "188"
|
2217
|
+
display: "1"
|
2218
|
+
|
2219
|
+
attributes_cache: {}
|
2220
|
+
|
2221
|
+
- !ruby/object:GeoCountry
|
2222
|
+
attributes:
|
2223
|
+
name: Slovakia
|
2224
|
+
created_at: 2010-01-22 19:42:32
|
2225
|
+
external_id:
|
2226
|
+
iso_code_2: SK
|
2227
|
+
iso_code_3: SVK
|
2228
|
+
id: "189"
|
2229
|
+
display: "1"
|
2230
|
+
|
2231
|
+
attributes_cache: {}
|
2232
|
+
|
2233
|
+
- !ruby/object:GeoCountry
|
2234
|
+
attributes:
|
2235
|
+
name: Slovenia
|
2236
|
+
created_at: 2010-01-22 19:42:32
|
2237
|
+
external_id:
|
2238
|
+
iso_code_2: SI
|
2239
|
+
iso_code_3: SVN
|
2240
|
+
id: "190"
|
2241
|
+
display: "1"
|
2242
|
+
|
2243
|
+
attributes_cache: {}
|
2244
|
+
|
2245
|
+
- !ruby/object:GeoCountry
|
2246
|
+
attributes:
|
2247
|
+
name: Solomon Islands
|
2248
|
+
created_at: 2010-01-22 19:42:32
|
2249
|
+
external_id:
|
2250
|
+
iso_code_2: SB
|
2251
|
+
iso_code_3: SLB
|
2252
|
+
id: "191"
|
2253
|
+
display: "1"
|
2254
|
+
|
2255
|
+
attributes_cache: {}
|
2256
|
+
|
2257
|
+
- !ruby/object:GeoCountry
|
2258
|
+
attributes:
|
2259
|
+
name: Somalia
|
2260
|
+
created_at: 2010-01-22 19:42:32
|
2261
|
+
external_id:
|
2262
|
+
iso_code_2: SO
|
2263
|
+
iso_code_3: SOM
|
2264
|
+
id: "192"
|
2265
|
+
display: "1"
|
2266
|
+
|
2267
|
+
attributes_cache: {}
|
2268
|
+
|
2269
|
+
- !ruby/object:GeoCountry
|
2270
|
+
attributes:
|
2271
|
+
name: South Africa
|
2272
|
+
created_at: 2010-01-22 19:42:32
|
2273
|
+
external_id:
|
2274
|
+
iso_code_2: ZA
|
2275
|
+
iso_code_3: ZAF
|
2276
|
+
id: "193"
|
2277
|
+
display: "1"
|
2278
|
+
|
2279
|
+
attributes_cache: {}
|
2280
|
+
|
2281
|
+
- !ruby/object:GeoCountry
|
2282
|
+
attributes:
|
2283
|
+
name: South Georgia and the South Sandwich Islands
|
2284
|
+
created_at: 2010-01-22 19:42:32
|
2285
|
+
external_id:
|
2286
|
+
iso_code_2: GS
|
2287
|
+
iso_code_3: SGS
|
2288
|
+
id: "194"
|
2289
|
+
display: "1"
|
2290
|
+
|
2291
|
+
attributes_cache: {}
|
2292
|
+
|
2293
|
+
- !ruby/object:GeoCountry
|
2294
|
+
attributes:
|
2295
|
+
name: Spain
|
2296
|
+
created_at: 2010-01-22 19:42:32
|
2297
|
+
external_id:
|
2298
|
+
iso_code_2: ES
|
2299
|
+
iso_code_3: ESP
|
2300
|
+
id: "195"
|
2301
|
+
display: "1"
|
2302
|
+
|
2303
|
+
attributes_cache: {}
|
2304
|
+
|
2305
|
+
- !ruby/object:GeoCountry
|
2306
|
+
attributes:
|
2307
|
+
name: Sri Lanka
|
2308
|
+
created_at: 2010-01-22 19:42:32
|
2309
|
+
external_id:
|
2310
|
+
iso_code_2: LK
|
2311
|
+
iso_code_3: LKA
|
2312
|
+
id: "196"
|
2313
|
+
display: "1"
|
2314
|
+
|
2315
|
+
attributes_cache: {}
|
2316
|
+
|
2317
|
+
- !ruby/object:GeoCountry
|
2318
|
+
attributes:
|
2319
|
+
name: Saint Helena, Ascension and Tristan da Cunha
|
2320
|
+
created_at: 2010-01-22 19:42:32
|
2321
|
+
external_id:
|
2322
|
+
iso_code_2: SH
|
2323
|
+
iso_code_3: SHN
|
2324
|
+
id: "197"
|
2325
|
+
display: "1"
|
2326
|
+
|
2327
|
+
attributes_cache: {}
|
2328
|
+
|
2329
|
+
- !ruby/object:GeoCountry
|
2330
|
+
attributes:
|
2331
|
+
name: Saint Pierre and Miquelon
|
2332
|
+
created_at: 2010-01-22 19:42:32
|
2333
|
+
external_id:
|
2334
|
+
iso_code_2: PM
|
2335
|
+
iso_code_3: SPM
|
2336
|
+
id: "198"
|
2337
|
+
display: "1"
|
2338
|
+
|
2339
|
+
attributes_cache: {}
|
2340
|
+
|
2341
|
+
- !ruby/object:GeoCountry
|
2342
|
+
attributes:
|
2343
|
+
name: Sudan
|
2344
|
+
created_at: 2010-01-22 19:42:32
|
2345
|
+
external_id:
|
2346
|
+
iso_code_2: SD
|
2347
|
+
iso_code_3: SDN
|
2348
|
+
id: "199"
|
2349
|
+
display: "1"
|
2350
|
+
|
2351
|
+
attributes_cache: {}
|
2352
|
+
|
2353
|
+
- !ruby/object:GeoCountry
|
2354
|
+
attributes:
|
2355
|
+
name: Suriname
|
2356
|
+
created_at: 2010-01-22 19:42:32
|
2357
|
+
external_id:
|
2358
|
+
iso_code_2: SR
|
2359
|
+
iso_code_3: SUR
|
2360
|
+
id: "200"
|
2361
|
+
display: "1"
|
2362
|
+
|
2363
|
+
attributes_cache: {}
|
2364
|
+
|
2365
|
+
- !ruby/object:GeoCountry
|
2366
|
+
attributes:
|
2367
|
+
name: Svalbard and Jan Mayen
|
2368
|
+
created_at: 2010-01-22 19:42:32
|
2369
|
+
external_id:
|
2370
|
+
iso_code_2: SJ
|
2371
|
+
iso_code_3: SJM
|
2372
|
+
id: "201"
|
2373
|
+
display: "1"
|
2374
|
+
|
2375
|
+
attributes_cache: {}
|
2376
|
+
|
2377
|
+
- !ruby/object:GeoCountry
|
2378
|
+
attributes:
|
2379
|
+
name: Swaziland
|
2380
|
+
created_at: 2010-01-22 19:42:32
|
2381
|
+
external_id:
|
2382
|
+
iso_code_2: SZ
|
2383
|
+
iso_code_3: SWZ
|
2384
|
+
id: "202"
|
2385
|
+
display: "1"
|
2386
|
+
|
2387
|
+
attributes_cache: {}
|
2388
|
+
|
2389
|
+
- !ruby/object:GeoCountry
|
2390
|
+
attributes:
|
2391
|
+
name: Sweden
|
2392
|
+
created_at: 2010-01-22 19:42:32
|
2393
|
+
external_id:
|
2394
|
+
iso_code_2: SE
|
2395
|
+
iso_code_3: SWE
|
2396
|
+
id: "203"
|
2397
|
+
display: "1"
|
2398
|
+
|
2399
|
+
attributes_cache: {}
|
2400
|
+
|
2401
|
+
- !ruby/object:GeoCountry
|
2402
|
+
attributes:
|
2403
|
+
name: Switzerland
|
2404
|
+
created_at: 2010-01-22 19:42:32
|
2405
|
+
external_id:
|
2406
|
+
iso_code_2: CH
|
2407
|
+
iso_code_3: CHE
|
2408
|
+
id: "204"
|
2409
|
+
display: "1"
|
2410
|
+
|
2411
|
+
attributes_cache: {}
|
2412
|
+
|
2413
|
+
- !ruby/object:GeoCountry
|
2414
|
+
attributes:
|
2415
|
+
name: Syrian Arab Republic
|
2416
|
+
created_at: 2010-01-22 19:42:32
|
2417
|
+
external_id:
|
2418
|
+
iso_code_2: SY
|
2419
|
+
iso_code_3: SYR
|
2420
|
+
id: "205"
|
2421
|
+
display: "1"
|
2422
|
+
|
2423
|
+
attributes_cache: {}
|
2424
|
+
|
2425
|
+
- !ruby/object:GeoCountry
|
2426
|
+
attributes:
|
2427
|
+
name: Taiwan
|
2428
|
+
created_at: 2010-01-22 19:42:32
|
2429
|
+
external_id:
|
2430
|
+
iso_code_2: TW
|
2431
|
+
iso_code_3: TWN
|
2432
|
+
id: "206"
|
2433
|
+
display: "1"
|
2434
|
+
|
2435
|
+
attributes_cache: {}
|
2436
|
+
|
2437
|
+
- !ruby/object:GeoCountry
|
2438
|
+
attributes:
|
2439
|
+
name: Tajikistan
|
2440
|
+
created_at: 2010-01-22 19:42:32
|
2441
|
+
external_id:
|
2442
|
+
iso_code_2: TJ
|
2443
|
+
iso_code_3: TJK
|
2444
|
+
id: "207"
|
2445
|
+
display: "1"
|
2446
|
+
|
2447
|
+
attributes_cache: {}
|
2448
|
+
|
2449
|
+
- !ruby/object:GeoCountry
|
2450
|
+
attributes:
|
2451
|
+
name: "Tanzania, United Republic of"
|
2452
|
+
created_at: 2010-01-22 19:42:32
|
2453
|
+
external_id:
|
2454
|
+
iso_code_2: TZ
|
2455
|
+
iso_code_3: TZA
|
2456
|
+
id: "208"
|
2457
|
+
display: "1"
|
2458
|
+
|
2459
|
+
attributes_cache: {}
|
2460
|
+
|
2461
|
+
- !ruby/object:GeoCountry
|
2462
|
+
attributes:
|
2463
|
+
name: Thailand
|
2464
|
+
created_at: 2010-01-22 19:42:32
|
2465
|
+
external_id:
|
2466
|
+
iso_code_2: TH
|
2467
|
+
iso_code_3: THA
|
2468
|
+
id: "209"
|
2469
|
+
display: "1"
|
2470
|
+
|
2471
|
+
attributes_cache: {}
|
2472
|
+
|
2473
|
+
- !ruby/object:GeoCountry
|
2474
|
+
attributes:
|
2475
|
+
name: Togo
|
2476
|
+
created_at: 2010-01-22 19:42:33
|
2477
|
+
external_id:
|
2478
|
+
iso_code_2: TG
|
2479
|
+
iso_code_3: TGO
|
2480
|
+
id: "210"
|
2481
|
+
display: "1"
|
2482
|
+
|
2483
|
+
attributes_cache: {}
|
2484
|
+
|
2485
|
+
- !ruby/object:GeoCountry
|
2486
|
+
attributes:
|
2487
|
+
name: Tokelau
|
2488
|
+
created_at: 2010-01-22 19:42:33
|
2489
|
+
external_id:
|
2490
|
+
iso_code_2: TK
|
2491
|
+
iso_code_3: TKL
|
2492
|
+
id: "211"
|
2493
|
+
display: "1"
|
2494
|
+
|
2495
|
+
attributes_cache: {}
|
2496
|
+
|
2497
|
+
- !ruby/object:GeoCountry
|
2498
|
+
attributes:
|
2499
|
+
name: Tonga
|
2500
|
+
created_at: 2010-01-22 19:42:33
|
2501
|
+
external_id:
|
2502
|
+
iso_code_2: TO
|
2503
|
+
iso_code_3: TON
|
2504
|
+
id: "212"
|
2505
|
+
display: "1"
|
2506
|
+
|
2507
|
+
attributes_cache: {}
|
2508
|
+
|
2509
|
+
- !ruby/object:GeoCountry
|
2510
|
+
attributes:
|
2511
|
+
name: Trinidad and Tobago
|
2512
|
+
created_at: 2010-01-22 19:42:33
|
2513
|
+
external_id:
|
2514
|
+
iso_code_2: TT
|
2515
|
+
iso_code_3: TTO
|
2516
|
+
id: "213"
|
2517
|
+
display: "1"
|
2518
|
+
|
2519
|
+
attributes_cache: {}
|
2520
|
+
|
2521
|
+
- !ruby/object:GeoCountry
|
2522
|
+
attributes:
|
2523
|
+
name: Tunisia
|
2524
|
+
created_at: 2010-01-22 19:42:33
|
2525
|
+
external_id:
|
2526
|
+
iso_code_2: TN
|
2527
|
+
iso_code_3: TUN
|
2528
|
+
id: "214"
|
2529
|
+
display: "1"
|
2530
|
+
|
2531
|
+
attributes_cache: {}
|
2532
|
+
|
2533
|
+
- !ruby/object:GeoCountry
|
2534
|
+
attributes:
|
2535
|
+
name: Turkey
|
2536
|
+
created_at: 2010-01-22 19:42:33
|
2537
|
+
external_id:
|
2538
|
+
iso_code_2: TR
|
2539
|
+
iso_code_3: TUR
|
2540
|
+
id: "215"
|
2541
|
+
display: "1"
|
2542
|
+
|
2543
|
+
attributes_cache: {}
|
2544
|
+
|
2545
|
+
- !ruby/object:GeoCountry
|
2546
|
+
attributes:
|
2547
|
+
name: Turkmenistan
|
2548
|
+
created_at: 2010-01-22 19:42:33
|
2549
|
+
external_id:
|
2550
|
+
iso_code_2: TM
|
2551
|
+
iso_code_3: TKM
|
2552
|
+
id: "216"
|
2553
|
+
display: "1"
|
2554
|
+
|
2555
|
+
attributes_cache: {}
|
2556
|
+
|
2557
|
+
- !ruby/object:GeoCountry
|
2558
|
+
attributes:
|
2559
|
+
name: Turks and Caicos Islands
|
2560
|
+
created_at: 2010-01-22 19:42:33
|
2561
|
+
external_id:
|
2562
|
+
iso_code_2: TC
|
2563
|
+
iso_code_3: TCA
|
2564
|
+
id: "217"
|
2565
|
+
display: "1"
|
2566
|
+
|
2567
|
+
attributes_cache: {}
|
2568
|
+
|
2569
|
+
- !ruby/object:GeoCountry
|
2570
|
+
attributes:
|
2571
|
+
name: Tuvalu
|
2572
|
+
created_at: 2010-01-22 19:42:33
|
2573
|
+
external_id:
|
2574
|
+
iso_code_2: TV
|
2575
|
+
iso_code_3: TUV
|
2576
|
+
id: "218"
|
2577
|
+
display: "1"
|
2578
|
+
|
2579
|
+
attributes_cache: {}
|
2580
|
+
|
2581
|
+
- !ruby/object:GeoCountry
|
2582
|
+
attributes:
|
2583
|
+
name: Uganda
|
2584
|
+
created_at: 2010-01-22 19:42:33
|
2585
|
+
external_id:
|
2586
|
+
iso_code_2: UG
|
2587
|
+
iso_code_3: UGA
|
2588
|
+
id: "219"
|
2589
|
+
display: "1"
|
2590
|
+
|
2591
|
+
attributes_cache: {}
|
2592
|
+
|
2593
|
+
- !ruby/object:GeoCountry
|
2594
|
+
attributes:
|
2595
|
+
name: Ukraine
|
2596
|
+
created_at: 2010-01-22 19:42:33
|
2597
|
+
external_id:
|
2598
|
+
iso_code_2: UA
|
2599
|
+
iso_code_3: UKR
|
2600
|
+
id: "220"
|
2601
|
+
display: "1"
|
2602
|
+
|
2603
|
+
attributes_cache: {}
|
2604
|
+
|
2605
|
+
- !ruby/object:GeoCountry
|
2606
|
+
attributes:
|
2607
|
+
name: United Arab Emirates
|
2608
|
+
created_at: 2010-01-22 19:42:33
|
2609
|
+
external_id:
|
2610
|
+
iso_code_2: AE
|
2611
|
+
iso_code_3: ARE
|
2612
|
+
id: "221"
|
2613
|
+
display: "1"
|
2614
|
+
|
2615
|
+
attributes_cache: {}
|
2616
|
+
|
2617
|
+
- !ruby/object:GeoCountry
|
2618
|
+
attributes:
|
2619
|
+
name: United Kingdom
|
2620
|
+
created_at: 2010-01-22 19:42:33
|
2621
|
+
external_id:
|
2622
|
+
iso_code_2: GB
|
2623
|
+
iso_code_3: GBR
|
2624
|
+
id: "222"
|
2625
|
+
display: "1"
|
2626
|
+
|
2627
|
+
attributes_cache: {}
|
2628
|
+
|
2629
|
+
- !ruby/object:GeoCountry
|
2630
|
+
attributes:
|
2631
|
+
name: United States
|
2632
|
+
created_at: 2010-01-22 19:42:33
|
2633
|
+
external_id:
|
2634
|
+
iso_code_2: US
|
2635
|
+
iso_code_3: USA
|
2636
|
+
id: "223"
|
2637
|
+
display: "1"
|
2638
|
+
|
2639
|
+
attributes_cache: {}
|
2640
|
+
|
2641
|
+
- !ruby/object:GeoCountry
|
2642
|
+
attributes:
|
2643
|
+
name: United States Minor Outlying Islands
|
2644
|
+
created_at: 2010-01-22 19:42:33
|
2645
|
+
external_id:
|
2646
|
+
iso_code_2: UM
|
2647
|
+
iso_code_3: UMI
|
2648
|
+
id: "224"
|
2649
|
+
display: "1"
|
2650
|
+
|
2651
|
+
attributes_cache: {}
|
2652
|
+
|
2653
|
+
- !ruby/object:GeoCountry
|
2654
|
+
attributes:
|
2655
|
+
name: Uruguay
|
2656
|
+
created_at: 2010-01-22 19:42:34
|
2657
|
+
external_id:
|
2658
|
+
iso_code_2: UY
|
2659
|
+
iso_code_3: URY
|
2660
|
+
id: "225"
|
2661
|
+
display: "1"
|
2662
|
+
|
2663
|
+
attributes_cache: {}
|
2664
|
+
|
2665
|
+
- !ruby/object:GeoCountry
|
2666
|
+
attributes:
|
2667
|
+
name: Uzbekistan
|
2668
|
+
created_at: 2010-01-22 19:42:34
|
2669
|
+
external_id:
|
2670
|
+
iso_code_2: UZ
|
2671
|
+
iso_code_3: UZB
|
2672
|
+
id: "226"
|
2673
|
+
display: "1"
|
2674
|
+
|
2675
|
+
attributes_cache: {}
|
2676
|
+
|
2677
|
+
- !ruby/object:GeoCountry
|
2678
|
+
attributes:
|
2679
|
+
name: Vanuatu
|
2680
|
+
created_at: 2010-01-22 19:42:34
|
2681
|
+
external_id:
|
2682
|
+
iso_code_2: VU
|
2683
|
+
iso_code_3: VUT
|
2684
|
+
id: "227"
|
2685
|
+
display: "1"
|
2686
|
+
|
2687
|
+
attributes_cache: {}
|
2688
|
+
|
2689
|
+
- !ruby/object:GeoCountry
|
2690
|
+
attributes:
|
2691
|
+
name: Holy See (Vatican City State)
|
2692
|
+
created_at: 2010-01-22 19:42:34
|
2693
|
+
external_id:
|
2694
|
+
iso_code_2: VA
|
2695
|
+
iso_code_3: VAT
|
2696
|
+
id: "228"
|
2697
|
+
display: "1"
|
2698
|
+
|
2699
|
+
attributes_cache: {}
|
2700
|
+
|
2701
|
+
- !ruby/object:GeoCountry
|
2702
|
+
attributes:
|
2703
|
+
name: Venezuela
|
2704
|
+
created_at: 2010-01-22 19:42:34
|
2705
|
+
external_id:
|
2706
|
+
iso_code_2: VE
|
2707
|
+
iso_code_3: VEN
|
2708
|
+
id: "229"
|
2709
|
+
display: "1"
|
2710
|
+
|
2711
|
+
attributes_cache: {}
|
2712
|
+
|
2713
|
+
- !ruby/object:GeoCountry
|
2714
|
+
attributes:
|
2715
|
+
name: Viet Nam
|
2716
|
+
created_at: 2010-01-22 19:42:34
|
2717
|
+
external_id:
|
2718
|
+
iso_code_2: VN
|
2719
|
+
iso_code_3: VNM
|
2720
|
+
id: "230"
|
2721
|
+
display: "1"
|
2722
|
+
|
2723
|
+
attributes_cache: {}
|
2724
|
+
|
2725
|
+
- !ruby/object:GeoCountry
|
2726
|
+
attributes:
|
2727
|
+
name: Virgin Islands, British
|
2728
|
+
created_at: 2010-01-22 19:42:34
|
2729
|
+
external_id:
|
2730
|
+
iso_code_2: VG
|
2731
|
+
iso_code_3: VGB
|
2732
|
+
id: "231"
|
2733
|
+
display: "1"
|
2734
|
+
|
2735
|
+
attributes_cache: {}
|
2736
|
+
|
2737
|
+
- !ruby/object:GeoCountry
|
2738
|
+
attributes:
|
2739
|
+
name: Virgin Islands, U.S.
|
2740
|
+
created_at: 2010-01-22 19:42:34
|
2741
|
+
external_id:
|
2742
|
+
iso_code_2: VI
|
2743
|
+
iso_code_3: VIR
|
2744
|
+
id: "232"
|
2745
|
+
display: "1"
|
2746
|
+
|
2747
|
+
attributes_cache: {}
|
2748
|
+
|
2749
|
+
- !ruby/object:GeoCountry
|
2750
|
+
attributes:
|
2751
|
+
name: Wallis and Futuna
|
2752
|
+
created_at: 2010-01-22 19:42:34
|
2753
|
+
external_id:
|
2754
|
+
iso_code_2: WF
|
2755
|
+
iso_code_3: WLF
|
2756
|
+
id: "233"
|
2757
|
+
display: "1"
|
2758
|
+
|
2759
|
+
attributes_cache: {}
|
2760
|
+
|
2761
|
+
- !ruby/object:GeoCountry
|
2762
|
+
attributes:
|
2763
|
+
name: Western Sahara
|
2764
|
+
created_at: 2010-01-22 19:42:34
|
2765
|
+
external_id:
|
2766
|
+
iso_code_2: EH
|
2767
|
+
iso_code_3: ESH
|
2768
|
+
id: "234"
|
2769
|
+
display: "1"
|
2770
|
+
|
2771
|
+
attributes_cache: {}
|
2772
|
+
|
2773
|
+
- !ruby/object:GeoCountry
|
2774
|
+
attributes:
|
2775
|
+
name: Yemen
|
2776
|
+
created_at: 2010-01-22 19:42:34
|
2777
|
+
external_id:
|
2778
|
+
iso_code_2: YE
|
2779
|
+
iso_code_3: YEM
|
2780
|
+
id: "235"
|
2781
|
+
display: "1"
|
2782
|
+
|
2783
|
+
attributes_cache: {}
|
2784
|
+
|
2785
|
+
- !ruby/object:GeoCountry
|
2786
|
+
attributes:
|
2787
|
+
name: Zambia
|
2788
|
+
created_at: 2010-01-22 19:42:34
|
2789
|
+
external_id:
|
2790
|
+
iso_code_2: ZM
|
2791
|
+
iso_code_3: ZMB
|
2792
|
+
id: "238"
|
2793
|
+
display: "1"
|
2794
|
+
|
2795
|
+
attributes_cache: {}
|
2796
|
+
|
2797
|
+
- !ruby/object:GeoCountry
|
2798
|
+
attributes:
|
2799
|
+
name: Zimbabwe
|
2800
|
+
created_at: 2010-01-22 19:42:35
|
2801
|
+
external_id:
|
2802
|
+
iso_code_2: ZW
|
2803
|
+
iso_code_3: ZWE
|
2804
|
+
id: "239"
|
2805
|
+
display: "1"
|
2806
|
+
|
2807
|
+
attributes_cache: {}
|
2808
|
+
|
2809
|
+
- !ruby/object:GeoCountry
|
2810
|
+
attributes:
|
2811
|
+
name: Saint Martin
|
2812
|
+
created_at: 2010-09-02 19:42:35
|
2813
|
+
external_id:
|
2814
|
+
iso_code_2: MF
|
2815
|
+
iso_code_3: MAF
|
2816
|
+
id: "240"
|
2817
|
+
display: "1"
|
2818
|
+
|
2819
|
+
attributes_cache: {}
|
2820
|
+
|
2821
|
+
- !ruby/object:GeoCountry
|
2822
|
+
attributes:
|
2823
|
+
name: Aland Islands
|
2824
|
+
created_at: 2010-09-02 19:42:35
|
2825
|
+
external_id:
|
2826
|
+
iso_code_2: AX
|
2827
|
+
iso_code_3: ALA
|
2828
|
+
id: "241"
|
2829
|
+
display: "1"
|
2830
|
+
|
2831
|
+
attributes_cache: {}
|
2832
|
+
|
2833
|
+
- !ruby/object:GeoCountry
|
2834
|
+
attributes:
|
2835
|
+
name: "Congo, Democratic Republic of the"
|
2836
|
+
created_at: 2010-09-29 19:42:35
|
2837
|
+
external_id:
|
2838
|
+
iso_code_2: CD
|
2839
|
+
iso_code_3: COD
|
2840
|
+
id: "242"
|
2841
|
+
display: "1"
|
2842
|
+
|
2843
|
+
attributes_cache: {}
|
2844
|
+
|
2845
|
+
- !ruby/object:GeoCountry
|
2846
|
+
attributes:
|
2847
|
+
name: Guernsey
|
2848
|
+
created_at: 2010-09-29 19:42:35
|
2849
|
+
external_id:
|
2850
|
+
iso_code_2: GG
|
2851
|
+
iso_code_3: GGY
|
2852
|
+
id: "243"
|
2853
|
+
display: "1"
|
2854
|
+
|
2855
|
+
attributes_cache: {}
|
2856
|
+
|
2857
|
+
- !ruby/object:GeoCountry
|
2858
|
+
attributes:
|
2859
|
+
name: Isle of Man
|
2860
|
+
created_at: 2010-09-29 19:42:35
|
2861
|
+
external_id:
|
2862
|
+
iso_code_2: IM
|
2863
|
+
iso_code_3: IMN
|
2864
|
+
id: "244"
|
2865
|
+
display: "1"
|
2866
|
+
|
2867
|
+
attributes_cache: {}
|
2868
|
+
|
2869
|
+
- !ruby/object:GeoCountry
|
2870
|
+
attributes:
|
2871
|
+
name: Jersey
|
2872
|
+
created_at: 2010-09-29 19:42:35
|
2873
|
+
external_id:
|
2874
|
+
iso_code_2: JE
|
2875
|
+
iso_code_3: JEY
|
2876
|
+
id: "245"
|
2877
|
+
display: "1"
|
2878
|
+
|
2879
|
+
attributes_cache: {}
|
2880
|
+
|
2881
|
+
- !ruby/object:GeoCountry
|
2882
|
+
attributes:
|
2883
|
+
name: Montenegro
|
2884
|
+
created_at: 2010-09-29 19:42:35
|
2885
|
+
external_id:
|
2886
|
+
iso_code_2: ME
|
2887
|
+
iso_code_3: MNE
|
2888
|
+
id: "246"
|
2889
|
+
display: "1"
|
2890
|
+
|
2891
|
+
attributes_cache: {}
|
2892
|
+
|
2893
|
+
- !ruby/object:GeoCountry
|
2894
|
+
attributes:
|
2895
|
+
name: "Palestinian Territory, Occupied"
|
2896
|
+
created_at: 2010-09-29 19:42:35
|
2897
|
+
external_id:
|
2898
|
+
iso_code_2: PS
|
2899
|
+
iso_code_3: PSE
|
2900
|
+
id: "247"
|
2901
|
+
display: "1"
|
2902
|
+
|
2903
|
+
attributes_cache: {}
|
2904
|
+
|
2905
|
+
- !ruby/object:GeoCountry
|
2906
|
+
attributes:
|
2907
|
+
name: Timor-Leste
|
2908
|
+
created_at: 2010-09-29 19:42:35
|
2909
|
+
external_id:
|
2910
|
+
iso_code_2: TL
|
2911
|
+
iso_code_3: TLS
|
2912
|
+
id: "248"
|
2913
|
+
display: "1"
|
2914
|
+
|
2915
|
+
attributes_cache: {}
|
2916
|
+
|
2917
|
+
- !ruby/object:GeoCountry
|
2918
|
+
attributes:
|
2919
|
+
name: Serbia
|
2920
|
+
created_at: 2010-09-29 19:42:35
|
2921
|
+
external_id:
|
2922
|
+
iso_code_2: RS
|
2923
|
+
iso_code_3: SRB
|
2924
|
+
id: "249"
|
2925
|
+
display: "1"
|
2926
|
+
|
2927
|
+
attributes_cache: {}
|
2928
|
+
|
2929
|
+
- !ruby/object:GeoCountry
|
2930
|
+
attributes:
|
2931
|
+
name: Pitcairn
|
2932
|
+
created_at: 2010-09-29 19:42:35
|
2933
|
+
external_id:
|
2934
|
+
iso_code_2: PN
|
2935
|
+
iso_code_3: PCN
|
2936
|
+
id: "250"
|
2937
|
+
display: "1"
|
2938
|
+
|
2939
|
+
attributes_cache: {}
|
2940
|
+
|
2941
|
+
- !ruby/object:GeoCountry
|
2942
|
+
attributes:
|
2943
|
+
name: Saint Barthelemy
|
2944
|
+
created_at: 2010-09-29 19:42:35
|
2945
|
+
external_id:
|
2946
|
+
iso_code_2: BL
|
2947
|
+
iso_code_3: BLM
|
2948
|
+
id: "251"
|
2949
|
+
display: "1"
|
2950
|
+
|
2951
|
+
attributes_cache: {}
|
2952
|
+
|