forked from asbiin/countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-borders.json
1354 lines (1354 loc) · 64.4 KB
/
sample-borders.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"abbrev": "Aust.xx",
"abbrev_len": "5.00",
"adm0_a3": "AUT",
"adm0_a3_is": "AUT",
"adm0_a3_un": "-99.00",
"adm0_a3_us": "AUT",
"adm0_a3_wb": "-99.00",
"adm0_dif": "0.00",
"admin": "Austria",
"alt_spellings": [
"AT",
"Osterreich",
"Oesterreich"
],
"borders": [
"CZE",
"DEU",
"HUN",
"ITA",
"LIE",
"SVK",
"SVN",
"CHE"
],
"brk_a3": "AUT",
"brk_diff": "0.00",
"brk_group": "",
"brk_name": "Austria",
"capital": [
"Vienna"
],
"capital_rinvex": "Vienna",
"cca2": "AT",
"cca3": "AUT",
"ccn3": "040",
"cioc": "AUT",
"currencies": [
"EUR"
],
"data_sources": [
"mledoze",
"natural"
],
"demonym": "Austrian",
"dialling": {
"calling_code": [
"43"
],
"international_prefix": "00",
"national_destination_code_lengths": [
1,
2,
3
],
"national_number_lengths": [
7,
8,
9,
10,
11,
12,
13
],
"national_prefix": "0"
},
"economy": "2. Developed region: nonG7",
"extra": {
"address_format": "{{recipient}}{{street}}{{postalcode}} {{city}}{{country}}",
"ar5": "OECD1990",
"cowc": "AUS",
"cown": 305,
"ds": "A",
"edgar": "C4",
"emoji": "\ud83c\udde6\ud83c\uddf9",
"eu_member": true,
"fao": 11,
"fifa": "AUT",
"fips": "AU",
"gaul": 18,
"geonameid": 2782113,
"imf": 122,
"ioc": "AUT",
"itu": "AUT",
"marc": "au",
"vat_rates": {
"parking": 12,
"reduced": [
10
],
"standard": 20,
"super_reduced": null
},
"wmo": "OS"
},
"featurecla": "Admin-0 country",
"fips_10_": "AU",
"flag": {
"emoji": "\ud83c\udde6\ud83c\uddf9",
"sprite": "<span class=\"flag flag-aut\"><\/span>",
"flag-icon": "<span class=\"flag-icon flag-icon-aut\"><\/span>",
"flag-icon-squared": "<span class=\"flag-icon flag-icon-aut flag-icon-squared\"><\/span>",
"world-flags-sprite": "<span class=\"flag aut\"><\/span>",
"svg": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"900\" height=\"600\"><rect fill=\"#ed2939\" width=\"900\" height=\"600\"\/><rect fill=\"#fff\" y=\"200\" width=\"900\" height=\"200\"\/><\/svg>"
},
"formal_en": "Republic of Austria",
"formal_fr": "",
"gdp_md_est": "416600.00",
"gdp_year": "2016.00",
"geo": {
"area": 83871,
"borders": [
"CZE",
"DEU",
"HUN",
"ITA",
"LIE",
"SVK",
"SVN",
"CHE"
],
"continent": {
"EU": "Europe"
},
"independent": "Yes",
"landlocked": true,
"latitude": "47 20 N",
"latitude_desc": "47.58843994140625",
"latlng": [
47.33333333,
13.33333333
],
"longitude": "13 20 E",
"longitude_desc": "14.14021110534668",
"max_latitude": "49.016667",
"max_longitude": "19",
"min_latitude": "46.377222",
"min_longitude": "1.2",
"postal_code": true,
"region": "Europe",
"region_code": "150",
"region_un": "Europe",
"region_wb": "Europe & Central Asia",
"subregion": "Western Europe",
"subregion_code": "155",
"world_region": "EMEA"
},
"geou_dif": "0.00",
"geounit": "Austria",
"gu_a3": "AUT",
"homepart": "1.00",
"income_grp": "1. High income: OECD",
"independent": true,
"iso_3166_1_alpha2": "AT",
"iso_3166_1_alpha3": "AUT",
"iso_3166_1_numeric": "040",
"iso_a2": "AT",
"iso_a3": "AUT",
"iso_a3_eh": "AUT",
"iso_n3": "040",
"labelrank": "4.00",
"languages": {
"bar": "Austro-Bavarian German"
},
"lastcensus": "2011.00",
"level": "2.00",
"long_len": "7.00",
"mapcolor7": "3.00",
"mapcolor8": "1.00",
"mapcolor9": "3.00",
"mapcolor13": "4.00",
"max_label": "8.00",
"min_label": "3.00",
"min_zoom": "0.00",
"name": {
"common": "Austria",
"native": {
"bar": {
"common": "\u00d6sterreich",
"official": "Republik \u00d6sterreich"
}
},
"official": "Republic of Austria"
},
"name_alt": "",
"name_ciawf": "Austria",
"name_len": "7.00",
"name_long": "Austria",
"name_nev": "Austria",
"name_sort": "Austria",
"note_adm0": "",
"note_brk": "",
"pop_est": "8754413.00",
"pop_rank": "13.00",
"pop_year": "2017.00",
"postal": "A",
"record_type": "country",
"scalerank": "0",
"sov_a3": "AUT",
"sovereignt": "Austria",
"status": "officially-assigned",
"su_a3": "AUT",
"su_dif": "0.00",
"subunit": "Austria",
"tiny": "-99.00",
"tld": [
".at"
],
"translations": {
"cym": {
"common": "Awstria",
"official": "Republic of Austria"
},
"deu": {
"common": "\u00d6sterreich",
"official": "Republik \u00d6sterreich"
},
"est": {
"common": "Austria",
"official": "Austria Vabariik"
},
"fin": {
"common": "It\u00e4valta",
"official": "It\u00e4vallan tasavalta"
},
"fra": {
"common": "Autriche",
"official": "R\u00e9publique d'Autriche"
},
"hrv": {
"common": "Austrija",
"official": "Republika Austrija"
},
"ita": {
"common": "Austria",
"official": "Repubblica d'Austria"
},
"jpn": {
"common": "\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2",
"official": "\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2\u5171\u548c\u56fd"
},
"nld": {
"common": "Oostenrijk",
"official": "Republiek Oostenrijk"
},
"por": {
"common": "\u00c1ustria",
"official": "Rep\u00fablica da \u00c1ustria"
},
"rus": {
"common": "\u0410\u0432\u0441\u0442\u0440\u0438\u044f",
"official": "\u0410\u0432\u0441\u0442\u0440\u0438\u0439\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430"
},
"slk": {
"common": "Rak\u00fasko",
"official": "Rak\u00faska republika"
},
"spa": {
"common": "Austria",
"official": "Rep\u00fablica de Austria"
},
"zho": {
"common": "\u5965\u5730\u5229",
"official": "\u5965\u5730\u5229\u5171\u548c\u56fd"
}
},
"type": "Sovereign country",
"un_a3": "040",
"wb_a2": "AT",
"wb_a3": "AUT",
"wikipedia": "-99.00",
"woe_id": "23424750.00",
"woe_id_eh": "23424750.00",
"woe_note": "Exact WOE match as country",
"hydrated": {
"flag": true
}
},
{
"abbrev": "Fr.",
"abbrev_len": "3.00",
"adm0_a3": "FRA",
"adm0_a3_is": "FRA",
"adm0_a3_un": "-99.00",
"adm0_a3_us": "FRA",
"adm0_a3_wb": "-99.00",
"adm0_dif": "1.00",
"admin": "France",
"alt_spellings": [
"FR",
"French Republic",
"R\u00e9publique fran\u00e7aise"
],
"borders": [
"AND",
"BEL",
"DEU",
"ITA",
"LUX",
"MCO",
"ESP",
"CHE"
],
"brk_a3": "FRA",
"brk_diff": "0.00",
"brk_group": "",
"brk_name": "France",
"capital": [
"Paris"
],
"capital_rinvex": "Paris",
"cca2": "FR",
"cca3": "FRA",
"ccn3": "250",
"cioc": "FRA",
"currencies": [
"EUR"
],
"data_sources": [
"mledoze",
"natural"
],
"demonym": "French",
"dialling": {
"calling_code": [
"33"
],
"international_prefix": "00",
"national_destination_code_lengths": [
1
],
"national_number_lengths": [
9,
10
],
"national_prefix": "0"
},
"economy": "1. Developed region: G7",
"extra": {
"address_format": "{{recipient}}{{street}}{{postalcode}} {{city}}{{country}}",
"ar5": "OECD1990",
"cowc": "FRN",
"cown": 220,
"ds": "F",
"edgar": "I0",
"emoji": "\ud83c\uddeb\ud83c\uddf7",
"eu_member": true,
"fao": 68,
"fifa": "FRA",
"fips": "FR",
"gaul": 85,
"geonameid": 3017382,
"imf": 132,
"ioc": "FRA",
"itu": "F",
"marc": "fr",
"vat_rates": {
"parking": null,
"reduced": [
5.5,
10
],
"standard": 20,
"super_reduced": 2.1
},
"wmo": "FR"
},
"featurecla": "Admin-0 country",
"fips_10_": "FR",
"flag": {
"emoji": "\ud83c\uddeb\ud83c\uddf7",
"sprite": "<span class=\"flag flag-fra\"><\/span>",
"flag-icon": "<span class=\"flag-icon flag-icon-fra\"><\/span>",
"flag-icon-squared": "<span class=\"flag-icon flag-icon-fra flag-icon-squared\"><\/span>",
"world-flags-sprite": "<span class=\"flag fra\"><\/span>",
"svg": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><!DOCTYPE svg PUBLIC \"-\/\/W3C\/\/DTD SVG 1.1\/\/EN\" \"http:\/\/www.w3.org\/Graphics\/SVG\/1.1\/DTD\/svg11.dtd\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" version=\"1.1\" width=\"900\" height=\"600\"><rect width=\"900\" height=\"600\" fill=\"#ED2939\"\/><rect width=\"600\" height=\"600\" fill=\"#fff\"\/><rect width=\"300\" height=\"600\" fill=\"#002395\"\/><\/svg>"
},
"formal_en": "French Republic",
"formal_fr": "",
"gdp_md_est": "2699000.00",
"gdp_year": "2016.00",
"geo": {
"area": 551695,
"borders": [
"AND",
"BEL",
"DEU",
"ITA",
"LUX",
"MCO",
"ESP",
"CHE"
],
"continent": {
"EU": "Europe"
},
"independent": "Yes",
"landlocked": false,
"latitude": "46 00 N",
"latitude_desc": "46.63727951049805",
"latlng": [
46,
2
],
"longitude": "2 00 E",
"longitude_desc": "2.3382623195648193",
"max_latitude": "51.09",
"max_longitude": "9.56",
"min_latitude": "41.34",
"min_longitude": "-5.14",
"postal_code": true,
"region": "Europe",
"region_code": "150",
"region_un": "Europe",
"region_wb": "Europe & Central Asia",
"subregion": "Western Europe",
"subregion_code": "155",
"world_region": "EMEA"
},
"geou_dif": "0.00",
"geounit": "France",
"gu_a3": "FRA",
"homepart": "1.00",
"income_grp": "1. High income: OECD",
"independent": true,
"iso_3166_1_alpha2": "FR",
"iso_3166_1_alpha3": "FRA",
"iso_3166_1_numeric": "250",
"iso_a2": "FR",
"iso_a3": "FRA",
"iso_a3_eh": "-99",
"iso_n3": "250",
"labelrank": "2.00",
"languages": {
"fra": "French"
},
"lastcensus": "-99.00",
"level": "2.00",
"long_len": "6.00",
"mapcolor7": "7.00",
"mapcolor8": "5.00",
"mapcolor9": "9.00",
"mapcolor13": "11.00",
"max_label": "6.70",
"min_label": "1.70",
"min_zoom": "0.00",
"name": {
"common": "France",
"native": {
"fra": {
"common": "France",
"official": "R\u00e9publique fran\u00e7aise"
}
},
"official": "French Republic"
},
"name_alt": "",
"name_ciawf": "France",
"name_len": "6.00",
"name_long": "France",
"name_nev": "France",
"name_sort": "France",
"note_adm0": "",
"note_brk": "",
"pop_est": "67106161.00",
"pop_rank": "16.00",
"pop_year": "2017.00",
"postal": "F",
"record_type": "country",
"scalerank": "0",
"sov_a3": "FR1",
"sovereignt": "France",
"status": "officially-assigned",
"su_a3": "FRA",
"su_dif": "0.00",
"subunit": "France",
"tiny": "-99.00",
"tld": [
".fr"
],
"translations": {
"deu": {
"common": "Frankreich",
"official": "Franz\u00f6sische Republik"
},
"est": {
"common": "Prantsusmaa",
"official": "Prantsuse Vabariik"
},
"fin": {
"common": "Ranska",
"official": "Ranskan tasavalta"
},
"fra": {
"common": "France",
"official": "R\u00e9publique fran\u00e7aise"
},
"hrv": {
"common": "Francuska",
"official": "Francuska Republika"
},
"ita": {
"common": "Francia",
"official": "Repubblica francese"
},
"jpn": {
"common": "\u30d5\u30e9\u30f3\u30b9",
"official": "\u30d5\u30e9\u30f3\u30b9\u5171\u548c\u56fd"
},
"nld": {
"common": "Frankrijk",
"official": "Franse Republiek"
},
"por": {
"common": "Fran\u00e7a",
"official": "Rep\u00fablica Francesa"
},
"rus": {
"common": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f",
"official": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430"
},
"slk": {
"common": "Franc\u00fazsko",
"official": "Franc\u00fazska republika"
},
"spa": {
"common": "Francia",
"official": "Rep\u00fablica franc\u00e9s"
},
"zho": {
"common": "\u6cd5\u56fd",
"official": "\u6cd5\u5170\u897f\u5171\u548c\u56fd"
}
},
"type": "Country",
"un_a3": "250",
"wb_a2": "FR",
"wb_a3": "FRA",
"wikipedia": "-99.00",
"woe_id": "-90.00",
"woe_id_eh": "23424819.00",
"woe_note": "Includes only Metropolitan France (including Corsica)",
"hydrated": {
"flag": true
}
},
{
"abbrev": "Italy",
"abbrev_len": "5.00",
"adm0_a3": "ITA",
"adm0_a3_is": "ITA",
"adm0_a3_un": "-99.00",
"adm0_a3_us": "ITA",
"adm0_a3_wb": "-99.00",
"adm0_dif": "0.00",
"admin": "Italy",
"alt_spellings": [
"IT",
"Italian Republic",
"Repubblica italiana"
],
"borders": [
"AUT",
"FRA",
"SMR",
"SVN",
"CHE",
"VAT"
],
"brk_a3": "ITA",
"brk_diff": "0.00",
"brk_group": "",
"brk_name": "Italy",
"capital": [
"Rome"
],
"capital_rinvex": "Rome",
"cca2": "IT",
"cca3": "ITA",
"ccn3": "380",
"cioc": "ITA",
"currencies": [
"EUR"
],
"data_sources": [
"mledoze",
"natural"
],
"demonym": "Italian",
"dialling": {
"calling_code": [
"39"
],
"international_prefix": "00",
"national_destination_code_lengths": [
3
],
"national_number_lengths": [
9,
11
],
"national_prefix": null
},
"economy": "1. Developed region: G7",
"extra": {
"address_format": "{{recipient}}{{street}}{{postalcode}} {{city}} {{region_short}}{{country}}",
"ar5": "OECD1990",
"cowc": "ITA",
"cown": 325,
"ds": "I",
"edgar": "L6",
"emoji": "\ud83c\uddee\ud83c\uddf9",
"eu_member": true,
"fao": 106,
"fifa": "ITA",
"fips": "IT",
"gaul": 122,
"geonameid": 3175395,
"imf": 136,
"ioc": "ITA",
"itu": "I",
"marc": "it",
"vat_rates": {
"parking": null,
"reduced": [
10
],
"standard": 22,
"super_reduced": 4
},
"wmo": "IY"
},
"featurecla": "Admin-0 country",
"fips_10_": "IT",
"flag": {
"emoji": "\ud83c\uddee\ud83c\uddf9",
"sprite": "<span class=\"flag flag-ita\"><\/span>",
"flag-icon": "<span class=\"flag-icon flag-icon-ita\"><\/span>",
"flag-icon-squared": "<span class=\"flag-icon flag-icon-ita flag-icon-squared\"><\/span>",
"world-flags-sprite": "<span class=\"flag ita\"><\/span>",
"svg": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1500\" height=\"1000\" viewBox=\"0 0 3 2\"><rect width=\"1\" height=\"2\" fill=\"#009246\"\/><rect width=\"1\" height=\"2\" x=\"1\" fill=\"#fff\"\/><rect width=\"1\" height=\"2\" x=\"2\" fill=\"#ce2b37\"\/><\/svg>"
},
"formal_en": "Italian Republic",
"formal_fr": "",
"gdp_md_est": "2221000.00",
"gdp_year": "2016.00",
"geo": {
"area": 301336,
"borders": [
"AUT",
"FRA",
"SMR",
"SVN",
"CHE",
"VAT"
],
"continent": {
"EU": "Europe"
},
"independent": "Yes",
"landlocked": false,
"latitude": "42 50 N",
"latitude_desc": "42.7669792175293",
"latlng": [
42.83333333,
12.83333333
],
"longitude": "12 50 E",
"longitude_desc": "12.493823051452637",
"max_latitude": "48.533333",
"max_longitude": "20.433333",
"min_latitude": "35.483333",
"min_longitude": "1.35",
"postal_code": true,
"region": "Europe",
"region_code": "150",
"region_un": "Europe",
"region_wb": "Europe & Central Asia",
"subregion": "Southern Europe",
"subregion_code": "039",
"world_region": "EMEA"
},
"geou_dif": "0.00",
"geounit": "Italy",
"gu_a3": "ITA",
"homepart": "1.00",
"income_grp": "1. High income: OECD",
"independent": true,
"iso_3166_1_alpha2": "IT",
"iso_3166_1_alpha3": "ITA",
"iso_3166_1_numeric": "380",
"iso_a2": "IT",
"iso_a3": "ITA",
"iso_a3_eh": "ITA",
"iso_n3": "380",
"labelrank": "2.00",
"languages": {
"bar": "Austro-Bavarian German",
"ita": "Italian",
"srd": "Sardinian"
},
"lastcensus": "2012.00",
"level": "2.00",
"long_len": "5.00",
"mapcolor7": "6.00",
"mapcolor8": "7.00",
"mapcolor9": "8.00",
"mapcolor13": "7.00",
"max_label": "7.00",
"min_label": "2.00",
"min_zoom": "0.00",
"name": {
"common": "Italy",
"native": {
"ita": {
"common": "Italia",
"official": "Repubblica italiana"
}
},
"official": "Italian Republic"
},
"name_alt": "",
"name_ciawf": "Italy",
"name_len": "5.00",
"name_long": "Italy",
"name_nev": "Italy",
"name_rinvex": {
"common": "Italy",
"native": {
"bar": {
"common": "Italien",
"official": "Italienische Republik"
},
"ita": {
"common": "Italia",
"official": "Repubblica italiana"
},
"srd": {
"common": "Italia",
"official": "Repubbricanu Italia"
}
},
"official": "Italian Republic"
},
"name_sort": "Italy",
"note_adm0": "",
"note_brk": "",
"pop_est": "62137802.00",
"pop_rank": "16.00",
"pop_year": "2017.00",
"postal": "I",
"record_type": "country",
"scalerank": "0",
"sov_a3": "ITA",
"sovereignt": "Italy",
"status": "officially-assigned",
"su_a3": "ITA",
"su_dif": "0.00",
"subunit": "Italy",
"tiny": "-99.00",
"tld": [
".it"
],
"translations": {
"deu": {
"common": "Italien",
"official": "Italienische Republik"
},
"est": {
"common": "Itaalia",
"official": "Itaalia Vabariik"
},
"fin": {
"common": "Italia",
"official": "Italian tasavalta"
},
"fra": {
"common": "Italie",
"official": "R\u00e9publique italienne"
},
"hrv": {
"common": "Italija",
"official": "talijanska Republika"
},
"ita": {
"common": "Italia",
"official": "Repubblica italiana"
},
"jpn": {
"common": "\u30a4\u30bf\u30ea\u30a2",
"official": "\u30a4\u30bf\u30ea\u30a2\u5171\u548c\u56fd"
},
"nld": {
"common": "Itali\u00eb",
"official": "Italiaanse Republiek"
},
"por": {
"common": "It\u00e1lia",
"official": "Rep\u00fablica Italiana"
},
"rus": {
"common": "\u0418\u0442\u0430\u043b\u0438\u044f",
"official": "\u0438\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430"
},
"slk": {
"common": "Taliansko",
"official": "Talianska republika"
},
"spa": {
"common": "Italia",
"official": "Rep\u00fablica Italiana"
},
"zho": {
"common": "\u610f\u5927\u5229",
"official": "\u610f\u5927\u5229\u5171\u548c\u56fd"
}
},
"type": "Sovereign country",
"un_a3": "380",
"wb_a2": "IT",
"wb_a3": "ITA",
"wikipedia": "-99.00",
"woe_id": "23424853.00",
"woe_id_eh": "23424853.00",
"woe_note": "Exact WOE match as country",
"hydrated": {
"flag": true
}
},
{
"abbrev": "Liech.",
"abbrev_len": "6.00",
"adm0_a3": "LIE",
"adm0_a3_is": "LIE",
"adm0_a3_un": "-99.00",
"adm0_a3_us": "LIE",
"adm0_a3_wb": "-99.00",
"adm0_dif": "0.00",
"admin": "Liechtenstein",
"alt_spellings": [
"LI",
"Principality of Liechtenstein",
"F\u00fcrstentum Liechtenstein"
],
"borders": [
"AUT",
"CHE"
],
"brk_a3": "LIE",
"brk_diff": "0.00",
"brk_group": "",
"brk_name": "Liechtenstein",
"capital": [
"Vaduz"
],
"capital_rinvex": "Vaduz",
"cca2": "LI",
"cca3": "LIE",
"ccn3": "438",
"cioc": "LIE",
"currencies": [
"CHF"
],
"data_sources": [
"mledoze",
"natural"
],
"demonym": "Liechtensteiner",
"dialling": {
"calling_code": [
"423"
],
"international_prefix": "00",
"national_destination_code_lengths": [
2
],
"national_number_lengths": [
7
],
"national_prefix": null
},
"economy": "2. Developed region: nonG7",
"extra": {
"address_format": null,
"ar5": "OECD1990",
"cowc": "LIE",
"cown": 223,
"ds": "FL",
"edgar": "N2",
"emoji": "\ud83c\uddf1\ud83c\uddee",
"eu_member": null,
"fao": 0,
"fifa": "LIE",
"fips": "LS",
"gaul": 146,
"geonameid": 3042058,
"imf": 0,
"ioc": "LIE",
"itu": "LIE",
"marc": "lh",
"vat_rates": null,
"wmo": 0
},
"featurecla": "Admin-0 country",
"fips_10_": "LS",
"flag": {
"emoji": "\ud83c\uddf1\ud83c\uddee",
"sprite": "<span class=\"flag flag-lie\"><\/span>",
"flag-icon": "<span class=\"flag-icon flag-icon-lie\"><\/span>",
"flag-icon-squared": "<span class=\"flag-icon flag-icon-lie flag-icon-squared\"><\/span>",
"world-flags-sprite": "<span class=\"flag lie\"><\/span>",
"svg": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg version=\"1.0\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xmlns:sodipodi=\"http:\/\/sodipodi.sourceforge.net\/DTD\/sodipodi-0.dtd\" width=\"1000\" height=\"600\"><rect width=\"1000\" height=\"600\" fill=\"#002b7f\"\/><rect y=\"300\" width=\"1000\" height=\"300\" fill=\"#ce1126\"\/><g fill=\"#ffd83d\" stroke=\"#000\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><g id=\"half\"><path d=\"M 216.37706,122.2886 L 214.53882,184.7886 L 151.1197,184.7886 C 143.31716,169.62032 136.87338,156.73735 136.87338,139.29228 C 136.87338,124.69269 148.35647,113.09742 164.90647,113.09742 C 182.42619,113.09742 201.67512,119.001 216.37706,122.2886 z\" stroke=\"none\"\/><g stroke-width=\"1.5\"><path d=\"M 144.45611,125.16084 V 161.23621\"\/><path d=\"M 149.54956,121.47933 V 169.51333\"\/><path d=\"M 154.64301,118.95176 V 176.17693\"\/><path d=\"M 159.73645,117.77081 V 162.65201\"\/><path d=\"M 164.82989,117.54815 V 162.87466\"\/><path d=\"M 169.92335,115.96463 V 162.84973\"\/><path d=\"M 175.01679,115.96463 V 162.84973\"\/><path d=\"M 180.11024,116.42419 V 163.30929\"\/><path d=\"M 185.20367,116.88375 V 163.76885\"\/><path d=\"M 190.29712,119.87088 V 166.75598\"\/><path d=\"M 195.39057,120.33044 V 173.1898\"\/><path d=\"M 200.48402,120.33044 V 167.21554\"\/><path d=\"M 205.57747,120.33044 V 167.21554\"\/><path d=\"M 176.39544,117.92279 C 187.15891,119.69824 210.80151,130.75993 208.105,145.72611 C 204.28366,166.93537 191.89725,158.42373 175.47632,155.37684 L 163.06823,159.51287 C 158.62839,164.04466 152.09048,168.19641 147.67301,162.72978 L 140.32007,162.72978 L 140.32007,191.4522 L 221.66198,191.4522 L 221.66198,122.05882 z\" fill=\"#000\"\/><\/g><circle cx=\"212.81549\" cy=\"112.98255\" r=\"4.94026\"\/><circle cx=\"201.713\" cy=\"110.31052\" r=\"4.94026\"\/><circle cx=\"190.44973\" cy=\"107.48178\" r=\"4.94026\"\/><circle cx=\"179.14295\" cy=\"105.59596\" r=\"4.94026\"\/><circle cx=\"167.83617\" cy=\"104.48071\" r=\"4.94026\"\/><circle cx=\"156.74931\" cy=\"105.11261\" r=\"4.94026\"\/><circle cx=\"146.17946\" cy=\"108.73163\" r=\"4.94026\"\/><circle cx=\"137.27551\" cy=\"115.28035\" r=\"4.94026\"\/><circle cx=\"130.95657\" cy=\"124.41408\" r=\"4.94026\"\/><circle cx=\"127.912\" cy=\"135.15627\" r=\"4.94026\"\/><circle cx=\"128.02689\" cy=\"146.30057\" r=\"4.94026\"\/><circle cx=\"130.15236\" cy=\"157.21509\" r=\"4.94026\"\/><path d=\"M 214.99838,119.53125 L 214.53882,125.96507 C 202.24782,124.08194 184.82391,117.23346 168.58294,117.23346 C 153.57656,117.23346 141.92853,123.23616 141.92853,138.37316 C 141.92853,153.29163 148.24631,166.85838 156.63441,180.65257 L 147.90279,184.7886 C 140.10025,169.62032 133.65647,156.73735 133.65647,139.29228 C 133.65647,124.69269 145.13956,110.34007 164.90647,110.34007 C 182.42619,110.34007 200.29644,116.24365 214.99838,119.53125 z\"\/><\/g><use xlink:href=\"#half\" transform=\"translate(443.9375) scale(-1,1)\"\/><path d=\"M 221.96875,53.125 L 216.8125,62.78125 L 221.96875,72.40625 L 227.125,62.78125 L 221.96875,53.125 z M 221.96875,77.5 L 216.8125,87.125 L 221.96875,96.78125 L 227.125,87.125 L 221.96875,77.5 z\"\/><path d=\"M 203.58731,74.953125 L 211.71883,80.109375 L 219.82403,74.953125 L 211.71883,69.796875 L 203.58731,74.953125 z M 224.11347,74.953125 L 232.21867,80.109375 L 240.35019,74.953125 L 232.21867,69.796875 L 224.11347,74.953125 z\"\/><circle cx=\"221.96875\" cy=\"75.06893\" r=\"3.90625\"\/><circle cx=\"221.96875\" cy=\"100\" r=\"10.45496\"\/><path d=\"M 219.34375,89.875 C 219.34375,92.989438 219.32163,94.799139 219.3125,96.5 C 216.79207,96.611865 214.30676,96.876712 211.875,97.28125 M 232.0625,97.28125 C 229.63074,96.876712 227.14543,96.611865 224.625,96.5 C 224.625,94.801655 224.625,92.997132 224.625,89.875 M 211.84375,102.5625 C 215.13846,102.01215 218.51788,101.71875 221.96875,101.71875 C 225.41962,101.71875 228.79904,102.01215 232.09375,102.5625\" fill=\"none\" stroke-width=\"1.5\"\/><path d=\"M 211.75,117.6875 C 210.75812,134.76968 208.74143,152.16667 202.09375,164.8125 L 212.90625,160.4375 C 216.68272,146.10873 217.47609,127.59492 218.625,118.84375 L 211.75,117.6875 z M 232.1875,117.6875 L 225.3125,118.84375 C 226.4614,127.59492 227.25478,146.10873 231.03125,160.4375 L 241.84375,164.8125 C 235.19607,152.16667 233.17938,134.76968 232.1875,117.6875 z\"\/><path d=\"M 221.95313,154.6875 C 209.03974,154.6875 199.55398,160.77412 198.98438,176.28125 C 195.82773,170.72636 182.4742,153.25552 170.01563,155.59375 C 162.60576,156.98444 156.05854,167.25962 157.17188,179.03125 C 151.037,161.40135 133.06509,158.51225 119.95313,168.9375 C 131.59529,178.51001 136.77421,206.77225 146.57813,219.03125 L 221.95313,219.03125 L 297.32813,219.03125 C 307.13204,206.77225 312.34222,178.51001 323.98438,168.9375 C 310.87241,158.51225 292.90051,161.40135 286.76563,179.03125 C 287.87896,167.25962 281.3005,156.98444 273.89063,155.59375 C 261.43205,153.25552 248.10978,170.72636 244.95313,176.28125 C 244.38354,160.77412 234.86652,154.6875 221.95313,154.6875 z\"\/><g stroke-width=\"1.5\"><path d=\"M 297.10662,219.02573 C 297.10662,224.60663 263.44486,230.74447 221.96875,230.74447 C 180.49265,230.74447 146.83089,224.60663 146.83089,219.02573 C 146.83089,213.44487 180.49265,210.5239 221.96875,210.5239 C 263.44486,210.5239 297.10662,213.44487 297.10662,219.02573 z\" fill=\"#000\"\/><circle cx=\"221.96875\" cy=\"114.44459\" r=\"3.50414\"\/><circle cx=\"221.96875\" cy=\"122.02731\" r=\"3.73392\"\/><circle cx=\"221.96875\" cy=\"130.18447\" r=\"4.07859\"\/><circle cx=\"221.96875\" cy=\"139.26075\" r=\"4.65303\"\/><circle cx=\"221.96875\" cy=\"149.37105\" r=\"5.11259\"\/><path d=\"M 219.93751,159.20588 C 219.38456,159.19901 218.86165,159.6649 219.00001,160.54963 C 219.16297,161.59315 219.36706,163.54482 219.56251,164.86213 C 219.78339,166.35532 220.65373,165.99233 220.87501,164.83088 C 221.09631,163.66986 221.00709,162.925 221.06251,160.76838 C 221.09024,159.69029 220.49047,159.21276 219.93751,159.20588 z M 224.00001,159.20588 C 223.44705,159.21276 222.8473,159.69029 222.87501,160.76838 C 222.93043,162.925 222.84123,163.66986 223.06251,164.83088 C 223.28379,165.99233 224.15415,166.35532 224.37501,164.86213 C 224.57046,163.54482 224.77457,161.59315 224.93751,160.54963 C 225.07587,159.6649 224.55298,159.19901 224.00001,159.20588 z M 216.31251,159.76838 C 215.80668,159.83874 215.2822,160.34892 215.31251,160.89338 C 215.36753,161.88856 215.64291,163.0823 215.75001,164.58088 C 215.86046,166.12907 216.95166,165.52771 217.06251,164.64338 C 217.17296,163.75866 217.29793,162.45118 217.18751,160.73713 C 217.1461,160.09422 216.8653,159.8115 216.53126,159.76838 C 216.46168,159.75941 216.38477,159.75833 216.31251,159.76838 z M 227.40626,159.76838 C 227.07222,159.8115 226.79144,160.09422 226.75001,160.73713 C 226.63959,162.45118 226.76458,163.75866 226.87501,164.64338 C 226.98586,165.52771 228.07708,166.12907 228.18751,164.58088 C 228.29461,163.0823 228.57001,161.88856 228.62501,160.89338 C 228.65532,160.34892 228.13086,159.83874 227.62501,159.76838 C 227.55275,159.75833 227.47586,159.75941 227.40626,159.76838 z M 211.96876,161.51838 C 211.50567,161.63805 211.0804,162.19494 211.21876,162.83088 C 211.49507,164.10277 211.75001,165.50899 211.75001,166.79963 C 211.75002,167.90566 212.69459,167.511 212.75001,166.73713 C 212.80503,165.96284 212.90626,164.32364 212.90626,162.83088 C 212.90627,161.71632 212.43186,161.39872 211.96876,161.51838 z M 231.65626,161.51838 C 231.32747,161.60947 231.03126,161.99496 231.03126,162.83088 C 231.03126,164.32364 231.13251,165.96284 231.18751,166.73713 C 231.24293,167.511 232.18752,167.90566 232.18751,166.79963 C 232.18751,165.50899 232.44247,164.10277 232.71876,162.83088 C 232.85712,162.19494 232.43187,161.63805 231.96876,161.51838 C 231.85299,161.48846 231.76586,161.48802 231.65626,161.51838 z M 172.56251,161.68934 C 172.00845,161.67094 171.61973,162.42254 172.00001,163.25184 C 172.60804,164.57916 173.25407,165.41659 173.87501,166.84559 C 174.42803,168.11748 175.2763,167.32448 175.00001,166.43934 C 174.7233,165.55461 174.42308,164.56923 173.59376,162.68934 C 173.28263,161.98423 172.89495,161.70039 172.56251,161.68934 z M 271.37501,161.68934 C 271.04257,161.70039 270.65489,161.98423 270.34376,162.68934 C 269.51444,164.56923 269.21422,165.55461 268.93751,166.43934 C 268.66122,167.32448 269.50949,168.11748 270.06251,166.84559 C 270.68345,165.41659 271.32948,164.57916 271.93751,163.25184 C 272.31779,162.42254 271.92907,161.67094 271.37501,161.68934 z M 176.56251,161.75184 C 176.15469,161.8763 175.90747,162.39361 176.15626,163.00184 C 176.65427,164.21831 177.37284,165.46536 177.87501,166.78309 C 178.31718,167.94413 179.3009,167.61494 178.96876,166.56434 C 178.63704,165.51375 178.53846,164.89884 177.87501,162.90809 C 177.54309,161.91293 176.97034,161.62739 176.56251,161.75184 z M 267.06251,161.75184 C 266.71381,161.82629 266.31145,162.16172 266.06251,162.90809 C 265.39906,164.89884 265.30048,165.51375 264.96876,166.56434 C 264.63662,167.61494 265.62034,167.94413 266.06251,166.78309 C 266.56468,165.46536 267.28325,164.21831 267.78126,163.00184 C 268.03005,162.39361 267.78283,161.8763 267.37501,161.75184 C 267.27305,161.72073 267.17874,161.72702 267.06251,161.75184 z M 181.56251,162.72059 C 181.04838,162.81843 180.65026,163.60277 181.00001,164.56434 C 181.4426,165.78081 182.072,166.93202 182.62501,168.31434 C 183.17803,169.69667 184.0963,169.41781 183.87501,168.53309 C 183.65374,167.64836 183.38263,166.18221 182.71876,163.97059 C 182.42851,163.00283 181.9624,162.6445 181.56251,162.72059 z M 262.37501,162.72059 C 261.97512,162.6445 261.50901,163.00283 261.21876,163.97059 C 260.55489,166.18221 260.28378,167.64836 260.06251,168.53309 C 259.84122,169.41781 260.75949,169.69667 261.31251,168.31434 C 261.86552,166.93202 262.49492,165.78081 262.93751,164.56434 C 263.28726,163.60277 262.88914,162.81843 262.37501,162.72059 z M 169.18751,163.40809 C 168.63064,163.46496 168.12339,164.37333 168.46876,165.06434 C 169.0222,166.17037 169.37242,166.54665 169.90626,167.72059 C 170.45928,168.93706 171.06504,167.99489 170.84376,167.22059 C 170.62248,166.4463 170.33882,165.54493 170.06251,164.43934 C 169.85999,163.62937 169.52164,163.37397 169.18751,163.40809 z M 274.75001,163.40809 C 274.41588,163.37397 274.07753,163.62937 273.87501,164.43934 C 273.5987,165.54493 273.31504,166.4463 273.09376,167.22059 C 272.87248,167.99489 273.47824,168.93706 274.03126,167.72059 C 274.5651,166.54665 274.91532,166.17037 275.46876,165.06434 C 275.81413,164.37333 275.30688,163.46496 274.75001,163.40809 z M 207.71876,166.20588 C 207.13501,166.20536 206.51143,166.98024 206.71876,167.70588 C 207.05049,168.86734 207.56328,169.89687 207.93751,171.39338 C 208.26924,172.72029 209.21168,172.05937 209.15626,171.17463 C 209.10085,170.28991 208.94926,169.0862 208.56251,167.20588 C 208.41734,166.50092 208.06902,166.2062 207.71876,166.20588 z M 236.21876,166.20588 C 235.8685,166.2062 235.5202,166.50092 235.37501,167.20588 C 234.98826,169.0862 234.83669,170.28991 234.78126,171.17463 C 234.72584,172.05937 235.6683,172.72029 236.00001,171.39338 C 236.37424,169.89687 236.88705,168.86734 237.21876,167.70588 C 237.42609,166.98024 236.80253,166.20536 236.21876,166.20588 z M 221.96876,167.39338 C 221.24958,167.39339 221.15023,168.35899 221.12501,169.14338 C 221.04236,171.71466 219.97517,174.21192 219.06251,175.45588 C 218.15028,176.70025 216.80689,176.36933 215.56251,175.70588 C 214.31815,175.04245 213.5769,174.54522 212.25001,173.54963 C 210.9227,172.55448 209.91641,173.13633 211.50001,175.39338 C 216.11747,181.97369 221.12501,187.5982 221.12501,198.33088 C 221.12502,199.71862 221.36747,200.14338 221.96876,200.14338 C 222.57005,200.14338 222.84374,199.71862 222.84376,198.33088 C 222.84376,187.5982 227.82007,181.97369 232.43751,175.39338 C 234.02111,173.13633 233.01484,172.55448 231.68751,173.54963 C 230.36062,174.54522 229.61939,175.04245 228.37501,175.70588 C 227.13063,176.36933 225.78726,176.70025 224.87501,175.45588 C 223.96235,174.21192 222.89518,171.71466 222.81251,169.14338 C 222.78729,168.35899 222.68796,167.39339 221.96876,167.39338 z M 186.68751,165.78309 C 186.62459,165.78137 186.55597,165.79672 186.50001,165.81434 C 186.23143,165.89895 186.05249,166.22315 186.15626,166.78309 C 186.34172,167.78535 187.03621,169.7496 187.31251,170.68934 C 187.58924,171.62952 188.74506,171.42956 188.46876,170.15809 C 188.19206,168.88621 188.20674,168.50208 187.87501,167.06434 C 187.69361,166.27808 187.12805,165.79517 186.68751,165.78309 z M 257.25001,165.78309 C 256.80947,165.79517 256.24393,166.27808 256.06251,167.06434 C 255.73078,168.50208 255.74548,168.88621 255.46876,170.15809 C 255.19246,171.42956 256.3483,171.62952 256.62501,170.68934 C 256.90131,169.7496 257.5958,167.78535 257.78126,166.78309 C 257.88503,166.22315 257.70609,165.89895 257.43751,165.81434 C 257.38155,165.79672 257.31295,165.78137 257.25001,165.78309 z M 165.71876,166.18934 C 165.13997,166.23465 164.72491,166.96181 165.31251,168.03309 C 165.94637,169.18996 167.03368,170.64128 167.53126,171.47059 C 168.02886,172.29991 168.88969,171.74036 168.28126,170.68934 C 167.67324,169.63877 167.46889,168.4321 166.75001,166.93934 C 166.48045,166.37941 166.06604,166.16216 165.71876,166.18934 z M 278.21876,166.18934 C 277.87148,166.16216 277.45707,166.37941 277.18751,166.93934 C 276.46863,168.4321 276.26428,169.63877 275.65626,170.68934 C 275.04783,171.74036 275.90866,172.29991 276.40626,171.47059 C 276.90384,170.64128 277.99115,169.18996 278.62501,168.03309 C 279.21261,166.96181 278.79755,166.23465 278.21876,166.18934 z M 134.03126,169.51838 C 133.36345,169.4829 133.15409,170.68863 133.78126,171.48713 C 134.69393,172.64817 135.32901,173.26405 136.37501,174.20588 C 137.20474,174.95227 137.44592,173.98351 137.03126,173.23713 C 136.61662,172.49076 136.01682,171.7315 135.18751,170.48713 C 134.73288,169.80512 134.33481,169.53451 134.03126,169.51838 z M 309.90626,169.51838 C 309.60271,169.53451 309.20464,169.80512 308.75001,170.48713 C 307.9207,171.7315 307.3209,172.49076 306.90626,173.23713 C 306.4916,173.98351 306.73278,174.95227 307.56251,174.20588 C 308.60851,173.26405 309.24359,172.64817 310.15626,171.48713 C 310.78343,170.68863 310.57407,169.4829 309.90626,169.51838 z M 139.06251,170.51838 C 138.53029,170.52532 138.17911,170.91843 138.59376,171.83088 C 139.18763,173.13695 139.97076,174.61654 140.46876,175.61213 C 140.96636,176.60732 142.48303,176.94156 141.87501,175.39338 C 141.26659,173.84521 141.14677,173.04988 140.59376,171.61213 C 140.31726,170.89327 139.59474,170.51145 139.06251,170.51838 z M 304.87501,170.51838 C 304.34278,170.51145 303.62026,170.89327 303.34376,171.61213 C 302.79075,173.04988 302.67093,173.84521 302.06251,175.39338 C 301.45449,176.94156 302.97116,176.60732 303.46876,175.61213 C 303.96676,174.61654 304.74989,173.13695 305.34376,171.83088 C 305.75841,170.91843 305.40723,170.52532 304.87501,170.51838 z M 129.31251,170.86213 C 128.53874,170.87003 128.47208,171.6458 129.15626,172.14338 C 130.06892,172.80684 131.15649,173.54322 132.21876,174.39338 C 133.46273,175.38856 133.9447,174.4731 133.28126,173.64338 C 132.61782,172.81408 131.97153,171.9731 130.31251,171.14338 C 129.89776,170.93606 129.57043,170.8595 129.31251,170.86213 z M 314.62501,170.86213 C 314.36709,170.8595 314.03976,170.93606 313.62501,171.14338 C 311.96599,171.9731 311.3197,172.81408 310.65626,173.64338 C 309.99282,174.4731 310.47479,175.38856 311.71876,174.39338 C 312.78103,173.54322 313.86859,172.80684 314.78126,172.14338 C 315.46544,171.6458 315.39877,170.87003 314.62501,170.86213 z M 204.96876,171.58088 C 204.5358,171.64145 204.16235,172.13322 204.34376,172.76838 C 204.67549,173.92942 205.05205,175.15983 205.28126,176.36213 C 205.50256,177.52359 206.8463,177.53773 206.62501,176.48713 C 206.40415,175.43655 206.29299,174.12199 205.90626,172.51838 C 205.76109,171.91704 205.45795,171.62817 205.15626,171.58088 C 205.09342,171.57104 205.03061,171.57223 204.96876,171.58088 z M 238.78126,171.58088 C 238.47957,171.62817 238.17645,171.91704 238.03126,172.51838 C 237.64453,174.12199 237.53339,175.43655 237.31251,176.48713 C 237.09122,177.53773 238.43498,177.52359 238.65626,176.36213 C 238.88547,175.15983 239.26205,173.92942 239.59376,172.76838 C 239.77517,172.13322 239.40174,171.64145 238.96876,171.58088 C 238.90691,171.57223 238.84412,171.57104 238.78126,171.58088 z M 174.87501,169.59559 C 174.53504,169.68956 174.33942,170.33955 174.59376,171.25184 C 176.004,176.31148 176.4363,178.97621 176.18751,180.22059 C 175.93873,181.46457 175.256,181.63524 174.34376,181.22059 C 173.43153,180.80594 172.36056,180.20736 171.53126,179.62684 C 170.70196,179.04592 169.83939,179.74084 171.03126,180.72059 C 177.08606,185.69729 181.28306,191.38482 182.90626,198.28309 C 183.238,199.69294 184.12381,199.85878 183.87501,198.28309 C 182.5027,189.59329 182.23882,182.44969 184.31251,177.97059 C 185.09182,176.28738 184.30689,174.67095 183.06251,177.40809 C 182.23321,179.23301 180.89102,179.95295 179.81251,178.37684 C 178.7344,176.80116 176.5072,172.59717 175.84376,170.68934 C 175.59482,169.97391 175.28778,169.64292 175.03126,169.59559 C 174.97783,169.58574 174.92358,169.58217 174.87501,169.59559 z M 268.90626,169.59559 C 268.64974,169.64292 268.3427,169.97391 268.09376,170.68934 C 267.43032,172.59717 265.20312,176.80116 264.12501,178.37684 C 263.0465,179.95295 261.70431,179.23301 260.87501,177.40809 C 259.63063,174.67095 258.8457,176.28738 259.62501,177.97059 C 261.6987,182.44969 261.43482,189.59329 260.06251,198.28309 C 259.81371,199.85878 260.69952,199.69294 261.03126,198.28309 C 262.65446,191.38482 266.85146,185.69729 272.90626,180.72059 C 274.09813,179.74084 273.23556,179.04592 272.40626,179.62684 C 271.57696,180.20736 270.50599,180.80594 269.59376,181.22059 C 268.68152,181.63524 267.99879,181.46457 267.75001,180.22059 C 267.50122,178.97621 267.93352,176.31148 269.34376,171.25184 C 269.5981,170.33955 269.40248,169.68956 269.06251,169.59559 C 269.01394,169.58217 268.95969,169.58574 268.90626,169.59559 z M 144.43751,172.01838 C 143.89144,172.02532 143.43872,172.40782 143.68751,173.23713 C 144.08634,174.5657 144.91121,176.00157 145.18751,176.83088 C 145.46423,177.66021 146.35337,177.27317 146.18751,176.11213 C 146.02167,174.95111 145.94005,174.25902 145.71876,172.98713 C 145.60813,172.35141 144.98359,172.01145 144.43751,172.01838 z M 299.50001,172.01838 C 298.95393,172.01145 298.32939,172.35141 298.21876,172.98713 C 297.99747,174.25902 297.91585,174.95111 297.75001,176.11213 C 297.58415,177.27317 298.47329,177.66021 298.75001,176.83088 C 299.02631,176.00157 299.85118,174.5657 300.25001,173.23713 C 300.4988,172.40782 300.04608,172.02532 299.50001,172.01838 z M 163.21876,170.28309 C 162.58372,170.16913 162.49242,171.80734 163.03126,172.47059 C 163.75015,173.35576 164.74859,174.42538 165.75001,175.62684 C 166.57933,176.62244 167.09175,175.73741 166.59376,174.90809 C 166.09619,174.07837 165.35814,173.19678 164.03126,171.09559 C 163.69944,170.5703 163.43044,170.32108 163.21876,170.28309 z M 280.71876,170.28309 C 280.50708,170.32108 280.23808,170.5703 279.90626,171.09559 C 278.57938,173.19678 277.84133,174.07837 277.34376,174.90809 C 276.84577,175.73741 277.35819,176.62244 278.18751,175.62684 C 279.18893,174.42538 280.18737,173.35576 280.90626,172.47059 C 281.4451,171.80734 281.3538,170.16913 280.71876,170.28309 z M 148.71876,174.23713 C 148.32474,174.20948 147.9904,174.52908 148.15626,175.33088 C 148.38756,176.44733 148.7233,177.37403 149.00001,178.42463 C 149.27633,179.47524 150.00001,179.29522 150.00001,178.29963 C 150.00002,177.30446 149.82212,176.19398 149.65626,175.14338 C 149.57334,174.61809 149.11279,174.26479 148.71876,174.23713 z M 295.21876,174.23713 C 294.82473,174.26479 294.36418,174.61809 294.28126,175.14338 C 294.1154,176.19398 293.9375,177.30446 293.93751,178.29963 C 293.93751,179.29522 294.66119,179.47524 294.93751,178.42463 C 295.21422,177.37403 295.54996,176.44733 295.78126,175.33088 C 295.94712,174.52908 295.61278,174.20948 295.21876,174.23713 z M 161.81251,175.65809 C 161.19365,175.75159 160.6491,176.34985 161.37501,177.28309 C 162.53607,178.77584 163.80743,179.82383 164.25001,180.37684 C 164.69218,180.92987 165.81263,180.72579 165.09376,179.56434 C 164.35906,178.37789 163.2476,176.94908 162.75001,176.06434 C 162.56343,175.73257 162.18383,175.602 161.81251,175.65809 z M 281.87501,175.65809 C 281.60285,175.6867 281.32745,175.81551 281.18751,176.06434 C 280.68992,176.94908 279.57846,178.37789 278.84376,179.56434 C 278.12489,180.72579 279.24534,180.92987 279.68751,180.37684 C 280.13009,179.82383 281.40145,178.77584 282.56251,177.28309 C 283.28842,176.34985 282.74387,175.75159 282.12501,175.65809 C 282.03218,175.64407 281.96573,175.64855 281.87501,175.65809 z M 141.15626,179.83088 C 140.668,179.78654 140.49938,180.18047 141.15626,181.08088 C 142.64903,183.12666 144.29582,186.22273 144.40626,187.54963 C 144.51713,188.87695 143.86095,188.86213 143.25001,188.86213 C 141.42512,188.86215 140.53363,187.53012 138.87501,187.14338 C 137.21599,186.75625 136.97522,187.62865 138.15626,188.48713 C 144.23856,192.91082 150.33501,197.84636 152.78126,202.33088 C 153.77645,204.15578 155.12181,204.82284 154.37501,203.08088 C 152.08795,197.74371 151.53367,193.22426 152.03126,190.48713 C 152.52926,187.75001 153.20794,185.90698 153.12501,184.33088 C 153.0421,182.7552 152.1484,182.86271 151.78126,184.33088 C 151.53247,185.32648 151.05048,186.64538 150.71876,187.14338 C 150.38705,187.64099 149.05314,187.91993 147.78126,186.20588 C 146.50937,184.49186 143.30061,181.19144 142.25001,180.36213 C 141.85605,180.05115 141.44922,179.85749 141.15626,179.83088 z M 302.78126,179.83088 C 302.4883,179.85749 302.08147,180.05115 301.68751,180.36213 C 300.63691,181.19144 297.42815,184.49186 296.15626,186.20588 C 294.88438,187.91993 293.55047,187.64099 293.21876,187.14338 C 292.88704,186.64538 292.40505,185.32648 292.15626,184.33088 C 291.78912,182.86271 290.89542,182.7552 290.81251,184.33088 C 290.72958,185.90698 291.40826,187.75001 291.90626,190.48713 C 292.40385,193.22426 291.84957,197.74371 289.56251,203.08088 C 288.81571,204.82284 290.16107,204.15578 291.15626,202.33088 C 293.60251,197.84636 299.69896,192.91082 305.78126,188.48713 C 306.9623,187.62865 306.72153,186.75625 305.06251,187.14338 C 303.40389,187.53012 302.5124,188.86215 300.68751,188.86213 C 300.07657,188.86213 299.42039,188.87695 299.53126,187.54963 C 299.6417,186.22273 301.28849,183.12666 302.78126,181.08088 C 303.43814,180.18047 303.26952,179.78654 302.78126,179.83088 z\" fill=\"#000\" stroke=\"none\"\/><path d=\"M 150.12687,212.65106 152.07661,218.82525 M 154.13742,211.48082 155.86506,217.72081 M 158.46968,210.7684 159.65672,217.1334 M 162.48993,209.96408 163.7604,216.31295 M 167.64553,209.45517 168.67848,215.84698 M 173.13007,209.46186 174.24249,215.84031 M 178.48383,207.65149 179.28735,214.07616 M 183.52067,207.97645 184.32419,214.40112 M 188.39503,207.32654 189.19855,213.75121 M 193.28767,206.82164 193.72967,213.28125 M 198.51623,206.81977 198.89973,213.28312 M 203.25656,206.49325 203.58317,212.95973 M 208.48353,206.16701 208.75481,212.63605 M 214.49524,206.00453 214.76652,212.47357 M 293.81064,212.65106 291.8609,218.82525 M 289.80009,211.48082 288.07245,217.72081 M 285.46783,210.7684 284.28079,217.1334 M 281.44758,209.96408 280.17711,216.31295 M 276.29198,209.45517 275.25903,215.84698 M 270.80744,209.46186 269.69502,215.84031 M 265.45368,207.65149 264.65016,214.07616 M 260.41684,207.97645 259.61332,214.40112 M 255.54248,207.32654 254.73896,213.75121 M 250.64984,206.82164 250.20784,213.28125 M 245.42128,206.81977 245.03778,213.28312 M 240.68095,206.49325 240.35434,212.95973 M 235.45398,206.16701 235.1827,212.63605 M 229.44227,206.00453 229.17099,212.47357 M 221.96876,205.58364 221.96876,212.7068\"\/><\/g><\/g><\/svg>"
},
"formal_en": "Principality of Liechtenstein",
"formal_fr": "",
"gdp_md_est": "4978.00",
"gdp_year": "2014.00",
"geo": {
"area": 160,
"borders": [
"AUT",
"CHE"
],
"continent": {
"EU": "Europe"
},
"independent": "Yes",
"landlocked": true,
"latitude": "47 16 N",
"latitude_desc": "47.14126968383789",
"latlng": [
47.26666666,
9.53333333
],
"longitude": "9 32 E",
"longitude_desc": "9.552783012390137",
"max_latitude": "47.233333",
"max_longitude": "9.75",
"min_latitude": "47.05",
"min_longitude": "9.5",
"postal_code": true,
"region": "Europe",
"region_code": "150",
"region_un": "Europe",
"region_wb": "Europe & Central Asia",
"subregion": "Western Europe",
"subregion_code": "155",
"world_region": "EMEA"
},
"geou_dif": "0.00",
"geounit": "Liechtenstein",
"gu_a3": "LIE",
"homepart": "1.00",
"income_grp": "2. High income: nonOECD",
"independent": true,
"iso_3166_1_alpha2": "LI",
"iso_3166_1_alpha3": "LIE",
"iso_3166_1_numeric": "438",
"iso_a2": "LI",
"iso_a3": "LIE",
"iso_a3_eh": "LIE",
"iso_n3": "438",
"labelrank": "6.00",
"languages": {
"deu": "German"
},
"lastcensus": "2010.00",
"level": "2.00",
"long_len": "13.00",
"mapcolor7": "2.00",
"mapcolor8": "4.00",
"mapcolor9": "2.00",
"mapcolor13": "9.00",
"max_label": "10.00",
"min_label": "5.00",
"min_zoom": "0.00",
"name": {
"common": "Liechtenstein",
"native": {
"deu": {
"common": "Liechtenstein",
"official": "F\u00fcrstentum Liechtenstein"
}
},
"official": "Principality of Liechtenstein"
},
"name_alt": "",
"name_ciawf": "Liechtenstein",
"name_len": "13.00",
"name_long": "Liechtenstein",
"name_nev": "Liechtenstein",
"name_sort": "Liechtenstein",
"note_adm0": "",
"note_brk": "",
"pop_est": "38244.00",
"pop_rank": "7.00",
"pop_year": "2017.00",
"postal": "FL",
"record_type": "country",