-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ttl
8551 lines (8196 loc) · 579 KB
/
data.ttl
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
<https://www.sir-lab.usc.edu/cs586/SouthAfrica>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"423218"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"6.249"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.054"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"1400.01"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"842.16"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
3.8431E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
2.342E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.82"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"579000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"55.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"41.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.417"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"45.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"23.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
3.9E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"19.14"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
4.86E8 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"7552"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" 3.5 " .
<https://www.sir-lab.usc.edu/cs586/Honduras>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"8607"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.031"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"1.23"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"522.86"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"483.33"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
1.853E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
4.85E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.02"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"56000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"1.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"73.17"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"56.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.435"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"44.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"5.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"24.16"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
8.45E7 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"0"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" - " .
<https://www.sir-lab.usc.edu/cs586/Burma>
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"281.62"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"1172.41"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
6.09E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.06"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"42000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"0.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"64.76"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"74.4"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.543"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"44.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"5.7"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
7.07E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"18.89"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
5.517E8 .
<https://www.sir-lab.usc.edu/cs586/Christiancountriesaverage>
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
4.2954E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
8.677E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"463751.63"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"70.79"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"18.61"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.885E8 .
<https://www.sir-lab.usc.edu/cs586/Japan>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"1312750"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"10.701"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.059"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"2782.43"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"1912.91"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
5.96E13 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
8.597E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.74"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
4.36E7 ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"14.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"82.59"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"54.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.521"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"5.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
5.14E11 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"8.23"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.2725E9 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"325989"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
"-0.7"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/SouthKorea>
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"2174.36"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"2234.53"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
1.1299999999999998E13 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
4.551E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.51"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
2.19E7 ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"7.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"80.87"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.505"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"3.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
4.11E11 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"8.33"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
4.896E8 .
<https://www.sir-lab.usc.edu/cs586/Guatemala>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"13550"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.89"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"570.79"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"713.72"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
5.054E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
8.16E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.87"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"79000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"0.5"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"71.33"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"62.4"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.324"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"48.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"3.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
1.2E9 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"25.99"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.437E8 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"298"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" -7.7 " .
<https://www.sir-lab.usc.edu/cs586/EastAsiaandPacificaverage>
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
7.1945E12 ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"72.4"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"19.21"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
7.236E8 .
<https://www.sir-lab.usc.edu/cs586/SyrianArabRepublic>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"44649"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"2.208"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Poland>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"304238"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"8.467"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"905.62"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"882.96"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
4.898E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
1.55E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.25"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"545400.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"5.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"76.75"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"48.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"60.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.454"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"65.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"11.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
1.2E11 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"9.88"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
3.838E8 .
<https://www.sir-lab.usc.edu/cs586/Philippines>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"97034"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.036"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"6.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"330.73"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"457.41"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
2.5018E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
5.684E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.61"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"307200.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"1.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"68.39"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"60.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.447"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"7.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
2.9E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"24.62"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.0572E9 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"3589"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" 9.3 " .
<https://www.sir-lab.usc.edu/cs586/RepublicoftheCongo>
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
1.368E11 ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"57.78"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
4.34E7 .
<https://www.sir-lab.usc.edu/cs586/Macao>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"2.366"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Tanzania_UnitedRepublicof>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.129"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Ghana>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"14436"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.476"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"351.22"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"3010.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
4.071E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
5.309999999999999E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.33"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"57000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"1.46"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"60.79"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"65.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.443"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"11.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"31.7"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
2.52E8 .
<https://www.sir-lab.usc.edu/cs586/Curacao>
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"1101.83"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"1149.61"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"76.16"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
"151892.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/AshmoreandCartierIslands>
<http://www.nationmaster.com/country-info/stats/People/Population>
"0.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Denmark>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"43645"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"7.392"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"1.13"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"3269.62"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"2007.55"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
3.1424E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
3.356E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.66"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"166500.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"4.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"79.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"60.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"66.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.524"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"37.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"66.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"4.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
2.7E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"10.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
5.559999999999999E7 .
<https://www.sir-lab.usc.edu/cs586/Malaysia>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"232041"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"7.638"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.415"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"979.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"784.85"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
3.0352999999999995E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
1.12E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.46"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"536000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"1.9"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"74.67"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"60.5"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.435"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"48.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"3.5"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
4.690000000000001E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"20.41"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
2.963E8 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"7620"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" 5.8 " .
<https://www.sir-lab.usc.edu/cs586/TheBahamas>
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"3025.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"2400.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
8.15E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
1.79E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"36000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"3.4"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"74.75"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"65.4"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.483"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"7.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"15.81"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
"319031.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/LibyanArabJamahiriya>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"6.072"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/WestBank>
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
4.57E10 ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"18.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"23.81"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
2.68E7 .
<https://www.sir-lab.usc.edu/cs586/SaintPierreandMiquelon>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"8"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.069"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
4.929E8 ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"1000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"10.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"7.79"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
"5774.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Korea,Republicof>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"12.721"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/UnitedRepublicofTanzania>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"9852"^^<http://www.w3.org/2001/XMLSchema#long> .
<https://www.sir-lab.usc.edu/cs586/Myanmar>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"10419"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.266"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/India>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"2191277"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.654"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"8.15"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"452.11"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"388.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
1.84E13 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
6.988E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.98"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
2.98E7 ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"0.9"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"65.96"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"55.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"60.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.397"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"48.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"60.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"10.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
4.2840000000000006E11 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"20.24"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.22E10 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"42854"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
"-0.4"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/OAPI>
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"578"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" 4.7 " .
<https://www.sir-lab.usc.edu/cs586/Colombia>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"72600"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.775"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"6.05"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"474.66"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"629.65"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
3.6979E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
4.535E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"288000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"1.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"73.57"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"62.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"57.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.497"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"48.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"62.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"11.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
3.3E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"16.98"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
4.575E8 ;
<http://www.wipo.int/ipstats/en/wipi/index.html/NumberOfPatents>
"2158"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://www.wipo.int/ipstats/en/wipi/index.html/PatentChangePercent>
" 6.2 " .
<https://www.sir-lab.usc.edu/cs586/SolomonIslands>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"275"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.016"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
1.01E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
7.626E8 ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"2000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"1.9"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"67.29"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"64.5"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.407"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"45.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"26.9"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
"597248.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Benin>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"5714"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.488"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.03"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
7.56E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
8.701E9 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.79"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"23000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"0.23"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"58.94"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"71.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.391"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"37.02"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
9.880000000000001E7 .
<https://www.sir-lab.usc.edu/cs586/Venezuela(BolivarianRepublicof)>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"185748"^^<http://www.w3.org/2001/XMLSchema#long> .
<https://www.sir-lab.usc.edu/cs586/Nepal>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"6446"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.163"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"5.02"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"166.49"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"196.99"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
1.941E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
5.35E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.03"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"18000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"0.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"67.55"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"61.5"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"58.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.388"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"48.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"58.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"46.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
1.0E9 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"21.48"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
3.043E8 .
<https://www.sir-lab.usc.edu/cs586/Bulgaria>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"47707"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"6.502"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.741"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"506.76"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"543.71"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
5.103E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
3.046E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.15"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"125000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"6.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"74.16"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"46.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"60.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.402"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"63.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"9.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
1.4E10 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"9.07"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
6.98E7 .
<https://www.sir-lab.usc.edu/cs586/EuropeanUnionaverage>
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
5.9405E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
1.0029000000000001E12 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.33"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"516209.26"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"6.42"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"78.97"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"51.81"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.476"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"10.44"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"10.17"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.819E8 .
<https://www.sir-lab.usc.edu/cs586/Martinique>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"2377"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"5.876"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
1.1200000000000002E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"13800.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"27.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"13.74"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Tajikistan>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"4227"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.94"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"4.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"187.27"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"353.73"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
6.99E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
1.59E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"0.74"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"38000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"6.1"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"67.14"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"55.4"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"58.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.328"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"63.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"2.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"25.49"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
7.91E7 .
<https://www.sir-lab.usc.edu/cs586/RepublicofMacedonia>
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.624"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"386.85"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"414.26"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
9.619999999999998E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
7.25E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.25"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"74.87"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Female-retirement-age>
"62.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Male-retirement-age>
"64.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Military/Budget>
2.3E9 ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"11.72"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
2.09E7 .
<https://www.sir-lab.usc.edu/cs586/RŽunion>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"1099"^^<http://www.w3.org/2001/XMLSchema#long> .
<https://www.sir-lab.usc.edu/cs586/England>
<http://www.nationmaster.com/country-info/stats/People/Population>
5.301E8 .
<https://www.sir-lab.usc.edu/cs586/GazaStrip>
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
"202000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"34.8"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"33.27"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.76E7 .
<https://www.sir-lab.usc.edu/cs586/Moldova,Republicof>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"1.995"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/PitcairnIslands>
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"-9.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
"65.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/Burundi>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"1044"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"0.259"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"4.9"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>
"256.25"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Real-estate-prices/Rent-per-month/3-bedroom-apartment/City-centre>
"2500.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
2.4700000000000004E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
2.214E9 ;
<http://www.nationmaster.com/country-info/stats/Energy/Gasoline-prices>
"1.66"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"3000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"0.66"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"53.14"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Employment-rate/Adults>
"84.2"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.508"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Hours-worked/Standard-workweek>
"40.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"40.04"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
1.089E8 .
<https://www.sir-lab.usc.edu/cs586/Macau>
<http://www.nationmaster.com/country-info/stats/Economy/GDP>
4.358E11 ;
<http://www.nationmaster.com/country-info/stats/Energy/Electricity/Consumption>
4.21E10 ;
<http://www.nationmaster.com/country-info/stats/Energy/Oil/Consumption>
"16000.0"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Hospital-beds/Per-1%2C000-people>
"5.3"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Health/Life-expectancy-at-birth%2C-total/Years>
"79.91"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Force/Total/Per-capita>
"0.562"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Labor/Unemployment-rate>
"3.6"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Birth-rate>
"9.03"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/People/Population>
"583003.0"^^<http://www.w3.org/2001/XMLSchema#double> .
<https://www.sir-lab.usc.edu/cs586/NewZealand>
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts1990-2015>
"33124"^^<http://www.w3.org/2001/XMLSchema#long> ;
<http://edgar.jrc.ec.europa.eu/overview.php?v=CO2ts_pc1990-2013>
"7.952"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Conflict/Terrorism/Global-Terrorism-Index>
"0.079"^^<http://www.w3.org/2001/XMLSchema#double> ;
<http://www.nationmaster.com/country-info/stats/Cost-of-living/Average-monthly-disposable-salary/After-tax>