From 5cb68cf9240940e14f414a1dd957fb3f34a10770 Mon Sep 17 00:00:00 2001 From: Kent Riemondy Date: Sun, 3 Dec 2023 16:59:29 -0700 Subject: [PATCH] polish and pub c4 --- .../class4.Rmd | 319 ++++--- .../class4.html | 779 +++++++++++------- .../download_files.R | 1 + classes.Rmd | 1 + data/class3/country_population.csv | 198 +++++ data/class3/get_data.R | 28 +- 6 files changed, 897 insertions(+), 429 deletions(-) create mode 100644 data/class3/country_population.csv diff --git a/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.Rmd b/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.Rmd index ba55f94..da1c6c5 100644 --- a/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.Rmd +++ b/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.Rmd @@ -13,8 +13,6 @@ output: ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE, - message = FALSE, - warning = FALSE, R.options = list(width = 80)) ``` @@ -29,8 +27,8 @@ source("https://raw.githubusercontent.com/rnabioco/bmsc-7810-pbda/main/_posts/20 ## Goals for today - Discuss wide and long (tidy) data representations for analysis -- Introduce tidyr for "tidying" rectangular data -- Joining related tables with dplyr +- Introduce the `tidyr` package for "tidying" rectangular data +- Joining related tables with `dplyr` - Strategies for missing data @@ -42,38 +40,47 @@ source("https://raw.githubusercontent.com/rnabioco/bmsc-7810-pbda/main/_posts/20 Data can be represented in multiple formats. Today we will discuss two common tabular formats for organizing data for analysis. -Consider the following dataset, which contains GDP estimates per person for countries throughout history. This representation of the data is commonly referred to as 'wide' data format, which is a matrix-like format containing samples or features as rows or columns, with values associated with each sample and feature. +Consider the following dataset, which contains population estimates for countries throughout history. This representation of data is commonly referred to as 'wide' data format, which is a matrix-like format containing samples as rows and features as columns, with values associated with each observation of a sample and feature. -```{r, echo = FALSE} +```{r} library(readr) -gdp_data <- read_csv("data/income_per_person.csv") -gdp_data +pop_wide <- read_csv("data/country_population.csv") +pop_wide ``` The wide matrix-like format is very useful and a common format used for statistics and machine learning. Matrices can take advantage of optimized numerical routines and are the data representation of mathematical matrices. We will work with matrices later in class, particularly with their use to generate heatmaps. -Representing data in a matrix has a few practical implications: - -1) There is only 1 type of data stored in a matrix-like representation (e.g. each cell is the same unit of observation, the GDP per person). To store additional related data types (e.g. the country population) you need to place each new value in an independent matrix. +Representing data in a matrix however has a few practical implications: -2) The matrix-like format does not easily lend itself to more complicated summaries. For example, what if we wanted to average the GDP values for each decade or century? We would write rather complicated code to parse out subsets of columns for each time period, average them, then merge them into a summary table. +1) There is only 1 type of data stored in a matrix-like representation (e.g. each cell is the same unit of observation, the population per country). To store additional related data types (e.g. the countries GDP each year) you need to place each new value in an independent matrix. -Data in a matrix can be instead formatted into a long (also sometimes called "tidy") format. +2) The matrix-like format does not easily lend itself to more complicated summaries. For example, what if we wanted to average the GDP values for each decade or century? We would have to write rather complicated code to parse out subsets of columns for each time period, average them, then merge them into a summary matrix. -```{r, echo = FALSE} -tidyr::pivot_longer(gdp_data, - cols = -country, - names_to = "year", - values_to = "gdp") -``` +Data in a matrix can be instead formatted into a long (also called "tidy") format. -The long format of this data convert the many columns of a matrix into a 3 column data.frame containing 3 variables (`country`, `year`, and `gdp`). +```r +#> # A tibble: 10 × 3 +#> country year population +#> +#> 1 Afghanistan 1800 3280000 +#> 2 Afghanistan 1801 3280000 +#> 3 Afghanistan 1802 3280000 +#> 4 Afghanistan 1803 3280000 +#> 5 Afghanistan 1804 3280000 +#> 6 Afghanistan 1805 3280000 +#> 7 Afghanistan 1806 3280000 +#> 8 Afghanistan 1807 3280000 +#> 9 Afghanistan 1808 3280000 +#> 10 Afghanistan 1809 3280000 +``` + +The long format of this data convert the many columns of a matrix into a 3 column data.frame containing 3 variables (`country`, `year`, and `population`). ## Tidy data format >“Tidy datasets are all alike, but every messy dataset is messy in its own way.” –– Hadley Wickham -A tidy dataset is structured in a manner to be most effectively processed in R using the tidyverse. It makes the data easier to plot, easier to perform computations and perform complex tasks. +A tidy dataset is structured in a manner to be most effectively processed in R using the tidyverse. For example, with the population dataset, instead of having to provide logic to process 100s of columns, instead there are only 3 columns. Most data tables that you've worked with are probably not tidy. It takes experience to understand the best way to format the data for data processing. As you work more in R and the tidyverse this will become more natural. @@ -85,20 +92,20 @@ Tidy data has the following attributes: What is a variable, what is an observation, and what is a value? -1) A value is a number or word. +1) A value is a number or word, e.g. the population. -2) Every value belongs to a variable and an observation +2) Every value belongs to a variable and an observation, e.g. the population value observed in Austria in the year 1910. -3) A variable contains all values that measure the same attribute (e.g. height, temperature, duration, magnitude) across units. +3) A variable contains all values that measure the same attribute (e.g. height, temperature, duration, magnitude) across units. (e.g. Austria is a value of the country variable, 1910 is a value of the year variable). -4) An observation contains all values measured on the same unit (e.g. the same individual, the same day, the same country, the samegene). +4) An observation contains all values measured on the same unit across attributes (e.g observations about Austria in 1910). ```{r, echo = FALSE} knitr::include_graphics("https://raw.githubusercontent.com/rnabioco/bmsc-7810-pbda/main/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/img/tidydata.png") ``` -Shown below is a simple data table in a tidy format, provided by the `tidyr` package. This data table shows the # of TB cases documented by the WHO in a few countries in the years 1999 and 2000. +Shown below is a simplified data table in a tidy format, provided by the `tidyr` package. This data table shows the # of TB cases documented by the WHO in a few countries in the years 1999 and 2000. ```{r} library(tidyr) @@ -121,11 +128,11 @@ table4b What advantages does the tidy format provide? 1) Easy to generate summaries of the data. - e.g. via group_by() -> summarize() + e.g. via `group_by()` -> `summarize()` 2) Easy to plot the data using the ggplot2 framework (more on that in later classes) -3) Very easy to join multiple data tables based on key values. +3) Very easy to join multiple related data frames based on key values. Some disadvantages: @@ -154,11 +161,36 @@ The `pivot_longer` function requires specifying the columns to pivot using the [ knitr::include_graphics("https://github.com/rnabioco/bmsc-7810-pbda/raw/main/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/img/pivot_longer.png") ``` +```{r} +table4a +``` ```{r} pivot_longer(table4a, cols = `1999`:`2000`) # pivot columns from 1999 -> 2000 pivot_longer(table4a, cols = -country) # pivot all columns not matching country ``` + +Let's try it out on the `pop_wide` population data + +```{r} +pop_long <- pivot_longer(pop_wide, cols = -country) + +pop_long <- pivot_longer(pop_wide, + cols = -country, + names_to = "year", + values_to = "population") +``` + + +Why is the useful? Well now we can quickly use `dplyr` to answer questions, such +as what is the average population per country across all years? + +```{r} +library(dplyr) +group_by(pop_long, country) |> + summarize(mean_population = mean(population)) +``` + ## Reshaping long data to wide `pivot_wider(tbl, names_from = <...>, values_from = <...>)` @@ -169,11 +201,19 @@ pivot_longer(table4a, cols = -country) # pivot all columns not matching country ```{r, echo = FALSE } knitr::include_graphics("https://github.com/rnabioco/bmsc-7810-pbda/raw/main/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/img/pivot_wider.png") ``` +```{r} +table2 +``` ```{r} pivot_wider(table2, names_from = type, values_from = count) ``` +Try it out with the `pop_long` population data. + +```{r} + +``` ## Separate @@ -189,46 +229,43 @@ pivot_wider(table2, names_from = type, values_from = count) knitr::include_graphics("https://github.com/rnabioco/bmsc-7810-pbda/raw/main/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/img/separate.png") ``` +```{r} +table3 +``` + ```{r} separate(table3, col = rate, into = c("cases", "pop"), sep = "/") ``` ## Exercises -Use the [gapminder GDP dataset](https://www.gapminder.org/data/documentation/gd001/) to perform the following tasks and answer the following questions: - -1) Convert the GDP dataset into tidy format. +Use the [gapminder population dataset](https://www.gapminder.org/data/documentation/gd003/) (`pop_long`) to perform the following tasks and answer the following questions: -```{r, eval = FALSE} -library(tidyverse) -gdp_data <- read_csv("data/income_per_person.csv") -... -``` -2) Which country had the highest GDP per person in 1985? +1) Which country had the highest population in 1810? ```{r} ``` -3) What was the mean worldwide GDP in the year 1999? +2) What was the world population in the year 1840? ```{r} ``` -4) Which country had the highest average GDP in the 19th century? +3) Which country had the lowest average population in the 19th century (years 1800-1899)? ```{r} + ``` -## Binds/Joins +## Using binds and joins to aggregate multiple data.frames ### column binds - ```{r, echo = FALSE, fig.cap = "from the dplyr cheatsheet at https://posit.co/wp-content/uploads/2022/10/data-transformation-1.pdf"} knitr::include_graphics("https://github.com/rnabioco/bmsc-7810-pbda/raw/main/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/img/bind_cols.png") ``` @@ -266,6 +303,7 @@ You can also use a list of `data.frames` with `bind_rows`. If the list is named, ```{r} lst_of_dfs <- list(one = df_1, two = df_2) + bind_rows(lst_of_dfs) bind_rows(lst_of_dfs, .id = "source_table") @@ -275,7 +313,7 @@ bind_rows(lst_of_dfs, .id = "source_table") Join operations are used to join one table with another table by matching the values shared in particular columns. Join operations enable linking of multiple datasets that contain shared values. -There are multiple way to join two tables, depending on how you want to handle different combinations of values present in two tables. +There are multiple way to join two tables, depending on how you want to handle different combinations of values present or missing in two tables. Assume we have two data.frames called x and y @@ -292,50 +330,57 @@ The following joins add columns from y to x, matching rows based on the matching If a row in x matches multiple rows in y, all the rows in y will be returned once for each matching row in x. -Consider the following simple tables: +Consider our `pop_long` data.frame. What if we wanted to add additional variables to the data.frame, such as the estimated GDP? ```{r} -animal_class <- data.frame( - name = c("cat", "pike", "bear", "dog"), - genus = c("Felis", "Esox", "Ursus", "Canis"), - class = c("Mammalia", "Actinopterygii", "Mammalia", "Mammalia") -) - -animal_class +pop_long[1:5, ] ``` +First we'll read in an additional dataset from `Gapminder` that contains GDP estimates per country over time. Note that these datafiles have been preprocessed using code [here](https://github.com/rnabioco/bmsc-7810-pbda/blob/main/data/class3/get_data.R) + ```{r} -animal_species <- data.frame( - name = c("bluejay", "cat", "pike", "bear"), - species = c("cristata", "catus", "lucius", "arctos") -) -animal_species +# read in and convert to long format +gdp_wide <- read_csv("data/income_per_person.csv") +gdp_long <- pivot_longer(gdp_wide, + -country, + names_to = "year", + values_to = "GDP") +gdp_long ``` +Now we can use various joins to merge these data.frames into 1 data.frame. + ```{r} -# join on name column, keeping values from name columns present in both data.frames -inner_join(animal_class, animal_species) +# join on country and year columns, keeping rows with values present in both tables +inner_join(gdp_long, pop_long) ``` +The `Joining, by = join_by(country, year)` message indicates that the "country" and "year" columns were used to determine matching rows between the two tables. This is auto-detected based on shared column names in the two data.frames. + +You can use the `by` argument to explicitly specify the columns you'd like to join, which is useful if the columns of interest have different names in the two tables. + ```{r} -# join on name column, keeping values all values from animal_class data.frame -left_join(animal_class, animal_species) +# same as above, but being explicit about the columns to use for joining. + +# note that for joins you DO need to use quotes for the columns +inner_join(gdp_long, pop_long, by = c("country", "year")) + +# unless you use the `join_by` helper +inner_join(gdp_long, pop_long, by = join_by(country, year)) ``` ```{r} -# join on name column, keeping values all values from animal_class and animal_species data.frame -full_join(animal_class, animal_species) +# join on country and year columns, keeping values all values from gdp_long data.frame +left_join(gdp_long, pop_long) ``` -The `Joining, by = "name"` message indicates which columns were used to determine matching rows between the two tables. This is auto-detected based on shared column names. You can use the `by` argument to explicitly specify the columns you'd like to join, which is useful if the columns of interest have different names in the two tables. - ```{r} -# same as above, but being explicitly about the column to use for joining. - -# note that for joins you DO need to use quotes for the columns -inner_join(animal_class, animal_species, by = "name") +# join on country and year columns, keeping values all values from gdp_long and pop_long data.frame +full_join(gdp_long, pop_long) ``` + + ## Missing data Join operations will often generate missing data (e.g. `NA` values). @@ -350,10 +395,17 @@ Join operations will often generate missing data (e.g. `NA` values). + `NULL` means "undefined" and is only used in a programming context (i.e., a function that returns `NULL`). You can't put `NULL` values in a data frame. -Let's examine a data frame with some missing data. +Let's examine the output from the `full_join()` operation above which generated NA values. ```{r complete} -starwars +country_stats <- full_join(gdp_long, pop_long) +country_stats +``` +#### Quick check for `NA` values + +```{r} +sum(is.na(country_stats)) +any(is.na(country_stats)) ``` ### `filter` with `is.na()` @@ -361,11 +413,11 @@ starwars You can identify variables with `NA` values by combining `filter()` and `is.na()`. ```{r filter_na, eval = FALSE} -# find rows where mass is NA -filter(starwars, is.na(mass)) +# find rows where GDP is NA +filter(country_stats, is.na(GDP)) -# find rows where mass is *not* NA -filter(starwars, !is.na(mass)) +# find rows where GDP is *not* NA +filter(country_stats, !is.na(GDP)) ``` ### `na.omit()` @@ -373,97 +425,118 @@ filter(starwars, !is.na(mass)) You can remove **all** rows containing `NA` values with `na.omit()`. ```{r na.omit, eval = FALSE} -na.omit(starwars) +na.omit(country_stats) ``` ### Computing with `NA` values -Exclude `NA` values from operations with `na.rm = TRUE`. +Instead of removing `NA` values we can instead just exclude `NA` values from operations with a common optional argument `na.rm = TRUE`. ```{r stat_na, eval = FALSE} -starwars$mass +x <- c(1, NA, 3) +sum(x) +sum(x, na.rm = TRUE) + # if NAs are present, the result is NA -sum(starwars$mass) -# solution: drop NAs from the calculation -sum(starwars$mass, na.rm = TRUE) +sum(country_stats$GDP) + +# solution: exclude NAs from the calculation +sum(country_stats$GDP, na.rm = TRUE) ``` ```{r, eval = FALSE} -group_by(starwars, species) %>% - summarize(avg_mass = mean(mass, na.rm = TRUE)) +group_by(country_stats, country) %>% + summarize(avg_GDP = mean(GDP, na.rm = TRUE)) ``` -Also you can remove `NaN` values by detecting for their presence using `is.nan()`. These values occur because a few species don't have any characters with values for the mass column, and computing the mean of an empty vector is NaN. +Also you can remove `NaN` values by detecting for their presence using `is.nan()`. These values often occur when a summary operation (e.g. mean or sum) is performed on a vector with 0 elements. ```{r} -group_by(starwars, species) %>% - summarize(avg_mass = mean(mass, na.rm = TRUE)) %>% - filter(!is.nan(avg_mass)) +x <- 1:10 +# none are TRUE +x <- x[x > 100] +x +length(x) +mean(x) + +mean(c(1, NaN), na.rm = TRUE) ``` ### Replacing `NA` values -Let's replace the NA values in `hair_color` with a string `missing data`. +Let's replace the NA values in the `population` column with a number, such as -1234. + +This is an operation that is easy to do with base R `[]` approach. ```{r} -starwars %>% - mutate(new_hair_color = ifelse(is.na(hair_color), - "missing data", - hair_color)) %>% - select(hair_color, new_hair_color) +# use is.na to identify NA values to replace with -1234 +country_stats$population[is.na(country_stats$population)] <- -1234 + +country_stats[1:10, ] ``` -We can also replace with values from another column, such as `species`. +Alternatively you can use the `ifelse()` base R function. ```{r} -starwars %>% - mutate(new_hair_color = ifelse(is.na(hair_color), - species, - hair_color)) %>% - select(hair_color, new_hair_color) +x <- 1:10 + +ifelse(x < 5, # an expression producing a logical vector + 5, # if TRUE, replace with this expression + x) # if FALSE replace with this expression ``` -`ifelse` is a base R function that operates on vectors and is useful when you want to replace single values. +Replace `-1234` with `NA` using base R `$` notation to identify columns. + +```{r} +country_stats$population <- ifelse(country_stats$population == -1234, + NA, + country_stats$population) +country_stats[1:10, ] +``` + +The same can also be done with dplyr, in this case replacing `NA` values again with -1234. + +```{r} +mutate(country_stats, + population = ifelse(is.na(population), + -1234, + population)) +``` ### case_when() -If you want to perform more complex operations use `case_when()` from dplyr. `case_when()` is equivalent to performing multiple nested ifelse() operations, whereby if the first operation is **not** TRUE, then check for the second condition, repeating for each condition until there are no more statements. +If you want to perform more complex operations use `case_when()` from dplyr. `case_when()` is equivalent to performing multiple nested `ifelse()` operations, whereby if the first operation is **not** TRUE, then check for the second condition, repeating for each condition until there are no more statements. the syntax for case when is : ```r -`case_when(conditional statement ~ "value in result", - conditional statement #2 ~ "another value in result", +`case_when(conditional statement ~ "value in result if TRUE", + conditional statement #2 ~ "another value in result if", TRUE ~ "default if neither conditional statement 1 or 2 are TRUE")` ``` -Here is an example from the documentation. Make a new column called `type`. Return "large" if the height or mass of a character is > 200. If that is not true, then return "robot" if the species is "Droid". If that is not TRUE, then default to returning "other". +For a use case, imagine that we wanted to add a new column called `era`, which signified if the year was in the `past`, `present` or `future.` ```{r} -starwars %>% - select(name:mass, species) %>% - mutate(type = case_when(height > 200 | mass > 200 ~ "large", - species == "Droid" ~ "robot", - TRUE ~ "other")) -``` - -### Using group_by() to replace NAs with summaries from the data +country_stats |> + mutate( + era = case_when(year < 2023 ~ "past", + year == 2023 ~ "present", + year > 2023 ~ "future") + ) -Lastly, it may be beneficial to replace the NA values with a summary value representative of the data. This is an example of data "imputation". +# same as above, using TRUE on the left side provides a default value. +country_stats |> + mutate( + era = case_when(year < 2023 ~ "past", + year == 2023 ~ "present", + TRUE ~ "future") + ) -For example we might decide that we want to replace NA values in the "mass" column with the average mass of the species of the character. - -Using group_by() + mutate() is a useful paradigm for performing this operation: - -```{r} -starwars %>% - select(name, mass, species) %>% - group_by(species) %>% - mutate(avg_mass = mean(mass, na.rm = TRUE)) %>% - mutate(imputed_mass = ifelse(is.na(mass), avg_mass, mass)) ``` +
Show session info ```{r code} @@ -479,5 +552,5 @@ Tutorial organization: https://github.com/sjaganna/molb7910-2019 R tutorials and documentation: -https://github.com/tidyverse/dplyr -https://r4ds.had.co.nz/index.html +https://github.com/tidyverse/dplyr +https://r4ds.had.co.nz/index.html diff --git a/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.html b/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.html index d794dce..4572fa2 100644 --- a/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.html +++ b/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/class4.html @@ -93,8 +93,8 @@ - - + + @@ -110,12 +110,12 @@ @@ -1518,7 +1518,7 @@ @@ -1538,7 +1538,7 @@

Class 4: Reshaping data into a tidy format

@@ -1549,8 +1549,8 @@

Class 4: Reshaping data into a tidy format

Goals for today

  • Discuss wide and long (tidy) data representations for analysis
  • -
  • Introduce tidyr for “tidying” rectangular data
  • -
  • Joining related tables with dplyr
  • +
  • Introduce the tidyr package for “tidying” rectangular data
  • +
  • Joining related tables with dplyr
  • Strategies for missing data
@@ -1559,58 +1559,60 @@

Goals for today

Wide versus long data formats

Data can be represented in multiple formats. Today we will discuss two common tabular formats for organizing data for analysis.

-

Consider the following dataset, which contains GDP estimates per person for countries throughout history. This representation of the data is commonly referred to as ‘wide’ data format, which is a matrix-like format containing samples or features as rows or columns, with values associated with each sample and feature.

+

Consider the following dataset, which contains population estimates for countries throughout history. This representation of data is commonly referred to as ‘wide’ data format, which is a matrix-like format containing samples as rows and features as columns, with values associated with each observation of a sample and feature.

-
# A tibble: 195 × 252
-   country `1799` `1800` `1801` `1802` `1803` `1804` `1805` `1806` `1807` `1808`
+
+
library(readr)
+pop_wide <- read_csv("data/country_population.csv")
+pop_wide
+
+
# A tibble: 197 × 302
+   country `1800` `1801` `1802` `1803` `1804` `1805` `1806` `1807` `1808` `1809`
    <chr>    <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>
- 1 Afghan…    683    683    683    683    683    683    683    683    683    683
- 2 Angola     700    702    705    709    711    714    718    721    725    727
- 3 Albania    755    755    755    755    755    756    756    756    756    756
- 4 Andorra   1360   1360   1360   1360   1370   1370   1370   1370   1380   1380
- 5 United…   1130   1130   1140   1140   1150   1150   1160   1160   1160   1170
- 6 Argent…   1730   1730   1740   1740   1750   1760   1760   1770   1770   1780
- 7 Armenia    582    582    582    582    582    582    582    582    582    582
- 8 Antigu…    857    857    857    857    857    857    857    858    858    858
- 9 Austra…    925    930    936    941    947    952    956    962    968    973
-10 Austria   2090   2100   2110   2120   2130   2130   2140   2150   2160   2170
-# ℹ 185 more rows
-# ℹ 241 more variables: `1809` <dbl>, `1810` <dbl>, `1811` <dbl>, `1812` <dbl>,
-#   `1813` <dbl>, `1814` <dbl>, `1815` <dbl>, `1816` <dbl>, `1817` <dbl>,
-#   `1818` <dbl>, `1819` <dbl>, `1820` <dbl>, `1821` <dbl>, `1822` <dbl>,
-#   `1823` <dbl>, `1824` <dbl>, `1825` <dbl>, `1826` <dbl>, `1827` <dbl>,
-#   `1828` <dbl>, `1829` <dbl>, `1830` <dbl>, `1831` <dbl>, `1832` <dbl>,
-#   `1833` <dbl>, `1834` <dbl>, `1835` <dbl>, `1836` <dbl>, `1837` <dbl>, …
+ 1 Afghan… 3.28e6 3.28e6 3.28e6 3.28e6 3.28e6 3.28e6 3.28e6 3.28e6 3.28e6 3.28e6 + 2 Angola 1.57e6 1.57e6 1.57e6 1.57e6 1.57e6 1.57e6 1.57e6 1.57e6 1.57e6 1.57e6 + 3 Albania 4 e5 4.02e5 4.04e5 4.05e5 4.07e5 4.09e5 4.11e5 4.13e5 4.14e5 4.16e5 + 4 Andorra 2.65e3 2.65e3 2.65e3 2.65e3 2.65e3 2.65e3 2.65e3 2.65e3 2.65e3 2.65e3 + 5 UAE 4.02e4 4.02e4 4.02e4 4.02e4 4.02e4 4.02e4 4.02e4 4.02e4 4.02e4 4.02e4 + 6 Argent… 5.34e5 5.20e5 5.06e5 4.92e5 4.79e5 4.66e5 4.53e5 4.41e5 4.29e5 4.17e5 + 7 Armenia 4.13e5 4.13e5 4.13e5 4.13e5 4.13e5 4.13e5 4.13e5 4.13e5 4.13e5 4.13e5 + 8 Antigu… 3.7 e4 3.7 e4 3.7 e4 3.7 e4 3.7 e4 3.7 e4 3.7 e4 3.7 e4 3.7 e4 3.7 e4 + 9 Austra… 2 e5 2.05e5 2.11e5 2.16e5 2.22e5 2.27e5 2.33e5 2.39e5 2.46e5 2.52e5 +10 Austria 3 e6 3.02e6 3.04e6 3.05e6 3.07e6 3.09e6 3.11e6 3.12e6 3.14e6 3.16e6 +# ℹ 187 more rows +# ℹ 291 more variables: `1810` <dbl>, `1811` <dbl>, `1812` <dbl>, `1813` <dbl>, +# `1814` <dbl>, `1815` <dbl>, `1816` <dbl>, `1817` <dbl>, `1818` <dbl>, +# `1819` <dbl>, `1820` <dbl>, `1821` <dbl>, `1822` <dbl>, `1823` <dbl>, +# `1824` <dbl>, `1825` <dbl>, `1826` <dbl>, `1827` <dbl>, `1828` <dbl>, +# `1829` <dbl>, `1830` <dbl>, `1831` <dbl>, `1832` <dbl>, `1833` <dbl>, +# `1834` <dbl>, `1835` <dbl>, `1836` <dbl>, `1837` <dbl>, `1838` <dbl>, …

The wide matrix-like format is very useful and a common format used for statistics and machine learning. Matrices can take advantage of optimized numerical routines and are the data representation of mathematical matrices. We will work with matrices later in class, particularly with their use to generate heatmaps.

-

Representing data in a matrix has a few practical implications:

+

Representing data in a matrix however has a few practical implications:

    -
  1. There is only 1 type of data stored in a matrix-like representation (e.g. each cell is the same unit of observation, the GDP per person). To store additional related data types (e.g. the country population) you need to place each new value in an independent matrix.

  2. -
  3. The matrix-like format does not easily lend itself to more complicated summaries. For example, what if we wanted to average the GDP values for each decade or century? We would write rather complicated code to parse out subsets of columns for each time period, average them, then merge them into a summary table.

  4. +
  5. There is only 1 type of data stored in a matrix-like representation (e.g. each cell is the same unit of observation, the population per country). To store additional related data types (e.g. the countries GDP each year) you need to place each new value in an independent matrix.

  6. +
  7. The matrix-like format does not easily lend itself to more complicated summaries. For example, what if we wanted to average the GDP values for each decade or century? We would have to write rather complicated code to parse out subsets of columns for each time period, average them, then merge them into a summary matrix.

-

Data in a matrix can be instead formatted into a long (also sometimes called “tidy”) format.

-
-
# A tibble: 48,945 × 3
-   country     year    gdp
-   <chr>       <chr> <dbl>
- 1 Afghanistan 1799    683
- 2 Afghanistan 1800    683
- 3 Afghanistan 1801    683
- 4 Afghanistan 1802    683
- 5 Afghanistan 1803    683
- 6 Afghanistan 1804    683
- 7 Afghanistan 1805    683
- 8 Afghanistan 1806    683
- 9 Afghanistan 1807    683
-10 Afghanistan 1808    683
-# ℹ 48,935 more rows
-
-

The long format of this data convert the many columns of a matrix into a 3 column data.frame containing 3 variables (country, year, and gdp).

+

Data in a matrix can be instead formatted into a long (also called “tidy”) format.

+
#> # A tibble: 10 × 3
+#>    country     year  population
+#>    <chr>       <chr>      <dbl>
+#>  1 Afghanistan 1800     3280000
+#>  2 Afghanistan 1801     3280000
+#>  3 Afghanistan 1802     3280000
+#>  4 Afghanistan 1803     3280000
+#>  5 Afghanistan 1804     3280000
+#>  6 Afghanistan 1805     3280000
+#>  7 Afghanistan 1806     3280000
+#>  8 Afghanistan 1807     3280000
+#>  9 Afghanistan 1808     3280000
+#> 10 Afghanistan 1809     3280000
+

The long format of this data convert the many columns of a matrix into a 3 column data.frame containing 3 variables (country, year, and population).

Tidy data format

“Tidy datasets are all alike, but every messy dataset is messy in its own way.” –– Hadley Wickham

-

A tidy dataset is structured in a manner to be most effectively processed in R using the tidyverse. It makes the data easier to plot, easier to perform computations and perform complex tasks.

+

A tidy dataset is structured in a manner to be most effectively processed in R using the tidyverse. For example, with the population dataset, instead of having to provide logic to process 100s of columns, instead there are only 3 columns.

Most data tables that you’ve worked with are probably not tidy. It takes experience to understand the best way to format the data for data processing. As you work more in R and the tidyverse this will become more natural.

Tidy data has the following attributes:

    @@ -1622,15 +1624,15 @@

    Tidy data format

What is a variable, what is an observation, and what is a value?

    -
  1. A value is a number or word.

  2. -
  3. Every value belongs to a variable and an observation

  4. -
  5. A variable contains all values that measure the same attribute (e.g. height, temperature, duration, magnitude) across units.

  6. -
  7. An observation contains all values measured on the same unit (e.g. the same individual, the same day, the same country, the samegene).

  8. +
  9. A value is a number or word, e.g. the population.

  10. +
  11. Every value belongs to a variable and an observation, e.g. the population value observed in Austria in the year 1910.

  12. +
  13. A variable contains all values that measure the same attribute (e.g. height, temperature, duration, magnitude) across units. (e.g. Austria is a value of the country variable, 1910 is a value of the year variable).

  14. +
  15. An observation contains all values measured on the same unit across attributes (e.g observations about Austria in 1910).

-

Shown below is a simple data table in a tidy format, provided by the tidyr package. This data table shows the # of TB cases documented by the WHO in a few countries in the years 1999 and 2000.

+

Shown below is a simplified data table in a tidy format, provided by the tidyr package. This data table shows the # of TB cases documented by the WHO in a few countries in the years 1999 and 2000.

library(tidyr)
@@ -1674,9 +1676,9 @@ 

Tidy data format

What advantages does the tidy format provide?

  1. Easy to generate summaries of the data. -e.g. via group_by() -> summarize()

  2. +e.g. via group_by() -> summarize()

  3. Easy to plot the data using the ggplot2 framework (more on that in later classes)

  4. -
  5. Very easy to join multiple data tables based on key values.

  6. +
  7. Very easy to join multiple related data frames based on key values.

Some disadvantages:

    @@ -1697,7 +1699,7 @@

    Reshaping wide data to long

    The pivot_longer function requires specifying the columns to pivot using the tidyselect syntax. This syntax is used elsewhere in the tidyverse and is a useful shorthand to avoid listing all columns of interest.

    pivot_longer(tbl, cols = <...>)

    -
    +
    Tables from tidyr cheatsheet from https://posit.co/wp-content/uploads/2022/10/tidyr.pdf

    Figure 1: Tables from tidyr cheatsheet from https://posit.co/wp-content/uploads/2022/10/tidyr.pdf @@ -1706,6 +1708,17 @@

    Reshaping wide data to long

    +
    table4a
    +
    +
    # A tibble: 3 × 3
    +  country     `1999` `2000`
    +  <chr>        <dbl>  <dbl>
    +1 Afghanistan    745   2666
    +2 Brazil       37737  80488
    +3 China       212258 213766
    +
    +
    +
    pivot_longer(table4a, cols = `1999`:`2000`) # pivot columns from 1999 -> 2000
    # A tibble: 6 × 3
    @@ -1730,6 +1743,40 @@ 

    Reshaping wide data to long

    5 China 1999 212258 6 China 2000 213766
    +

    Let’s try it out on the pop_wide population data

    +
    +
    +
    pop_long <- pivot_longer(pop_wide, cols = -country)
    +
    +pop_long <- pivot_longer(pop_wide, 
    +                         cols = -country, 
    +                         names_to = "year",
    +                         values_to = "population")
    +
    +
    +

    Why is the useful? Well now we can quickly use dplyr to answer questions, such +as what is the average population per country across all years?

    +
    +
    +
    library(dplyr)
    +group_by(pop_long, country) |> 
    +  summarize(mean_population = mean(population))
    +
    +
    # A tibble: 197 × 2
    +   country             mean_population
    +   <chr>                         <dbl>
    + 1 Afghanistan               28038306.
    + 2 Albania                    1530495.
    + 3 Algeria                   23736578.
    + 4 Andorra                      31687.
    + 5 Angola                    27240465.
    + 6 Antigua and Barbuda          58430.
    + 7 Argentina                 22730847.
    + 8 Armenia                    1637548.
    + 9 Australia                 13964223.
    +10 Austria                    6573422.
    +# ℹ 187 more rows
    +

    Reshaping long data to wide

    pivot_wider(tbl, names_from = <...>, values_from = <...>)

    names_from: the column whose values will become new columns in the result.
    @@ -1739,6 +1786,26 @@

    Reshaping long data to wide

    +
    table2
    +
    +
    # A tibble: 12 × 4
    +   country      year type            count
    +   <chr>       <dbl> <chr>           <dbl>
    + 1 Afghanistan  1999 cases             745
    + 2 Afghanistan  1999 population   19987071
    + 3 Afghanistan  2000 cases            2666
    + 4 Afghanistan  2000 population   20595360
    + 5 Brazil       1999 cases           37737
    + 6 Brazil       1999 population  172006362
    + 7 Brazil       2000 cases           80488
    + 8 Brazil       2000 population  174504898
    + 9 China        1999 cases          212258
    +10 China        1999 population 1272915272
    +11 China        2000 cases          213766
    +12 China        2000 population 1280428583
    +
    +
    +
    pivot_wider(table2, names_from = type, values_from = count)
    # A tibble: 6 × 4
    @@ -1750,6 +1817,10 @@ 

    Reshaping long data to wide

    4 Brazil 2000 80488 174504898 5 China 1999 212258 1272915272 6 China 2000 213766 1280428583
    +
    +

    Try it out with the pop_long population data.

    +
    +

    Separate

    separate is useful for dealing with data in which a single column contains multiple variables.

    @@ -1762,6 +1833,20 @@

    Separate

    +
    table3
    +
    +
    # A tibble: 6 × 3
    +  country      year rate             
    +  <chr>       <dbl> <chr>            
    +1 Afghanistan  1999 745/19987071     
    +2 Afghanistan  2000 2666/20595360    
    +3 Brazil       1999 37737/172006362  
    +4 Brazil       2000 80488/174504898  
    +5 China        1999 212258/1272915272
    +6 China        2000 213766/1280428583
    +
    +
    +
    separate(table3, col = rate, into = c("cases", "pop"), sep = "/")
    # A tibble: 6 × 4
    @@ -1775,39 +1860,29 @@ 

    Separate

    6 China 2000 213766 1280428583

    Exercises

    -

    Use the gapminder GDP dataset to perform the following tasks and answer the following questions:

    +

    Use the gapminder population dataset (pop_long) to perform the following tasks and answer the following questions:

      -
    1. Convert the GDP dataset into tidy format.
    2. +
    3. Which country had the highest population in 1810?
    -
    -
    library(tidyverse)
    -gdp_data <- read_csv("data/income_per_person.csv")
    -...
    -
    +
      -
    1. Which country had the highest GDP per person in 1985?
    2. +
    3. What was the world population in the year 1840?
      -
    1. What was the mean worldwide GDP in the year 1999?
    2. -
    -
    - -
    -
      -
    1. Which country had the highest average GDP in the 19th century?
    2. +
    3. Which country had the lowest average population in the 19th century (years 1800-1899)?
    -

    Binds/Joins

    +

    Using binds and joins to aggregate multiple data.frames

    column binds

    -
    +
    from the dplyr cheatsheet at https://posit.co/wp-content/uploads/2022/10/data-transformation-1.pdf

    Figure 2: from the dplyr cheatsheet at https://posit.co/wp-content/uploads/2022/10/data-transformation-1.pdf @@ -1858,6 +1933,7 @@

    row binds

    lst_of_dfs <- list(one = df_1,
                        two = df_2)
    +
     bind_rows(lst_of_dfs)
        x y
    @@ -1888,7 +1964,7 @@ 

    row binds

    Joins

    Join operations are used to join one table with another table by matching the values shared in particular columns. Join operations enable linking of multiple datasets that contain shared values.

    -

    There are multiple way to join two tables, depending on how you want to handle different combinations of values present in two tables.

    +

    There are multiple way to join two tables, depending on how you want to handle different combinations of values present or missing in two tables.

    Assume we have two data.frames called x and y

    The following joins add columns from y to x, matching rows based on the matching values in shared columns.

    inner_join(x, y): includes all rows in x and y.

    @@ -1897,82 +1973,148 @@

    Joins

    full_join(x, y): includes all rows in x or y.

    If a row in x matches multiple rows in y, all the rows in y will be returned once for each matching row in x.

    -

    Consider the following simple tables:

    +

    Consider our pop_long data.frame. What if we wanted to add additional variables to the data.frame, such as the estimated GDP?

    -
    animal_class <- data.frame(
    -  name    = c("cat", "pike", "bear", "dog"),
    -  genus   = c("Felis", "Esox", "Ursus", "Canis"),
    -  class   = c("Mammalia", "Actinopterygii", "Mammalia", "Mammalia")
    -)
    -
    -animal_class
    -
    -
      name genus          class
    -1  cat Felis       Mammalia
    -2 pike  Esox Actinopterygii
    -3 bear Ursus       Mammalia
    -4  dog Canis       Mammalia
    -
    +
    pop_long[1:5, ]
    +
    +
    # A tibble: 5 × 3
    +  country     year  population
    +  <chr>       <chr>      <dbl>
    +1 Afghanistan 1800     3280000
    +2 Afghanistan 1801     3280000
    +3 Afghanistan 1802     3280000
    +4 Afghanistan 1803     3280000
    +5 Afghanistan 1804     3280000
    +
    +

    First we’ll read in an additional dataset from Gapminder that contains GDP estimates per country over time. Note that these datafiles have been preprocessed using code here

    -
    animal_species <- data.frame(
    -  name    = c("bluejay", "cat", "pike", "bear"),
    -  species = c("cristata", "catus", "lucius", "arctos")
    -)
    -animal_species
    -
    -
         name  species
    -1 bluejay cristata
    -2     cat    catus
    -3    pike   lucius
    -4    bear   arctos
    +
    # read in and convert to long format
    +gdp_wide <- read_csv("data/income_per_person.csv")
    +gdp_long <- pivot_longer(gdp_wide, 
    +                         -country, 
    +                         names_to = "year",
    +                         values_to = "GDP")
    +gdp_long
    +
    # A tibble: 48,945 × 3
    +   country     year    GDP
    +   <chr>       <chr> <dbl>
    + 1 Afghanistan 1799    683
    + 2 Afghanistan 1800    683
    + 3 Afghanistan 1801    683
    + 4 Afghanistan 1802    683
    + 5 Afghanistan 1803    683
    + 6 Afghanistan 1804    683
    + 7 Afghanistan 1805    683
    + 8 Afghanistan 1806    683
    + 9 Afghanistan 1807    683
    +10 Afghanistan 1808    683
    +# ℹ 48,935 more rows
    +
+

Now we can use various joins to merge these data.frames into 1 data.frame.

-
# join on name column, keeping values from name columns present in both data.frames
-inner_join(animal_class, animal_species)
-
-
  name genus          class species
-1  cat Felis       Mammalia   catus
-2 pike  Esox Actinopterygii  lucius
-3 bear Ursus       Mammalia  arctos
-
+
# join on country and year columns, keeping rows with values present in both tables
+inner_join(gdp_long, pop_long)
+
+
# A tibble: 48,000 × 4
+   country     year    GDP population
+   <chr>       <chr> <dbl>      <dbl>
+ 1 Afghanistan 1800    683    3280000
+ 2 Afghanistan 1801    683    3280000
+ 3 Afghanistan 1802    683    3280000
+ 4 Afghanistan 1803    683    3280000
+ 5 Afghanistan 1804    683    3280000
+ 6 Afghanistan 1805    683    3280000
+ 7 Afghanistan 1806    683    3280000
+ 8 Afghanistan 1807    683    3280000
+ 9 Afghanistan 1808    683    3280000
+10 Afghanistan 1809    684    3280000
+# ℹ 47,990 more rows
+
+

The Joining, by = join_by(country, year) message indicates that the “country” and “year” columns were used to determine matching rows between the two tables. This is auto-detected based on shared column names in the two data.frames.

+

You can use the by argument to explicitly specify the columns you’d like to join, which is useful if the columns of interest have different names in the two tables.

-
# join on name column, keeping values all values from animal_class data.frame
-left_join(animal_class, animal_species)
-
-
  name genus          class species
-1  cat Felis       Mammalia   catus
-2 pike  Esox Actinopterygii  lucius
-3 bear Ursus       Mammalia  arctos
-4  dog Canis       Mammalia    <NA>
+
# same as above, but being explicit about the columns to use for joining.
+
+# note that for joins you DO need to use quotes for the columns
+inner_join(gdp_long, pop_long, by = c("country", "year"))
+
+
# A tibble: 48,000 × 4
+   country     year    GDP population
+   <chr>       <chr> <dbl>      <dbl>
+ 1 Afghanistan 1800    683    3280000
+ 2 Afghanistan 1801    683    3280000
+ 3 Afghanistan 1802    683    3280000
+ 4 Afghanistan 1803    683    3280000
+ 5 Afghanistan 1804    683    3280000
+ 6 Afghanistan 1805    683    3280000
+ 7 Afghanistan 1806    683    3280000
+ 8 Afghanistan 1807    683    3280000
+ 9 Afghanistan 1808    683    3280000
+10 Afghanistan 1809    684    3280000
+# ℹ 47,990 more rows
+
+
# unless you use the `join_by` helper
+inner_join(gdp_long, pop_long, by = join_by(country, year))
+
+
# A tibble: 48,000 × 4
+   country     year    GDP population
+   <chr>       <chr> <dbl>      <dbl>
+ 1 Afghanistan 1800    683    3280000
+ 2 Afghanistan 1801    683    3280000
+ 3 Afghanistan 1802    683    3280000
+ 4 Afghanistan 1803    683    3280000
+ 5 Afghanistan 1804    683    3280000
+ 6 Afghanistan 1805    683    3280000
+ 7 Afghanistan 1806    683    3280000
+ 8 Afghanistan 1807    683    3280000
+ 9 Afghanistan 1808    683    3280000
+10 Afghanistan 1809    684    3280000
+# ℹ 47,990 more rows
-
# join on name column, keeping values all values from animal_class and animal_species data.frame
-full_join(animal_class, animal_species)
-
-
     name genus          class  species
-1     cat Felis       Mammalia    catus
-2    pike  Esox Actinopterygii   lucius
-3    bear Ursus       Mammalia   arctos
-4     dog Canis       Mammalia     <NA>
-5 bluejay  <NA>           <NA> cristata
+
# join on country and year columns, keeping values all values from gdp_long data.frame
+left_join(gdp_long, pop_long)
+
+
# A tibble: 48,945 × 4
+   country     year    GDP population
+   <chr>       <chr> <dbl>      <dbl>
+ 1 Afghanistan 1799    683         NA
+ 2 Afghanistan 1800    683    3280000
+ 3 Afghanistan 1801    683    3280000
+ 4 Afghanistan 1802    683    3280000
+ 5 Afghanistan 1803    683    3280000
+ 6 Afghanistan 1804    683    3280000
+ 7 Afghanistan 1805    683    3280000
+ 8 Afghanistan 1806    683    3280000
+ 9 Afghanistan 1807    683    3280000
+10 Afghanistan 1808    683    3280000
+# ℹ 48,935 more rows
-

The Joining, by = "name" message indicates which columns were used to determine matching rows between the two tables. This is auto-detected based on shared column names. You can use the by argument to explicitly specify the columns you’d like to join, which is useful if the columns of interest have different names in the two tables.

-
# same as above, but being explicitly about the column to use for joining.
-
-# note that for joins you DO need to use quotes for the columns
-inner_join(animal_class, animal_species, by = "name")
-
-
  name genus          class species
-1  cat Felis       Mammalia   catus
-2 pike  Esox Actinopterygii  lucius
-3 bear Ursus       Mammalia  arctos
+
# join on country and year columns, keeping values all values from gdp_long and pop_long data.frame
+full_join(gdp_long, pop_long)
+
+
# A tibble: 60,242 × 4
+   country     year    GDP population
+   <chr>       <chr> <dbl>      <dbl>
+ 1 Afghanistan 1799    683         NA
+ 2 Afghanistan 1800    683    3280000
+ 3 Afghanistan 1801    683    3280000
+ 4 Afghanistan 1802    683    3280000
+ 5 Afghanistan 1803    683    3280000
+ 6 Afghanistan 1804    683    3280000
+ 7 Afghanistan 1805    683    3280000
+ 8 Afghanistan 1806    683    3280000
+ 9 Afghanistan 1807    683    3280000
+10 Afghanistan 1808    683    3280000
+# ℹ 60,232 more rows

Missing data

Join operations will often generate missing data (e.g. NA values).

@@ -1983,192 +2125,232 @@

Zeroes, NA, NaN and

NaN (Not a Number) is the result of an undefined operation, e.g. 0 / 0.

  • NULL means “undefined” and is only used in a programming context (i.e., a function that returns NULL). You can’t put NULL values in a data frame.

  • -

    Let’s examine a data frame with some missing data.

    +

    Let’s examine the output from the full_join() operation above which generated NA values.

    -
    starwars
    -
    -
    # A tibble: 87 × 14
    -   name     height  mass hair_color skin_color eye_color birth_year sex   gender
    -   <chr>     <int> <dbl> <chr>      <chr>      <chr>          <dbl> <chr> <chr> 
    - 1 Luke Sk…    172    77 blond      fair       blue            19   male  mascu…
    - 2 C-3PO       167    75 <NA>       gold       yellow         112   none  mascu…
    - 3 R2-D2        96    32 <NA>       white, bl… red             33   none  mascu…
    - 4 Darth V…    202   136 none       white      yellow          41.9 male  mascu…
    - 5 Leia Or…    150    49 brown      light      brown           19   fema… femin…
    - 6 Owen La…    178   120 brown, gr… light      blue            52   male  mascu…
    - 7 Beru Wh…    165    75 brown      light      blue            47   fema… femin…
    - 8 R5-D4        97    32 <NA>       white, red red             NA   none  mascu…
    - 9 Biggs D…    183    84 black      light      brown           24   male  mascu…
    -10 Obi-Wan…    182    77 auburn, w… fair       blue-gray       57   male  mascu…
    -# ℹ 77 more rows
    -# ℹ 5 more variables: homeworld <chr>, species <chr>, films <list>,
    -#   vehicles <list>, starships <list>
    +
    country_stats <- full_join(gdp_long, pop_long)
    +country_stats
    +
    +
    # A tibble: 60,242 × 4
    +   country     year    GDP population
    +   <chr>       <chr> <dbl>      <dbl>
    + 1 Afghanistan 1799    683         NA
    + 2 Afghanistan 1800    683    3280000
    + 3 Afghanistan 1801    683    3280000
    + 4 Afghanistan 1802    683    3280000
    + 5 Afghanistan 1803    683    3280000
    + 6 Afghanistan 1804    683    3280000
    + 7 Afghanistan 1805    683    3280000
    + 8 Afghanistan 1806    683    3280000
    + 9 Afghanistan 1807    683    3280000
    +10 Afghanistan 1808    683    3280000
    +# ℹ 60,232 more rows
    + +

    Quick check for NA values

    +
    +
    +
    sum(is.na(country_stats))
    +
    +
    [1] 12342
    +
    +
    any(is.na(country_stats))
    +
    +
    [1] TRUE

    filter with is.na()

    You can identify variables with NA values by combining filter() and is.na().

    -
    # find rows where mass is NA
    -filter(starwars, is.na(mass))
    +
    # find rows where GDP is NA
    +filter(country_stats, is.na(GDP))
     
    -# find rows where mass is *not* NA
    -filter(starwars, !is.na(mass))
    +# find rows where GDP is *not* NA +filter(country_stats, !is.na(GDP))

    na.omit()

    You can remove all rows containing NA values with na.omit().

    -
    na.omit(starwars)
    +
    na.omit(country_stats)

    Computing with NA values

    -

    Exclude NA values from operations with na.rm = TRUE.

    +

    Instead of removing NA values we can instead just exclude NA values from operations with a common optional argument na.rm = TRUE.

    -
    starwars$mass
    +
    x <- c(1, NA, 3)
    +sum(x)
    +sum(x, na.rm = TRUE)
    +
     # if NAs are present, the result is NA
    -sum(starwars$mass)
    -# solution: drop NAs from the calculation
    -sum(starwars$mass, na.rm = TRUE)
    +sum(country_stats$GDP) + +# solution: exclude NAs from the calculation +sum(country_stats$GDP, na.rm = TRUE)
    -
    group_by(starwars, species) %>% 
    -  summarize(avg_mass = mean(mass, na.rm = TRUE))
    +
    group_by(country_stats, country) %>% 
    +  summarize(avg_GDP = mean(GDP, na.rm = TRUE))
    -

    Also you can remove NaN values by detecting for their presence using is.nan(). These values occur because a few species don’t have any characters with values for the mass column, and computing the mean of an empty vector is NaN.

    +

    Also you can remove NaN values by detecting for their presence using is.nan(). These values often occur when a summary operation (e.g. mean or sum) is performed on a vector with 0 elements.

    -
    group_by(starwars, species) %>% 
    -  summarize(avg_mass = mean(mass, na.rm = TRUE)) %>% 
    -  filter(!is.nan(avg_mass))
    -
    -
    # A tibble: 32 × 2
    -   species   avg_mass
    -   <chr>        <dbl>
    - 1 Aleena        15  
    - 2 Besalisk     102  
    - 3 Cerean        82  
    - 4 Clawdite      55  
    - 5 Droid         69.8
    - 6 Dug           40  
    - 7 Ewok          20  
    - 8 Geonosian     80  
    - 9 Gungan        74  
    -10 Human         82.8
    -# ℹ 22 more rows
    +
    x <- 1:10
    +# none are TRUE
    +x <- x[x > 100]
    +x
    +
    +
    integer(0)
    +
    +
    length(x)
    +
    +
    [1] 0
    +
    +
    mean(x)
    +
    +
    [1] NaN
    +
    +
    mean(c(1, NaN), na.rm = TRUE)
    +
    +
    [1] 1

    Replacing NA values

    -

    Let’s replace the NA values in hair_color with a string missing data.

    +

    Let’s replace the NA values in the population column with a number, such as -1234.

    +

    This is an operation that is easy to do with base R [] approach.

    -
    starwars %>% 
    -  mutate(new_hair_color = ifelse(is.na(hair_color), 
    -                                 "missing data",
    -                                 hair_color)) %>% 
    -  select(hair_color, new_hair_color)
    -
    -
    # A tibble: 87 × 2
    -   hair_color    new_hair_color
    -   <chr>         <chr>         
    - 1 blond         blond         
    - 2 <NA>          missing data  
    - 3 <NA>          missing data  
    - 4 none          none          
    - 5 brown         brown         
    - 6 brown, grey   brown, grey   
    - 7 brown         brown         
    - 8 <NA>          missing data  
    - 9 black         black         
    -10 auburn, white auburn, white 
    -# ℹ 77 more rows
    -
    -

    We can also replace with values from another column, such as species.

    +
    # use is.na to identify NA values to replace with -1234
    +country_stats$population[is.na(country_stats$population)] <- -1234
    +
    +country_stats[1:10, ]
    + +
    # A tibble: 10 × 4
    +   country     year    GDP population
    +   <chr>       <chr> <dbl>      <dbl>
    + 1 Afghanistan 1799    683      -1234
    + 2 Afghanistan 1800    683    3280000
    + 3 Afghanistan 1801    683    3280000
    + 4 Afghanistan 1802    683    3280000
    + 5 Afghanistan 1803    683    3280000
    + 6 Afghanistan 1804    683    3280000
    + 7 Afghanistan 1805    683    3280000
    + 8 Afghanistan 1806    683    3280000
    + 9 Afghanistan 1807    683    3280000
    +10 Afghanistan 1808    683    3280000
    + +

    Alternatively you can use the ifelse() base R function.

    -
    starwars %>% 
    -  mutate(new_hair_color = ifelse(is.na(hair_color), 
    -                                 species,
    -                                 hair_color)) %>% 
    -  select(hair_color, new_hair_color)
    -
    -
    # A tibble: 87 × 2
    -   hair_color    new_hair_color
    -   <chr>         <chr>         
    - 1 blond         blond         
    - 2 <NA>          Droid         
    - 3 <NA>          Droid         
    - 4 none          none          
    - 5 brown         brown         
    - 6 brown, grey   brown, grey   
    - 7 brown         brown         
    - 8 <NA>          Droid         
    - 9 black         black         
    -10 auburn, white auburn, white 
    -# ℹ 77 more rows
    -
    -

    ifelse is a base R function that operates on vectors and is useful when you want to replace single values.

    +
    x <- 1:10
    +
    +ifelse(x < 5, # an expression producing a logical vector 
    +       5,     # if TRUE, replace with this expression
    +       x)     # if FALSE replace with this expression
    + +
     [1]  5  5  5  5  5  6  7  8  9 10
    + +

    Replace -1234 with NA using base R $ notation to identify columns.

    +
    +
    +
    country_stats$population <- ifelse(country_stats$population == -1234,
    +                                   NA,
    +                                   country_stats$population)
    +country_stats[1:10, ]
    +
    +
    # A tibble: 10 × 4
    +   country     year    GDP population
    +   <chr>       <chr> <dbl>      <dbl>
    + 1 Afghanistan 1799    683         NA
    + 2 Afghanistan 1800    683    3280000
    + 3 Afghanistan 1801    683    3280000
    + 4 Afghanistan 1802    683    3280000
    + 5 Afghanistan 1803    683    3280000
    + 6 Afghanistan 1804    683    3280000
    + 7 Afghanistan 1805    683    3280000
    + 8 Afghanistan 1806    683    3280000
    + 9 Afghanistan 1807    683    3280000
    +10 Afghanistan 1808    683    3280000
    +
    +

    The same can also be done with dplyr, in this case replacing NA values again with -1234.

    +
    +
    +
    mutate(country_stats, 
    +       population = ifelse(is.na(population), 
    +                           -1234,
    +                           population)) 
    +
    +
    # A tibble: 60,242 × 4
    +   country     year    GDP population
    +   <chr>       <chr> <dbl>      <dbl>
    + 1 Afghanistan 1799    683      -1234
    + 2 Afghanistan 1800    683    3280000
    + 3 Afghanistan 1801    683    3280000
    + 4 Afghanistan 1802    683    3280000
    + 5 Afghanistan 1803    683    3280000
    + 6 Afghanistan 1804    683    3280000
    + 7 Afghanistan 1805    683    3280000
    + 8 Afghanistan 1806    683    3280000
    + 9 Afghanistan 1807    683    3280000
    +10 Afghanistan 1808    683    3280000
    +# ℹ 60,232 more rows
    +

    case_when()

    -

    If you want to perform more complex operations use case_when() from dplyr. case_when() is equivalent to performing multiple nested ifelse() operations, whereby if the first operation is not TRUE, then check for the second condition, repeating for each condition until there are no more statements.

    +

    If you want to perform more complex operations use case_when() from dplyr. case_when() is equivalent to performing multiple nested ifelse() operations, whereby if the first operation is not TRUE, then check for the second condition, repeating for each condition until there are no more statements.

    the syntax for case when is :

    -
    `case_when(conditional statement ~ "value in result",
    -           conditional statement #2 ~ "another value in result",
    -           TRUE ~ "default if neither conditional statement 1 or 2 are TRUE")`
    -

    Here is an example from the documentation. Make a new column called type. Return “large” if the height or mass of a character is > 200. If that is not true, then return “robot” if the species is “Droid”. If that is not TRUE, then default to returning “other”.

    +
    `case_when(conditional statement ~ "value in result if TRUE",
    +           conditional statement #2 ~ "another value in result if",
    +           TRUE ~ "default if neither conditional statement 1 or 2 are TRUE")`
    +

    For a use case, imagine that we wanted to add a new column called era, which signified if the year was in the past, present or future.

    -
    starwars %>%
    -  select(name:mass, species) %>%
    -  mutate(type = case_when(height > 200 | mass > 200 ~ "large",
    -                          species == "Droid"        ~ "robot",
    -                          TRUE                      ~ "other"))
    -
    -
    # A tibble: 87 × 5
    -   name               height  mass species type 
    -   <chr>               <int> <dbl> <chr>   <chr>
    - 1 Luke Skywalker        172    77 Human   other
    - 2 C-3PO                 167    75 Droid   robot
    - 3 R2-D2                  96    32 Droid   robot
    - 4 Darth Vader           202   136 Human   large
    - 5 Leia Organa           150    49 Human   other
    - 6 Owen Lars             178   120 Human   other
    - 7 Beru Whitesun lars    165    75 Human   other
    - 8 R5-D4                  97    32 Droid   robot
    - 9 Biggs Darklighter     183    84 Human   other
    -10 Obi-Wan Kenobi        182    77 Human   other
    -# ℹ 77 more rows
    -
    -

    Using group_by() to replace NAs with summaries from the data

    -

    Lastly, it may be beneficial to replace the NA values with a summary value representative of the data. This is an example of data “imputation”.

    -

    For example we might decide that we want to replace NA values in the “mass” column with the average mass of the species of the character.

    -

    Using group_by() + mutate() is a useful paradigm for performing this operation:

    -
    +
    country_stats |>
    +  mutate(
    +    era = case_when(year < 2023 ~ "past",
    +                    year == 2023 ~ "present",
    +                    year > 2023 ~ "future")
    +    )
    +
    +
    # A tibble: 60,242 × 5
    +   country     year    GDP population era  
    +   <chr>       <chr> <dbl>      <dbl> <chr>
    + 1 Afghanistan 1799    683         NA past 
    + 2 Afghanistan 1800    683    3280000 past 
    + 3 Afghanistan 1801    683    3280000 past 
    + 4 Afghanistan 1802    683    3280000 past 
    + 5 Afghanistan 1803    683    3280000 past 
    + 6 Afghanistan 1804    683    3280000 past 
    + 7 Afghanistan 1805    683    3280000 past 
    + 8 Afghanistan 1806    683    3280000 past 
    + 9 Afghanistan 1807    683    3280000 past 
    +10 Afghanistan 1808    683    3280000 past 
    +# ℹ 60,232 more rows
    -
    starwars %>% 
    -  select(name, mass, species) %>% 
    -  group_by(species) %>% 
    -  mutate(avg_mass = mean(mass, na.rm = TRUE)) %>% 
    -  mutate(imputed_mass = ifelse(is.na(mass), avg_mass, mass))
    -
    -
    # A tibble: 87 × 5
    -# Groups:   species [38]
    -   name                mass species avg_mass imputed_mass
    -   <chr>              <dbl> <chr>      <dbl>        <dbl>
    - 1 Luke Skywalker        77 Human       82.8           77
    - 2 C-3PO                 75 Droid       69.8           75
    - 3 R2-D2                 32 Droid       69.8           32
    - 4 Darth Vader          136 Human       82.8          136
    - 5 Leia Organa           49 Human       82.8           49
    - 6 Owen Lars            120 Human       82.8          120
    - 7 Beru Whitesun lars    75 Human       82.8           75
    - 8 R5-D4                 32 Droid       69.8           32
    - 9 Biggs Darklighter     84 Human       82.8           84
    -10 Obi-Wan Kenobi        77 Human       82.8           77
    -# ℹ 77 more rows
    +
    # same as above, using TRUE on the left side provides a default value.
    +country_stats |>
    +  mutate(
    +    era = case_when(year < 2023 ~ "past",
    +                    year == 2023 ~ "present",
    +                    TRUE ~ "future")
    +    ) 
    + +
    # A tibble: 60,242 × 5
    +   country     year    GDP population era  
    +   <chr>       <chr> <dbl>      <dbl> <chr>
    + 1 Afghanistan 1799    683         NA past 
    + 2 Afghanistan 1800    683    3280000 past 
    + 3 Afghanistan 1801    683    3280000 past 
    + 4 Afghanistan 1802    683    3280000 past 
    + 5 Afghanistan 1803    683    3280000 past 
    + 6 Afghanistan 1804    683    3280000 past 
    + 7 Afghanistan 1805    683    3280000 past 
    + 8 Afghanistan 1806    683    3280000 past 
    + 9 Afghanistan 1807    683    3280000 past 
    +10 Afghanistan 1808    683    3280000 past 
    +# ℹ 60,232 more rows
    @@ -2199,20 +2381,17 @@

    Using group_ [1] dplyr_1.1.3 tidyr_1.3.0 readr_2.1.4 loaded via a namespace (and not attached): - [1] sass_0.4.7 utf8_1.2.4 generics_0.1.3 stringi_1.8.1 - [5] distill_1.6 hms_1.1.3 digest_0.6.33 magrittr_2.0.3 - [9] timechange_0.2.0 evaluate_0.23 grid_4.3.1 fastmap_1.1.1 -[13] jsonlite_1.8.7 tidyverse_2.0.0 purrr_1.0.2 fansi_1.0.5 -[17] scales_1.2.1 jquerylib_0.1.4 cli_3.6.1 rlang_1.1.2 -[21] crayon_1.5.2 bit64_4.0.5 munsell_0.5.0 withr_2.5.2 -[25] cachem_1.0.8 yaml_2.3.7 tools_4.3.1 parallel_4.3.1 -[29] tzdb_0.4.0 memoise_2.0.1 colorspace_2.1-0 ggplot2_3.4.4 -[33] forcats_1.0.0 vctrs_0.6.4 R6_2.5.1 lubridate_1.9.3 -[37] lifecycle_1.0.4 stringr_1.5.1 bit_4.0.5 vroom_1.6.4 -[41] pkgconfig_2.0.3 pillar_1.9.0 bslib_0.5.1 gtable_0.3.4 -[45] glue_1.6.2 xfun_0.41 tibble_3.2.1 tidyselect_1.2.0 -[49] highr_0.10 rstudioapi_0.15.0 knitr_1.45 htmltools_0.5.7 -[53] rmarkdown_2.25 compiler_4.3.1 downlit_0.4.3 + [1] bit_4.0.5 jsonlite_1.8.7 compiler_4.3.1 highr_0.10 + [5] crayon_1.5.2 tidyselect_1.2.0 parallel_4.3.1 jquerylib_0.1.4 + [9] yaml_2.3.7 fastmap_1.1.1 R6_2.5.1 generics_0.1.3 +[13] knitr_1.45 tibble_3.2.1 distill_1.6 bslib_0.5.1 +[17] pillar_1.9.0 tzdb_0.4.0 rlang_1.1.2 utf8_1.2.4 +[21] cachem_1.0.8 xfun_0.41 sass_0.4.7 bit64_4.0.5 +[25] memoise_2.0.1 cli_3.6.1 withr_2.5.2 magrittr_2.0.3 +[29] digest_0.6.33 vroom_1.6.4 rstudioapi_0.15.0 hms_1.1.3 +[33] lifecycle_1.0.4 vctrs_0.6.4 downlit_0.4.3 evaluate_0.23 +[37] glue_1.6.2 fansi_1.0.5 purrr_1.0.2 rmarkdown_2.25 +[41] tools_4.3.1 pkgconfig_2.0.3 htmltools_0.5.7

    Acknowledgements and additional references

    @@ -2220,9 +2399,9 @@

    Acknowledge

    Tutorial organization: https://github.com/sjaganna/molb7910-2019

    R tutorials and documentation: -https://github.com/tidyverse/dplyr +https://github.com/tidyverse/dplyr
    https://r4ds.had.co.nz/index.html

    -
    +
    diff --git a/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/download_files.R b/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/download_files.R index 6830f08..d6e9ac0 100644 --- a/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/download_files.R +++ b/_posts/2023-12-01-class-4-reshaping-data-into-a-tidy-format/download_files.R @@ -4,6 +4,7 @@ dir.create(data_dir, showWarnings = FALSE) files_to_dl <- list( "income_per_person.csv" = "https://github.com/rnabioco/bmsc-7810-pbda/raw/main/data/class3/income_per_person.csv", + "country_population.csv" = "https://github.com/rnabioco/bmsc-7810-pbda/raw/main/data/class3/country_population.csv", "dmel_tx_info.csv.gz" = "https://github.com/rnabioco/bmsc-7810-pbda/raw/main/data/class3/dmel_tx_info.csv.gz", "dmel_peptides_lifecycle.csv.gz" = "https://github.com/rnabioco/bmsc-7810-pbda/raw/main/data/class3/dmel_peptides_lifecycle.csv.gz" ) diff --git a/classes.Rmd b/classes.Rmd index 08a58ff..0605ef1 100644 --- a/classes.Rmd +++ b/classes.Rmd @@ -7,4 +7,5 @@ listing: - 2023-11-27-class-1-introduction-to-the-r-statistical-programming-language - 2023-11-27-class-2 - 2023-11-30-class-3-data-wrangling-with-the-tidyverse + - 2023-12-01-class-4-reshaping-data-into-a-tidy-format --- diff --git a/data/class3/country_population.csv b/data/class3/country_population.csv new file mode 100644 index 0000000..1b832d6 --- /dev/null +++ b/data/class3/country_population.csv @@ -0,0 +1,198 @@ +country,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100 +Afghanistan,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3280000,3290000,3300000,3310000,3320000,3340000,3350000,3370000,3380000,3400000,3410000,3430000,3450000,3460000,3480000,3490000,3510000,3520000,3540000,3550000,3570000,3590000,3600000,3620000,3630000,3650000,3670000,3680000,3700000,3720000,3730000,3750000,3770000,3780000,3800000,3820000,3840000,3850000,3870000,3890000,3900000,3920000,3940000,3960000,3980000,3990000,4010000,4030000.0000000005,4050000,4059999.9999999995,4080000,4099999.9999999995,4120000,4139999.9999999995,4160000,4170000,4190000.0000000005,4210000,4230000,4250000,4270000,4290000,4310000,4330000,4350000,4360000,4380000,4400000,4420000,4440000,4460000,4480000,4500000,4520000,4540000,4560000,4580000,4600000,4620000,4640000,4670000,4710000,4750000,4800000,4860000,4920000,4980000,5040000,5110000,5170000,5300000,5500000,5790000,6160000,6620000,7120000,7650000,8230000,8850000,9530000,9980000,10200000,10200000,9890000,9370000,8880000,8420000,7970000,7560000,7160000,6850000,6630000,6480000,6410000,6410000,6410000,6410000,6410000,6410000,6410000,6430000,6470000,6530000,6610000,6710000,6810000,6920000,7020000,7130000,7240000,7360000,7480000,7570000,7670000,7760000,7860000,7970000,8090000,8210000.000000001,8330000,8470000,8620000,8790000,8970000,9160000,9360000,9570000,9780000,10000000,10200000,10500000,10800000,11000000,11300000,11600000,11900000,12200000,12400000,12700000,12900000,13000000,12500000,11200000,10100000,9950000,10200000,10500000,10400000,10300000,10400000,10700000,10700000,10700000,12100000,14000000,15500000,16399999.999999998,17100000,17800000,18500000,19300000,19500000,19700000,21000000,22600000,23600000,24400000,25400000,25900000,26400000,27400000,28200000,29200000,30500000,31500000,32700000.000000004,33800000,34600000,35600000,36700000,37800000,39000000,40100000,41100000,42200000,43400000,44500000,45700000,46800000,48000000,49200000,50300000,51500000,52700000,53900000,55000000,56200000,57400000,58600000,59800000,61000000,62200000,63400000,64599999.99999999,65800000,67000000,68200000,69400000,70500000,71700000,72900000,74100000,75200000,76400000,77500000,78700000,79800000,80900000,82000000,83100000,84200000,85200000,86200000,87300000,88200000,89200000,90200000,91100000,92100000,93000000,93900000,94700000,95600000,96400000,97200000,98000000,98700000,99500000,100000000,101000000,102000000,102000000,103000000,104000000,104000000,105000000,105000000,106000000,106000000,107000000,107000000,108000000,108000000,108000000,109000000,109000000,109000000,110000000,110000000,110000000,111000000,111000000 +Angola,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1580000,1590000,1610000,1640000,1660000,1690000,1710000,1740000,1760000,1790000,1810000,1840000,1870000,1900000,1920000,1950000,1980000,2009999.9999999998,2040000,2069999.9999999998,2100000,2130000,2160000,2190000,2230000,2260000,2290000,2330000,2360000,2390000,2420000,2450000,2470000,2490000,2510000,2530000,2550000,2570000,2590000,2610000,2630000,2650000,2680000,2700000,2720000,2740000,2760000,2790000,2810000,2830000,2850000,2870000,2890000,2910000,2930000,2950000,2960000,2980000,3000000,3020000,3040000,3060000,3080000,3090000,3110000,3130000,3150000,3170000,3190000,3200000,3210000,3210000,3200000,3190000,3180000,3170000,3160000,3140000,3130000,3120000,3100000,3080000,3060000,3040000,3020000,3000000,2980000,2960000,2940000,2920000,2910000,2890000,2880000,2870000,2870000,2860000,2850000,2840000,2830000,2830000,2840000,2860000,2890000,2940000,2980000,3020000,3070000,3120000,3160000,3210000,3260000,3300000,3350000,3400000,3440000,3490000,3540000,3590000,3640000,3690000,3750000,3810000,3880000,3950000,4019999.9999999995,4090000,4170000,4240000,4320000,4400000,4480000,4570000,4660000,4760000,4850000,4940000,5020000,5100000,5190000,5270000,5360000,5440000,5520000,5600000,5670000,5740000,5790000,5830000,5870000,5930000,6030000,6180000,6360000,6580000,6800000,7030000,7270000,7510000,7770000,8039999.999999999,8330000,8630000,8950000,9280000,9620000,9970000,10300000,10700000,11100000,11400000,11800000,12200000,12600000,13000000,13500000,13900000,14400000,14900000,15400000,15900000,16399999.999999998,16900000,17500000,18100000,18800000,19500000,20200000,20900000,21700000,22500000,23400000,24300000,25200000,26100000,27100000,28100000,29200000,30200000,31300000,32400000,33400000,34500000,35600000,36700000,37800000,38900000,40100000,41300000,42500000,43700000,44900000,46200000,47400000,48700000,50000000,51300000,52700000,54000000,55400000,56700000,58100000,59500000,60900000,62300000,63700000,65099999.99999999,66599999.99999999,68000000,69400000,70900000,72300000,73800000,75200000,76700000,78100000,79600000,81000000,82500000,83900000,85400000,86800000,88200000,89600000,91000000,92400000,93800000,95200000,96600000,97900000,99300000,101000000,102000000,103000000,105000000,106000000,107000000,108000000,110000000,111000000,112000000,113000000,114000000,116000000,117000000,118000000,119000000,120000000,121000000,122000000,123000000,124000000,125000000,126000000,127000000,128000000,129000000,130000000,131000000,131000000,132000000,133000000 +Albania,400000,402000,404000,405000,407000,409000,411000,413000,414000,416000,418000,420000,422000,424000,426000,427000,429000,431000,433000,435000,437000,439000,441000,443000,445000,447000,449000,451000,453000,455000,457000,459000,461000,463000,465000,467000,470000,472000,474000,476000,478000,480000,482000,485000,487000,489000,491000,493000,496000,498000,501000,505000,510000,515000,519000,524000,529000,535000,540000,545000,550000,555000,561000,566000,571000,577000,582000,588000,594000,599000,605000,611000,616000,622000,628000,634000,640000,646000,652000,659000,665000,671000,678000,684000,690000,697000,704000,710000,717000,724000,731000,738000,745000,753000,760000,768000,775000,783000,791000,798000,806000,814000,821000,828000,836000,844000,851000,859000,867000,874000,881000,888000,894000,900000,906000,912000,918000,924000,930000,936000,941000,947000,952000,957000,962000,967000,972000,977000,982000,988000,995000,1000000,1010000,1020000,1030000,1040000,1060000,1070000,1080000,1090000,1100000,1110000,1130000,1140000,1150000,1170000,1180000,1200000,1210000,1230000,1250000,1290000,1330000,1370000,1410000,1450000,1500000,1550000,1600000,1660000,1710000,1770000,1830000,1890000,1950000,2009999.9999999998,2069999.9999999998,2130000,2200000,2260000,2320000,2390000,2460000,2520000,2590000,2650000,2710000,2770000,2830000,2890000,2940000,2990000,3040000,3090000,3130000,3170000,3210000,3240000,3260000,3280000,3300000,3300000,3300000,3300000,3290000,3280000,3270000,3250000,3230000,3210000,3180000,3150000,3120000,3090000,3060000,3030000,3000000,2980000,2950000,2930000,2910000,2900000,2890000,2890000,2880000,2880000,2880000,2880000,2880000,2870000,2870000,2850000,2840000,2830000,2830000,2820000,2820000,2810000,2800000,2800000,2790000,2780000,2770000,2760000,2750000,2740000,2720000,2710000,2690000,2680000,2660000,2640000,2620000,2610000,2590000,2570000,2540000,2520000,2500000,2480000,2460000,2430000,2410000,2390000,2360000,2340000,2310000,2290000,2270000,2240000,2220000,2190000,2170000,2140000,2120000,2100000,2069999.9999999998,2049999.9999999998,2020000,1990000,1970000,1940000,1920000,1890000,1860000,1830000,1810000,1780000,1750000,1720000,1690000,1660000,1630000,1600000,1570000,1540000,1500000,1470000,1440000,1410000,1380000,1350000,1320000,1290000,1260000,1230000,1210000,1180000,1150000,1120000,1100000 +Andorra,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2650,2660,2670,2680,2690,2710,2730,2750,2770,2790,2810,2830,2850,2870,2890,2910,2930,2950,2970,2990,3010,3030,3060,3080,3100,3120,3140,3170,3190,3210,3230,3260,3280,3300,3320,3340,3360,3390,3410,3430,3450,3470,3500,3520,3540,3560,3590,3610,3630,3660,3680,3710,3730,3750,3780,3800,3830,3850,3880,3900,3930,3950,3980,4000,4030,4050,4080,4110,4130,4160,4190,4210,4240,4270,4300,4320,4350,4380,4410,4440,4460,4490,4520,4550,4580,4610,4640,4670,4700,4730,4760,4800,4860,4920,5000,5090,5180,5270,5360,5460,5560,5620,5640,5620,5560,5460,5360,5260,5170,5070,4980,4920,4890,4880,4900,4960,5010,5060,5120,5170,5230,5280,5340,5390,5450,5510,5570,5630,5690,5750,5810,5890,6010,5830,5450,5310,5570,6120,6710,7330,7990,8700,9440,10200,11000,11800,12700,13600,14500,15700,17100,18400,19900,21300,22800,24400,26000,27600,29300,30900,32600,34100,35600,37000,38600,40400,42200,43800,45600,47600,49700,51600,53600,55400,57300,59200,61000,62900,64099.99999999999,64700,65200,65700,66100,67800,70800,73900,76900,79800,80200,78200,76100,73900,71500,70600,71000,71400,71600,71700,72500,73800,75000,76300,77700,79000,79800,80100,80300,80600,80800,81000,81200,81400,81500,81700,81800,81900,82000,82100,82200,82200,82200,82200,82200,82200,82100,82000,81900,81700,81600,81300,81100,80800,80500,80200,79800,79400,78900,78500,78000,77500,77000,76500,75900,75400,74900,74300,73800,73200,72700,72200,71600,71100,70600,70100,69600,69100,68700,68200,67800,67400,66900,66500,66100,65800,65400.00000000001,65000,64700,64300,64000,63700,63400,63100,62800,62500,62200,61900,61700,61400,61200,60900,60700,60500,60200 +UAE,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40200,40300,40300,40300,40300,40300,40300,40300,40400,40400,40400,40400,40400,40500,40600,40800,41000,41200,41500,41800,42000,42300,42600,42800,43100,43400,43700,43900,44200,44500,44800,45100,45300,45600,45900,46200,46500,46800,47100,47400,47700,48000,48300,48600,48900,49200,49600,49900,50200,50500,50800,51200,51500,51800,52200,52600,53100,53500,54000,54500,55000,55500,55900,56400,56900,57400,57900,58300,58800,59300,59800,60400,60900,61400,61900,62400,63000,63500,64000,64599.99999999999,65099.99999999999,65700,66200,66800,67400,67900,68500,69100,69700,70300,70900,71500,72100,73100,74600,79800,85100,90600,96100,102000,108000,113000,120000,126000,133000,141000,149000,157000,165000,174000,183000,191000,214000,253000,298000,345000,392000,442000,492000,543000,614000,707000,805000,908000,1010000,1100000,1170000,1240000,1310000,1380000,1470000,1580000,1680000,1790000,1900000,2009999.9999999998,2120000,2220000,2330000,2430000,2570000,2750000,2920000,3100000,3280000,3450000,3630000,3810000,3990000,4280000,4900000,5870000,6990000,7990000,8480000,8580000,8660000,8750000,8840000,8920000,8990000,9070000,9140000,9210000,9290000,9370000,9440000,9520000,9590000,9670000,9740000,9810000,9870000,9940000,10000000,10100000,10100000,10200000,10300000,10300000,10400000,10500000,10500000,10600000,10700000,10700000,10800000,10900000,11000000,11100000,11100000,11200000,11300000,11400000,11400000,11500000,11600000,11700000,11700000,11800000,11900000,11900000,12000000,12000000,12100000,12100000,12200000,12200000,12300000,12300000,12300000,12400000,12400000,12400000,12500000,12500000,12500000,12600000,12600000,12700000,12700000,12700000,12800000,12800000,12900000,12900000,13000000,13000000,13100000,13100000,13200000,13200000,13300000,13400000,13400000,13500000,13500000,13600000,13700000,13800000,13800000,13900000,14000000,14000000,14100000 +Argentina,534000,520000,506000,492000,479000,466000,453000,441000,429000,417000,420000,422000,429000,441000,453000,466000,479000,492000,506000,519000,531000,542000,553000,562000,572000,582000,592000,602000,613000,624000,635000,647000,659000,672000,685000,698000,712000,725000,739000,756000,776000,800000,826000,857000,888000,920000,954000,989000,1030000,1060000,1090000,1120000,1140000,1160000,1180000,1200000,1220000,1240000,1260000,1290000,1320000,1350000,1390000,1430000,1480000,1530000,1580000,1630000,1680000,1740000,1790000,1850000,1910000,1970000,2029999.9999999998,2100000,2170000,2240000,2310000,2380000,2460000,2530000,2620000,2700000,2790000,2870000,2970000,3060000,3160000,3260000,3370000,3480000,3590000,3710000,3840000,3960000,4099999.9999999995,4230000,4370000,4520000,4690000,4860000,5040000,5230000,5430000,5640000,5850000,6080000,6310000,6530000,6750000,6960000,7150000,7340000,7530000,7730000,7930000,8140000.000000001,8350000,8580000,8820000,9070000,9330000,9610000,9900000,10200000,10500000,10800000,11100000,11400000,11700000,12000000,12200000,12400000,12700000,12900000,13100000,13300000,13600000,13800000,14100000,14300000,14600000,14900000,15200000,15500000,15800000,16100000.000000002,16399999.999999998,16700000,17000000,17400000,17700000,18000000,18400000,18700000,19000000,19400000,19700000,20000000,20300000,20700000,21000000,21400000,21700000,22100000,22400000,22800000,23100000,23500000,23800000,24200000,24600000,25000000,25400000,25900000,26300000,26700000,27100000,27600000,28000000,28500000,28900000,29400000,29800000,30300000,30700000,31200000,31700000,32200000.000000004,32600000,33100000,33600000,34000000,34500000,34900000,35400000,35800000,36200000,36700000,37100000,37500000,37900000,38300000,38700000,39100000,39500000,39900000,40300000,40700000,41100000,41500000,42000000,42400000,42800000,43300000,43700000,44100000,44400000,44700000,45000000,45300000,45500000,45800000,46100000,46300000,46600000,46900000,47200000,47400000,47700000,47900000,48200000,48400000,48700000,48900000,49100000,49400000,49600000,49800000,50000000,50200000,50400000,50600000,50800000,50900000,51100000,51200000,51400000,51500000,51600000,51700000,51800000,51900000,52000000,52100000,52100000,52200000,52200000,52200000,52300000,52300000,52300000,52300000,52300000,52200000,52200000,52200000,52100000,52100000,52000000,52000000,51900000,51800000,51700000,51600000,51500000,51400000,51300000,51200000,51000000,50900000,50800000,50600000,50500000,50300000,50100000,50000000,49800000,49600000,49500000,49300000,49100000,48900000,48700000,48500000,48300000,48200000,48000000,47800000,47600000 +Armenia,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,413000,414000,416000,418000,421000,425000,429000,433000,437000,441000,445000,449000,453000,457000,461000,465000,470000,474000,478000,483000,487000,492000,496000,501000,505000,510000,515000,519000,524000,529000,534000,539000,544000,549000,554000,559000,564000,569000,575000,580000,585000,591000,596000,602000,607000,613000,619000,625000,630000,636000,642000,648000,654000,660000,666000,673000,679000,685000,691000,698000,704000,711000,717000,724000,731000,738000,745000,751000,758000,765000,773000,780000,787000,794000,802000,809000,817000,824000,832000,840000,847000,855000,863000,871000,879000,888000,896000,904000,912000,921000,929000,938000,947000,956000,965000,973000,983000,992000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1250000,1260000,1270000,1280000,1290000,1300000,1320000,1330000,1340000,1360000,1390000,1420000,1470000,1510000,1550000,1600000,1660000,1710000,1770000,1840000,1900000,1970000,2040000,2110000,2170000,2230000,2300000,2360000,2420000,2480000,2530000,2590000,2650000,2710000,2770000,2830000,2900000,2970000,3040000,3100000,3140000,3170000,3200000,3240000,3270000,3300000,3330000,3350000,3370000,3450000,3560000,3620000,3570000,3460000,3370000,3320000,3300000,3270000,3240000,3210000,3170000,3130000,3110000,3080000,3070000,3050000,3030000,3000000,2980000,2960000,2950000,2930000,2910000,2900000,2890000,2880000,2870000,2850000,2840000,2820000,2810000,2790000,2780000,2780000,2780000,2780000,2780000,2770000,2770000,2760000,2760000,2750000,2750000,2740000,2730000,2730000,2720000,2710000,2700000,2690000,2680000,2670000,2660000,2650000,2640000,2630000,2620000,2610000,2600000,2590000,2570000,2560000,2550000,2530000,2520000,2510000,2490000,2480000,2460000,2440000,2430000,2410000,2390000,2380000,2360000,2340000,2320000,2300000,2280000,2260000,2240000,2220000,2200000,2180000,2150000,2130000,2110000,2089999.9999999998,2060000,2040000,2020000,2000000,1970000,1950000,1930000,1910000,1880000,1860000,1840000,1820000,1800000,1780000,1760000,1740000,1720000,1700000,1680000,1660000,1640000,1620000,1600000 +Antigua and Barbuda,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,37000,36900,36900,36900,36800,36700,36500,36300,36100,35900,35700,35500,35300,35100,35000,34900,34800,34800,34800,34800,34800,34800,34800,34800,34900,35000,35200,35400,35500,35700,35900,36100,36300,36400,36500,36400,36300,36100,35900,35700,35500,35200,35000,34800,34600,34300,34000,33700,33400,33100,32800,32500,32200.000000000004,31900,31700,31400,31200,31000,30800,30600,30400,30200,30000,29800,29800,29700,29800,29900,30000,30100,30200,30300,30400,30600,31100,31700,32500,33500,34600,35600,36700,37900,39000,40000,40900,41600,42200,42500,42900,43300,43600,44000,44400,44900,45400,46400,47400,48300,49300,50300,51300,52200,53300,54300,55300,56200,57000,57800,58700,59600,60600,61600,62700,63700,64500,64800,64700,64500,64200,64000,64000,64099.99999999999,64300,64599.99999999999,64900.00000000001,65099.99999999999,65200,65400.00000000001,65400.00000000001,65000,64700,64400.00000000001,64000,63600,63300,63600,64700,65800,67100,68400,69800,71200,72600,73800,75100,76200,77200,78100,78900,79900,80900,82000,83300,84500,85700,86700,87700,88500,89200,89900,90600,91100,91600,92100,92700,93200,93800,94300,94800,95300,95800,96300,96700,97100,97500,97900,98200,98500,98800,99000,99200,99400,99600,99700,99800,99800,99800,99800,99800,99700,99700,99500,99400,99200,99000,98800,98600,98300,98100,97800,97500,97200,96800,96500,96100,95800,95400,95000,94600,94200,93800,93300,92900,92400,92000,91500,91100,90600,90100,89600,89100,88600,88100,87600,87000,86500,86000,85400,84900,84300,83800,83300,82700,82200,81600,81100,80600,80000,79500,79000,78500,78000,77500,77000,76500 +Australia,200000,205000,211000,216000,222000,227000,233000,239000,246000,252000,259000,265000,272000,279000,287000,294000,302000,309000,318000,324000,329000,332000,333000,333000,332000,332000,332000,331000,331000,332000,335000,340000,347000,355000,364000,373000,382000,391000,400000,411000,424000,437000,452000,469000,487000,505000,524000,543000,563000,589000,623000,663000,712000,770000,832000,900000,973000,1050000,1140000,1220000,1290000,1350000,1400000,1440000,1490000,1530000,1580000,1620000,1670000,1720000,1760000,1800000,1840000,1880000,1920000,1960000,2009999.9999999998,2049999.9999999998,2089999.9999999998,2140000,2200000,2270000,2340000,2420000,2510000,2600000,2690000,2780000,2880000,2970000,3050000,3130000,3200000,3250000,3310000,3380000,3440000,3500000,3570000,3630000,3690000,3760000,3820000,3870000,3940000,4000000,4059999.9999999995,4120000,4190000.0000000005,4250000,4330000,4410000,4490000,4580000,4680000,4770000,4870000,4970000,5070000,5170000,5270000,5380000,5480000,5590000,5690000,5800000,5910000,6020000,6140000,6240000,6330000,6410000,6480000,6540000,6590000,6650000,6700000,6760000,6820000,6890000,6970000,7060000,7160000,7280000,7400000,7520000,7640000,7760000,7890000,8029999.999999999,8180000,8420000,8630000,8820000,9000000,9210000,9430000,9640000,9850000,10100000,10300000,10500000,10700000,10900000,11100000,11400000,11600000,11800000,12000000,12300000,12600000,13000000,13300000,13500000,13700000,13900000,14000000,14200000,14400000,14500000,14700000,14900000,15200000,15400000,15600000,15800000,16000000,16300000,16500000,16800000,17000000,17300000,17500000,17600000,17800000,18000000,18200000,18400000,18600000,18800000,19000000,19200000,19500000,19700000,19900000,20200000,20500000,20800000,21200000,21700000,22000000,22400000,22700000,23100000,23500000,23800000,24200000,24600000,25000000,25400000,25700000,25900000,26200000,26400000,26700000,27000000,27200000,27500000,27700000,28000000,28200000,28400000,28700000,28900000,29100000,29300000,29500000,29800000,30000000,30200000,30400000,30600000,30700000,30900000,31100000,31300000,31500000,31700000,31900000,32000000,32200000.000000004,32400000,32500000,32700000.000000004,32799999.999999996,33000000,33200000.000000004,33299999.999999996,33500000,33600000,33700000,33900000,34000000,34200000,34300000,34500000,34600000,34700000,34900000,35000000,35100000,35200000,35400000,35500000,35600000,35700000,35800000,35900000,36000000,36200000,36300000,36400000,36400000,36500000,36600000,36700000,36800000,36900000,37000000,37100000,37200000,37200000,37300000,37400000,37500000,37600000,37700000,37800000,37900000,38000000,38100000 +Austria,3000000,3020000,3040000,3050000,3070000,3090000,3110000,3120000,3140000,3160000,3180000,3200000,3220000,3240000,3250000,3270000,3290000,3310000,3330000,3350000,3370000,3390000,3400000,3420000,3440000,3450000,3470000,3490000,3500000,3520000,3540000,3560000,3570000,3590000,3610000,3630000,3640000,3660000,3680000,3700000,3720000,3740000,3760000,3780000,3810000,3830000,3850000,3880000,3900000,3930000,3950000,3980000,4010000,4030000.0000000005,4059999.9999999995,4090000,4120000,4150000.0000000005,4179999.9999999995,4210000,4230000,4260000,4290000,4320000,4350000,4380000,4410000,4430000,4460000,4490000,4530000,4560000,4600000,4640000,4690000,4730000,4770000,4810000,4860000,4900000,4940000,4990000,5030000,5080000,5120000,5170000,5210000,5260000,5300000,5350000,5400000,5460000,5510000,5570000,5620000,5680000,5740000,5800000,5860000,5920000,5980000,6040000,6100000,6170000,6230000,6290000,6360000,6420000,6490000,6540000,6570000,6590000,6590000,6570000,6560000,6540000,6530000,6510000,6490000,6490000,6490000,6490000,6510000,6530000,6550000,6580000,6600000,6620000,6650000,6660000,6680000,6690000,6700000,6700000,6700000,6700000,6700000,6710000,6710000,6720000,6730000,6740000,6760000,6780000,6800000,6830000,6850000,6870000,6900000,6920000,6940000,6930000,6930000,6930000,6940000,6950000,6950000,6970000,6990000,7010000,7050000,7090000,7130000,7170000,7220000,7270000,7320000,7380000,7410000,7440000,7470000,7500000,7540000,7580000,7600000,7580000,7560000,7570000,7560000,7550000,7550000,7570000,7570000,7560000,7560000,7560000,7570000,7570000,7580000,7620000,7680000,7760000,7840000,7910000,7940000,7950000,7960000,7970000,7980000,7990000,8010000,8039999.999999999,8080000,8119999.999999999,8170000,8230000,8270000,8289999.999999999,8320000,8340000,8359999.999999999,8390000,8430000,8480000,8550000,8640000,8740000,8800000,8840000,8880000,8910000,8920000,8940000,8960000,8980000,8990000,9010000,9020000,9040000,9050000,9050000,9060000,9070000,9070000,9070000,9070000,9070000,9060000,9060000,9050000,9050000,9040000,9030000,9020000,9010000,9000000,8990000,8970000,8960000,8940000,8920000,8910000,8880000,8860000,8840000,8820000,8790000,8770000,8740000,8710000,8690000,8660000,8640000,8610000,8590000,8570000,8540000,8520000,8500000,8480000,8460000,8440000,8420000,8400000,8380000.000000001,8359999.999999999,8330000,8310000.000000001,8289999.999999999,8270000,8250000,8230000,8210000.000000001,8189999.999999999,8170000,8150000,8130000.000000001,8109999.999999999,8090000,8070000,8060000.000000001,8039999.999999999,8029999.999999999,8010000,8000000,7990000,7980000,7970000,7960000,7950000,7950000 +Azerbaijan,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,880000,882000,885000,890000,896000,904000,913000,921000,930000,938000,947000,955000,964000,973000,982000,991000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1210000,1220000,1230000,1240000,1260000,1270000,1280000,1300000,1310000,1320000,1340000,1350000,1370000,1380000,1390000,1410000,1420000,1440000,1450000,1470000,1480000,1500000,1510000,1530000,1550000,1560000,1580000,1590000,1610000,1630000,1640000,1660000,1680000,1700000,1710000,1730000,1750000,1770000,1790000,1800000,1820000,1840000,1860000,1880000,1900000,1920000,1940000,1960000,1980000,2000000,2020000,2040000,2060000,2080000,2100000,2130000,2150000,2170000,2190000,2210000,2240000,2260000,2280000,2310000,2330000,2350000,2370000,2390000,2420000,2440000,2460000,2480000,2510000,2530000,2550000,2570000,2600000,2620000,2650000,2670000,2700000,2720000,2740000,2770000,2800000,2820000,2850000,2870000,2900000,2930000,2950000,2980000,3010000,3030000,3060000,3100000,3160000,3230000,3300000,3370000,3460000,3550000,3650000,3760000,3870000,4000000,4130000,4270000,4410000,4560000,4700000,4840000,4970000,5090000,5210000,5320000,5430000,5530000,5630000,5730000,5830000,5930000,6020000,6120000,6210000,6300000,6380000,6470000,6570000,6670000,6780000,6890000,7010000,7130000,7260000,7350000,7430000,7540000,7640000,7740000,7820000,7890000,7950000,8000000,8039999.999999999,8100000,8189999.999999999,8279999.999999999,8369999.999999999,8460000,8560000,8660000,8760000,8880000,9000000,9120000,9240000,9360000,9490000,9610000,9740000,9860000,9980000,10100000,10200000,10200000,10300000,10300000,10400000,10400000,10500000,10500000,10600000,10600000,10600000,10700000,10700000,10700000,10800000,10800000,10900000,10900000,10900000,10900000,11000000,11000000,11000000,11000000,11000000,11000000,11000000,11000000,11000000,10900000,10900000,10900000,10900000,10800000,10800000,10800000,10700000,10700000,10700000,10600000,10600000,10500000,10500000,10500000,10400000,10400000,10300000,10300000,10200000,10200000,10100000,10100000,10000000,9960000,9910000,9850000,9790000,9730000,9670000,9610000,9550000,9490000,9430000,9370000,9310000,9250000,9190000,9130000,9070000,9010000,8950000,8900000,8840000,8780000,8730000,8670000,8610000,8560000,8500000,8440000,8380000.000000001,8320000,8270000 +Burundi,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,899000,902000,907000,916000,927000,941000,955000,969000,984000,999000,1010000,1030000,1040000,1060000,1080000,1090000,1110000,1130000,1140000,1160000,1180000,1200000,1210000,1230000,1250000,1270000,1290000,1310000,1330000,1350000,1370000,1390000,1400000,1410000,1420000,1430000,1440000,1440000,1450000,1460000,1460000,1470000,1480000,1490000,1490000,1500000,1510000,1510000,1520000,1530000,1540000,1540000,1550000,1560000,1570000,1580000,1590000,1590000,1600000,1610000,1620000,1630000,1640000,1650000,1660000,1670000,1680000,1690000,1700000,1710000,1720000,1720000,1720000,1720000,1720000,1700000,1690000,1680000,1670000,1660000,1650000,1640000,1630000,1610000,1600000,1590000,1570000,1560000,1540000,1530000,1510000,1500000,1490000,1480000,1470000,1460000,1450000,1450000,1440000,1430000,1420000,1420000,1430000,1440000,1460000,1480000,1500000,1520000,1550000,1570000,1590000,1620000,1640000,1660000,1690000,1710000,1730000,1760000,1780000,1810000,1830000,1860000,1890000,1920000,1950000,1990000,2029999.9999999998,2060000,2100000,2140000,2170000,2210000,2250000,2300000,2350000,2400000,2450000,2500000,2540000,2590000,2640000,2690000,2750000,2820000,2890000,2950000,3030000,3120000,3190000,3270000,3350000,3420000,3500000,3580000,3580000,3570000,3660000,3750000,3830000,3930000,4040000,4139999.9999999995,4310000,4490000,4600000,4730000,4840000,4950000,5040000,5160000,5270000,5370000,5480000,5590000,5740000,5560000,5590000,5930000,5930000,5920000,6040000,6180000,6310000,6470000,6650000,6860000,7120000,7390000,7660000,7940000,8279999.999999999,8710000,9130000,9460000,9800000,10100000,10500000,10700000,10900000,11200000,11500000,11900000,12200000,12600000,12900000,13200000,13600000,13900000,14300000,14700000,15000000,15400000,15800000,16200000,16600000.000000002,17000000,17400000,17800000,18200000,18600000,19100000,19500000,19900000,20400000,20800000,21200000,21700000,22100000,22500000,22900000,23400000,23800000,24200000,24600000,25000000,25400000,25800000,26200000,26600000,27000000,27400000,27800000,28200000,28500000,28900000,29300000,29600000,30000000,30400000,30800000,31100000,31500000,31800000,32200000.000000004,32500000,32900000,33200000.000000004,33500000,33800000,34200000,34500000,34800000,35100000,35300000,35600000,35900000,36200000,36400000,36700000,36900000,37100000,37300000,37600000,37800000,38000000,38200000,38400000,38500000,38700000,38900000,39100000,39200000,39400000 +Belgium,3250000,3260000,3270000,3280000,3290000,3300000,3300000,3310000,3320000,3330000,3340000,3350000,3360000,3370000,3380000,3390000,3400000,3410000,3420000,3430000,3450000,3470000,3500000,3530000,3560000,3590000,3620000,3650000,3680000,3720000,3750000,3780000,3810000,3850000,3880000,3910000,3940000,3980000,4010000,4050000,4080000,4120000,4150000.0000000005,4190000.0000000005,4220000,4260000,4300000,4340000,4370000,4410000,4440000,4480000,4510000,4530000,4560000,4590000,4620000,4650000,4680000,4710000,4740000,4770000,4810000,4840000,4880000,4910000,4950000,4980000,5020000,5060000,5090000,5130000,5180000,5220000,5260000,5310000,5350000,5400000,5440000,5490000,5540000,5590000,5640000,5690000,5750000,5800000,5860000,5910000,5970000,6030000,6080000,6140000,6200000,6260000,6320000,6380000,6450000,6510000,6570000,6640000,6710000,6780000,6850000,6920000,7000000,7080000,7150000,7230000,7310000,7380000,7430000,7460000,7480000,7490000,7490000,7500000,7500000,7510000,7510000,7530000,7550000,7580000,7630000,7680000,7730000,7780000,7830000,7890000,7940000,7990000,8029999.999999999,8070000,8100000,8130000.000000001,8150000,8180000,8210000.000000001,8230000,8260000,8289999.999999999,8320000,8340000,8369999.999999999,8400000,8430000,8460000,8490000,8520000,8550000,8580000,8620000,8660000,8700000,8740000,8790000,8830000,8880000,8930000,8990000,9050000,9110000,9170000,9230000,9290000,9350000,9410000,9470000,9520000,9560000,9590000,9630000,9670000,9700000,9730000,9750000,9760000,9770000,9790000,9800000,9810000,9830000,9840000,9860000,9870000,9870000,9880000,9890000,9900000,9920000,9940000,9960000,9990000,10000000,10000000,10100000,10100000,10100000,10200000,10200000,10200000,10300000,10300000,10400000,10400000,10500000,10500000,10600000,10700000,10700000,10800000,10900000,11000000,11000000,11100000,11200000,11200000,11300000,11400000,11400000,11500000,11600000,11600000,11700000,11700000,11700000,11700000,11800000,11800000,11800000,11800000,11900000,11900000,11900000,11900000,12000000,12000000,12000000,12000000,12000000,12000000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,11900000,11900000,11900000,11900000,11900000,11900000,11900000,11900000,11900000,11900000,11800000,11800000,11800000,11800000,11800000,11800000,11800000,11800000,11800000,11700000,11700000,11700000,11700000,11700000,11700000,11700000,11600000,11600000,11600000,11600000,11600000,11600000,11600000,11600000,11600000,11500000,11500000,11500000 +Benin,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,637000,639000,642000,646000,651000,655000,660000,665000,670000,675000,679000,684000,689000,694000,699000,705000,710000,715000,720000,725000,731000,736000,741000,747000,752000,758000,763000,769000,774000,780000,785000,790000,795000,800000,805000,810000,814000,819000,824000,828000,834000,840000,847000,855000,863000,872000,880000,889000,898000,907000,916000,925000,934000,944000,954000,964000,973000,984000,994000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1070000,1080000,1090000,1100000,1110000,1110000,1120000,1130000,1140000,1150000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1260000,1270000,1280000,1290000,1310000,1320000,1330000,1340000,1360000,1370000,1380000,1390000,1400000,1420000,1430000,1450000,1470000,1490000,1510000,1530000,1560000,1580000,1600000,1630000,1650000,1670000,1700000,1720000,1750000,1770000,1800000,1820000,1850000,1870000,1900000,1930000,1970000,2000000,2040000,2080000,2110000,2150000,2190000,2230000,2260000,2280000,2300000,2320000,2340000,2360000,2390000,2410000,2440000,2480000,2510000,2550000,2590000,2640000,2690000,2740000,2790000,2840000,2900000,2960000,3020000,3090000,3160000,3230000,3300000,3380000,3460000,3550000,3640000,3730000,3830000,3940000,4050000,4170000,4290000,4420000,4550000,4690000,4830000,4980000,5130000,5290000,5460000,5710000,5920000,6050000,6200000,6390000,6580000,6790000,7000000,7210000,7430000,7660000,7890000,8150000,8400000,8650000,8910000,9170000,9450000,9730000,10000000,10300000,10600000,10900000,11300000,11600000,11900000,12300000,12600000,13000000,13400000,13700000,14100000,14500000,14800000,15200000,15600000,16000000,16399999.999999998,16800000,17200000,17600000,18000000,18500000,18900000,19300000,19700000,20200000,20600000,21100000,21500000,22000000,22400000,22900000,23400000,23800000,24300000,24800000,25300000,25700000,26200000,26700000,27200000,27700000,28100000,28600000,29100000,29600000,30000000,30500000,31000000,31500000,32000000,32400000,32900000,33400000,33800000,34300000,34800000,35200000,35700000,36200000,36600000,37100000,37500000,37900000,38400000,38800000,39300000,39700000,40100000,40500000,40900000,41300000,41700000,42100000,42500000,42900000,43300000,43600000,44000000,44300000,44700000,45000000,45400000,45700000,46000000,46300000,46600000 +Burkina Faso,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1670000,1680000,1680000,1690000,1700000,1700000,1710000,1710000,1720000,1730000,1730000,1740000,1740000,1750000,1760000,1760000,1770000,1770000,1780000,1790000,1790000,1800000,1810000,1810000,1820000,1830000,1830000,1840000,1840000,1850000,1860000,1860000,1870000,1870000,1880000,1880000,1890000,1890000,1900000,1910000,1910000,1920000,1920000,1930000,1930000,1940000,1940000,1950000,1960000,1960000,1970000,1980000,1990000,2000000,2009999.9999999998,2020000,2029999.9999999998,2040000,2049999.9999999998,2060000,2069999.9999999998,2080000,2089999.9999999998,2100000,2110000,2120000,2130000,2140000,2150000,2160000,2170000,2190000,2200000,2210000,2230000,2240000,2250000,2260000,2280000,2300000,2320000,2350000,2370000,2400000,2430000,2460000,2490000,2520000,2550000,2570000,2600000,2620000,2650000,2670000,2690000,2720000,2740000,2760000,2790000,2820000,2850000,2880000,2920000,2960000,3000000,3030000,3070000,3110000,3150000,3190000,3230000,3270000,3310000,3350000,3390000,3430000,3470000,3520000,3560000,3610000,3660000,3720000,3780000,3840000,3900000,3960000,4019999.9999999995,4090000,4150000.0000000005,4210000,4260000,4310000,4360000,4420000,4470000,4530000,4590000,4650000,4720000,4780000,4850000,4920000,5000000,5080000,5160000,5240000,5330000,5420000,5520000,5610000,5710000,5810000,5910000,6020000,6140000,6270000,6420000,6580000,6750000,6930000,7120000,7320000,7530000,7750000,7980000,8210000.000000001,8430000,8660000,8900000,9130000,9370000,9600000,9840000,10100000,10400000,10600000,10900000,11200000,11500000,11900000,12200000,12600000,13000000,13400000,13900000,14300000,14800000,15200000,15700000,16100000.000000002,16600000.000000002,17100000,17600000,18200000,18700000,19300000,19800000,20400000,21000000,21500000,22100000,22700000,23300000,23800000,24400000,25000000,25700000,26300000,26900000,27500000,28200000,28800000,29500000,30100000,30800000,31400000,32100000,32700000.000000004,33400000,34100000,34700000,35400000,36000000,36700000,37300000,38000000,38600000,39300000,39900000,40500000,41200000,41800000,42400000,43000000,43700000,44300000,44900000,45500000,46000000,46600000,47200000,47800000,48300000,48900000,49400000,50000000,50500000,51000000,51500000,52000000,52500000,53000000,53400000,53900000,54300000,54800000,55200000,55600000,56000000,56400000,56800000,57100000,57500000,57800000,58100000,58400000,58700000,59000000,59300000,59500000,59800000,60000000,60200000,60500000,60700000,60900000,61000000,61200000,61400000,61500000 +Bangladesh,19200000,19200000,19300000,19300000,19300000,19400000,19400000,19500000,19500000,19500000,19600000,19600000,19700000,19700000,19800000,19800000,19900000,19900000,20000000,20000000,20100000,20100000,20200000,20300000,20300000,20400000,20500000,20600000,20700000,20800000,20900000,21000000,21000000,21100000,21200000,21300000,21400000,21500000,21600000,21700000,21800000,21900000,22000000,22000000,22100000,22200000,22300000,22400000,22500000,22600000,22700000,22800000,22800000,22900000,22900000,23000000,23000000,23100000,23100000,23200000,23200000,23300000,23300000,23400000,23400000,23500000,23500000,23600000,23600000,23700000,23800000,23800000,23900000,24000000,24100000,24200000,24300000,24400000,24500000,24600000,24700000,24800000,24900000,25000000,25100000,25300000,25400000,25500000,25600000,25700000,25800000,25900000,26000000,26100000,26200000,26300000,26400000,26500000,26600000,26700000,26800000,27000000,27100000,27200000,27300000,27400000,27500000,27600000,27700000,27800000,27900000,28000000,28000000,28100000,28100000,28200000,28200000,28300000,28400000,28500000,28600000,28700000,28900000,29000000,29100000,29200000,29300000,29400000,29600000,29800000,30100000,30500000,31000000,31600000,32299999.999999996,32900000,33600000,34200000,34900000,35500000,36100000,36500000,36900000,37200000,37600000,37900000,38200000,38500000,38800000,39200000,39700000,40500000,41400000,42300000,43300000,44300000,45400000,46600000,47700000,49000000,50400000,51900000,53500000,55100000,56800000,58500000,60300000,62100000,64000000,65900000.00000001,67500000,68400000,69300000,71100000,72900000,74700000,76400000,78100000,80000000,81900000,83900000,86200000,88600000,91000000,93500000,96000000,98300000,100000000,103000000,105000000,107000000,109000000,111000000,113000000,116000000,118000000,120000000,122000000,124000000,127000000,129000000,132000000,134000000,137000000,139000000,141000000,143000000,144000000,145000000,147000000,148000000,150000000,152000000,154000000,156000000,158000000,160000000,162000000,164000000,166000000,167000000,169000000,171000000,173000000,175000000,176000000,178000000,180000000,181000000,183000000,184000000,186000000,187000000,189000000,190000000,191000000,192000000,193000000,195000000,196000000,197000000,197000000,198000000,199000000,200000000,201000000,201000000,202000000,203000000,203000000,204000000,204000000,205000000,205000000,206000000,206000000,206000000,207000000,207000000,207000000,207000000,207000000,207000000,207000000,207000000,206000000,206000000,206000000,206000000,205000000,205000000,204000000,204000000,203000000,203000000,202000000,201000000,200000000,200000000,199000000,198000000,197000000,196000000,195000000,194000000,193000000,192000000,191000000,190000000,189000000,188000000,187000000,186000000,185000000,184000000,182000000,181000000,180000000,179000000,178000000,176000000 +Bulgaria,2250000,2250000,2240000,2240000,2240000,2230000,2230000,2230000,2220000,2220000,2220000,2220000,2210000,2210000,2210000,2200000,2200000,2200000,2190000,2190000,2190000,2200000,2210000,2220000,2230000,2240000,2250000,2260000,2270000,2280000,2290000,2300000,2310000,2320000,2330000,2340000,2350000,2360000,2370000,2380000,2390000,2400000,2410000,2420000,2430000,2440000,2460000,2470000,2480000,2490000,2500000,2500000,2510000,2510000,2520000,2520000,2520000,2530000,2530000,2530000,2540000,2540000,2550000,2550000,2550000,2560000,2560000,2560000,2570000,2580000,2600000,2620000,2650000,2690000,2730000,2770000,2810000,2840000,2890000,2930000,2970000,3010000,3050000,3100000,3140000,3190000,3230000,3280000,3320000,3370000,3420000,3470000,3520000,3570000,3630000,3680000,3740000,3790000,3850000,3900000,3960000,4010000,4059999.9999999995,4110000.0000000005,4160000,4210000,4260000,4310000,4360000,4420000,4470000,4520000,4570000,4620000,4680000,4730000,4780000,4840000,4890000,4960000,5030000,5100000,5180000,5270000,5370000,5460000,5560000,5650000,5750000,5840000,5930000,6000000,6070000,6130000,6200000,6260000,6320000,6390000,6450000,6510000,6580000,6630000,6690000,6750000,6810000,6860000,6920000,6980000,7040000,7100000,7160000,7230000,7290000,7360000,7440000,7520000,7600000,7670000,7750000,7820000,7890000,7970000,8039999.999999999,8109999.999999999,8180000,8250000,8310000.000000001,8369999.999999999,8440000,8510000,8580000,8650000,8700000,8750000,8810000,8860000,8900000,8940000,8960000,8970000,8980000,8980000,8970000,8960000,8940000,8920000,8890000,8870000,8840000,8800000,8770000,8720000,8670000,8610000,8550000,8480000,8400000,8320000,8230000,8160000,8100000,8029999.999999999,7970000,7920000,7870000,7820000,7770000,7720000,7670000,7630000,7590000,7540000,7490000,7430000,7370000,7310000,7250000,7180000,7120000,7050000,6980000,6890000,6780000,6690000,6620000,6570000,6510000,6460000,6400000,6350000,6290000,6230000,6180000,6120000,6060000,6010000,5950000,5890000,5840000,5780000,5730000,5670000,5620000,5560000,5510000,5450000,5400000,5350000,5290000,5240000,5190000,5130000,5080000,5030000,4980000,4920000,4870000,4820000,4760000,4710000,4660000,4600000,4550000,4490000,4440000,4390000,4330000,4280000,4230000,4179999.9999999995,4130000,4080000,4030000.0000000005,3980000,3930000,3890000,3840000,3800000,3750000,3710000,3670000,3630000,3590000,3550000,3510000,3470000,3430000,3400000,3360000,3330000,3290000,3260000,3220000,3190000,3150000,3120000,3080000,3050000,3010000,2980000,2940000 +Bahrain,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64500,64400.00000000001,64400.00000000001,64400.00000000001,64500,64700,64900.00000000001,65200,65600,66000,66400,66800,67200,67600,68000,68400,68800,69200,69600,70000,70500,70900,71300,71700,72200,72600,73000,73500,73900,74300,74800,75200,75700,76100,76600,77000,77500,78000,78400,78900,79400,79800,80300,80800,81800,83400,85600,88400,91800,95400,99100,103000,107000,111000,115000,117000,119000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,120000,119000,119000,119000,118000,118000,117000,117000,116000,116000,116000,117000,120000,124000,127000,131000,135000,139000,144000,149000,155000,161000,167000,173000,180000,187000,193000,199000,205000,211000,217000,223000,231000,243000,257000,271000,285000,300000,315000,331000,347000,363000,377000,391000,405000,419000,434000,450000,467000,483000,500000,517000,535000,554000,574000,593000,613000,633000,653000,672000,692000,711000,730000,748000,778000,833000,902000,971000,1040000,1110000,1180000,1210000,1210000,1220000,1260000,1310000,1360000,1410000,1460000,1490000,1490000,1480000,1460000,1470000,1490000,1500000,1510000,1520000,1540000,1550000,1560000,1570000,1590000,1600000,1610000,1620000,1640000,1650000,1660000,1670000,1690000,1700000,1710000,1720000,1740000,1750000,1760000,1770000,1780000,1790000,1800000,1810000,1820000,1830000,1830000,1840000,1850000,1860000,1860000,1870000,1870000,1880000,1880000,1890000,1890000,1890000,1900000,1900000,1910000,1910000,1910000,1920000,1920000,1920000,1920000,1930000,1930000,1930000,1940000,1940000,1940000,1950000,1950000,1950000,1960000,1960000,1970000,1970000,1980000,1980000,1990000,1990000,2000000,2009999.9999999998,2009999.9999999998,2020000,2020000,2029999.9999999998,2029999.9999999998,2040000,2040000,2049999.9999999998 +Bahamas,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27400,27500,27500,27500,27500,27500,27600,27600,27600,27600,27700,27700,27700,27700,27700,27800,27800,27800,27800,27800,27900,27900,27900,27900,28000,28100,28400,28800,29400,30100,30900,31600,32400,33200,34000,34700,35400,36000,36600,37000,37500,38000,38500,39000,39500,40000,40500,41100,41600,42200,42800,43400,44000,44600,45200,45800,46400,47000,47500,48000,48500,49000,49500,50000,50600,51100,51700,52400,53100,53800,54500,55300,56000,56800,57500,58200,58800,59300,59800,60100,60400,60700,61000,61400,61700,61900,62000,62000,61900,61700,61400,61200,61000,60700,60400,60300,60400,60700,61200,62000,62800,63600,64300,65200,66000,66800,67700,68600,69500,70500,71500,72500,73500,74600,75600,76500,77200,77700,78100,78300,78400,78600,78800,78900,79100,80000,81600,82900,84600,86700,89400,92400,96000,100000,104000,109000,115000,120000,126000,133000,139000,145000,151000,158000,165000,173000,179000,184000,189000,194000,198000,202000,206000,211000,215000,219000,224000,228000,232000,237000,241000,246000,251000,256000,260000,265000,271000,276000,282000,288000,294000,300000,305000,310000,315000,320000,325000,330000,334000,338000,343000,348000,353000,358000,363000,368000,373000,378000,382000,386000,389000,393000,396000,399000,402000,405000,406000,408000,410000,413000,415000,418000,420000,423000,425000,428000,430000,432000,434000,436000,438000,440000,442000,443000,444000,446000,447000,448000,449000,449000,450000,450000,451000,451000,451000,451000,451000,450000,450000,450000,449000,449000,448000,448000,447000,447000,446000,445000,445000,444000,443000,443000,442000,441000,440000,440000,439000,438000,437000,436000,435000,434000,433000,432000,431000,429000,428000,427000,426000,424000,423000,422000,420000,419000,417000,416000,415000,413000,412000,411000,410000,408000,407000,406000,405000,404000,403000 +Bosnia and Herzegovina,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,852000,853000,855000,858000,862000,868000,873000,878000,884000,889000,895000,900000,906000,911000,917000,923000,928000,934000,940000,946000,951000,957000,963000,969000,975000,981000,987000,993000,999000,1010000,1010000,1020000,1020000,1030000,1040000,1040000,1050000,1060000,1060000,1070000,1080000,1080000,1090000,1100000,1100000,1110000,1120000,1120000,1130000,1140000,1150000,1150000,1170000,1180000,1200000,1220000,1240000,1260000,1280000,1300000,1320000,1340000,1360000,1380000,1400000,1420000,1440000,1460000,1480000,1510000,1530000,1550000,1570000,1590000,1610000,1630000,1650000,1670000,1680000,1700000,1720000,1740000,1760000,1780000,1810000,1830000,1850000,1870000,1890000,1910000,1930000,1960000,1970000,1990000,2009999.9999999998,2020000,2040000,2060000,2069999.9999999998,2089999.9999999998,2100000,2120000,2130000,2150000,2170000,2180000,2200000,2220000,2230000,2250000,2270000,2280000,2300000,2320000,2340000,2350000,2370000,2390000,2410000,2420000,2440000,2460000,2480000,2500000,2520000,2540000,2560000,2570000,2590000,2610000,2630000,2660000,2690000,2740000,2790000,2840000,2900000,2960000,3020000,3080000,3140000,3200000,3260000,3330000,3390000,3450000,3510000,3570000,3620000,3670000,3720000,3770000,3820000,3860000,3900000,3940000,3980000,4019999.9999999995,4059999.9999999995,4099999.9999999995,4130000,4170000,4200000,4240000,4270000,4310000,4350000,4380000,4410000,4440000,4460000,4480000,4490000,4500000,4280000,3940000,3760000,3750000,3910000,4050000,4120000,4150000.0000000005,4179999.9999999995,4190000.0000000005,4200000,4179999.9999999995,4139999.9999999995,4090000,4059999.9999999995,4010000,3940000,3880000,3810000,3740000,3670000,3620000,3570000,3520000,3480000,3440000,3400000,3360000,3320000,3270000,3230000,3210000,3190000,3180000,3170000,3150000,3140000,3130000,3110000,3100000,3080000,3070000,3050000,3030000,3010000,3000000,2980000,2960000,2940000,2920000,2900000,2880000,2860000,2840000,2820000,2800000,2780000,2760000,2740000,2720000,2700000,2670000,2650000,2630000,2610000,2590000,2570000,2540000,2520000,2500000,2480000,2460000,2440000,2410000,2390000,2370000,2350000,2330000,2310000,2280000,2260000,2240000,2220000,2200000,2180000,2160000,2140000,2120000,2100000,2080000,2060000,2040000,2020000,2000000,1980000,1960000,1950000,1930000,1910000,1890000,1870000,1860000,1840000,1820000,1800000,1790000,1770000,1760000,1740000 +Belarus,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2360000,2370000,2380000,2400000,2420000,2440000,2470000,2490000,2510000,2530000,2560000,2580000,2600000,2630000,2650000,2680000,2700000,2730000,2750000,2780000,2800000,2830000,2850000,2880000,2910000,2930000,2960000,2990000,3010000,3040000,3070000,3100000,3130000,3160000,3190000,3220000,3250000,3280000,3310000,3340000,3380000,3410000,3440000,3470000,3510000,3540000,3570000,3610000,3640000,3680000,3710000,3750000,3780000,3820000,3860000,3890000,3930000,3970000,4010000,4040000,4080000,4120000,4160000,4200000,4240000,4280000,4320000,4360000,4410000,4450000,4490000,4530000,4580000,4620000,4660000,4710000,4750000,4800000,4850000,4890000,4940000,4990000,5030000,5080000,5130000,5180000,5230000,5280000,5330000,5380000,5430000,5480000,5540000,5590000,5640000,5700000,5750000,5810000,5860000,5920000,5970000,6020000,6080000,6140000,6190000,6250000,6310000,6360000,6420000,6480000,6540000,6600000,6660000,6720000,6780000,6850000,6910000,6970000,7040000,7100000,7170000,7230000,7300000,7370000,7430000,7500000,7570000,7640000,7710000,7780000,7850000,7910000,7880000,7880000,7890000,7930000,7980000,8039999.999999999,8109999.999999999,8189999.999999999,8289999.999999999,8390000,8500000,8600000,8690000,8780000,8850000,8920000,8990000,9050000,9110000,9170000,9240000,9300000,9370000,9440000,9500000,9560000,9630000,9690000,9760000,9820000,9880000,9940000,10000000,10100000,10100000,10200000,10300000,10300000,10400000,10400000,10500000,10500000,10500000,10500000,10500000,10400000,10400000,10400000,10300000,10300000,10200000,10100000,10100000,10000000,9940000,9870000,9830000,9790000,9760000,9730000,9710000,9690000,9690000,9690000,9700000,9710000,9710000,9700000,9670000,9630000,9580000,9530000,9500000,9460000,9410000,9370000,9330000,9290000,9250000,9210000,9160000,9120000,9080000,9040000,9000000,8950000,8910000,8870000,8830000,8800000,8760000,8720000,8680000,8640000,8610000,8570000,8530000,8490000,8450000,8410000,8369999.999999999,8320000,8279999.999999999,8230000,8189999.999999999,8140000.000000001,8090000,8050000.000000001,8000000,7950000,7900000,7860000,7810000,7760000,7710000,7670000,7620000,7580000,7530000,7490000,7440000,7400000,7360000,7320000,7280000,7240000,7200000,7160000,7120000,7090000,7050000,7010000,6980000,6950000,6910000,6880000,6850000,6820000,6790000,6760000,6730000,6700000,6670000,6640000,6610000,6580000,6560000,6530000,6500000,6470000 +Belize,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25500,25600,25600,25600,25600,25600,25600,25600,25600,25700,25700,25700,25700,25700,25700,25700,25700,25800,25800,25800,25800,25800,25800,25800,25800,25800,25900,25900,25900,25900,25900,26000,26000,26000,26000,26100,26100,26100,26100,26000,26000,25900,25800,25700,25600,25500,25400,25400,25400,25500,25700,25900,26100,26300,26500,26800,27000,27200,27500,27900,28200,28600,29100,29500,29900,30300,30800,31200,31700,32299.999999999996,32800,33500,34100,34700,35300,36000,36600,37200,37800,38200,38600,39000,39300,39600,39900,40300,40600,41000,41400,41800,42300,42800,43400,43900,44500,45000,45500,46100,46600,47200,47800,48400,49000,49600,50300,50900,51500,52200,52900,53600,54400,55200,56000,56800,57700,58500,59400,60200,61000,61700,62500,63200,63800,64500,65300,66000,66700,67700,69100,71200,73500,75600,77800,80000,82200,84500,86700,89100,91400,93800,96200,98900,102000,105000,108000,111000,115000,118000,121000,123000,125000,127000,129000,131000,133000,136000,139000,142000,145000,149000,152000,156000,160000,163000,167000,171000,175000,179000,183000,186000,190000,194000,198000,204000,210000,217000,225000,233000,240000,248000,256000,264000,272000,280000,289000,297000,306000,314000,322000,330000,337000,345000,352000,360000,367000,375000,382000,389000,395000,400000,405000,411000,417000,422000,428000,434000,439000,445000,450000,456000,461000,466000,472000,477000,482000,486000,491000,496000,500000,505000,509000,513000,517000,521000,525000,528000,532000,535000,539000,542000,545000,548000,551000,554000,556000,559000,561000,563000,565000,568000,569000,571000,573000,574000,576000,577000,578000,579000,580000,581000,582000,582000,583000,583000,583000,583000,583000,583000,583000,583000,582000,582000,581000,580000,580000,579000,578000,577000,576000,575000,574000,572000,571000,570000,568000,567000,566000,564000,563000 +Bolivia,887000,897000,906000,916000,926000,936000,946000,956000,967000,977000,988000,999000,1010000,1020000,1030000,1040000,1050000,1070000,1080000,1090000,1100000,1110000,1120000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1250000,1260000,1270000,1280000,1290000,1290000,1300000,1310000,1320000,1330000,1340000,1350000,1360000,1370000,1380000,1390000,1400000,1410000,1410000,1420000,1430000,1440000,1450000,1460000,1460000,1470000,1480000,1490000,1500000,1510000,1520000,1520000,1520000,1510000,1490000,1460000,1410000,1370000,1330000,1290000,1260000,1220000,1200000,1190000,1190000,1200000,1230000,1260000,1290000,1320000,1350000,1380000,1420000,1450000,1480000,1520000,1550000,1590000,1630000,1670000,1710000,1750000,1780000,1810000,1840000,1860000,1880000,1900000,1920000,1930000,1950000,1970000,1990000,2020000,2049999.9999999998,2080000,2110000,2150000,2180000,2220000,2250000,2290000,2320000,2350000,2380000,2410000,2440000,2470000,2500000,2530000,2560000,2590000,2620000,2650000,2680000,2710000,2740000,2770000,2800000,2840000,2870000,2900000,2930000,2960000,2970000,2990000,3000000,3000000,3010000,3020000,3030000,3040000,3060000,3090000,3140000,3190000,3240000,3300000,3360000,3420000,3490000,3560000,3630000,3710000,3780000,3860000,3950000,4030000.0000000005,4120000,4200000,4300000,4390000,4490000,4590000,4690000,4790000,4900000,5010000,5130000,5240000,5360000,5490000,5610000,5740000,5860000,5990000,6120000,6250000,6390000,6520000,6660000,6800000,6950000,7100000,7240000,7390000,7540000,7690000,7840000,7990000,8140000.000000001,8289999.999999999,8440000,8590000,8750000,8900000,9060000,9220000,9380000,9540000,9710000,9880000,10100000,10200000,10400000,10600000,10700000,10900000,11100000,11300000,11400000,11600000,11800000,11900000,12100000,12200000,12400000,12600000,12700000,12900000,13100000,13300000,13500000,13600000,13800000,14000000,14100000,14300000,14500000,14600000,14800000,14900000,15100000,15300000,15400000,15500000,15700000,15800000,16000000,16100000.000000002,16200000,16399999.999999998,16500000,16600000.000000002,16700000,16800000,17000000,17100000,17200000,17300000,17400000,17500000,17600000,17700000,17700000,17800000,17900000,18000000,18100000,18100000,18200000,18300000,18300000,18400000,18400000,18500000,18500000,18600000,18600000,18700000,18700000,18700000,18700000,18800000,18800000,18800000,18800000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000,18900000 +Brazil,2500000,2570000,2650000,2730000,2810000,2900000,2980000,3070000,3160000,3260000,3360000,3460000,3560000,3670000,3780000,3890000,4010000,4130000,4250000,4370000,4470000,4570000,4650000,4730000,4800000,4880000,4960000,5030000,5110000,5200000,5280000,5360000,5450000,5530000,5620000,5710000,5800000,5890000,5990000,6080000,6180000,6280000,6380000,6480000,6580000,6690000,6790000,6900000,7010000,7120000,7230000,7350000,7460000,7570000,7690000,7810000,7930000,8050000.000000001,8180000,8300000.000000001,8430000,8560000,8690000,8820000,8960000,9100000,9240000,9380000,9520000,9680000,9840000,10000000,10200000,10400000,10600000,10800000,11000000,11200000,11400000,11600000,11800000,12100000,12300000,12500000,12800000,13000000,13200000,13500000,13700000,14000000,14300000,14600000,15000000,15300000,15700000,16100000.000000002,16399999.999999998,16800000,17200000,17700000,18100000,18500000,18900000,19300000,19700000,20100000,20500000,21000000,21400000,21900000,22400000,22800000,23300000,23800000,24300000,24900000,25400000,25900000,26500000,27000000,27600000,28200000,28700000,29300000,29900000,30600000,31200000,31800000,32500000,33100000,33800000,34500000,35200000,35900000,36700000,37400000,38200000,39000000,39800000,40600000,41600000,42600000,43700000,44800000,46000000,47200000,48500000,49800000,51100000,52500000,54000000,55600000,57300000,59000000,60800000,62700000,64599999.99999999,66700000,68700000,70900000,73100000,75300000,77600000,79900000,82300000,84600000,87000000,89300000,91700000,94000000,96400000,98800000,101000000,104000000,106000000,109000000,111000000,114000000,117000000,119000000,122000000,125000000,128000000,131000000,134000000,137000000,140000000,142000000,145000000,148000000,151000000,153000000,156000000,158000000,161000000,164000000,166000000,169000000,171000000,173000000,176000000,178000000,180000000,183000000,185000000,187000000,189000000,191000000,193000000,195000000,196000000,198000000,200000000,202000000,203000000,205000000,207000000,209000000,210000000,212000000,213000000,214000000,215000000,216000000,218000000,219000000,220000000,221000000,222000000,223000000,224000000,225000000,226000000,226000000,227000000,228000000,228000000,229000000,229000000,230000000,230000000,230000000,231000000,231000000,231000000,231000000,231000000,231000000,231000000,231000000,231000000,231000000,230000000,230000000,230000000,229000000,229000000,229000000,228000000,228000000,227000000,226000000,226000000,225000000,224000000,223000000,223000000,222000000,221000000,220000000,219000000,218000000,217000000,216000000,215000000,214000000,213000000,211000000,210000000,209000000,208000000,207000000,206000000,204000000,203000000,202000000,201000000,200000000,198000000,197000000,196000000,195000000,194000000,192000000,191000000,190000000,189000000,188000000,187000000,186000000,185000000 +Barbados,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,81700,82000,82600,83400,84600,86000,87500,89000,90500,92100,93600,95200,96900,98500,100000,102000,104000,105000,107000,109000,111000,113000,115000,117000,119000,121000,123000,125000,127000,129000,131000,134000,136000,137000,139000,141000,143000,144000,146000,148000,149000,151000,152000,154000,155000,156000,156000,157000,158000,159000,160000,161000,162000,163000,164000,165000,166000,167000,168000,169000,170000,171000,172000,173000,174000,175000,176000,177000,178000,179000,181000,182000,183000,184000,185000,187000,188000,189000,190000,192000,193000,194000,193000,192000,191000,188000,186000,183000,181000,179000,176000,174000,172000,170000,169000,167000,166000,164000,163000,161000,160000,159000,159000,159000,160000,162000,163000,165000,167000,168000,170000,172000,174000,176000,178000,180000,181000,183000,185000,187000,190000,192000,193000,195000,197000,199000,200000,202000,204000,205000,207000,209000,211000,215000,219000,223000,225000,227000,229000,229000,230000,231000,233000,234000,235000,236000,237000,238000,238000,239000,240000,241000,241000,242000,243000,245000,246000,247000,248000,250000,251000,252000,254000,255000,256000,257000,257000,258000,258000,259000,259000,259000,259000,259000,260000,261000,262000,262000,263000,263000,264000,264000,265000,265000,266000,267000,269000,269000,270000,271000,273000,274000,275000,275000,276000,277000,277000,278000,279000,279000,280000,280000,281000,281000,282000,282000,282000,283000,283000,283000,283000,283000,283000,283000,283000,283000,282000,282000,281000,281000,280000,280000,279000,278000,277000,276000,275000,274000,273000,272000,270000,269000,268000,267000,265000,264000,263000,261000,260000,259000,257000,256000,255000,254000,252000,251000,250000,249000,248000,246000,245000,244000,243000,241000,240000,239000,238000,236000,235000,234000,232000,231000,230000,228000,227000,226000,224000,223000,222000,220000,219000,217000,216000,215000,213000,212000,211000,209000,208000,207000,206000,204000,203000 +Brunei,2260,2260,2260,2260,2260,2260,2260,2260,2260,2260,2260,2260,2260,2270,2280,2290,2310,2320,2340,2360,2390,2420,2450,2480,2510,2550,2590,2640,2690,2740,2790,2850,2910,2970,3030,3090,3160,3220,3290,3360,3430,3500,3570,3650,3720,3800,3880,3960,4040,4120,4210,4300,4390,4480,4580,4680,4780,4880,4980,5090,5200,5310,5430,5560,5690,5830,5980,6130,6300,6470,6640,6670,6870,7070,7290,7530,7780,8030,8300,8570,8860,9150,9450,9770,10100,10400,10800,11100,11500,11900,12300,12700,13100,13500,14000,14400,14900,15400,15900,16400,17000,17500,18100,18700,19300,20000,20600,21300,21900,22500,23100,23400,23600,24000,24400,24800,25300,25700,26100,26500,27000,27400,27800,28200,28600,29000,29400,29900,30300,30800,31500,32299.999999999996,33200,34300,35300,36500,37600,38800,40000,41100,42000,42800,43400,43800,44200,44600,45000,45400,45900,46800,48300,51100,54000,57200,60600,64300,68200,72400,76700,81000,85300,89600,93800,98300,103000,108000,113000,118000,123000,128000,133000,139000,144000,149000,154000,160000,165000,171000,176000,182000,188000,194000,201000,208000,215000,222000,230000,238000,246000,254000,262000,270000,277000,285000,292000,299000,306000,313000,320000,327000,334000,341000,347000,354000,360000,367000,373000,379000,385000,390000,396000,402000,407000,412000,417000,421000,426000,430000,434000,438000,442000,445000,449000,453000,456000,459000,462000,465000,468000,471000,473000,476000,478000,481000,483000,485000,487000,489000,490000,492000,493000,494000,495000,496000,497000,498000,498000,498000,499000,499000,498000,498000,498000,497000,496000,495000,494000,493000,492000,490000,489000,487000,486000,484000,482000,480000,478000,476000,474000,472000,470000,468000,466000,464000,462000,460000,458000,456000,453000,451000,449000,447000,445000,443000,440000,438000,436000,434000,432000,429000,427000,425000,423000,421000,418000,416000,414000,411000,409000,407000,405000 +Bhutan,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,391000,390000,388000,386000,385000,383000,381000,379000,377000,375000,373000,371000,369000,368000,366000,364000,362000,360000,358000,357000,355000,353000,351000,350000,348000,346000,344000,343000,341000,339000,338000,336000,335000,333000,332000,330000,329000,327000,326000,324000,323000,321000,320000,318000,317000,315000,314000,313000,311000,310000,308000,307000,306000,304000,303000,301000,300000,299000,297000,296000,295000,293000,292000,291000,289000,288000,287000,285000,284000,283000,282000,280000,279000,278000,277000,275000,274000,273000,272000,270000,269000,268000,267000,266000,264000,263000,262000,261000,260000,259000,258000,258000,257000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,258000,256000,252000,246000,238000,228000,218000,209000,201000,192000,184000,179000,176000,180000,184000,187000,192000,196000,201000,205000,210000,216000,221000,227000,233000,240000,247000,255000,263000,271000,280000,289000,299000,309000,319000,330000,341000,352000,364000,376000,389000,402000,415000,429000,442000,456000,470000,485000,499000,514000,529000,544000,558000,568000,546000,521000,521000,528000,537000,547000,557000,571000,587000,603000,619000,635000,650000,663000,673000,682000,690000,698000,706000,713000,721000,729000,736000,743000,750000,756000,762000,767000,773000,777000,782000,787000,792000,797000,802000,807000,812000,817000,821000,826000,831000,835000,839000,843000,847000,851000,854000,857000,860000,863000,865000,868000,869000,871000,872000,873000,874000,874000,874000,874000,874000,873000,872000,871000,870000,869000,867000,865000,863000,860000,858000,855000,852000,849000,845000,841000,837000,833000,828000,824000,819000,813000,808000,803000,797000,791000,785000,779000,773000,766000,760000,754000,747000,741000,735000,728000,722000,716000,710000,704000,698000,693000,687000,681000,676000,670000,665000,660000,654000 +Botswana,121000,121000,120000,120000,119000,119000,118000,118000,117000,117000,116000,116000,116000,115000,115000,114000,114000,113000,113000,113000,112000,112000,111000,111000,110000,110000,110000,109000,109000,108000,108000,108000,107000,107000,106000,106000,106000,105000,105000,104000,104000,104000,103000,103000,102000,102000,102000,101000,101000,101000,101000,101000,102000,103000,104000,105000,106000,107000,108000,109000,111000,112000,113000,114000,115000,116000,117000,119000,120000,121000,122000,123000,125000,126000,127000,129000,130000,131000,132000,134000,135000,136000,138000,139000,141000,142000,143000,145000,146000,148000,149000,151000,152000,154000,155000,157000,159000,160000,162000,164000,166000,168000,171000,173000,176000,179000,182000,185000,188000,191000,194000,197000,200000,203000,207000,210000,213000,216000,220000,223000,227000,232000,236000,241000,246000,251000,257000,262000,268000,273000,279000,285000,290000,296000,302000,308000,315000,321000,327000,334000,340000,347000,354000,361000,368000,375000,382000,389000,397000,405000,413000,423000,433000,442000,452000,462000,471000,481000,491000,502000,513000,524000,536000,549000,562000,571000,575000,579000,583000,587000,592000,604000,627000,657000,692000,728000,766000,807000,849000,894000,939000,983000,1020000,1060000,1100000,1140000,1180000,1220000,1260000,1300000,1340000,1380000,1420000,1460000,1500000,1540000,1580000,1620000,1660000,1690000,1730000,1760000,1800000,1830000,1860000,1890000,1930000,1970000,2009999.9999999998,2049999.9999999998,2089999.9999999998,2130000,2180000,2220000,2260000,2310000,2350000,2400000,2450000,2500000,2550000,2590000,2630000,2680000,2720000,2760000,2810000,2850000,2890000,2930000,2970000,3010000,3050000,3090000,3130000,3170000,3210000,3240000,3280000,3320000,3360000,3390000,3430000,3460000,3490000,3530000,3560000,3590000,3620000,3650000,3680000,3710000,3730000,3760000,3780000,3810000,3830000,3850000,3870000,3890000,3910000,3930000,3940000,3960000,3980000,3990000,4010000,4019999.9999999995,4030000.0000000005,4040000,4059999.9999999995,4070000.0000000005,4080000,4090000,4099999.9999999995,4110000.0000000005,4120000,4130000,4139999.9999999995,4139999.9999999995,4150000.0000000005,4160000,4160000,4170000,4170000,4179999.9999999995,4179999.9999999995,4179999.9999999995,4179999.9999999995,4190000.0000000005,4190000.0000000005,4190000.0000000005,4190000.0000000005,4190000.0000000005,4190000.0000000005,4190000.0000000005,4190000.0000000005,4179999.9999999995,4179999.9999999995,4179999.9999999995,4179999.9999999995 +Central African Republic,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,479000,482000,486000,493000,501000,513000,524000,536000,548000,560000,573000,585000,598000,612000,625000,639000,654000,668000,683000,699000,714000,730000,747000,763000,780000,798000,816000,834000,852000,872000,891000,907000,919000,929000,934000,936000,938000,940000,942000,943000,945000,947000,950000,952000,955000,958000,962000,965000,968000,971000,974000,978000,982000,986000,990000,995000,1000000,1000000,1010000,1010000,1020000,1020000,1030000,1030000,1040000,1040000,1050000,1050000,1060000,1060000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1060000,1060000,1050000,1050000,1050000,1040000,1040000,1030000,1030000,1030000,1020000,1020000,1010000,1010000,1000000,997000,993000,989000,985000,982000,978000,974000,971000,966000,965000,967000,972000,981000,994000,1010000,1020000,1030000,1050000,1060000,1070000,1090000,1100000,1110000,1130000,1140000,1160000,1170000,1180000,1200000,1210000,1230000,1250000,1270000,1290000,1310000,1330000,1350000,1370000,1390000,1410000,1440000,1460000,1480000,1500000,1520000,1550000,1570000,1600000,1620000,1650000,1680000,1710000,1740000,1780000,1810000,1850000,1890000,1930000,1980000,2020000,2069999.9999999998,2110000,2150000,2200000,2240000,2280000,2320000,2340000,2370000,2390000,2420000,2440000,2470000,2500000,2520000,2550000,2580000,2620000,2660000,2720000,2810000,2900000,2990000,3090000,3190000,3280000,3360000,3460000,3560000,3660000,3760000,3840000,3930000,4030000.0000000005,4120000,4210000,4290000,4380000,4470000,4560000,4660000,4730000,4770000,4800000,4800000,4820000,4900000,5000000,5090000,5210000,5340000,5460000,5580000,5740000,5920000,6100000,6290000,6480000,6690000,6890000,7100000,7320000,7540000,7760000,7980000,8199999.999999999,8420000,8650000,8870000,9090000,9320000,9540000,9760000,9990000,10200000,10400000,10700000,10900000,11100000,11300000,11500000,11800000,12000000,12200000,12400000,12600000,12800000,13000000,13300000,13500000,13700000,13900000,14100000,14300000,14500000,14600000,14800000,15000000,15200000,15400000,15500000,15700000,15900000,16000000,16200000,16399999.999999998,16500000,16600000.000000002,16800000,16900000,17100000,17200000,17300000,17400000,17500000,17600000,17800000,17900000,18000000,18000000,18100000,18200000,18300000,18400000,18500000,18500000,18600000,18600000,18700000,18700000,18800000 +Canada,500000,512000,525000,538000,551000,565000,579000,594000,608000,623000,639000,655000,671000,688000,705000,722000,740000,759000,777000,799000,822000,849000,878000,910000,943000,978000,1010000,1050000,1090000,1130000,1170000,1220000,1260000,1310000,1360000,1410000,1460000,1520000,1580000,1640000,1700000,1770000,1830000,1910000,1980000,2060000,2140000,2220000,2310000,2390000,2480000,2560000,2640000,2720000,2810000,2890000,2980000,3070000,3160000,3250000,3320000,3380000,3430000,3470000,3510000,3550000,3590000,3630000,3670000,3710000,3760000,3810000,3860000,3920000,3980000,4030000.0000000005,4090000,4150000.0000000005,4210000,4270000,4330000,4380000,4430000,4480000,4530000,4580000,4640000,4690000,4740000,4790000,4840000,4890000,4940000,4990000,5040000,5100000,5150000,5200000,5250000,5320000,5410000,5530000,5660000,5820000,5980000,6140000,6310000,6480000,6660000,6840000,7000000,7160000,7320000,7460000,7610000,7770000,7920000,8080000,8250000,8410000,8570000,8730000,8890000,9050000,9210000,9370000,9540000,9710000,9880000,10000000,10200000,10300000,10500000,10600000,10700000,10800000,10900000,11000000,11200000,11300000,11500000,11600000,11800000,12000000,12300000,12500000,12700000,12900000,13200000,13400000,13700000,14100000,14500000,14900000,15300000,15700000,16200000,16700000,17100000,17500000,17900000,18300000,18600000,19000000,19300000,19700000,20100000,20400000,20700000,21000000,21400000,21900000,22200000,22500000,22800000,23100000,23400000,23700000,24000000,24200000,24500000,24800000,25100000,25400000,25600000,25800000,26100000,26400000,26800000,27200000,27700000,28000000,28300000,28700000,29000000,29300000,29600000,29900000,30100000,30400000,30700000,31000000,31300000,31600000,31900000,32200000.000000004,32500000,32900000,33200000.000000004,33600000,34000000,34300000,34700000,35100000,35400000,35700000,36100000,36600000,37000000,37500000,37900000,38200000,38500000,38800000,39100000,39400000,39800000,40100000,40400000,40700000,41000000,41300000,41600000,41900000,42200000,42500000,42800000,43100000,43300000,43600000,43800000,44100000,44300000,44500000,44700000,44900000,45100000,45300000,45500000,45700000,45900000,46100000,46200000,46400000,46600000,46800000,46900000,47100000,47300000,47500000,47600000,47800000,48000000,48200000,48400000,48600000,48800000,48900000,49100000,49300000,49500000,49700000,49900000,50100000,50200000,50400000,50600000,50700000,50900000,51100000,51200000,51300000,51500000,51600000,51800000,51900000,52000000,52200000,52300000,52400000,52600000,52700000,52800000,52900000,53100000,53200000,53300000,53500000,53600000,53800000,53900000 +Switzerland,1750000,1760000,1770000,1780000,1790000,1810000,1820000,1830000,1840000,1850000,1860000,1880000,1890000,1900000,1910000,1920000,1940000,1950000,1960000,1970000,1990000,2000000,2009999.9999999998,2020000,2029999.9999999998,2040000,2049999.9999999998,2069999.9999999998,2080000,2089999.9999999998,2100000,2110000,2120000,2140000,2150000,2160000,2170000,2180000,2200000,2210000,2220000,2240000,2250000,2270000,2280000,2300000,2310000,2330000,2350000,2360000,2380000,2390000,2400000,2420000,2430000,2440000,2460000,2470000,2480000,2500000,2510000,2520000,2540000,2550000,2570000,2580000,2590000,2610000,2620000,2640000,2660000,2670000,2690000,2710000,2730000,2740000,2760000,2780000,2800000,2820000,2830000,2850000,2860000,2870000,2880000,2890000,2900000,2910000,2920000,2940000,2960000,2980000,3010000,3050000,3080000,3120000,3150000,3190000,3220000,3260000,3300000,3340000,3380000,3420000,3460000,3510000,3550000,3590000,3640000,3680000,3710000,3740000,3760000,3770000,3780000,3800000,3810000,3830000,3840000,3850000,3870000,3890000,3900000,3920000,3940000,3950000,3970000,3990000,4010000,4019999.9999999995,4040000,4059999.9999999995,4080000,4090000,4110000.0000000005,4130000,4150000.0000000005,4160000,4179999.9999999995,4200000,4230000,4270000,4310000,4350000,4400000,4440000,4490000,4540000,4590000,4640000,4690000,4750000,4810000,4880000,4940000,5000000,5070000,5130000,5200000,5260000,5330000,5430000,5570000,5690000,5790000,5860000,5920000,5990000,6070000,6140000,6180000,6210000,6260000,6310000,6340000,6340000,6300000,6280000,6280000,6290000,6320000,6350000,6390000,6420000,6440000,6470000,6500000,6540000,6590000,6650000,6710000,6800000,6870000,6940000,6990000,7040000,7070000,7090000,7110000,7140000,7180000,7220000,7280000,7330000,7380000,7430000,7480000,7540000,7640000,7730000,7820000,7910000,8000000,8090000,8189999.999999999,8279999.999999999,8369999.999999999,8450000,8510000,8580000,8640000,8690000,8740000,8800000,8850000,8900000,8960000,9010000,9050000,9100000,9140000,9190000,9230000,9260000,9300000,9340000,9370000,9400000,9430000,9470000,9500000,9530000,9550000,9580000,9610000,9640000,9660000,9690000,9710000,9730000,9750000,9770000,9790000,9810000,9820000,9840000,9850000,9860000,9870000,9880000,9890000,9900000,9910000,9910000,9920000,9930000,9940000,9950000,9960000,9970000,9980000,9990000,10000000,10000000,10000000,10000000,10100000,10100000,10100000,10100000,10100000,10100000,10100000,10100000,10100000,10200000,10200000,10200000,10200000,10200000,10200000,10300000,10300000,10300000,10300000,10300000,10400000,10400000,10400000,10400000,10400000 +Chile,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,771000,775000,782000,793000,807000,825000,844000,863000,883000,903000,923000,944000,964000,985000,1010000,1030000,1050000,1070000,1090000,1110000,1130000,1160000,1180000,1200000,1220000,1250000,1270000,1290000,1310000,1340000,1360000,1390000,1410000,1430000,1460000,1490000,1510000,1540000,1570000,1600000,1620000,1650000,1680000,1710000,1740000,1770000,1800000,1830000,1860000,1900000,1930000,1960000,1990000,2029999.9999999998,2060000,2100000,2130000,2170000,2200000,2240000,2270000,2310000,2350000,2390000,2420000,2460000,2500000,2540000,2580000,2620000,2660000,2700000,2740000,2780000,2820000,2860000,2900000,2940000,2980000,3020000,3060000,3100000,3140000,3190000,3230000,3270000,3310000,3350000,3390000,3440000,3480000,3530000,3570000,3620000,3660000,3710000,3760000,3800000,3850000,3900000,3950000,3990000,4040000,4099999.9999999995,4150000.0000000005,4210000,4270000,4320000,4380000,4440000,4500000,4570000,4640000,4710000,4790000,4870000,4950000,5040000,5130000,5210000,5300000,5400000,5490000,5590000,5700000,5800000,5910000,6020000,6140000,6250000,6370000,6490000,6620000,6750000,6880000,7020000,7170000,7320000,7480000,7640000,7810000,7970000,8140000.000000001,8310000.000000001,8490000,8660000,8830000,8990000,9160000,9330000,9490000,9660000,9820000,9980000,10100000,10300000,10500000,10600000,10800000,11000000,11100000,11300000,11500000,11600000,11800000,12000000,12100000,12300000,12500000,12700000,12900000,13100000,13300000,13600000,13800000,14000000,14200000,14400000,14600000,14800000,15000000,15200000,15400000,15500000,15700000,15900000,16000000,16200000,16300000,16500000,16700000,16800000,17000000,17200000,17300000,17500000,17700000,17900000,18100000,18400000,18700000,19000000,19300000,19500000,19600000,19600000,19700000,19700000,19700000,19800000,19800000,19900000,19900000,20000000,20100000,20200000,20200000,20300000,20400000,20400000,20500000,20500000,20600000,20600000,20600000,20700000,20700000,20700000,20700000,20700000,20700000,20700000,20700000,20700000,20600000,20600000,20600000,20600000,20500000,20500000,20400000,20400000,20300000,20300000,20200000,20200000,20100000,20000000,20000000,19900000,19800000,19700000,19700000,19600000,19500000,19400000,19300000,19200000,19100000,19000000,18900000,18800000,18800000,18700000,18500000,18400000,18300000,18200000,18100000,18000000,17900000,17800000,17700000,17600000,17500000,17400000,17300000,17200000,17200000,17100000,17000000,16900000,16800000 +China,330000000,332000000,333000000,335000000,336000000,338000000,339000000,341000000,343000000,344000000,347000000,349000000,353000000,356000000,359000000,363000000,367000000,370000000,374000000,377000000,380000000,384000000,386000000,389000000,392000000,395000000,398000000,400000000,403000000,406000000,407000000,409000000,410000000,410000000,410000000,410000000,411000000,411000000,411000000,412000000,412000000,412000000,412000000,412000000,412000000,412000000,412000000,412000000,412000000,411000000,410000000,408000000,405000000,401000000,397000000,394000000,390000000,387000000,383000000,380000000,377000000,374000000,372000000,370000000,368000000,366000000,364000000,362000000,360000000,359000000,358000000,358000000,358000000,359000000,360000000,361000000,362000000,363000000,364000000,365000000,366000000,367000000,368000000,369000000,370000000,371000000,372000000,373000000,375000000,376000000,377000000,379000000,381000000,382000000,384000000,386000000,388000000,390000000,392000000,394000000,396000000,398000000,400000000,402000000,404000000,407000000,409000000,411000000,413000000,416000000,419000000,423000000,427000000,431000000,436000000,441000000,446000000,450000000,455000000,460000000,463000000,466000000,469000000,470000000,472000000,474000000,475000000,477000000,479000000,481000000,483000000,485000000,488000000,491000000,494000000,497000000,500000000,503000000,505000000,508000000,511000000,514000000,517000000,520000000,522000000,525000000,528000000,531000000,534000000,538000000,544000000,554000000,565000000,577000000,590000000,603000000,616000000,630000000,644000000,652000000,654000000,655000000,665000000,684000000,705000000,724000000,743000000,761000000,780000000,801000000,823000000,843000000,863000000,882000000,899000000,915000000,929000000,943000000,955000000,968000000,982000000,997000000,1010000000,1030000000,1040000000,1060000000,1080000000,1100000000,1120000000,1130000000,1150000000,1170000000,1180000000,1200000000,1210000000,1220000000,1230000000,1240000000,1250000000,1260000000,1260000000,1270000000,1280000000,1290000000,1300000000,1300000000,1310000000,1320000000,1330000000,1340000000,1350000000,1360000000,1370000000,1380000000,1390000000,1390000000,1400000000,1410000000,1420000000,1420000000,1420000000,1430000000,1430000000,1430000000,1430000000,1420000000,1420000000,1420000000,1420000000,1420000000,1420000000,1410000000,1410000000,1410000000,1400000000,1400000000,1400000000,1390000000,1390000000,1380000000,1380000000,1370000000,1370000000,1360000000,1360000000,1350000000,1340000000,1340000000,1330000000,1320000000,1310000000,1300000000,1290000000,1280000000,1270000000,1260000000,1250000000,1240000000,1230000000,1220000000,1210000000,1190000000,1180000000,1170000000,1160000000,1140000000,1130000000,1120000000,1110000000,1100000000,1090000000,1070000000.0000001,1060000000,1050000000,1040000000,1030000000,1020000000,1010000000,995000000,984000000,973000000,962000000,950000000,939000000,928000000,917000000,906000000,895000000,884000000,874000000,863000000,853000000,843000000,833000000,823000000,814000000,804000000,795000000,785000000,776000000,767000000 +Cote d'Ivoire,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1080000,1080000,1080000,1080000,1080000,1080000,1070000,1070000,1070000,1070000,1070000,1060000,1060000,1060000,1060000,1060000,1060000,1050000,1050000,1050000,1050000,1050000,1040000,1040000,1040000,1040000,1040000,1040000,1040000,1040000,1050000,1060000,1070000,1080000,1090000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1250000,1260000,1270000,1280000,1290000,1300000,1310000,1310000,1320000,1330000,1340000,1350000,1360000,1360000,1370000,1380000,1390000,1400000,1410000,1420000,1440000,1450000,1460000,1470000,1480000,1490000,1510000,1510000,1520000,1530000,1540000,1550000,1550000,1560000,1570000,1580000,1590000,1600000,1610000,1620000,1630000,1640000,1660000,1670000,1680000,1690000,1710000,1730000,1750000,1780000,1800000,1830000,1860000,1880000,1910000,1940000,1970000,2000000,2029999.9999999998,2049999.9999999998,2080000,2110000,2140000,2170000,2200000,2240000,2270000,2310000,2350000,2390000,2430000,2480000,2520000,2570000,2610000,2670000,2740000,2810000,2890000,2980000,3060000,3150000,3250000,3350000,3460000,3580000,3710000,3850000,4000000,4160000,4320000,4490000,4670000,4860000,5050000,5260000,5480000,5720000,5980000,6260000,6550000,6850000,7140000,7420000,7700000,8000000,8300000.000000001,8620000,8950000,9280000,9620000,9960000,10300000,10700000,11000000,11500000,11900000,12400000,12800000,13300000,13800000,14300000,14800000,15300000,15900000,16300000,16800000,17200000,17700000,18100000,18500000,19000000,19400000,19800000,20200000,20700000,21100000,21600000,22000000,22500000,23000000,23600000,24200000,24800000,25500000,26100000,26800000,27500000,28200000,28900000,29600000,30300000,31100000,31900000,32600000,33400000,34200000,35000000,35800000,36700000,37500000,38300000,39200000,40000000,40900000,41700000,42600000,43500000,44300000,45200000,46100000,46900000,47800000,48700000,49600000,50500000,51400000,52200000,53100000,54000000,54900000,55800000,56700000,57600000,58500000,59400000,60300000,61200000,62000000,62900000,63800000,64700000,65500000,66400000.00000001,67200000,68100000,68900000,69700000,70500000,71400000,72200000,73000000,73700000,74500000,75300000,76100000,76800000,77500000,78300000,79000000,79700000,80400000,81100000,81700000,82400000,83000000,83700000,84300000,84900000,85500000,86100000,86700000,87200000,87800000,88300000,88900000,89400000 +Cameroon,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1860000,1870000,1880000,1890000,1910000,1940000,1960000,1990000,2009999.9999999998,2040000,2069999.9999999998,2100000,2120000,2150000,2180000,2210000,2240000,2270000,2300000,2330000,2360000,2390000,2420000,2460000,2490000,2520000,2560000,2590000,2630000,2660000,2700000,2730000,2750000,2770000,2790000,2800000,2810000,2830000,2840000,2850000,2860000,2870000,2890000,2900000,2910000,2920000,2940000,2950000,2960000,2980000,2990000,3010000,3020000,3040000,3050000,3070000,3090000,3100000,3120000,3140000,3160000,3170000,3190000,3210000,3230000,3240000,3260000,3280000,3300000,3320000,3330000,3350000,3350000,3350000,3340000,3330000,3310000,3300000,3280000,3270000,3250000,3240000,3220000,3190000,3170000,3140000,3110000,3080000,3050000,3030000,3000000,2970000,2950000,2930000,2920000,2900000,2890000,2870000,2860000,2850000,2830000,2830000,2840000,2860000,2880000,2920000,2960000,3000000,3040000,3080000,3120000,3160000,3210000,3250000,3290000,3330000,3370000,3420000,3460000,3510000,3550000,3600000,3650000,3710000,3770000,3830000,3900000,3960000,4030000.0000000005,4099999.9999999995,4170000,4240000,4320000,4380000,4450000,4520000,4590000,4670000,4750000,4840000,4930000,5030000,5120000,5200000,5300000,5430000,5560000,5690000,5830000,5980000,6130000,6290000,6450000,6630000,6810000,7000000,7190000,7400000,7600000,7800000,8010000,8240000,8520000,8830000,9050000,9240000,9510000,9800000,10100000,10400000,10800000,11100000,11400000,11800000,12100000,12500000,12800000,13200000,13600000,13900000,14300000,14700000,15100000,15500000,15900000,16399999.999999998,16800000,17300000,17800000,18300000,18800000,19300000,19900000,20400000,21000000,21600000,22300000,23000000,23700000,24400000,25100000,25800000,26500000,27200000,27900000,28600000,29400000,30200000,30900000,31700000,32500000,33299999.999999996,34100000,34900000,35700000,36500000,37300000,38100000,39000000,39800000,40700000,41600000,42400000,43300000,44200000,45100000,45900000,46800000,47700000,48600000,49500000,50400000,51300000,52200000,53000000,53900000,54800000,55700000,56600000,57400000,58300000,59100000,60000000,60800000,61700000,62500000,63400000,64200000,65000000,65800000,66700000,67500000,68300000,69000000,69800000,70600000,71400000,72100000,72900000,73600000,74300000,75000000,75700000,76400000,77100000,77800000,78400000,79100000,79700000,80300000,80900000,81500000,82100000,82700000,83200000,83700000,84300000,84800000,85300000,85700000,86200000,86700000,87100000 +"Congo, Dem. Rep.",5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5160000,5180000,5210000,5260000,5330000,5410000,5500000,5580000,5670000,5760000,5850000,5940000,6030000,6130000,6220000,6320000,6420000,6520000,6620000,6720000,6830000,6930000,7040000,7150000,7260000,7380000,7490000,7610000,7730000,7850000,7970000,8070000,8150000,8199999.999999999,8230000,8240000,8240000,8250000,8250000,8260000,8260000,8279999.999999999,8300000.000000001,8340000,8380000.000000001,8440000,8490000,8540000,8600000,8650000,8710000,8770000,8830000,8890000,8960000,9030000,9100000,9170000,9240000,9310000,9380000,9450000,9510000,9560000,9610000,9660000,9700000,9750000,9790000,9840000,9880000,9910000,9920000,9900000,9870000,9820000,9770000,9720000,9670000,9630000,9580000,9520000,9450000,9380000,9290000,9200000,9110000,9020000,8930000,8840000,8750000,8670000,8600000,8540000,8480000,8430000,8380000.000000001,8330000,8279999.999999999,8230000,8189999.999999999,8170000,8180000,8230000,8310000.000000001,8420000,8530000,8640000,8750000,8870000,8990000,9100000,9220000,9340000,9450000,9570000,9680000,9800000,9920000,10000000,10200000,10300000,10400000,10600000,10800000,10900000,11100000,11300000,11500000,11700000,11800000,12100000,12300000,12500000,12800000,13100000,13300000,13600000,13900000,14300000,14600000,14900000,15300000,15700000,16100000.000000002,16500000,17000000,17400000,17900000,18500000,19000000,19600000,20200000,20700000,21300000,21900000,22400000,23100000,23700000,24300000,25000000,25900000,26700000,27500000,28200000,29000000,29900000,30800000,31700000,32700000.000000004,33800000,34800000,36000000,37200000,38300000,39600000,41500000,43300000,44100000,44800000,45900000,47200000,48600000,50100000,51700000,53200000,54800000,56600000,58400000,60300000,62200000,64300000,66400000.00000001,68700000,71000000,73500000,76000000,78700000,81400000,84300000,87100000,89900000,92900000,95900000,99000000,102000000,106000000,109000000,113000000,116000000,120000000,124000000,128000000,132000000,136000000,140000000,144000000,148000000,152000000,157000000,161000000,166000000,170000000,175000000,179000000,184000000,189000000,193000000,198000000,203000000,208000000,213000000,217000000,222000000,227000000,232000000,237000000,242000000,247000000,252000000,257000000,262000000,267000000,272000000,277000000,282000000,287000000,291000000,296000000,301000000,306000000,311000000,316000000,320000000,325000000,330000000,335000000,339000000,344000000,348000000,352000000,357000000,361000000,365000000,370000000,374000000,378000000,382000000,386000000,390000000,393000000,397000000,401000000,404000000,408000000,411000000,414000000,418000000,421000000,424000000,427000000,430000000,432000000 +"Congo, Rep.",314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,315000,318000,321000,325000,330000,335000,341000,346000,352000,357000,363000,369000,375000,381000,387000,393000,400000,406000,413000,419000,426000,433000,440000,447000,454000,461000,469000,476000,484000,492000,498000,503000,506000,508000,508000,509000,509000,509000,509000,510000,510000,512000,514000,517000,520000,523000,527000,530000,534000,537000,541000,545000,549000,553000,558000,563000,567000,572000,577000,582000,587000,591000,596000,601000,605000,610000,614000,619000,623000,628000,631000,633000,633000,632000,629000,626000,623000,620000,617000,615000,611000,607000,603000,597000,592000,586000,580000,575000,569000,564000,559000,555000,551000,547000,544000,541000,538000,535000,532000,529000,528000,529000,533000,538000,546000,555000,563000,571000,580000,589000,597000,606000,615000,624000,632000,641000,650000,659000,668000,678000,688000,699000,710000,722000,735000,749000,762000,776000,790000,804000,819000,835000,853000,872000,892000,912000,933000,956000,979000,1000000,1030000,1060000,1080000,1110000,1140000,1170000,1210000,1240000,1280000,1320000,1360000,1400000,1440000,1490000,1530000,1580000,1620000,1670000,1710000,1750000,1790000,1830000,1870000,1910000,1950000,2000000,2060000,2120000,2190000,2250000,2320000,2390000,2450000,2520000,2590000,2670000,2740000,2820000,2880000,2940000,3020000,3130000,3250000,3330000,3420000,3540000,3670000,3810000,3960000,4090000,4260000,4440000,4580000,4710000,4830000,4940000,5060000,5190000,5310000,5440000,5570000,5700000,5840000,5970000,6110000,6240000,6380000,6530000,6670000,6810000,6960000,7110000,7270000,7420000,7580000,7740000,7900000,8060000.000000001,8230000,8390000,8550000,8720000,8890000,9050000,9220000,9380000,9550000,9720000,9880000,10000000,10200000,10400000,10500000,10700000,10900000,11000000,11200000,11400000,11500000,11700000,11800000,12000000,12200000,12300000,12500000,12600000,12800000,13000000,13100000,13300000,13400000,13600000,13700000,13900000,14000000,14200000,14300000,14500000,14600000,14700000,14900000,15000000,15100000,15300000,15400000,15500000,15600000,15800000,15900000,16000000,16100000.000000002,16200000,16300000,16399999.999999998,16500000,16600000.000000002,16700000,16800000,16900000,17000000,17100000,17200000 +Colombia,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1210000,1230000,1260000,1290000,1340000,1380000,1430000,1480000,1530000,1580000,1630000,1670000,1700000,1730000,1760000,1780000,1810000,1830000,1850000,1880000,1900000,1920000,1940000,1960000,1970000,1980000,2000000,2009999.9999999998,2020000,2040000,2060000,2089999.9999999998,2130000,2180000,2240000,2300000,2360000,2430000,2490000,2560000,2610000,2640000,2650000,2640000,2600000,2570000,2540000,2510000,2490000,2460000,2440000,2440000,2460000,2480000,2530000,2570000,2620000,2660000,2710000,2750000,2800000,2850000,2900000,2950000,3000000,3060000,3110000,3160000,3220000,3270000,3330000,3390000,3450000,3510000,3570000,3630000,3690000,3760000,3820000,3890000,3960000,4030000.0000000005,4110000.0000000005,4190000.0000000005,4280000,4370000,4460000,4550000,4640000,4740000,4840000,4940000,5060000,5180000,5300000,5430000,5570000,5700000,5840000,5980000,6130000,6280000,6430000,6590000,6750000,6910000,7080000,7260000,7430000,7620000,7790000,7950000,8090000,8230000,8350000,8480000,8600000,8730000,8860000,8990000,9140000,9310000,9500000,9710000,9940000,10200000,10400000,10700000,10900000,11200000,11500000,11800000,12100000,12400000,12800000,13100000,13500000,13900000,14300000,14800000,15200000,15700000,16200000,16700000,17200000,17700000,18300000,18800000,19300000,19900000,20400000,20900000,21400000,21900000,22400000,22900000,23400000,23900000,24400000,25000000,25600000,26200000,26800000,27400000,28000000,28700000,29300000,30000000,30600000,31300000,31900000,32600000,33299999.999999996,33900000,34600000,35300000,36000000,36600000,37300000,37900000,38600000,39200000,39800000,40500000,41100000,41600000,42200000,42800000,43300000,43800000,44300000,44800000,45300000,45800000,46200000,46700000,47100000,47600000,48400000,49300000,50200000,50900000,51500000,51900000,52100000,52300000,52600000,52900000,53200000,53500000,53800000,54100000,54400000,54700000,54900000,55200000,55400000,55600000,55800000,56000000,56200000,56300000,56400000,56500000,56700000,56700000,56800000,56900000,56900000,57000000,57000000,57000000,57000000,57000000,56900000,56900000,56900000,56800000,56700000,56700000,56600000,56500000,56300000,56200000,56100000,55900000,55800000,55600000,55400000,55200000,55000000,54800000,54600000,54400000,54100000,53900000,53600000,53300000,53100000,52800000,52500000,52200000,51900000,51500000,51200000,50900000,50600000,50300000,49900000,49600000,49300000,48900000,48600000,48300000,48000000,47700000,47400000,47000000,46700000,46400000,46100000,45800000 +Comoros,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56300,56400,56400,56500,56600,56700,56800,56900,57100,57200,57300,57400,57500,57700,57800,57900,58000,58100,58300,58400,58500,58600,58800,58900,59000,59100,59300,59400,59500,59600,59700,59900,60100,60500,60800,61300,61700,62100,62600,63000,63500,63900,64300,64800,65300,65700,66200,66600,67100,67600,68000,68500,69000,69500,70000,70500,70900,71400,71900,72400,72900,73500,74000,74500,75000,75500,76100,76600,77100,77700,78200,78700,79300,79800,80400,81000,81500,82100,82700,83200,83800,84600,85700,87100,88700,90700,92600,94600,96700,98800,101000,103000,105000,108000,110000,112000,115000,117000,120000,122000,125000,127000,129000,131000,132000,133000,134000,135000,136000,137000,138000,138000,139000,140000,141000,142000,143000,144000,145000,146000,147000,149000,150000,151000,152000,153000,154000,155000,156000,157000,158000,160000,162000,165000,168000,172000,175000,178000,181000,184000,188000,191000,195000,199000,203000,207000,211000,215000,219000,224000,230000,236000,242000,249000,256000,264000,272000,280000,289000,298000,308000,318000,328000,338000,347000,356000,366000,376000,386000,397000,408000,420000,431000,442000,453000,463000,473000,484000,494000,505000,516000,526000,537000,548000,559000,570000,581000,593000,605000,617000,629000,642000,656000,670000,685000,699000,715000,730000,746000,762000,776000,791000,806000,822000,837000,852000,868000,883000,898000,914000,929000,944000,959000,974000,989000,1000000,1020000,1030000,1050000,1060000,1080000,1090000,1110000,1120000,1140000,1150000,1160000,1180000,1190000,1210000,1220000,1230000,1250000,1260000,1270000,1280000,1300000,1310000,1320000,1330000,1340000,1350000,1370000,1380000,1390000,1400000,1410000,1410000,1420000,1430000,1440000,1450000,1460000,1460000,1470000,1480000,1490000,1490000,1500000,1500000,1510000,1520000,1520000,1530000,1530000,1540000,1540000,1540000,1550000,1550000,1550000,1560000,1560000,1560000,1560000,1570000,1570000,1570000,1570000,1570000,1570000,1570000,1570000 +Cape Verde,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55700,55800,56100,56400,56900,57500,58100,58700,59400,60000,60600,61300,61900,62600,63200,63900,64599.99999999999,65300,66000,66700,67400,68100,68800,69500,70300,71000,71800,72500,73300,74100,74900,75700,76500,77500,78600,79700,80800,82000,83100,84300,85400,86600,87800,89100,90300,91500,92800,94100,95400,96700,98100,99400,101000,102000,104000,105000,106000,108000,109000,111000,112000,114000,116000,117000,119000,120000,122000,124000,125000,127000,129000,131000,132000,134000,136000,138000,140000,142000,143000,145000,147000,149000,151000,153000,155000,158000,160000,162000,164000,166000,168000,170000,171000,171000,170000,168000,166000,165000,163000,162000,160000,158000,158000,159000,160000,162000,165000,167000,169000,172000,174000,177000,180000,183000,187000,191000,195000,200000,204000,209000,213000,216000,217000,216000,214000,209000,204000,200000,196000,192000,187000,185000,185000,187000,189000,192000,193000,195000,197000,200000,203000,206000,210000,215000,221000,229000,236000,244000,252000,261000,269000,279000,287000,294000,297000,299000,302000,304000,307000,309000,312000,314000,317000,322000,326000,331000,335000,340000,344000,349000,353000,358000,365000,373000,382000,392000,402000,411000,421000,431000,440000,450000,458000,466000,473000,480000,487000,493000,499000,505000,510000,516000,521000,528000,534000,540000,546000,552000,558000,565000,571000,577000,583000,588000,593000,599000,604000,610000,616000,622000,627000,633000,639000,644000,650000,655000,661000,666000,671000,676000,681000,686000,690000,695000,699000,703000,707000,711000,715000,718000,721000,725000,727000,730000,733000,735000,738000,740000,742000,744000,745000,747000,748000,749000,750000,751000,751000,752000,752000,751000,751000,751000,750000,749000,748000,746000,745000,743000,741000,739000,737000,734000,732000,729000,726000,723000,720000,717000,714000,711000,707000,704000,701000,697000,694000,691000,687000,684000,681000,677000,674000,671000,667000 +Costa Rica,53000,53500,53900,54400,54900,55300,55800,56300,56800,57300,57800,58300,58800,59300,59800,60300,60900,61400,61900,62600,63500,64500,65800,67200,68700,70100,71600,73200,74800,76300,77900,79500,81000,82500,84100,85700,87300,88900,90600,92100,93400,94500,95400,96100,96700,97400,98100,98900,99600,100000,102000,103000,105000,107000,109000,111000,113000,115000,117000,119000,121000,123000,125000,127000,129000,131000,133000,135000,137000,139000,142000,145000,149000,154000,159000,163000,168000,173000,179000,184000,190000,195000,201000,208000,214000,220000,227000,234000,241000,248000,255000,261000,267000,273000,279000,285000,291000,298000,304000,311000,317000,324000,331000,338000,346000,353000,361000,368000,376000,384000,391000,398000,405000,412000,418000,425000,432000,439000,445000,452000,459000,467000,475000,483000,491000,500000,509000,518000,527000,537000,547000,558000,570000,582000,595000,608000,621000,634000,648000,664000,682000,702000,724000,749000,774000,801000,828000,856000,885000,916000,948000,980000,1010000,1050000,1090000,1120000,1160000,1210000,1250000,1300000,1350000,1400000,1450000,1500000,1550000,1600000,1650000,1710000,1760000,1810000,1860000,1910000,1960000,2009999.9999999998,2060000,2110000,2170000,2230000,2290000,2350000,2410000,2480000,2550000,2620000,2700000,2770000,2850000,2920000,3000000,3080000,3160000,3240000,3320000,3410000,3490000,3570000,3660000,3740000,3820000,3900000,3980000,4050000,4120000,4190000.0000000005,4250000,4320000,4380000,4440000,4500000,4560000,4620000,4680000,4740000,4790000,4840000,4900000,4950000,4990000,5040000,5080000,5120000,5150000,5180000,5210000,5250000,5280000,5310000,5340000,5370000,5400000,5430000,5460000,5490000,5510000,5530000,5550000,5580000,5590000,5610000,5630000,5640000,5660000,5670000,5680000,5680000,5690000,5700000,5700000,5700000,5700000,5700000,5700000,5700000,5690000,5690000,5680000,5670000,5660000,5650000,5640000,5630000,5610000,5600000,5580000,5570000,5550000,5530000,5510000,5490000,5470000,5450000,5420000,5400000,5370000,5350000,5320000,5290000,5260000,5230000,5200000,5170000,5140000,5110000,5080000,5040000,5010000,4980000,4950000,4910000,4880000,4850000,4820000,4780000,4750000,4720000,4690000,4660000,4630000,4590000,4560000,4530000 +Cuba,272000,293000,316000,340000,366000,394000,425000,458000,493000,531000,550000,568000,578000,582000,585000,588000,592000,595000,598000,607000,622000,644000,672000,707000,744000,783000,824000,867000,913000,950000,978000,998000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1020000,1030000,1040000,1060000,1080000,1090000,1110000,1130000,1150000,1170000,1190000,1210000,1230000,1250000,1270000,1290000,1310000,1330000,1360000,1370000,1380000,1390000,1390000,1380000,1380000,1370000,1370000,1360000,1350000,1350000,1360000,1370000,1380000,1400000,1420000,1440000,1460000,1480000,1500000,1520000,1530000,1550000,1560000,1570000,1590000,1600000,1610000,1620000,1630000,1640000,1650000,1660000,1660000,1670000,1670000,1670000,1680000,1680000,1680000,1700000,1720000,1750000,1800000,1850000,1900000,1960000,2020000,2080000,2140000,2210000,2280000,2340000,2420000,2490000,2570000,2650000,2730000,2810000,2900000,2990000,3070000,3150000,3230000,3320000,3400000,3480000,3570000,3660000,3750000,3840000,3920000,4000000,4080000,4150000.0000000005,4220000,4300000,4370000,4450000,4530000,4610000,4710000,4810000,4920000,5040000,5160000,5280000,5410000,5540000,5670000,5800000,5930000,6050000,6170000,6300000,6430000,6560000,6700000,6830000,6970000,7120000,7270000,7420000,7570000,7740000,7900000,8070000,8230000,8390000,8550000,8710000,8870000,9030000,9170000,9300000,9410000,9510000,9600000,9670000,9730000,9770000,9810000,9850000,9910000,9980000,10100000,10100000,10200000,10300000,10400000,10500000,10600000,10700000,10800000,10800000,10900000,10900000,11000000,11000000,11000000,11100000,11100000,11100000,11200000,11200000,11200000,11200000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11300000,11200000,11200000,11200000,11200000,11100000,11100000,11100000,11000000,11000000,11000000,10900000,10900000,10900000,10800000,10800000,10800000,10700000,10700000,10600000,10600000,10500000,10500000,10400000,10300000,10300000,10200000,10200000,10100000,10000000,9960000,9880000,9810000,9730000,9650000,9570000,9490000,9410000,9330000,9250000,9160000,9080000,9000000,8920000,8850000,8770000,8690000,8620000,8550000,8480000,8410000,8340000,8270000,8199999.999999999,8130000.000000001,8070000,8000000,7930000,7860000,7790000,7730000,7660000,7590000,7520000,7450000,7380000,7310000,7240000,7180000,7110000,7040000,6980000,6910000,6850000,6780000,6720000,6660000,6600000,6540000,6480000 +Cyprus,184000,184000,184000,184000,184000,184000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,185000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,187000,188000,190000,192000,195000,197000,199000,201000,204000,206000,209000,211000,214000,217000,219000,222000,225000,228000,231000,234000,237000,240000,243000,247000,250000,254000,258000,262000,265000,269000,273000,277000,280000,284000,287000,291000,295000,298000,302000,306000,310000,313000,317000,321000,324000,328000,332000,335000,339000,344000,350000,357000,365000,375000,385000,395000,405000,415000,426000,436000,444000,451000,457000,461000,465000,470000,474000,479000,483000,488000,494000,501000,509000,517000,525000,534000,543000,553000,563000,574000,586000,595000,601000,607000,612000,617000,623000,628000,632000,637000,641000,644000,648000,651000,649000,645000,649000,656000,664000,672000,679000,687000,696000,707000,720000,732000,743000,755000,766000,778000,789000,799000,810000,826000,844000,862000,880000,897000,915000,932000,948000,965000,982000,1000000,1020000,1040000,1060000,1070000,1090000,1110000,1130000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1240000,1250000,1260000,1270000,1280000,1280000,1290000,1300000,1310000,1310000,1320000,1320000,1330000,1330000,1340000,1340000,1350000,1350000,1360000,1360000,1360000,1370000,1370000,1370000,1380000,1380000,1380000,1390000,1390000,1390000,1390000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1390000,1390000,1390000,1380000,1380000,1380000,1370000,1370000,1370000,1360000,1360000,1360000,1360000,1350000,1350000,1350000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000,1340000 +Czech Republic,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5520000,5530000,5540000,5560000,5580000,5600000,5620000,5700000,5770000,5840000,5920000,6000000,6030000,6070000,6110000,6150000,6180000,6220000,6260000,6300000,6340000,6380000,6420000,6470000,6510000,6550000,6600000,6640000,6690000,6730000,6780000,6830000,6870000,6910000,6960000,7000000,7050000,7090000,7140000,7190000,7230000,7280000,7320000,7360000,7400000,7440000,7490000,7530000,7570000,7610000,7660000,7700000,7750000,7800000,7840000,7890000,7940000,7990000,8039999.999999999,8090000,8150000,8199999.999999999,8250000,8300000.000000001,8350000,8400000,8450000,8500000,8550000,8600000,8650000,8700000,8760000,8830000,8890000,8950000,9010000,9080000,9140000,9200000,9270000,9330000,9400000,9470000,9540000,9620000,9690000,9750000,9820000,9890000,9960000,10000000,10100000,10200000,10200000,10300000,10300000,10200000,10100000,10000000,9920000,9980000,10000000,10100000,10200000,10300000,10400000,10400000,10500000,10500000,10600000,10600000,10700000,10800000,10800000,10800000,10900000,10900000,10900000,10900000,11100000,11200000,11100000,11100000,11000000,11100000,10700000,9520000,8770000,8830000,8870000,8920000,9000000,9080000,9150000,9220000,9290000,9360000,9420000,9470000,9510000,9540000,9570000,9590000,9620000,9660000,9700000,9730000,9750000,9770000,9780000,9800000,9820000,9850000,9900000,9960000,10000000,10100000,10100000,10200000,10200000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10200000,10200000,10200000,10200000,10200000,10300000,10300000,10300000,10300000,10400000,10400000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10500000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10600000,10700000,10700000,10700000,10700000,10700000,10800000,10800000,10800000,10800000,10800000,10900000,10900000,10900000,10900000,11000000,11000000,11000000,11000000,11100000,11100000,11100000,11100000,11200000,11200000 +Germany,18000000,18300000,18600000,18900000,19200000,19500000,19800000,20200000,20500000,20800000,21200000,21500000,21900000,22200000,22600000,23000000,23300000,23700000,24100000,24500000,24800000,25200000,25500000,25800000,26100000,26400000,26700000,27100000,27400000,27700000,28000000,28300000,28600000,28900000,29200000,29500000,29900000,30200000,30500000,30800000,31100000,31400000,31600000,31900000,32200000.000000004,32400000,32700000.000000004,32900000,33200000.000000004,33500000,33700000,34000000,34200000,34500000,34700000,35000000,35200000,35500000,35700000,36000000,36300000,36600000,36900000,37200000,37500000,37900000,38200000,38600000,38900000,39300000,39700000,40100000,40500000,40900000,41400000,41800000,42300000,42700000,43200000,43700000,44100000,44600000,45000000,45400000,45900000,46300000,46700000,47200000,47600000,48100000,48700000,49300000,49900000,50600000,51300000,52000000,52700000,53500000,54200000,55000000,55800000,56600000,57400000,58300000,59200000,60100000,61000000,61900000,62800000,63600000,64099999.99999999,64300000,64400000.00000001,64200000,64000000,63900000,63700000,63500000,63300000,63200000,63300000,63400000,63700000,64200000,64599999.99999999,65000000,65500000,65900000.00000001,66300000,66800000,67200000,67700000,68200000,68700000,69200000,69600000,70100000,70600000,71100000,71500000,71700000,71900000,71800000,71700000,71500000,71400000,71200000,71100000,70900000,70900000,71000000,70800000,70800000,70900000,71000000,71200000,71500000,71800000,72100000,72600000,73100000,73600000,74200000,74800000,75400000,76000000,76600000,77200000,77600000,78000000,78300000,78500000,78600000,78700000,78600000,78500000,78400000,78200000,78100000,77900000,77800000,77700000,77600000,77600000,77600000,77600000,77800000,78100000,78500000,78900000,79400000,79800000,80200000,80600000,80900000,81100000,81300000,81400000,81500000,81600000,81600000,81500000,81400000,81300000,81300000,81200000,81200000,81200000,81200000,81300000,81300000,81400000,81500000,81700000,81900000,82100000,82300000,82600000,82900000,83100000,83300000,83400000,83400000,83300000,83300000,83200000,83100000,83100000,83000000,82900000,82800000,82600000,82500000,82400000,82200000,82100000,81900000,81700000,81600000,81400000,81200000,81000000,80800000,80600000,80400000,80200000,79900000,79700000,79400000,79200000,78900000,78700000,78400000,78100000,77800000,77500000,77300000,77000000,76700000,76400000,76100000,75900000,75600000,75400000,75100000,74900000,74700000,74500000,74200000,74000000,73800000,73700000,73500000,73300000,73100000,72900000,72700000,72500000,72300000,72100000,71900000,71700000,71500000,71300000,71100000,71000000,70800000,70600000,70400000,70300000,70100000,70000000,69800000,69700000,69600000,69500000,69300000,69200000,69100000,69000000,68900000 +Djibouti,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22800,22900,23100,23400,23700,24200,24700,25100,25600,26100,26600,27100,27600,28200,28700,29300,29800,30400,31000,31600,32200.000000000004,32800,33400,34100,34700,35400,36100,36800,37500,38200,38900,39500,40000,40300,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40400,40500,40500,40500,40600,40600,40700,40700,40700,40800,40800,40800,40900,40900,41000,41000,41000,41100,41200,41200,41300,41500,41600,41700,41800,42000,42100,42200,42300,42400,42600,42700,42800,42900,43100,43200,43300,43400,43500,43600,43700,43800,43900,44000,44100,44200,44300,44400,44600,44900,45300,45800,46200,46700,47200,47600,48100,48600,49000,49500,49900,50300,50700,51100,51500,51900,52300,52800,53400,54000,54800,55600,56400,57300,58100,59000,59900,61000,62300,64300,66400,68500,70700,73000,75400,77800,80400,83000,85900,89300,93100,97700,103000,109000,115000,121000,128000,135000,144000,154000,165000,177000,191000,209000,229000,253000,278000,303000,324000,341000,355000,368000,382000,401000,424000,452000,482000,521000,577000,629000,623000,611000,623000,630000,645000,668000,695000,719000,742000,765000,789000,806000,818000,831000,847000,865000,883000,901000,919000,937000,954000,972000,989000,1010000,1020000,1040000,1060000,1070000,1090000,1110000,1120000,1140000,1150000,1170000,1180000,1200000,1220000,1230000,1250000,1260000,1280000,1290000,1310000,1320000,1340000,1350000,1360000,1380000,1390000,1400000,1420000,1430000,1440000,1450000,1460000,1470000,1480000,1490000,1500000,1510000,1520000,1530000,1540000,1550000,1560000,1560000,1570000,1580000,1590000,1590000,1600000,1610000,1610000,1620000,1620000,1630000,1630000,1640000,1640000,1650000,1650000,1650000,1660000,1660000,1660000,1660000,1670000,1670000,1670000,1670000,1670000,1670000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000,1680000 +Dominica,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,19900,20000,20000,20100,20100,20200,20300,20400,20500,20600,20700,20800,20900,21100,21200,21300,21400,21500,21600,21700,21800,21900,22000,22100,22300,22400,22600,22700,22900,23000,23200,23300,23500,23600,23700,23900,24000,24200,24300,24500,24600,24800,24900,25100,25300,25400,25600,25800,26000,26200,26400,26500,26700,26800,26900,27000,27100,27200,27300,27400,27500,27500,27500,27500,27400,27300,27200,27100,27000,26900,26700,26700,26700,26800,26900,27100,27200,27400,27600,27800,28000,28200,28500,28900,29300,29700,30200,30700,31100,31600,32100,32600,33000,33300,33600,33900,34200,34500,34700,35000,35300,35700,36100,36500,37000,37600,38100,38700,39300,39900,40500,41100,41600,42200,42700,43100,43600,44100,44600,45100,45600,46000,46500,46900,47200,47600,47900,48200,48600,48900,49200,49700,50200,50400,50500,50800,51200,51900,53000,54300,56000,57800,59400,60400,61200,62000,62800,63700,64700,65800,66900,68000,68900,69400,69900,70300,70800,71300,71700,72100,72500,72800,73000,72900,72600,72300,71900,71600,71200,70800,70400,70000,69500,69100,69100,69200,69200,69200,69200,69100,68900,68700,68300,68200,68300,68400,68600,68700,68700,68800,68800,68800,68800,68700,68900,68800,69400,70000,70100,70400,70800,71400,72000,72400,72700,73000,73400,73700,74000,74300,74500,74800,75000,75200,75300,75500,75600,75700,75700,75700,75700,75700,75700,75600,75500,75400,75300,75100,74900,74800,74600,74400,74200,73900,73700,73500,73200,73000,72700,72400,72100,71800,71500,71200,70900,70600,70200,69900,69500,69100,68800,68400,67900,67500,67100,66600,66200,65700,65200,64700,64200,63700,63200,62600,62100,61600,61000,60500,60000,59400,58900,58400,57900,57300,56800,56300,55800,55300,54800,54300,53900,53400,52900 +Denmark,1000000,1010000,1010000,1020000,1030000,1040000,1040000,1050000,1060000,1070000,1070000,1080000,1090000,1100000,1110000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1240000,1250000,1260000,1270000,1280000,1290000,1300000,1310000,1310000,1320000,1330000,1340000,1350000,1360000,1370000,1380000,1400000,1410000,1430000,1440000,1460000,1470000,1490000,1500000,1520000,1540000,1560000,1580000,1590000,1610000,1630000,1660000,1680000,1690000,1710000,1730000,1750000,1770000,1790000,1810000,1830000,1850000,1870000,1890000,1910000,1930000,1950000,1960000,1980000,2000000,2020000,2040000,2060000,2080000,2100000,2120000,2140000,2170000,2190000,2210000,2230000,2250000,2270000,2300000,2320000,2350000,2370000,2400000,2430000,2450000,2480000,2510000,2540000,2570000,2600000,2630000,2660000,2690000,2720000,2750000,2790000,2820000,2850000,2890000,2920000,2960000,2990000,3030000,3060000,3100000,3130000,3170000,3210000,3240000,3270000,3300000,3330000,3360000,3390000,3420000,3450000,3490000,3520000,3550000,3570000,3600000,3630000,3660000,3690000,3720000,3750000,3780000,3810000,3840000,3880000,3920000,3960000,4010000,4050000,4099999.9999999995,4139999.9999999995,4190000.0000000005,4230000,4270000,4300000,4330000,4360000,4390000,4430000,4460000,4490000,4520000,4550000,4580000,4610000,4650000,4680000,4720000,4760000,4800000,4830000,4870000,4900000,4920000,4950000,4980000,5010000,5030000,5060000,5080000,5090000,5110000,5120000,5130000,5130000,5130000,5120000,5120000,5120000,5120000,5120000,5130000,5130000,5140000,5160000,5180000,5190000,5210000,5240000,5260000,5280000,5300000,5320000,5340000,5360000,5380000,5400000,5420000,5440000,5460000,5480000,5500000,5530000,5550000,5580000,5600000,5630000,5650000,5680000,5710000,5740000,5770000,5800000,5830000,5850000,5880000,5910000,5940000,5970000,6000000,6020000,6050000,6080000,6100000,6130000,6150000,6180000,6200000,6220000,6240000,6260000,6270000,6290000,6310000,6320000,6340000,6350000,6370000,6380000,6390000,6410000,6420000,6430000,6450000,6460000,6470000,6480000,6500000,6510000,6520000,6540000,6550000,6560000,6580000,6590000,6610000,6620000,6640000,6660000,6670000,6690000,6700000,6720000,6740000,6750000,6770000,6790000,6800000,6820000,6830000,6850000,6860000,6870000,6890000,6900000,6910000,6920000,6930000,6940000,6950000,6960000,6970000,6980000,6990000,7000000,7010000,7020000,7030000,7040000,7050000,7060000,7070000,7080000,7090000 +Dominican Republic,150000,146000,142000,139000,135000,132000,128000,125000,122000,119000,116000,113000,110000,107000,104000,101000,98900,96300,93800,92200,91300,91300,92000,93500,95100,96700,98300,99900,102000,103000,105000,107000,109000,110000,112000,114000,116000,118000,120000,122000,124000,126000,128000,130000,132000,134000,137000,139000,141000,144000,147000,150000,154000,158000,162000,166000,170000,175000,179000,184000,188000,193000,198000,203000,209000,214000,220000,225000,231000,237000,243000,249000,256000,262000,269000,276000,283000,290000,298000,305000,313000,321000,330000,338000,347000,356000,365000,374000,384000,394000,404000,414000,425000,436000,447000,458000,470000,482000,494000,508000,521000,536000,551000,568000,585000,602000,620000,638000,657000,676000,694000,713000,731000,750000,768000,788000,807000,827000,848000,871000,897000,925000,957000,992000,1030000,1070000,1100000,1140000,1190000,1230000,1270000,1310000,1350000,1390000,1430000,1470000,1510000,1560000,1600000,1650000,1700000,1760000,1820000,1880000,1940000,2009999.9999999998,2080000,2150000,2230000,2300000,2380000,2460000,2530000,2610000,2700000,2790000,2890000,2980000,3090000,3190000,3300000,3410000,3520000,3640000,3750000,3870000,3990000,4110000.0000000005,4230000,4350000,4480000,4600000,4720000,4850000,4980000,5110000,5240000,5370000,5500000,5630000,5760000,5890000,6010000,6150000,6280000,6420000,6550000,6690000,6830000,6980000,7130000,7280000,7430000,7580000,7720000,7870000,8010000,8150000,8279999.999999999,8410000,8540000,8670000,8800000,8920000,9040000,9160000,9280000,9400000,9520000,9650000,9780000,9900000,10000000,10200000,10300000,10400000,10500000,10600000,10800000,10900000,11000000,11100000,11200000,11300000,11400000,11500000,11600000,11700000,11800000,11900000,12000000,12100000,12100000,12200000,12300000,12400000,12400000,12500000,12600000,12600000,12700000,12800000,12800000,12900000,12900000,13000000,13000000,13100000,13100000,13100000,13200000,13200000,13200000,13300000,13300000,13300000,13300000,13300000,13400000,13400000,13400000,13400000,13400000,13400000,13400000,13400000,13400000,13400000,13300000,13300000,13300000,13300000,13300000,13300000,13200000,13200000,13200000,13100000,13100000,13100000,13000000,13000000,12900000,12900000,12900000,12800000,12800000,12700000,12700000,12600000,12500000,12500000,12400000,12400000,12300000,12200000,12200000,12100000,12000000,12000000,11900000 +Algeria,2500000,2510000,2520000,2530000,2540000,2550000,2560000,2560000,2570000,2580000,2590000,2600000,2610000,2620000,2630000,2640000,2650000,2660000,2670000,2680000,2690000,2690000,2700000,2700000,2710000,2710000,2720000,2720000,2730000,2730000,2740000,2740000,2750000,2750000,2760000,2760000,2770000,2770000,2780000,2780000,2790000,2790000,2800000,2800000,2810000,2810000,2820000,2820000,2830000,2840000,2850000,2870000,2900000,2930000,2960000,2990000,3020000,3050000,3080000,3110000,3140000,3170000,3210000,3240000,3270000,3310000,3340000,3370000,3410000,3440000,3480000,3510000,3550000,3590000,3620000,3660000,3700000,3740000,3770000,3810000,3850000,3890000,3930000,3970000,4010000,4050000,4090000,4139999.9999999995,4179999.9999999995,4220000,4260000,4310000,4350000,4390000,4430000,4480000,4520000,4570000,4610000,4660000,4720000,4790000,4860000,4940000,5020000,5100000,5190000,5270000,5360000,5430000,5500000,5550000,5590000,5620000,5650000,5680000,5710000,5740000,5770000,5800000,5850000,5900000,5960000,6020000,6090000,6160000,6220000,6290000,6360000,6440000,6530000,6630000,6740000,6860000,6980000,7100000,7230000,7350000,7480000,7610000,7740000,7860000,7990000,8109999.999999999,8230000,8350000,8480000,8600000,8730000,8870000,9020000,9270000,9520000,9770000,10000000,10200000,10500000,10700000,10900000,11200000,11400000,11600000,11800000,12000000,12200000,12400000,12600000,12900000,13200000,13500000,13800000,14100000,14400000,14800000,15200000,15700000,16500000,17100000,17600000,18200000,18700000,19400000,20000000,20700000,21400000,22100000,22900000,23600000,24200000,24900000,25500000,26100000,26700000,27400000,27900000,28500000,29000000,29500000,29900000,30300000,30800000,31200000,31600000,32100000,32500000,33000000,33400000,34000000,34600000,35200000,35900000,36500000,37300000,38000000,38800000,39500000,40300000,41100000,41900000,42700000,43500000,44200000,44900000,45600000,46300000,46900000,47500000,48100000,48700000,49300000,49800000,50300000,50800000,51300000,51800000,52400000,52900000,53400000,53900000,54400000,54900000,55400000,56000000,56500000,57000000,57500000,58100000,58600000,59100000,59500000,60000000,60400000,60900000,61300000,61700000,62000000,62400000,62700000,63000000,63300000,63600000,63800000,64000000,64200000,64500000,64599999.99999999,64800000,65000000,65200000,65300000,65500000,65700000,65800000,66000000,66099999.99999999,66200000,66400000.00000001,66500000,66700000,66800000,66900000.00000001,67000000,67099999.99999999,67200000,67300000,67400000,67500000,67600000,67700000,67700000,67800000,67800000,67900000,67900000,67900000,67900000,67900000,67900000,67900000,67800000,67800000 +Ecuador,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,500000,502000,505000,510000,517000,525000,534000,543000,552000,561000,570000,579000,589000,599000,608000,618000,629000,639000,649000,660000,671000,682000,693000,705000,716000,728000,740000,752000,765000,777000,790000,802000,813000,825000,835000,845000,855000,864000,874000,884000,895000,905000,916000,926000,937000,948000,959000,970000,981000,992000,1000000,1020000,1030000,1040000,1050000,1060000,1080000,1090000,1100000,1110000,1130000,1140000,1150000,1160000,1180000,1190000,1210000,1220000,1230000,1250000,1260000,1280000,1290000,1310000,1320000,1340000,1350000,1370000,1380000,1400000,1420000,1430000,1450000,1470000,1490000,1520000,1540000,1560000,1590000,1610000,1630000,1660000,1680000,1700000,1720000,1740000,1760000,1780000,1800000,1820000,1830000,1850000,1870000,1890000,1900000,1920000,1940000,1950000,1970000,1980000,2000000,2020000,2049999.9999999998,2089999.9999999998,2130000,2180000,2240000,2290000,2350000,2400000,2460000,2520000,2590000,2670000,2750000,2840000,2930000,3020000,3110000,3210000,3310000,3420000,3520000,3610000,3710000,3810000,3920000,4019999.9999999995,4130000,4250000,4370000,4490000,4620000,4750000,4890000,5030000,5180000,5340000,5500000,5660000,5830000,6000000,6170000,6350000,6530000,6720000,6910000,7110000,7300000,7510000,7710000,7920000,8140000.000000001,8350000,8570000,8800000,9020000,9250000,9490000,9730000,9970000,10200000,10400000,10700000,10900000,11100000,11300000,11600000,11800000,12000000,12200000,12400000,12600000,12800000,13100000,13300000,13500000,13800000,14000000,14300000,14500000,14700000,15000000,15200000,15500000,15700000,16000000,16200000,16399999.999999998,16700000,17000000,17300000,17600000,17800000,18000000,18200000,18400000,18600000,18700000,18900000,19100000,19300000,19500000,19700000,19800000,20000000,20200000,20300000,20500000,20700000,20800000,21000000,21100000,21200000,21400000,21500000,21600000,21700000,21900000,22000000,22100000,22200000,22300000,22400000,22400000,22500000,22600000,22700000,22700000,22800000,22900000,22900000,23000000,23000000,23100000,23100000,23100000,23100000,23200000,23200000,23200000,23200000,23200000,23200000,23200000,23200000,23100000,23100000,23100000,23000000,23000000,23000000,22900000,22900000,22800000,22800000,22700000,22600000,22600000,22500000,22400000,22300000,22300000,22200000,22100000,22000000,22000000,21900000,21800000,21700000,21600000,21500000,21400000 +Egypt,3500000,3530000,3560000,3600000,3630000,3660000,3700000,3730000,3760000,3800000,3830000,3870000,3900000,3940000,3970000,4010000,4050000,4080000,4120000,4150000.0000000005,4179999.9999999995,4200000,4220000,4240000,4250000,4260000,4280000,4290000,4300000,4320000,4330000,4350000,4360000,4380000,4390000,4400000,4420000,4430000,4450000,4480000,4530000,4610000,4700000,4810000,4930000,5050000,5170000,5290000,5420000,5540000,5640000,5720000,5790000,5850000,5910000,5960000,6020000,6080000,6140000,6200000,6260000,6320000,6380000,6440000,6500000,6560000,6630000,6690000,6760000,6820000,6890000,6950000,7020000,7090000,7160000,7220000,7290000,7360000,7430000,7510000,7590000,7680000,7780000,7880000,7990000,8090000,8199999.999999999,8310000.000000001,8420000,8530000,8640000,8760000,8890000,9010000,9140000,9270000,9400000,9530000,9670000,9800000,9940000,10100000,10200000,10400000,10500000,10600000,10800000,10900000,11100000,11200000,11400000,11500000,11600000,11800000,11900000,12000000,12200000,12300000,12400000,12600000,12700000,12900000,13000000,13200000,13300000,13500000,13600000,13800000,13900000,14100000,14200000,14400000,14600000,14800000,15000000,15200000,15400000,15600000,15900000,16100000.000000002,16399999.999999998,16800000,17200000,17600000,18100000,18600000,19100000,19600000,20100000,20600000,21200000,21600000,22100000,22700000,23200000,23800000,24500000,25100000,25700000,26300000,27000000,27700000,28500000,29200000,30000000,30800000,31600000,32400000,33200000.000000004,34000000,34800000,35600000,36300000,37100000,37900000,38800000,39600000,40600000,41600000,42600000,43700000,44900000,46100000,47400000,48700000,50000000,51400000,52800000,54300000,55800000,57200000,58600000,60000000,61400000,62800000,64200000,65599999.99999999,67000000,68400000,69900000,71400000,72900000,74400000,76000000,77500000,79100000,80600000,82200000,83800000,85500000,87300000,89200000,91200000,93400000,95600000,97700000,99800000,102000000,104000000,106000000,107000000,109000000,111000000,113000000,114000000,116000000,118000000,120000000,122000000,123000000,125000000,127000000,129000000,131000000,132000000,134000000,136000000,138000000,140000000,142000000,143000000,145000000,147000000,149000000,151000000,152000000,154000000,156000000,157000000,159000000,160000000,162000000,163000000,165000000,166000000,168000000,169000000,170000000,172000000,173000000,174000000,176000000,177000000,178000000,179000000,180000000,182000000,183000000,184000000,185000000,186000000,187000000,188000000,189000000,190000000,191000000,192000000,193000000,194000000,194000000,195000000,196000000,197000000,197000000,198000000,199000000,199000000,200000000,201000000,201000000,202000000,202000000,203000000,203000000,203000000,204000000,204000000,204000000,205000000,205000000,205000000 +Eritrea,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,205000,207000,210000,216000,223000,232000,242000,252000,263000,274000,285000,297000,309000,322000,336000,350000,364000,380000,396000,412000,429000,447000,466000,485000,506000,527000,549000,572000,596000,621000,647000,668000,684000,692000,695000,692000,689000,686000,683000,680000,677000,674000,671000,668000,665000,662000,659000,656000,653000,650000,647000,645000,642000,639000,637000,635000,632000,630000,628000,625000,623000,621000,618000,616000,613000,611000,609000,606000,604000,602000,599000,597000,594000,592000,589000,587000,585000,582000,580000,577000,575000,573000,572000,571000,572000,573000,573000,574000,575000,576000,577000,577000,578000,578000,579000,579000,579000,579000,579000,579000,583000,587000,591000,596000,602000,608000,614000,620000,626000,632000,639000,645000,651000,656000,662000,667000,673000,678000,683000,689000,694000,701000,708000,717000,727000,738000,749000,760000,772000,783000,795000,808000,823000,835000,848000,863000,879000,895000,912000,931000,951000,971000,994000,1020000,1040000,1070000,1090000,1120000,1150000,1180000,1210000,1240000,1270000,1310000,1340000,1380000,1410000,1450000,1490000,1530000,1570000,1610000,1660000,1700000,1750000,1800000,1850000,1900000,1950000,2000000,2049999.9999999998,2100000,2150000,2040000,1920000,1980000,2040000,2160000,2260000,2290000,2320000,2360000,2390000,2460000,2550000,2650000,2760000,2830000,2880000,2930000,3010000,3080000,3150000,3210000,3250000,3300000,3320000,3340000,3370000,3400000,3450000,3500000,3560000,3620000,3680000,3750000,3820000,3890000,3960000,4040000,4120000,4200000,4280000,4370000,4450000,4540000,4630000,4710000,4800000,4890000,4970000,5060000,5140000,5230000,5310000,5400000,5480000,5560000,5650000,5730000,5810000,5890000,5960000,6040000,6120000,6200000,6270000,6350000,6430000,6500000,6580000,6650000,6720000,6800000,6870000,6940000,7010000,7080000,7150000,7210000,7280000,7350000,7410000,7470000,7530000,7590000,7650000,7700000,7760000,7810000,7860000,7910000,7960000,8010000,8050000.000000001,8090000,8130000.000000001,8170000,8210000.000000001,8240000,8279999.999999999,8310000.000000001,8340000,8369999.999999999,8400000,8430000,8450000,8480000,8500000,8520000,8540000,8560000,8580000 +Spain,11500000,11500000,11600000,11600000,11600000,11700000,11700000,11700000,11800000,11800000,11800000,11900000,11900000,12000000,12000000,12000000,12100000,12100000,12100000,12200000,12200000,12300000,12400000,12400000,12500000,12600000,12700000,12800000,12900000,13000000,13000000,13100000,13200000,13300000,13400000,13500000,13600000,13700000,13800000,13800000,13900000,14000000,14100000,14200000,14300000,14400000,14500000,14600000,14700000,14800000,14900000,15000000,15000000,15100000,15200000,15300000,15300000,15400000,15500000,15600000,15600000,15700000,15800000,15800000,15900000,15900000,16000000,16000000,16100000.000000002,16100000.000000002,16200000,16300000,16300000,16399999.999999998,16500000,16500000,16600000.000000002,16700000,16700000,16800000,16900000,17000000,17000000,17100000,17200000,17300000,17400000,17500000,17600000,17700000,17700000,17800000,17900000,18000000,18100000,18200000,18200000,18300000,18400000,18500000,18600000,18700000,18800000,18900000,19100000,19200000,19300000,19500000,19600000,19700000,19900000,20000000,20100000,20300000,20400000,20500000,20700000,20800000,21000000,21100000,21300000,21500000,21700000,21900000,22100000,22300000,22500000,22800000,23000000,23200000,23400000,23700000,23900000,24100000,24300000,24600000,24800000,25000000,25300000,25500000,25700000,26000000,26200000,26400000,26700000,26900000,27100000,27400000,27600000,27800000,28100000,28200000,28400000,28600000,28900000,29100000,29300000,29600000,29900000,30200000,30400000,30700000,31100000,31400000,31700000,32100000,32500000,32799999.999999996,33200000.000000004,33500000,33800000,34100000,34500000,34900000,35300000,35800000,36100000,36500000,36900000,37200000,37500000,37800000,38000000,38200000,38300000,38500000,38600000,38700000,38800000,38800000,38900000,39000000,39200000,39400000,39600000,39800000,40000000,40200000,40400000,40500000,40700000,41000000,41500000,42200000,43000000,43700000,44400000,45200000,46000000,46400000,46600000,46700000,46800000,46600000,46500000,46400000,46500000,46600000,46800000,47100000,47400000,47500000,47600000,47500000,47500000,47400000,47400000,47300000,47200000,47200000,47100000,47000000,46900000,46800000,46700000,46600000,46500000,46400000,46300000,46200000,46000000,45900000,45800000,45600000,45400000,45300000,45100000,44900000,44700000,44500000,44200000,44000000,43700000,43400000,43200000,42900000,42600000,42200000,41900000,41600000,41300000,40900000,40600000,40200000,39900000,39500000,39200000,38900000,38500000,38200000,37900000,37500000,37200000,36900000,36600000,36300000,36000000,35800000,35500000,35200000,35000000,34800000,34500000,34300000,34100000,33900000,33700000,33500000,33299999.999999996,33100000,32900000,32700000.000000004,32500000,32299999.999999996,32100000,31900000,31700000,31500000,31300000,31100000,30900000 +Estonia,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,334000,335000,337000,339000,342000,346000,351000,355000,359000,364000,368000,372000,377000,381000,386000,391000,395000,400000,405000,410000,415000,420000,425000,430000,435000,441000,446000,451000,457000,462000,468000,474000,479000,485000,491000,497000,503000,509000,515000,521000,528000,534000,540000,547000,554000,560000,567000,574000,581000,588000,595000,602000,609000,617000,624000,632000,639000,647000,655000,663000,671000,679000,687000,695000,704000,712000,721000,730000,738000,747000,756000,765000,775000,784000,793000,803000,813000,823000,832000,843000,853000,863000,873000,884000,895000,905000,916000,927000,939000,950000,961000,973000,985000,997000,1010000,1020000,1030000,1050000,1060000,1070000,1090000,1100000,1110000,1110000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1110000,1110000,1110000,1110000,1100000,1100000,1100000,1100000,1100000,1120000,1130000,1140000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1250000,1260000,1280000,1290000,1310000,1320000,1330000,1350000,1360000,1370000,1390000,1400000,1410000,1420000,1440000,1450000,1460000,1470000,1480000,1490000,1500000,1510000,1520000,1530000,1540000,1550000,1560000,1570000,1570000,1570000,1540000,1500000,1480000,1450000,1430000,1420000,1410000,1400000,1400000,1390000,1380000,1370000,1360000,1350000,1350000,1340000,1340000,1330000,1330000,1330000,1320000,1320000,1310000,1310000,1320000,1320000,1320000,1330000,1330000,1330000,1330000,1320000,1320000,1310000,1310000,1310000,1300000,1300000,1290000,1280000,1280000,1270000,1270000,1260000,1250000,1250000,1240000,1240000,1230000,1230000,1220000,1210000,1210000,1200000,1200000,1190000,1180000,1180000,1170000,1170000,1160000,1150000,1150000,1140000,1130000,1120000,1120000,1110000,1100000,1100000,1090000,1080000,1070000,1070000,1060000,1050000,1040000,1030000,1030000,1020000,1010000,1000000,997000,990000,983000,976000,968000,961000,954000,948000,941000,934000,928000,921000,915000,909000,903000,897000,891000,885000,880000,874000,869000,863000,858000,852000,847000,841000,836000 +Ethiopia,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12000000,12100000,12100000,12100000,12200000,12200000,12300000,12300000,12400000,12500000,12600000,12700000,12800000,12900000,13100000,13200000,13400000,13500000,13700000,13900000,14100000,14300000,14500000,14700000,14900000,15100000,15300000,15600000,15800000,16000000,16200000,16500000,16700000,16900000,17200000,17400000,17700000,17900000,18200000,18400000,18400000,18400000,18400000,18400000,18400000,18300000,18300000,18300000,18300000,18300000,18300000,18300000,18200000,18200000,18200000,18200000,18200000,18200000,18200000,18100000,18100000,18100000,18100000,18100000,18100000,18100000,18000000,18000000,18000000,18000000,18000000,18000000,18000000,17900000,17900000,17900000,17900000,17900000,17900000,17900000,17800000,17800000,17800000,17800000,17800000,17800000,17800000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17600000,17600000,17600000,17600000,17600000,17600000,17600000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17500000,17600000,17700000,18100000,18500000,18900000,19300000,19700000,20100000,20500000,20800000,21200000,21700000,22300000,22900000,23400000,24100000,24700000,25400000,26100000,26800000,27500000,28300000,29100000,29900000,30700000,31500000,32299999.999999996,33100000,33700000,34300000,34800000,34900000,35800000,37200000,38200000,39200000,40300000,41500000,42900000,44500000,46200000,47900000,49900000,52000000,53800000,55600000,57500000,59300000,61200000,63100000,65099999.99999999,67000000,69000000,71100000,73200000,75300000,77500000,79700000,82000000,84400000,86800000,89200000,91800000,94500000,97100000,99700000,102000000,105000000,108000000,111000000,114000000,117000000,120000000,123000000,127000000,130000000,133000000,136000000,139000000,143000000,146000000,149000000,153000000,156000000,159000000,162000000,166000000,169000000,172000000,176000000,179000000,182000000,185000000,189000000,192000000,195000000,198000000,202000000,205000000,208000000,212000000,215000000,218000000,221000000,224000000,228000000,231000000,234000000,237000000,240000000,243000000,246000000,249000000,252000000,254000000,257000000,260000000,263000000,265000000,268000000,270000000,273000000,275000000,278000000,280000000,282000000,285000000,287000000,289000000,291000000,293000000,295000000,297000000,299000000,301000000,302000000,304000000,306000000,307000000,309000000,311000000,312000000,313000000,315000000,316000000,317000000,319000000,320000000,321000000,322000000,323000000,324000000 +Finland,800000,815000,831000,847000,863000,880000,896000,914000,931000,949000,967000,986000,1000000,1020000,1040000,1060000,1080000,1100000,1130000,1150000,1170000,1190000,1210000,1220000,1240000,1260000,1280000,1300000,1320000,1340000,1360000,1370000,1380000,1390000,1390000,1400000,1410000,1420000,1430000,1440000,1450000,1460000,1480000,1490000,1510000,1530000,1550000,1570000,1590000,1610000,1620000,1640000,1650000,1660000,1670000,1680000,1690000,1700000,1720000,1720000,1730000,1740000,1740000,1740000,1740000,1750000,1750000,1750000,1750000,1760000,1770000,1790000,1810000,1840000,1870000,1890000,1920000,1950000,1980000,2009999.9999999998,2040000,2080000,2110000,2140000,2170000,2200000,2230000,2260000,2300000,2330000,2360000,2390000,2420000,2440000,2470000,2500000,2530000,2560000,2580000,2610000,2640000,2670000,2700000,2730000,2750000,2780000,2810000,2840000,2870000,2890000,2920000,2940000,2970000,2990000,3010000,3030000,3050000,3070000,3090000,3110000,3130000,3160000,3190000,3220000,3250000,3280000,3310000,3350000,3380000,3410000,3440000,3470000,3490000,3520000,3540000,3570000,3590000,3620000,3640000,3670000,3700000,3720000,3750000,3780000,3810000,3850000,3880000,3910000,3940000,3970000,4010000,4050000,4090000,4139999.9999999995,4190000.0000000005,4240000,4280000,4320000,4360000,4400000,4430000,4460000,4490000,4520000,4550000,4560000,4580000,4610000,4630000,4620000,4610000,4610000,4640000,4670000,4690000,4710000,4730000,4740000,4750000,4760000,4780000,4800000,4830000,4860000,4880000,4900000,4920000,4930000,4950000,4960000,4990000,5010000,5040000,5070000,5090000,5110000,5120000,5140000,5150000,5170000,5180000,5190000,5200000,5210000,5230000,5250000,5270000,5290000,5310000,5340000,5360000,5390000,5410000,5440000,5460000,5480000,5500000,5510000,5520000,5520000,5530000,5540000,5540000,5550000,5550000,5550000,5560000,5560000,5560000,5560000,5570000,5570000,5560000,5560000,5560000,5560000,5560000,5550000,5550000,5540000,5540000,5530000,5520000,5520000,5510000,5500000,5490000,5490000,5480000,5470000,5460000,5450000,5440000,5430000,5420000,5410000,5410000,5400000,5390000,5380000,5370000,5360000,5360000,5350000,5340000,5340000,5330000,5330000,5320000,5310000,5310000,5300000,5290000,5290000,5280000,5270000,5260000,5250000,5240000,5230000,5220000,5210000,5200000,5190000,5180000,5170000,5160000,5150000,5140000,5130000,5120000,5110000,5100000,5090000,5080000,5070000,5060000,5050000,5040000,5030000,5020000 +Fiji,131000,131000,131000,131000,131000,132000,132000,132000,132000,133000,133000,133000,133000,134000,134000,134000,134000,134000,135000,135000,135000,135000,136000,136000,136000,136000,137000,137000,137000,137000,138000,138000,138000,138000,139000,139000,139000,139000,140000,140000,140000,140000,139000,139000,139000,138000,138000,138000,138000,137000,137000,137000,137000,136000,136000,136000,136000,135000,135000,135000,135000,135000,134000,134000,134000,134000,133000,133000,133000,133000,133000,132000,132000,132000,132000,131000,131000,131000,131000,131000,130000,130000,129000,129000,128000,128000,127000,127000,126000,126000,126000,125000,125000,125000,125000,125000,125000,125000,125000,126000,126000,128000,129000,132000,134000,136000,138000,140000,143000,145000,147000,149000,151000,153000,155000,157000,159000,161000,162000,165000,167000,171000,174000,178000,182000,187000,191000,196000,200000,205000,210000,216000,222000,228000,234000,240000,247000,254000,261000,267000,273000,277000,281000,284000,287000,289000,292000,295000,298000,303000,308000,313000,319000,326000,334000,344000,354000,365000,377000,389000,402000,415000,428000,441000,455000,469000,482000,495000,506000,517000,528000,538000,548000,557000,566000,576000,587000,599000,614000,629000,645000,661000,677000,694000,711000,727000,743000,755000,764000,773000,780000,785000,787000,789000,791000,792000,797000,805000,814000,823000,833000,841000,850000,858000,867000,875000,883000,891000,897000,901000,905000,908000,911000,913000,916000,917000,918000,919000,919000,918000,920000,925000,930000,936000,943000,950000,957000,964000,972000,979000,986000,993000,1000000,1010000,1010000,1020000,1030000,1030000,1040000,1040000,1050000,1050000,1060000,1070000,1070000,1070000,1080000,1080000,1090000,1090000,1090000,1100000,1100000,1100000,1110000,1110000,1110000,1110000,1110000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1120000,1110000,1110000,1110000,1110000,1110000,1110000,1100000,1100000,1100000,1100000,1090000,1090000,1090000,1080000,1080000,1080000,1070000,1070000,1060000,1060000,1060000,1050000,1050000 +France,29000000,29100000,29200000,29300000,29400000,29500000,29700000,29800000,29900000,30000000,30100000,30200000,30300000,30400000,30600000,30700000,30800000,30900000,31000000,31200000,31300000,31500000,31700000,31900000,32100000,32299999.999999996,32500000,32700000.000000004,32900000,33100000,33299999.999999996,33400000,33600000,33800000,33900000,34100000,34300000,34400000,34600000,34700000,34900000,35000000,35200000,35300000,35500000,35600000,35800000,35900000,36100000,36200000,36300000,36400000,36500000,36600000,36700000,36800000,36900000,36900000,37000000,37100000,37200000,37300000,37400000,37500000,37600000,37700000,37800000,37900000,38000000,38100000,38200000,38300000,38300000,38400000,38400000,38500000,38500000,38600000,38600000,38700000,38700000,38800000,38900000,39000000,39000000,39100000,39200000,39300000,39400000,39500000,39500000,39600000,39600000,39700000,39700000,39800000,39800000,39900000,39900000,40000000,40000000,40100000,40100000,40200000,40200000,40300000,40300000,40400000,40400000,40400000,40300000,40200000,40000000,39800000,39600000,39400000,39100000,38900000,38700000,38600000,38500000,38600000,38800000,39000000,39300000,39500000,39800000,40000000,40300000,40500000,40600000,40700000,40700000,40600000,40600000,40500000,40500000,40400000,40300000,40300000,40300000,40400000,40500000,40700000,40800000,41000000,41100000,41300000,41400000,41600000,41800000,42200000,42500000,42900000,43200000,43600000,44000000,44300000,44800000,45200000,45700000,46100000,46600000,47100000,47600000,48200000,48700000,49200000,49600000,50100000,50500000,51000000,51400000,51800000,52200000,52500000,52700000,52900000,53200000,53400000,53700000,54000000,54300000,54600000,54800000,55100000,55400000,55600000,55900000,56200000,56400000,56600000,56900000,57100000,57200000,57400000,57600000,57800000,58100000,58400000,58700000,59000000,59400000,59700000,60100000,60500000,60900000,61300000,61700000,62100000,62400000,62800000,63100000,63300000,63600000,63800000,64000000,64099999.99999999,64300000,64400000.00000001,64500000,64500000,64599999.99999999,64800000,64900000.00000001,65000000,65099999.99999999,65200000,65300000,65400000.00000001,65500000,65599999.99999999,65700000,65800000,65900000.00000001,66000000,66000000,66099999.99999999,66099999.99999999,66099999.99999999,66200000,66200000,66200000,66099999.99999999,66099999.99999999,66099999.99999999,66099999.99999999,66000000,66000000,65900000.00000001,65800000,65800000,65700000,65599999.99999999,65500000,65400000.00000001,65300000,65200000,65099999.99999999,65000000,64900000.00000001,64800000,64700000,64599999.99999999,64500000,64400000.00000001,64300000,64200000,64099999.99999999,64000000,63900000,63800000,63800000,63700000,63600000,63500000,63400000,63300000,63200000,63100000,63000000,62900000,62800000,62700000,62600000,62500000,62400000,62300000,62200000,62100000,62000000,61900000,61700000,61600000,61500000,61400000,61300000,61200000,61100000,61000000,60900000 +"Micronesia, Fed. Sts.",16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16400,16500,16500,16600,16700,16700,16800,16900,17000,17100,17100,17200,17300,17400,17500,17600,17600,17700,17800,17900,18000,18100,18200,18300,18300,18400,18500,18600,18700,18800,18900,19000,19100,19200,19300,19400,19500,19600,19700,19800,19900,20000,20100,20200,20300,20400,20500,20600,20700,20800,20900,21000,21100,21200,21400,21500,21600,21700,21800,21900,22000,22100,22300,22400,22500,22600,22700,22800,23000,23100,23200,23300,23400,23600,23700,23800,23900,24000,24200,24300,24400,24500,24700,24800,24900,25100,25200,25300,25400,25600,25700,25800,26000,26100,26200,26400,26500,26600,26800,26900,27000,27200,27300,27400,27600,27700,27800,28000,28100,28200,28400,28500,28700,28800,28900,29100,29200,29400,29500,29600,29800,29900,30100,30200,30400,30500,30700,30800,31000,31100,31400,31900,32800,33800,34700,35800,36800,37900,39100,40300,41600,43000,44600,46200,47800,49200,50800,52300,53900,55600,57200,59000,60700,62300,63900,65600,67100,68600,70100,72000,74100,76300,78500,80800,83200,85500,88000,90400,92800,95000,96800,98600,100000,103000,106000,109000,110000,111000,111000,111000,112000,112000,112000,112000,112000,111000,111000,110000,110000,109000,108000,108000,108000,108000,109000,109000,109000,110000,110000,111000,111000,112000,113000,114000,115000,116000,117000,118000,120000,121000,122000,123000,124000,125000,126000,126000,127000,128000,129000,130000,130000,131000,132000,132000,133000,133000,134000,134000,134000,135000,135000,135000,136000,136000,136000,137000,137000,137000,137000,137000,137000,138000,138000,138000,138000,138000,138000,138000,138000,137000,137000,137000,137000,137000,136000,136000,135000,135000,134000,134000,133000,133000,132000,131000,131000,130000,129000,128000,127000,127000,126000,125000,124000,123000,122000,121000,120000,119000,118000,117000,116000,115000 +Gabon,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,158000,159000,160000,162000,165000,169000,172000,176000,180000,183000,187000,191000,195000,200000,204000,208000,213000,217000,222000,226000,231000,236000,241000,246000,251000,257000,262000,268000,274000,279000,285000,290000,295000,298000,301000,303000,305000,307000,309000,311000,313000,315000,316000,318000,320000,322000,324000,326000,329000,331000,333000,335000,337000,339000,342000,344000,347000,349000,352000,354000,357000,359000,362000,365000,367000,370000,373000,375000,378000,381000,383000,385000,386000,386000,385000,383000,382000,380000,378000,376000,374000,372000,370000,367000,364000,360000,357000,353000,350000,346000,343000,340000,337000,334000,332000,330000,328000,327000,325000,323000,321000,320000,321000,322000,325000,330000,334000,338000,343000,347000,352000,356000,361000,365000,370000,374000,378000,383000,388000,392000,397000,402000,407000,413000,420000,426000,433000,440000,447000,454000,462000,468000,473000,476000,479000,482000,486000,489000,494000,498000,503000,508000,513000,519000,526000,533000,540000,548000,556000,564000,574000,585000,597000,610000,622000,635000,649000,663000,679000,695000,712000,730000,749000,769000,790000,811000,833000,856000,880000,905000,930000,957000,983000,1010000,1040000,1070000,1090000,1120000,1150000,1180000,1210000,1240000,1270000,1310000,1340000,1380000,1420000,1460000,1500000,1550000,1600000,1650000,1710000,1770000,1840000,1900000,1970000,2029999.9999999998,2089999.9999999998,2140000,2190000,2240000,2290000,2340000,2390000,2440000,2480000,2530000,2580000,2630000,2680000,2730000,2770000,2820000,2870000,2920000,2970000,3020000,3070000,3120000,3170000,3220000,3270000,3320000,3370000,3420000,3470000,3520000,3570000,3620000,3660000,3710000,3760000,3800000,3850000,3890000,3940000,3980000,4019999.9999999995,4059999.9999999995,4110000.0000000005,4150000.0000000005,4190000.0000000005,4230000,4260000,4300000,4340000,4380000,4410000,4450000,4490000,4520000,4550000,4590000,4620000,4650000,4690000,4720000,4750000,4780000,4810000,4840000,4860000,4890000,4920000,4940000,4970000,4990000,5020000,5040000,5060000,5080000,5100000,5120000,5140000,5160000,5180000,5200000,5210000,5230000,5240000,5260000,5270000 +UK,10800000,10900000,11000000,11100000,11200000,11300000,11500000,11600000,11700000,11800000,12300000,12800000,13500000,14300000,15100000,16000000,16900000,17900000,19000000,19900000,20700000,21300000,21800000,22100000,22400000,22600000,22900000,23200000,23500000,23800000,24100000,24400000,24600000,24900000,25200000,25400000,25700000,25900000,26200000,26400000,26600000,26700000,26800000,26900000,26900000,27000000,27000000,27000000,27100000,27200000,27300000,27400000,27500000,27700000,27800000,28000000,28200000,28400000,28500000,28700000,28900000,29100000,29400000,29600000,29900000,30100000,30400000,30600000,30900000,31100000,31400000,31700000,32000000,32299999.999999996,32600000,33000000,33299999.999999996,33600000,33900000,34300000,34600000,34900000,35100000,35400000,35700000,36000000,36300000,36600000,36900000,37200000,37500000,37800000,38200000,38500000,38900000,39200000,39600000,40000000,40300000,40700000,41100000,41500000,41800000,42200000,42600000,42900000,43300000,43700000,44100000,44400000,44700000,45000000,45200000,45400000,45600000,45800000,46000000,46200000,46400000,46500000,46600000,46600000,46500000,46500000,46400000,46300000,46200000,46100000,46000000,45900000,46000000,46100000,46200000,46500000,46700000,46900000,47200000,47400000,47700000,47900000,48100000,48300000,48500000,48700000,48900000,49100000,49300000,49500000,49700000,49900000,50100000,50300000,50500000,50700000,51000000,51200000,51400000,51700000,52000000,52200000,52500000,52900000,53200000,53500000,53900000,54200000,54600000,54900000,55200000,55400000,55700000,55900000,56100000,56200000,56200000,56300000,56300000,56200000,56200000,56300000,56300000,56400000,56500000,56500000,56600000,56600000,56700000,56800000,57000000,57100000,57200000,57400000,57500000,57600000,57800000,57900000,58100000,58300000,58400000,58600000,58900000,59100000,59400000,59600000,60000000,60400000,60800000,61300000,61700000,62200000,62800000,63300000,63800000,64300000,64800000,65200000,65700000,66099999.99999999,66400000.00000001,66800000,67099999.99999999,67300000,67500000,67700000,68000000,68200000,68400000,68600000,68800000,69000000,69200000,69400000,69500000,69700000,69800000,70000000,70100000,70300000,70400000,70600000,70700000,70800000,70900000,71100000,71200000,71300000,71400000,71500000,71600000,71600000,71700000,71700000,71800000,71800000,71800000,71800000,71800000,71800000,71800000,71700000,71700000,71700000,71700000,71700000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71600000,71500000,71500000,71500000,71400000,71400000,71300000,71300000,71200000,71200000,71100000,71100000,71000000,70900000,70900000,70800000,70800000,70700000,70700000,70600000,70600000,70500000,70500000 +Georgia,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1070000,1080000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1190000,1200000,1210000,1220000,1230000,1240000,1250000,1260000,1280000,1290000,1300000,1310000,1320000,1340000,1350000,1360000,1370000,1380000,1400000,1410000,1420000,1440000,1450000,1460000,1480000,1490000,1500000,1520000,1530000,1540000,1560000,1570000,1590000,1600000,1620000,1630000,1650000,1660000,1680000,1690000,1710000,1720000,1740000,1750000,1770000,1790000,1800000,1820000,1830000,1850000,1870000,1890000,1900000,1920000,1940000,1960000,1970000,1990000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2060000,2080000,2100000,2120000,2140000,2160000,2180000,2200000,2220000,2240000,2260000,2280000,2300000,2320000,2340000,2370000,2390000,2410000,2430000,2450000,2480000,2500000,2520000,2540000,2570000,2590000,2610000,2640000,2660000,2690000,2710000,2740000,2760000,2790000,2810000,2840000,2860000,2890000,2920000,2940000,2970000,3000000,3030000,3050000,3080000,3110000,3140000,3170000,3200000,3230000,3250000,3280000,3310000,3350000,3380000,3410000,3440000,3470000,3520000,3560000,3600000,3640000,3690000,3740000,3790000,3850000,3910000,3980000,4050000,4130000,4200000,4280000,4350000,4420000,4490000,4580000,4660000,4740000,4800000,4840000,4870000,4900000,4940000,4970000,5010000,5040000,5080000,5110000,5150000,5180000,5220000,5260000,5300000,5340000,5380000,5420000,5450000,5450000,5390000,5320000,5240000,5130000,5000000,4880000,4760000,4640000,4520000,4390000,4270000,4139999.9999999995,4059999.9999999995,4019999.9999999995,3990000,3960000,3930000,3910000,3880000,3860000,3840000,3820000,3800000,3790000,3770000,3770000,3770000,3770000,3770000,3770000,3770000,3760000,3740000,3730000,3720000,3710000,3700000,3690000,3680000,3670000,3660000,3650000,3630000,3620000,3610000,3590000,3580000,3570000,3550000,3540000,3530000,3510000,3500000,3490000,3470000,3460000,3440000,3430000,3410000,3400000,3380000,3370000,3350000,3340000,3320000,3300000,3290000,3270000,3250000,3230000,3210000,3190000,3180000,3160000,3130000,3110000,3090000,3070000,3050000,3030000,3010000,2990000,2960000,2940000,2920000,2900000,2880000,2860000,2840000,2810000,2790000,2770000,2750000,2730000,2710000,2690000,2670000,2650000,2630000,2610000,2590000,2570000,2550000,2530000,2510000,2480000,2460000,2440000,2420000,2390000,2370000 +Ghana,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2020000,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1980000,1980000,1980000,1990000,1990000,2000000,2009999.9999999998,2020000,2029999.9999999998,2040000,2049999.9999999998,2060000,2069999.9999999998,2080000,2089999.9999999998,2100000,2110000,2120000,2130000,2140000,2150000,2160000,2180000,2190000,2200000,2210000,2230000,2240000,2250000,2270000,2280000,2300000,2310000,2330000,2340000,2360000,2380000,2390000,2410000,2430000,2450000,2470000,2490000,2510000,2530000,2550000,2570000,2590000,2610000,2630000,2650000,2670000,2700000,2720000,2740000,2760000,2780000,2810000,2830000,2850000,2880000,2900000,2920000,2950000,2970000,2990000,3010000,3030000,3050000,3070000,3090000,3110000,3140000,3170000,3210000,3260000,3300000,3350000,3400000,3450000,3510000,3560000,3610000,3660000,3720000,3770000,3820000,3880000,3930000,3990000,4040000,4099999.9999999995,4160000,4220000,4290000,4370000,4450000,4530000,4610000,4690000,4770000,4860000,4960000,5080000,5220000,5370000,5540000,5710000,5890000,6080000,6280000,6480000,6690000,6910000,7110000,7280000,7460000,7640000,7830000,8020000,8220000.000000001,8420000,8630000,8860000,9110000,9370000,9640000,9920000,10200000,10500000,10800000,11200000,11500000,11900000,12200000,12600000,13000000,13300000,13700000,14000000,14300000,14700000,15100000,15400000,15800000,16200000,16600000.000000002,17000000,17400000,17800000,18300000,18700000,19200000,19700000,20200000,20800000,21300000,21900000,22500000,23100000,23700000,24300000,25000000,25600000,26200000,26900000,27500000,28200000,28900000,29600000,30200000,30900000,31500000,32200000.000000004,32799999.999999996,33500000,34100000,34800000,35400000,36100000,36800000,37400000,38100000,38800000,39400000,40100000,40800000,41500000,42200000,42800000,43500000,44200000,44900000,45600000,46300000,47000000,47600000,48300000,49000000,49700000,50300000,51000000,51600000,52200000,52900000,53500000,54100000,54700000,55300000,55900000,56400000,57000000,57600000,58100000,58700000,59200000,59700000,60200000,60800000,61300000,61800000,62200000,62700000,63200000,63700000,64099999.99999999,64599999.99999999,65000000,65400000.00000001,65900000.00000001,66300000,66700000,67099999.99999999,67500000,67800000,68200000,68500000,68900000,69200000,69500000,69800000,70100000,70400000,70700000,70900000,71200000,71400000,71600000,71900000,72100000,72300000,72500000,72600000,72800000 +Guinea,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,984000,985000,986000,987000,988000,990000,991000,993000,994000,996000,997000,999000,1000000,1000000,1000000,1000000,1010000,1010000,1010000,1010000,1010000,1010000,1020000,1020000,1020000,1020000,1020000,1020000,1020000,1030000,1030000,1030000,1040000,1040000,1050000,1060000,1070000,1070000,1080000,1090000,1100000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1250000,1260000,1270000,1280000,1300000,1310000,1320000,1330000,1340000,1360000,1370000,1380000,1390000,1400000,1420000,1430000,1440000,1450000,1460000,1470000,1480000,1490000,1500000,1510000,1520000,1530000,1550000,1560000,1570000,1590000,1600000,1610000,1630000,1640000,1660000,1670000,1690000,1710000,1720000,1740000,1760000,1770000,1790000,1810000,1820000,1850000,1870000,1900000,1930000,1960000,2000000,2029999.9999999998,2069999.9999999998,2100000,2130000,2170000,2200000,2230000,2260000,2300000,2330000,2360000,2390000,2430000,2460000,2500000,2540000,2590000,2630000,2680000,2730000,2780000,2830000,2880000,2930000,2980000,3030000,3080000,3130000,3180000,3230000,3290000,3340000,3400000,3460000,3520000,3580000,3640000,3710000,3780000,3850000,3920000,3990000,4070000.0000000005,4150000.0000000005,4220000,4300000,4370000,4450000,4520000,4590000,4660000,4730000,4800000,4890000,4970000,5070000,5170000,5280000,5400000,5530000,5670000,5820000,5980000,6140000,6350000,6620000,6830000,7050000,7260000,7470000,7680000,7840000,7990000,8170000,8340000,8450000,8580000,8770000,8960000,9140000,9330000,9550000,9780000,10000000,10300000,10500000,10800000,11100000,11300000,11600000,11900000,12200000,12600000,12900000,13200000,13500000,13900000,14200000,14500000,14900000,15200000,15600000,15900000,16300000,16600000.000000002,17000000,17300000,17700000,18000000,18400000,18800000,19100000,19500000,19800000,20200000,20500000,20900000,21300000,21600000,22000000,22300000,22700000,23000000,23400000,23700000,24100000,24400000,24700000,25100000,25400000,25700000,26000000,26300000,26700000,27000000,27300000,27600000,27800000,28100000,28400000,28700000,28900000,29200000,29500000,29700000,30000000,30200000,30400000,30600000,30900000,31100000,31300000,31500000,31700000,31800000,32000000,32200000.000000004,32400000,32500000,32700000.000000004,32799999.999999996,32900000,33100000,33200000.000000004,33299999.999999996,33400000,33500000,33600000,33700000,33800000,33900000,34000000,34100000,34100000,34200000 +Gambia,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,103000,104000,104000,104000,104000,105000,105000,105000,106000,106000,106000,106000,107000,107000,107000,108000,108000,108000,108000,109000,109000,109000,110000,110000,110000,111000,111000,111000,111000,112000,112000,113000,114000,114000,115000,116000,117000,117000,118000,119000,120000,121000,121000,122000,123000,124000,125000,125000,126000,127000,128000,129000,130000,132000,133000,134000,135000,137000,138000,139000,141000,142000,143000,145000,146000,148000,149000,150000,152000,153000,155000,156000,157000,158000,160000,161000,162000,163000,165000,166000,167000,168000,170000,171000,172000,174000,175000,176000,177000,179000,180000,181000,183000,184000,185000,186000,187000,189000,190000,191000,193000,195000,198000,201000,204000,207000,210000,213000,216000,220000,223000,226000,229000,232000,236000,239000,242000,246000,249000,253000,257000,261000,266000,270000,275000,280000,285000,290000,296000,301000,307000,315000,323000,331000,340000,349000,359000,368000,378000,389000,400000,411000,422000,434000,446000,459000,472000,485000,499000,514000,529000,544000,561000,577000,595000,613000,632000,652000,673000,695000,719000,743000,768000,796000,825000,856000,889000,924000,961000,1000000,1040000,1080000,1130000,1170000,1210000,1240000,1280000,1320000,1360000,1400000,1440000,1480000,1520000,1570000,1610000,1660000,1710000,1760000,1820000,1880000,1940000,2000000,2060000,2120000,2190000,2250000,2320000,2380000,2440000,2510000,2570000,2640000,2710000,2770000,2840000,2910000,2980000,3050000,3120000,3190000,3260000,3340000,3410000,3480000,3550000,3620000,3700000,3770000,3840000,3910000,3980000,4059999.9999999995,4130000,4200000,4270000,4340000,4410000,4470000,4540000,4610000,4670000,4740000,4800000,4870000,4930000,4990000,5060000,5120000,5180000,5240000,5300000,5350000,5410000,5470000,5520000,5570000,5630000,5680000,5730000,5780000,5830000,5870000,5920000,5960000,6010000,6050000,6090000,6130000,6170000,6200000,6240000,6270000,6310000,6340000,6370000,6400000,6420000,6450000,6470000,6500000,6520000,6540000,6560000,6580000,6590000,6610000,6620000,6640000,6650000,6660000,6670000 +Guinea-Bissau,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,218000,217000,217000,217000,217000,216000,216000,216000,216000,215000,215000,215000,215000,214000,214000,214000,214000,213000,213000,213000,213000,212000,212000,212000,212000,211000,211000,211000,211000,212000,212000,213000,214000,215000,216000,217000,218000,219000,220000,221000,222000,223000,224000,225000,226000,228000,229000,230000,232000,233000,235000,237000,239000,241000,243000,245000,247000,249000,251000,253000,255000,257000,259000,261000,263000,266000,268000,270000,272000,274000,277000,279000,281000,283000,286000,288000,290000,293000,295000,298000,300000,302000,305000,307000,310000,312000,315000,318000,320000,322000,325000,327000,329000,332000,334000,337000,339000,341000,344000,348000,353000,358000,364000,369000,375000,380000,386000,392000,397000,403000,409000,415000,420000,426000,432000,438000,444000,451000,458000,466000,474000,482000,491000,500000,509000,518000,527000,536000,543000,549000,554000,557000,561000,564000,567000,570000,572000,575000,578000,583000,590000,596000,590000,578000,570000,573000,583000,588000,592000,595000,596000,603000,624000,660000,701000,747000,794000,822000,831000,845000,859000,872000,886000,900000,914000,928000,943000,958000,974000,994000,1020000,1060000,1090000,1120000,1140000,1160000,1180000,1210000,1230000,1260000,1290000,1320000,1350000,1380000,1410000,1450000,1490000,1530000,1570000,1610000,1650000,1700000,1740000,1790000,1830000,1880000,1920000,1970000,2020000,2060000,2110000,2150000,2200000,2240000,2290000,2340000,2390000,2440000,2480000,2530000,2580000,2630000,2680000,2730000,2780000,2830000,2880000,2930000,2980000,3020000,3070000,3120000,3170000,3220000,3260000,3310000,3360000,3400000,3450000,3490000,3530000,3580000,3620000,3660000,3700000,3740000,3780000,3820000,3860000,3900000,3930000,3970000,4010000,4040000,4080000,4110000.0000000005,4139999.9999999995,4179999.9999999995,4210000,4240000,4270000,4300000,4330000,4350000,4380000,4410000,4430000,4460000,4480000,4500000,4520000,4540000,4560000,4580000,4600000,4620000,4630000,4650000,4660000,4670000,4690000,4700000,4710000,4720000,4730000,4740000,4750000,4760000,4770000 +Equatorial Guinea,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80400,80500,80900,81300,82000,82800,83700,84500,85300,86200,87000,87900,88800,89700,90600,91500,92400,93300,94300,95200,96200,97100,98100,99100,100000,101000,102000,103000,104000,105000,106000,107000,108000,109000,110000,110000,111000,112000,113000,113000,114000,115000,115000,116000,117000,118000,118000,119000,120000,121000,121000,122000,123000,124000,125000,126000,127000,127000,128000,129000,130000,131000,132000,133000,134000,135000,136000,137000,138000,139000,140000,141000,141000,141000,141000,140000,139000,139000,138000,138000,137000,136000,135000,134000,133000,132000,130000,129000,128000,127000,125000,124000,123000,122000,122000,121000,120000,120000,119000,118000,117000,117000,117000,118000,119000,121000,122000,124000,125000,127000,129000,130000,132000,134000,135000,137000,139000,140000,142000,144000,145000,148000,152000,157000,163000,170000,178000,186000,194000,203000,212000,220000,226000,230000,234000,238000,242000,246000,250000,254000,258000,263000,267000,272000,277000,283000,289000,295000,302000,308000,315000,319000,317000,312000,305000,298000,291000,283000,276000,271000,271000,274000,283000,297000,316000,337000,358000,378000,397000,415000,432000,448000,466000,483000,501000,520000,540000,561000,583000,606000,630000,655000,685000,719000,754000,790000,826000,865000,905000,949000,995000,1040000,1090000,1140000,1190000,1240000,1300000,1350000,1400000,1450000,1500000,1550000,1600000,1630000,1670000,1710000,1750000,1800000,1840000,1880000,1920000,1960000,2000000,2040000,2080000,2120000,2160000,2200000,2250000,2290000,2330000,2370000,2410000,2450000,2490000,2530000,2560000,2600000,2640000,2680000,2720000,2750000,2790000,2830000,2860000,2900000,2930000,2960000,3000000,3030000,3060000,3090000,3120000,3150000,3180000,3210000,3240000,3270000,3300000,3320000,3350000,3370000,3400000,3420000,3450000,3470000,3490000,3510000,3540000,3560000,3580000,3600000,3620000,3630000,3650000,3670000,3690000,3700000,3720000,3730000,3750000,3760000,3770000,3780000,3790000,3800000,3810000,3820000,3830000,3840000,3840000,3850000,3860000 +Greece,2250000,2250000,2260000,2260000,2260000,2270000,2270000,2270000,2270000,2280000,2280000,2280000,2290000,2290000,2290000,2300000,2300000,2300000,2310000,2310000,2320000,2340000,2350000,2380000,2400000,2420000,2440000,2470000,2490000,2510000,2530000,2560000,2580000,2600000,2630000,2650000,2680000,2700000,2730000,2750000,2780000,2800000,2830000,2850000,2880000,2910000,2930000,2960000,2990000,3020000,3040000,3070000,3100000,3130000,3160000,3190000,3220000,3250000,3280000,3310000,3340000,3370000,3400000,3440000,3470000,3500000,3530000,3570000,3600000,3630000,3670000,3710000,3740000,3780000,3820000,3860000,3900000,3940000,3980000,4030000.0000000005,4070000.0000000005,4110000.0000000005,4150000.0000000005,4200000,4240000,4280000,4330000,4370000,4420000,4460000,4510000,4560000,4600000,4650000,4700000,4750000,4800000,4850000,4900000,4950000,4990000,5030000,5070000,5110000,5140000,5180000,5220000,5250000,5290000,5330000,5370000,5410000,5440000,5480000,5520000,5560000,5600000,5640000,5680000,5720000,5770000,5830000,5880000,5950000,6010000,6080000,6140000,6210000,6280000,6350000,6430000,6510000,6590000,6680000,6780000,6870000,6960000,7060000,7160000,7240000,7310000,7370000,7410000,7440000,7470000,7500000,7530000,7550000,7580000,7620000,7670000,7770000,7860000,7960000,8050000.000000001,8150000,8230000,8310000.000000001,8390000,8450000,8500000,8530000,8540000,8540000,8530000,8530000,8520000,8520000,8520000,8530000,8540000,8580000,8620000,8670000,8730000,8810000,8890000,8980000,9080000,9190000,9310000,9420000,9530000,9640000,9740000,9840000,9940000,10000000,10100000,10200000,10300000,10400000,10500000,10600000,10600000,10700000,10800000,10900000,10900000,11000000,11000000,11100000,11100000,11100000,11100000,11100000,11100000,11100000,11100000,11100000,11000000,11000000,11000000,10900000,10900000,10800000,10700000,10700000,10600000,10600000,10500000,10400000,10400000,10300000,10300000,10300000,10200000,10200000,10100000,10100000,10100000,10000000,9980000,9940000,9890000,9850000,9810000,9770000,9730000,9680000,9640000,9600000,9550000,9500000,9460000,9410000,9360000,9310000,9250000,9200000,9140000,9090000,9030000,8970000,8900000,8840000,8780000,8710000,8640000,8570000,8510000,8440000,8369999.999999999,8300000.000000001,8230000,8160000,8100000,8029999.999999999,7960000,7900000,7840000,7770000,7710000,7650000,7600000,7540000,7490000,7430000,7380000,7330000,7280000,7230000,7190000,7140000,7100000,7050000,7010000,6960000,6920000,6870000,6830000,6790000,6740000,6700000,6650000,6610000,6560000,6520000,6470000,6430000,6380000 +Grenada,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29400,29500,29500,29600,29800,29900,30000,30100,30200,30300,30400,30600,30700,30800,30900,31000,31200,31300,31400,31500,31600,31800,31900,32000,32100,32200.000000000004,32400,32500,32600,32700.000000000004,32800,32900,32900,32800,32700.000000000004,32600,32500,32400,32299.999999999996,32200.000000000004,32200.000000000004,32400,32700.000000000004,33100,33700,34300,34800,35400,36100,36700,37300,37800,38300,38700,39100,39500,39900,40300,40700,41100,41600,42300,43000,43900,45000,46000,47100,48200,49300,50500,51600,52700,53700,54700,55700,56600,57600,58600,59600,60700,61600,62400,63000,63500,63900,64300,64700,65099.99999999999,65500,65900,66200,66400,66500,66500,66400,66300,66200,66100,66000,65900,66000,66500,67100,68100,69300,70600,71900,73200,74500,75900,77200,78400,79600,80700,81800,82800,83900,85000,86100,87300,87900,88000,87500,86600,85100,83600,82200,80800,79400,78100,77300,77000,77400,78400,79600,81000,82700,84600,86800,89200,91700,93800,95100,96100,96900,97600,98200,98700,99000,99100,99000,98800,98500,98200,97900,97500,97200,96800,96300,95800,95200,94800,95200,96500,98200,99600,101000,101000,101000,99900,99200,99000,99800,101000,102000,103000,104000,105000,106000,106000,107000,107000,108000,108000,109000,110000,110000,111000,112000,112000,113000,114000,115000,116000,117000,118000,119000,120000,121000,122000,123000,124000,125000,125000,126000,127000,128000,128000,129000,129000,130000,130000,131000,131000,132000,132000,132000,133000,133000,134000,134000,134000,135000,135000,135000,135000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,136000,135000,135000,135000,135000,134000,134000,134000,133000,133000,132000,132000,131000,131000,130000,130000,129000,129000,128000,127000,127000,126000,126000,125000,124000,124000,123000,123000,122000,121000,121000,120000,119000,119000,118000,118000,117000,116000,116000 +Guatemala,463000,469000,475000,481000,488000,494000,500000,507000,514000,520000,529000,536000,543000,550000,557000,564000,571000,578000,585000,593000,600000,603000,605000,611000,616000,621000,626000,632000,637000,643000,648000,654000,659000,665000,671000,676000,682000,688000,694000,701000,710000,721000,733000,747000,761000,775000,789000,804000,819000,834000,847000,860000,872000,883000,894000,905000,917000,928000,940000,952000,964000,976000,989000,1000000,1010000,1030000,1040000,1050000,1070000,1080000,1090000,1110000,1120000,1140000,1150000,1170000,1180000,1200000,1220000,1230000,1250000,1260000,1280000,1290000,1310000,1320000,1340000,1350000,1370000,1380000,1380000,1390000,1390000,1380000,1370000,1370000,1360000,1360000,1350000,1350000,1350000,1360000,1370000,1390000,1400000,1420000,1430000,1450000,1460000,1480000,1490000,1510000,1530000,1540000,1560000,1580000,1600000,1610000,1630000,1650000,1660000,1680000,1700000,1720000,1730000,1750000,1770000,1790000,1810000,1830000,1860000,1890000,1930000,1970000,2009999.9999999998,2060000,2100000,2150000,2200000,2250000,2300000,2370000,2440000,2510000,2590000,2660000,2750000,2830000,2920000,3010000,3100000,3190000,3280000,3370000,3460000,3560000,3660000,3760000,3870000,3980000,4099999.9999999995,4220000,4350000,4480000,4610000,4740000,4880000,5020000,5160000,5310000,5450000,5600000,5740000,5900000,6050000,6200000,6340000,6490000,6650000,6810000,6990000,7170000,7330000,7510000,7720000,7930000,8150000,8369999.999999999,8600000,8840000,9080000,9330000,9580000,9830000,10100000,10400000,10600000,10900000,11200000,11500000,11700000,12000000,12300000,12600000,12900000,13100000,13400000,13700000,14000000,14300000,14500000,14800000,15100000,15400000,15700000,16000000,16300000,16600000.000000002,16900000,17100000,17400000,17600000,17800000,18100000,18400000,18600000,18900000,19200000,19500000,19700000,20000000,20300000,20500000,20800000,21100000,21300000,21600000,21800000,22100000,22300000,22600000,22800000,23000000,23200000,23400000,23600000,23800000,24000000,24200000,24400000,24600000,24800000,24900000,25100000,25300000,25400000,25600000,25700000,25900000,26000000,26100000,26200000,26300000,26500000,26600000,26600000,26700000,26800000,26900000,27000000,27000000,27100000,27100000,27200000,27200000,27200000,27200000,27200000,27300000,27300000,27200000,27200000,27200000,27200000,27200000,27100000,27100000,27100000,27000000,27000000,26900000,26900000,26800000,26700000,26700000,26600000,26500000,26400000,26300000,26300000,26200000 +Guyana,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,165000,163000,161000,158000,154000,150000,146000,142000,138000,135000,131000,128000,124000,121000,118000,115000,112000,109000,106000,103000,102000,101000,102000,103000,106000,109000,112000,115000,118000,121000,124000,127000,130000,132000,134000,135000,137000,139000,141000,143000,146000,148000,152000,155000,159000,164000,168000,172000,177000,182000,187000,191000,197000,202000,207000,213000,218000,224000,230000,236000,242000,246000,250000,253000,256000,258000,261000,263000,266000,268000,271000,273000,276000,278000,281000,283000,286000,289000,291000,294000,296000,298000,298000,299000,298000,298000,298000,297000,297000,297000,296000,296000,296000,296000,296000,296000,295000,295000,295000,295000,295000,296000,296000,296000,297000,298000,299000,299000,300000,301000,302000,304000,306000,309000,312000,315000,319000,322000,326000,330000,334000,339000,345000,351000,359000,367000,374000,382000,390000,399000,408000,418000,428000,440000,453000,468000,483000,500000,517000,536000,554000,572000,589000,605000,621000,636000,650000,663000,675000,686000,696000,705000,714000,722000,730000,738000,746000,754000,761000,769000,774000,778000,780000,780000,778000,776000,773000,769000,764000,758000,753000,747000,744000,745000,747000,750000,752000,754000,755000,757000,758000,759000,760000,760000,761000,760000,760000,758000,757000,754000,751000,748000,744000,744000,747000,751000,755000,759000,763000,786000,799000,797000,805000,809000,814000,820000,825000,830000,835000,840000,844000,848000,852000,855000,858000,861000,864000,866000,868000,870000,872000,874000,875000,876000,877000,878000,879000,879000,879000,879000,879000,879000,878000,877000,877000,875000,874000,872000,871000,869000,866000,864000,861000,859000,856000,852000,849000,845000,842000,838000,834000,829000,825000,820000,815000,810000,805000,800000,795000,789000,783000,777000,771000,765000,758000,752000,745000,738000,731000,724000,717000,710000,703000,695000,688000,680000,672000,665000,657000,649000,641000,633000 +"Hong Kong, China",20000,20000,20000,20000,20000,20000,20000,20000,20000,20000,20000,20000,20000,20100,20200,20200,20300,20500,20600,20800,20900,21100,21300,21600,21800,22100,22400,22700,23000,23400,23800,24200,24600,25000,25400,25800,26300,26700,27100,27600,28100,28600,29300,30000,30900,31900,33000,34200,35600,37200,38900,40800,42900,45300,47800,50600,53700,57000,60700,64700,69000,73500,78000,82600,87300,92000,96800,102000,106000,111000,116000,124000,129000,134000,138000,142000,147000,151000,155000,159000,164000,168000,173000,178000,183000,188000,194000,200000,206000,212000,219000,226000,234000,242000,251000,260000,269000,279000,289000,300000,311000,322000,334000,346000,359000,372000,386000,400000,414000,430000,446000,459000,476000,494000,513000,535000,557000,581000,605000,630000,640000,645000,652000,676000,705000,719000,729000,739000,764000,796000,826000,865000,899000,934000,956000,978000,1090000,1270000,1520000,1690000,1750000,1700000,1640000,1620000,1610000,1590000,1640000,1720000,1830000,1900000,1980000,2080000,2170000,2280000,2380000,2490000,2610000,2730000,2860000,2990000,3110000,3230000,3330000,3420000,3510000,3600000,3680000,3760000,3830000,3900000,3960000,4030000.0000000005,4130000,4230000,4340000,4450000,4560000,4660000,4770000,4870000,4980000,5080000,5170000,5250000,5330000,5410000,5490000,5580000,5670000,5750000,5840000,5920000,6010000,6090000,6170000,6240000,6330000,6440000,6550000,6640000,6730000,6800000,6850000,6890000,6920000,6940000,6960000,7000000,7050000,7090000,7130000,7180000,7230000,7300000,7350000,7400000,7440000,7460000,7480000,7500000,7500000,7490000,7490000,7490000,7500000,7500000,7500000,7500000,7500000,7490000,7490000,7480000,7470000,7450000,7440000,7420000,7400000,7380000,7360000,7330000,7310000,7280000,7250000,7220000,7190000,7160000,7120000,7090000,7050000,7010000,6980000,6930000,6890000,6850000,6800000,6750000,6710000,6660000,6610000,6550000,6500000,6450000,6400000,6340000,6290000,6240000,6190000,6130000,6080000,6030000,5980000,5930000,5880000,5830000,5780000,5730000,5680000,5640000,5590000,5540000,5500000,5450000,5410000,5370000,5330000,5290000,5250000,5210000,5170000,5140000,5110000,5080000,5040000,5020000,4990000,4960000,4940000,4910000,4890000,4870000,4850000 +Honduras,130000,130000,130000,131000,131000,131000,131000,132000,132000,132000,132000,133000,133000,133000,133000,134000,134000,134000,134000,136000,137000,140000,144000,149000,153000,158000,164000,169000,174000,180000,186000,192000,198000,204000,211000,218000,225000,232000,239000,247000,255000,263000,272000,281000,290000,299000,309000,319000,329000,338000,345000,351000,356000,359000,362000,365000,368000,371000,374000,377000,381000,384000,387000,390000,394000,397000,400000,404000,407000,408000,405000,401000,393000,383000,373000,363000,354000,345000,336000,330000,329000,331000,336000,346000,355000,365000,375000,386000,396000,407000,418000,428000,439000,450000,460000,471000,483000,494000,506000,518000,530000,543000,555000,568000,581000,594000,607000,621000,635000,649000,662000,674000,686000,698000,709000,721000,732000,744000,756000,769000,785000,803000,824000,847000,871000,895000,920000,946000,973000,998000,1020000,1050000,1070000,1090000,1110000,1130000,1150000,1180000,1200000,1220000,1250000,1270000,1300000,1330000,1360000,1390000,1420000,1450000,1480000,1520000,1560000,1600000,1650000,1700000,1750000,1800000,1850000,1900000,1960000,2020000,2080000,2140000,2200000,2270000,2330000,2400000,2470000,2550000,2620000,2700000,2780000,2870000,2960000,3050000,3140000,3230000,3330000,3440000,3550000,3660000,3780000,3900000,4019999.9999999995,4139999.9999999995,4260000,4390000,4520000,4650000,4780000,4910000,5050000,5200000,5340000,5500000,5650000,5810000,5980000,6140000,6310000,6480000,6660000,6840000,7020000,7200000,7380000,7560000,7750000,7920000,8100000,8279999.999999999,8450000,8620000,8790000,8960000,9130000,9290000,9460000,9630000,9790000,9960000,10100000,10300000,10400000,10600000,10800000,10900000,11100000,11200000,11400000,11600000,11700000,11900000,12000000,12200000,12300000,12500000,12600000,12700000,12900000,13000000,13100000,13300000,13400000,13500000,13600000,13700000,13800000,14000000,14100000,14200000,14300000,14400000,14400000,14500000,14600000,14700000,14800000,14900000,14900000,15000000,15100000,15100000,15200000,15200000,15300000,15300000,15400000,15400000,15400000,15500000,15500000,15500000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15600000,15500000,15500000,15500000,15500000,15400000,15400000,15400000,15400000,15300000,15300000,15300000,15200000,15200000,15200000 +Holy See,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,905,899,892,887,890,897,904,909,911,910,908,906,904,900,893,877,851,813,766,718,678,655,651,663,685,708,726,734,736,733,729,727,728,732,736,742,747,752,757,762,766,769,772,773,774,777,783,792,803,809,803,779,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +Croatia,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1230000,1240000,1250000,1260000,1270000,1280000,1290000,1310000,1320000,1330000,1340000,1350000,1360000,1380000,1390000,1400000,1410000,1430000,1440000,1450000,1460000,1480000,1490000,1500000,1520000,1530000,1540000,1560000,1570000,1580000,1600000,1610000,1630000,1640000,1660000,1670000,1680000,1700000,1720000,1730000,1750000,1760000,1780000,1790000,1810000,1830000,1840000,1860000,1870000,1890000,1910000,1930000,1940000,1960000,1980000,2000000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2069999.9999999998,2089999.9999999998,2110000,2120000,2140000,2160000,2180000,2200000,2220000,2240000,2260000,2280000,2300000,2320000,2340000,2360000,2380000,2410000,2430000,2450000,2470000,2490000,2520000,2540000,2560000,2580000,2610000,2630000,2650000,2680000,2700000,2730000,2750000,2770000,2800000,2820000,2850000,2870000,2900000,2930000,2950000,2980000,3000000,3030000,3060000,3080000,3110000,3140000,3170000,3190000,3220000,3250000,3280000,3310000,3340000,3370000,3400000,3430000,3460000,3490000,3520000,3550000,3580000,3610000,3640000,3670000,3710000,3740000,3770000,3810000,3840000,3860000,3900000,3940000,3970000,4010000,4050000,4090000,4120000,4150000.0000000005,4179999.9999999995,4220000,4250000,4280000,4310000,4340000,4370000,4400000,4430000,4450000,4470000,4490000,4510000,4530000,4540000,4560000,4580000,4600000,4620000,4640000,4660000,4680000,4700000,4730000,4750000,4780000,4800000,4830000,4850000,4870000,4870000,4870000,4840000,4800000,4790000,4820000,4810000,4760000,4710000,4660000,4610000,4550000,4510000,4480000,4460000,4440000,4430000,4420000,4410000,4390000,4380000,4370000,4350000,4330000,4310000,4280000,4250000,4220000,4190000.0000000005,4160000,4130000,4099999.9999999995,4059999.9999999995,4030000.0000000005,4010000,3990000,3960000,3940000,3920000,3900000,3870000,3850000,3830000,3800000,3780000,3750000,3730000,3700000,3680000,3650000,3630000,3600000,3570000,3550000,3520000,3490000,3470000,3440000,3410000,3390000,3360000,3330000,3310000,3280000,3250000,3230000,3200000,3170000,3150000,3120000,3090000,3070000,3040000,3010000,2990000,2960000,2930000,2910000,2880000,2850000,2830000,2800000,2770000,2750000,2720000,2700000,2670000,2640000,2620000,2590000,2570000,2540000,2520000,2500000,2470000,2450000,2430000,2400000,2380000,2360000,2340000,2320000,2300000,2270000,2250000,2230000,2210000,2190000,2170000,2150000,2130000,2110000 +Haiti,500000,509000,519000,528000,538000,548000,558000,569000,579000,590000,601000,613000,624000,636000,647000,660000,672000,684000,697000,709000,719000,728000,736000,742000,749000,755000,762000,768000,775000,782000,789000,795000,802000,809000,816000,824000,831000,838000,845000,853000,860000,868000,875000,883000,890000,898000,906000,914000,922000,930000,939000,949000,959000,969000,980000,990000,1000000,1010000,1020000,1030000,1050000,1060000,1070000,1080000,1090000,1100000,1120000,1130000,1140000,1150000,1170000,1180000,1190000,1200000,1220000,1230000,1240000,1260000,1270000,1280000,1300000,1310000,1330000,1340000,1360000,1370000,1390000,1400000,1420000,1430000,1450000,1460000,1480000,1490000,1510000,1530000,1540000,1560000,1580000,1600000,1620000,1640000,1660000,1690000,1720000,1740000,1770000,1800000,1820000,1850000,1880000,1910000,1950000,1980000,2009999.9999999998,2049999.9999999998,2080000,2120000,2150000,2180000,2220000,2250000,2280000,2310000,2340000,2370000,2400000,2430000,2470000,2500000,2530000,2560000,2600000,2630000,2660000,2700000,2730000,2770000,2800000,2840000,2870000,2910000,2940000,2980000,3010000,3050000,3090000,3120000,3160000,3200000,3250000,3300000,3360000,3420000,3480000,3550000,3610000,3680000,3750000,3830000,3900000,3970000,4050000,4120000,4200000,4270000,4350000,4430000,4510000,4600000,4680000,4770000,4850000,4940000,5030000,5120000,5220000,5320000,5430000,5540000,5650000,5760000,5880000,6000000,6120000,6250000,6380000,6510000,6640000,6780000,6930000,7070000,7210000,7350000,7490000,7630000,7770000,7920000,8060000.000000001,8210000.000000001,8359999.999999999,8510000,8660000,8810000,8960000,9110000,9270000,9420000,9580000,9730000,9840000,9950000,10100000,10300000,10400000,10600000,10700000,10900000,11000000,11200000,11300000,11400000,11600000,11700000,11900000,12000000,12200000,12300000,12400000,12600000,12700000,12800000,13000000,13100000,13200000,13400000,13500000,13600000,13700000,13900000,14000000,14100000,14200000,14300000,14500000,14600000,14700000,14800000,14900000,15000000,15100000,15200000,15300000,15400000,15400000,15500000,15600000,15700000,15700000,15800000,15900000,15900000,16000000,16000000,16100000.000000002,16100000.000000002,16200000,16200000,16200000,16300000,16300000,16300000,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16399999.999999998,16300000,16300000,16300000,16300000,16200000,16200000,16200000,16100000.000000002,16100000.000000002 +Hungary,3250000,3290000,3330000,3370000,3410000,3450000,3500000,3540000,3580000,3630000,3670000,3720000,3760000,3810000,3850000,3900000,3950000,4000000,4050000,4090000,4130000,4170000,4210000,4240000,4270000,4300000,4330000,4360000,4400000,4430000,4460000,4490000,4530000,4560000,4590000,4630000,4660000,4690000,4730000,4760000,4800000,4830000,4870000,4900000,4940000,4980000,5010000,5050000,5090000,5120000,5160000,5200000,5230000,5270000,5300000,5340000,5380000,5410000,5450000,5490000,5520000,5560000,5600000,5640000,5680000,5710000,5750000,5790000,5830000,5870000,5910000,5940000,5980000,6010000,6040000,6080000,6110000,6150000,6180000,6210000,6250000,6280000,6320000,6350000,6390000,6430000,6460000,6500000,6530000,6570000,6610000,6660000,6700000,6750000,6800000,6850000,6900000,6950000,7000000,7060000,7110000,7160000,7210000,7260000,7310000,7360000,7410000,7460000,7510000,7560000,7600000,7640000,7680000,7710000,7740000,7770000,7800000,7830000,7860000,7900000,7940000,8000000,8060000.000000001,8119999.999999999,8189999.999999999,8260000,8330000,8400000,8470000,8540000,8610000,8680000,8740000,8800000,8870000,8930000,8990000,9060000,9120000,9180000,9220000,9250000,9260000,9270000,9270000,9280000,9280000,9290000,9290000,9310000,9340000,9420000,9500000,9590000,9700000,9820000,9850000,9840000,9880000,9940000,9980000,10000000,10100000,10100000,10100000,10100000,10200000,10200000,10200000,10300000,10300000,10300000,10400000,10400000,10500000,10500000,10600000,10600000,10700000,10700000,10700000,10700000,10700000,10600000,10600000,10500000,10500000,10500000,10400000,10400000,10400000,10400000,10400000,10400000,10300000,10300000,10300000,10300000,10300000,10200000,10200000,10200000,10100000,10100000,10100000,10100000,10100000,10000000,10000000,10000000,9990000,9950000,9920000,9890000,9870000,9840000,9820000,9790000,9780000,9770000,9750000,9710000,9970000,10200000,9990000,9870000,9790000,9740000,9710000,9680000,9640000,9610000,9570000,9540000,9500000,9460000,9420000,9380000,9330000,9290000,9250000,9200000,9160000,9110000,9070000,9030000,8980000,8940000,8900000,8860000,8820000,8780000,8740000,8700000,8660000,8620000,8580000,8540000,8500000,8460000,8420000,8369999.999999999,8330000,8289999.999999999,8240000,8189999.999999999,8150000,8100000,8050000.000000001,8010000,7960000,7920000,7870000,7830000,7780000,7740000,7700000,7660000,7620000,7580000,7540000,7500000,7470000,7430000,7400000,7360000,7330000,7300000,7260000,7230000,7200000,7170000,7140000,7110000,7090000,7060000,7030000,7010000,6980000,6950000,6930000 +Indonesia,16100000.000000002,16200000,16200000,16200000,16300000,16300000,16399999.999999998,16399999.999999998,16399999.999999998,16500000,16500000,16600000.000000002,16600000.000000002,16700000,16800000,16800000,16900000,17000000,17100000,17100000,17200000,17300000,17400000,17500000,17700000,17800000,17900000,18000000,18200000,18300000,18500000,18600000,18800000,18900000,19100000,19200000,19400000,19600000,19700000,19900000,20100000,20200000,20400000,20600000,20800000,21000000,21100000,21300000,21600000,21800000,22000000,22200000,22400000,22600000,22800000,23000000,23300000,23500000,23700000,24000000,24200000,24500000,24800000,25000000,25300000,25600000,25900000,26200000,26500000,26800000,27100000,27400000,27700000,28000000,28300000,28600000,29000000,29300000,29500000,29800000,30100000,30400000,30800000,31100000,31500000,31900000,32200000.000000004,32600000,33000000,33400000,33800000,34100000,34500000,34900000,35400000,35800000,36300000,36700000,37200000,37700000,38200000,38700000,39200000,39600000,40100000,40600000,41000000,41500000,41900000,42400000,42800000,43300000,43700000,44200000,44600000,45100000,45500000,45800000,46200000,46700000,47300000,47900000,48500000,49000000,49600000,50200000,50800000,51500000,52100000,52700000,53400000,54200000,55000000,55800000,56600000,57400000,58300000,59100000,60000000,60900000,61800000,62800000,63700000,64400000.00000001,64700000,64900000.00000001,65400000.00000001,66200000,67300000,68400000,69600000,71000000,72600000,74200000,75900000,77700000,79700000,81700000,83800000,86000000,88400000,90800000,93300000,96000000,98700000,101000000,104000000,106000000,109000000,112000000,115000000,118000000,122000000,125000000,128000000,131000000,135000000,138000000,141000000,145000000,148000000,152000000,155000000,159000000,162000000,166000000,169000000,172000000,176000000,179000000,182000000,185000000,189000000,192000000,195000000,198000000,201000000,205000000,208000000,211000000,214000000,217000000,220000000,223000000,226000000,229000000,232000000,235000000,238000000,241000000,244000000,247000000,250000000,253000000,256000000,259000000,262000000,264000000,267000000,270000000,272000000,274000000,276000000,278000000,280000000,282000000,284000000,286000000,288000000,290000000,292000000,294000000,296000000,298000000,299000000,301000000,302000000,304000000,305000000,307000000,308000000,309000000,311000000,312000000,313000000,314000000,315000000,315000000,316000000,317000000,317000000,318000000,318000000,318000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,319000000,318000000,318000000,318000000,317000000,317000000,317000000,316000000,316000000,315000000,315000000,314000000,314000000,313000000,313000000,312000000,311000000,311000000,310000000,309000000,308000000,308000000,307000000,306000000,305000000,304000000,303000000,302000000,301000000,301000000,300000000,299000000,298000000,297000000 +India,201000000,201000000,202000000,202000000,202000000,203000000,203000000,204000000,204000000,204000000,205000000,205000000,206000000,206000000,207000000,207000000,208000000,208000000,209000000,209000000,210000000,210000000,211000000,212000000,212000000,213000000,214000000,215000000,216000000,217000000,218000000,218000000,219000000,220000000,221000000,222000000,223000000,224000000,225000000,226000000,227000000,227000000,228000000,229000000,230000000,231000000,232000000,233000000,234000000,235000000,236000000,237000000,237000000,238000000,239000000,240000000,240000000,241000000,242000000,243000000,243000000,244000000,245000000,246000000,247000000,247000000,248000000,249000000,250000000,251000000,251000000,252000000,252000000,252000000,253000000,253000000,253000000,254000000,254000000,255000000,256000000,257000000,259000000,261000000,263000000,265000000,267000000,270000000,272000000,274000000,275000000,276000000,277000000,277000000,278000000,278000000,278000000,279000000,279000000,280000000,281000000,282000000,283000000,285000000,286000000,288000000,290000000,291000000,293000000,294000000,295000000,296000000,297000000,297000000,297000000,298000000,298000000,298000000,298000000,299000000,301000000,303000000,305000000,308000000,311000000,314000000,317000000,320000000,323000000,326000000,330000000,334000000,339000000,343000000,348000000,353000000,358000000,363000000,368000000,372000000,374000000,374000000,373000000,370000000,367000000,365000000,362000000,359000000,357000000,356000000,357000000,365000000,373000000,381000000,390000000,399000000,408000000,417000000,426000000,436000000,446000000,456000000,467000000,478000000,489000000,500000000,511000000,522000000,533000000,545000000,558000000,570000000,583000000,596000000,610000000,624000000,637000000,652000000,666000000,681000000,697000000,713000000,729000000,746000000,763000000,780000000,798000000,816000000,834000000,852000000,870000000,889000000,908000000,926000000,945000000,964000000,983000000,1000000000,1020000000,1040000000,1060000000,1080000000,1100000000,1120000000,1140000000,1150000000,1170000000,1190000000,1210000000,1220000000,1240000000,1260000000,1270000000,1290000000,1310000000,1320000000,1340000000,1350000000,1370000000,1380000000,1400000000,1410000000,1420000000,1430000000,1440000000,1450000000,1470000000,1480000000,1490000000,1500000000,1510000000,1530000000,1540000000,1550000000,1560000000,1570000000,1580000000,1590000000,1600000000,1600000000,1610000000,1620000000,1630000000,1630000000,1640000000,1650000000,1650000000,1660000000,1660000000,1670000000,1670000000,1670000000,1680000000,1680000000,1680000000,1690000000,1690000000,1690000000,1690000000,1690000000,1700000000,1700000000,1700000000,1700000000,1700000000,1700000000,1700000000,1690000000,1690000000,1690000000,1690000000,1690000000,1690000000,1680000000,1680000000,1680000000,1670000000,1670000000,1660000000,1660000000,1650000000,1650000000,1640000000,1640000000,1630000000,1630000000,1620000000,1620000000,1610000000,1600000000,1600000000,1590000000,1580000000,1580000000,1570000000,1560000000,1560000000,1550000000,1540000000,1540000000,1530000000 +Ireland,5250000,5330000,5410000,5490000,5580000,5660000,5750000,5840000,5920000,6010000,6110000,6200000,6290000,6390000,6490000,6590000,6690000,6790000,6890000,6990000,7080000,7160000,7240000,7310000,7380000,7460000,7530000,7600000,7680000,7750000,7810000,7870000,7930000,7980000,8029999.999999999,8080000,8140000.000000001,8189999.999999999,8240000,8250000,8220000.000000001,8150000,8029999.999999999,7880000,7730000,7580000,7440000,7290000,7150000,7020000,6890000,6770000,6650000,6540000,6430000,6320000,6220000,6110000,6010000,5920000,5840000,5780000,5720000,5680000,5640000,5600000,5550000,5510000,5470000,5440000,5400000,5370000,5350000,5320000,5300000,5280000,5260000,5230000,5210000,5180000,5150000,5110000,5060000,5010000,4960000,4910000,4860000,4820000,4770000,4720000,4680000,4650000,4620000,4590000,4570000,4540000,4520000,4490000,4470000,4440000,4420000,4410000,4400000,4390000,4380000,4370000,4360000,4350000,4340000,4330000,4320000,4320000,4310000,4310000,4310000,4300000,4300000,4300000,4290000,4260000,4190000.0000000005,4090000,3970000,3810000,3660000,3520000,3380000,3250000,3120000,3020000,2950000,2910000,2890000,2890000,2890000,2890000,2900000,2900000,2900000,2910000,2910000,2910000,2910000,2910000,2910000,2910000,2910000,2910000,2910000,2910000,2910000,2920000,2930000,2920000,2900000,2890000,2870000,2850000,2840000,2820000,2810000,2810000,2810000,2820000,2840000,2850000,2870000,2880000,2900000,2920000,2940000,2970000,3010000,3060000,3110000,3160000,3210000,3250000,3310000,3350000,3390000,3420000,3450000,3470000,3490000,3510000,3520000,3510000,3500000,3480000,3490000,3500000,3530000,3550000,3560000,3580000,3610000,3640000,3680000,3720000,3770000,3830000,3890000,3960000,4030000.0000000005,4120000,4230000,4360000,4450000,4500000,4520000,4540000,4560000,4590000,4620000,4670000,4720000,4770000,4830000,4900000,4950000,4990000,5020000,5060000,5090000,5120000,5150000,5180000,5210000,5240000,5270000,5290000,5320000,5350000,5380000,5400000,5430000,5460000,5480000,5510000,5530000,5560000,5580000,5600000,5620000,5640000,5660000,5680000,5700000,5710000,5720000,5740000,5750000,5760000,5770000,5770000,5780000,5780000,5790000,5790000,5790000,5790000,5790000,5790000,5790000,5790000,5790000,5780000,5780000,5780000,5770000,5770000,5770000,5770000,5770000,5760000,5760000,5760000,5760000,5760000,5760000,5760000,5760000,5760000,5770000,5770000,5770000,5770000,5770000,5770000,5770000,5760000,5760000,5760000,5760000,5750000,5750000,5740000,5740000,5730000,5720000 +Iran,6000000,6030000,6050000,6080000,6110000,6140000,6160000,6190000,6220000,6250000,6270000,6300000,6330000,6360000,6390000,6420000,6440000,6470000,6500000,6530000,6560000,6590000,6620000,6650000,6680000,6710000,6740000,6770000,6800000,6830000,6860000,6890000,6920000,6950000,6980000,7010000,7050000,7080000,7110000,7140000,7170000,7200000,7240000,7270000,7300000,7330000,7370000,7400000,7430000,7470000,7510000,7550000,7590000,7640000,7680000,7730000,7780000,7820000,7870000,7920000,7960000,8010000,8060000.000000001,8109999.999999999,8160000,8210000.000000001,8260000,8310000.000000001,8359999.999999999,8400000,8450000,8480000,8520000,8550000,8580000,8610000,8640000,8670000,8710000,8740000,8770000,8800000,8830000,8870000,8900000,8930000,8960000,8990000,9030000,9070000,9130000,9200000,9290000,9390000,9490000,9600000,9700000,9810000,9910000,10000000,10100000,10200000,10300000,10400000,10500000,10600000,10700000,10800000,10900000,11000000,11000000,10900000,10700000,10500000,10300000,10100000,9920000,9720000,9530000,9440000,9460000,9570000,9800000,10100000,10500000,10800000,11200000,11600000,12000000,12400000,12700000,13000000,13300000,13500000,13700000,14000000,14200000,14500000,14700000,15000000,15200000,15400000,15500000,15700000,15800000,15900000,16100000.000000002,16200000,16399999.999999998,16600000.000000002,16800000,17200000,17600000,18000000,18400000,18900000,19300000,19800000,20300000,20800000,21400000,22000000,22600000,23300000,23900000,24700000,25400000,26100000,26900000,27600000,28400000,29300000,30100000,31000000,31900000,32900000,33800000,34900000,36000000,37200000,38500000,40500000,42500000,44000000,45600000,47300000,48900000,50500000,52100000,53600000,55800000,58000000,59400000,59800000,60000000,60800000,61600000,62500000,63500000,64500000,65500000,66700000,67300000,68000000,69100000,70200000,71300000,72300000,73300000,74300000,75400000,76300000,77300000,78500000,80000000,81800000,83300000,84500000,85600000,86600000,87300000,87900000,88600000,89200000,89800000,90400000,91000000,91500000,92000000,92500000,92900000,93300000,93700000,94100000,94500000,94900000,95200000,95500000,95900000,96200000,96500000,96800000,97100000,97400000,97700000,98000000,98200000,98500000,98700000,98900000,99000000,99100000,99200000,99200000,99200000,99100000,99000000,98900000,98700000,98500000,98200000,97900000,97600000,97300000,96900000,96500000,96100000,95700000,95200000,94800000,94300000,93800000,93300000,92800000,92300000,91800000,91300000,90800000,90300000,89800000,89300000,88800000,88300000,87800000,87300000,86800000,86300000,85900000,85400000,84900000,84500000,84000000,83600000,83100000,82700000,82200000,81800000,81300000,80900000,80400000,79900000 +Iraq,1000000,1000000,1010000,1010000,1020000,1020000,1030000,1030000,1040000,1040000,1050000,1050000,1050000,1060000,1060000,1070000,1070000,1080000,1080000,1090000,1090000,1100000,1100000,1110000,1110000,1120000,1120000,1130000,1130000,1140000,1140000,1150000,1150000,1160000,1160000,1170000,1170000,1180000,1180000,1190000,1200000,1200000,1210000,1210000,1220000,1220000,1230000,1230000,1240000,1240000,1250000,1260000,1260000,1270000,1270000,1280000,1290000,1290000,1300000,1310000,1320000,1340000,1370000,1400000,1430000,1460000,1490000,1520000,1560000,1590000,1610000,1630000,1650000,1660000,1660000,1670000,1680000,1690000,1700000,1710000,1720000,1730000,1740000,1750000,1760000,1770000,1790000,1800000,1810000,1820000,1850000,1890000,1930000,1990000,2040000,2100000,2160000,2220000,2290000,2340000,2400000,2450000,2500000,2540000,2580000,2620000,2660000,2710000,2750000,2800000,2850000,2900000,2960000,3020000,3090000,3150000,3210000,3280000,3340000,3400000,3460000,3510000,3560000,3610000,3660000,3710000,3760000,3810000,3860000,3900000,3930000,3960000,3980000,3990000,4000000,4010000,4019999.9999999995,4030000.0000000005,4040000,4080000,4139999.9999999995,4230000,4350000,4500000,4650000,4800000,4970000,5140000,5310000,5480000,5660000,5780000,5930000,6090000,6250000,6410000,6550000,6680000,6800000,6930000,7080000,7260000,7480000,7740000,8000000,8270000,8550000,8850000,9160000,9480000,9810000,10200000,10500000,10900000,11200000,11600000,12000000,12400000,12800000,13200000,13700000,14100000,14500000,14900000,15400000,15800000,16100000.000000002,16600000.000000002,17000000,17400000,17700000,17800000,18400000,19300000,20200000,20900000,21600000,22300000,23100000,23800000,24600000,25400000,26300000,27100000,27900000,28700000,28900000,28700000,29200000,30300000,31300000,32400000,33900000,35500000,36700000,37800000,38700000,39600000,40600000,41600000,42600000,43500000,44500000,45500000,46500000,47500000,48600000,49600000,50700000,51700000,52800000,53900000,55000000,56100000,57200000,58300000,59400000,60500000,61600000,62700000,63800000,64900000.00000001,66000000,67099999.99999999,68200000,69200000,70300000,71400000,72400000,73500000,74500000,75500000,76600000,77600000,78600000,79600000,80600000,81600000,82600000,83500000,84500000,85400000,86400000,87300000,88200000,89100000,90000000,90900000,91800000,92600000,93500000,94300000,95100000,95900000,96700000,97500000,98300000,99000000,99700000,100000000,101000000,102000000,102000000,103000000,104000000,104000000,105000000,105000000,106000000,107000000,107000000,108000000,108000000,109000000,109000000,110000000,110000000,110000000,111000000,111000000,112000000 +Iceland,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61400,61300,61200,61000,60700,60500,60300,60100,59800,59600,59400,59200,59000,58700,58500,58300,58100,57900,57600,57400,57300,57200,57300,57400,57600,57800,58000,58200,58400,58600,58900,59300,59900,60500,61300,62100,62900,63700,64500,65300,66000,66600,67100,67500,67800,68100,68400,68700,69000,69300,69600,69800,70100,70300,70500,70700,70900,71100,71300,71500,71600,71700,71700,71600,71500,71400,71300,71200,71100,71000,71100,71300,71600,72100,72800,73500,74200,74900,75600,76300,77000,77900,78700,79600,80600,81600,82500,83500,84500,85600,86600,87600,88600,89500,90500,91500,92400,93400,94400,95500,96500,97500,98600,99600,101000,102000,103000,104000,105000,106000,107000,108000,110000,111000,112000,113000,114000,116000,117000,118000,119000,121000,123000,125000,127000,129000,131000,133000,135000,138000,140000,143000,145000,148000,151000,154000,158000,161000,165000,168000,172000,176000,179000,182000,186000,189000,192000,196000,199000,201000,203000,204000,206000,209000,212000,215000,218000,220000,222000,224000,226000,228000,231000,234000,237000,240000,242000,243000,246000,250000,253000,255000,258000,261000,264000,266000,268000,269000,271000,274000,278000,281000,285000,288000,290000,292000,297000,304000,312000,318000,319000,318000,319000,321000,324000,328000,331000,336000,344000,353000,361000,367000,370000,373000,375000,378000,380000,382000,384000,386000,388000,390000,392000,394000,395000,397000,398000,399000,401000,402000,403000,404000,405000,405000,406000,407000,407000,408000,408000,408000,409000,409000,409000,409000,409000,409000,409000,409000,409000,409000,409000,409000,408000,408000,408000,407000,407000,406000,406000,405000,404000,404000,403000,402000,401000,400000,399000,398000,397000,396000,394000,393000,392000,390000,389000,388000,386000,385000,383000,382000,381000,380000,378000,377000,376000,375000,374000,373000,372000,370000,369000,368000 +Israel,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,210000,211000,212000,213000,215000,217000,219000,220000,222000,224000,226000,229000,232000,236000,240000,244000,248000,253000,257000,262000,266000,269000,271000,273000,274000,275000,276000,277000,278000,279000,280000,282000,285000,288000,291000,295000,298000,302000,305000,309000,313000,317000,321000,325000,329000,333000,337000,341000,346000,350000,355000,359000,364000,369000,374000,379000,384000,390000,395000,400000,405000,410000,415000,419000,423000,426000,430000,434000,438000,442000,448000,455000,464000,474000,487000,499000,512000,526000,539000,553000,569000,588000,609000,633000,660000,687000,716000,747000,778000,811000,844000,878000,913000,948000,983000,1020000,1060000,1100000,1140000,1180000,1230000,1280000,1340000,1390000,1450000,1510000,1560000,1630000,1690000,1750000,1830000,1900000,1980000,2069999.9999999998,2160000,2260000,2360000,2470000,2580000,2680000,2800000,2910000,3020000,3120000,3210000,3300000,3390000,3470000,3540000,3610000,3680000,3740000,3820000,3890000,3980000,4080000,4179999.9999999995,4300000,4410000,4540000,4670000,4800000,4940000,5080000,5210000,5350000,5480000,5610000,5740000,5870000,5990000,6120000,6240000,6360000,6480000,6600000,6710000,6830000,6950000,7070000,7200000,7330000,7460000,7590000,7730000,7860000,8010000,8160000,8310000.000000001,8460000,8610000,8760000,8900000,9040000,9170000,9310000,9450000,9590000,9720000,9860000,10000000,10100000,10300000,10400000,10600000,10700000,10800000,11000000,11100000,11300000,11400000,11500000,11700000,11800000,12000000,12100000,12300000,12400000,12600000,12700000,12800000,13000000,13100000,13300000,13400000,13500000,13700000,13800000,13900000,14100000,14200000,14300000,14500000,14600000,14700000,14800000,14900000,15100000,15200000,15300000,15400000,15500000,15700000,15800000,15900000,16000000,16100000.000000002,16200000,16300000,16399999.999999998,16600000.000000002,16700000,16800000,16900000,17000000,17100000,17200000,17300000,17400000,17500000,17500000,17600000,17700000,17800000,17900000,18000000,18000000,18100000,18200000,18300000,18300000,18400000 +Italy,19000000,19100000,19100000,19200000,19200000,19300000,19300000,19400000,19500000,19500000,19600000,19600000,19700000,19800000,19800000,19900000,19900000,20000000,20100000,20100000,20200000,20300000,20400000,20600000,20700000,20800000,21000000,21100000,21200000,21400000,21500000,21700000,21800000,21900000,22100000,22200000,22400000,22500000,22600000,22800000,22900000,23100000,23200000,23400000,23500000,23700000,23800000,24000000,24100000,24300000,24500000,24600000,24800000,24900000,25100000,25200000,25400000,25500000,25700000,25900000,26000000,26200000,26400000,26500000,26700000,26900000,27100000,27200000,27400000,27600000,27700000,27900000,28100000,28200000,28400000,28500000,28700000,28900000,29000000,29200000,29400000,29500000,29700000,29900000,30100000,30400000,30600000,30800000,31000000,31200000,31400000,31600000,31800000,32000000,32100000,32299999.999999996,32500000,32700000.000000004,32900000,33100000,33299999.999999996,33600000,33800000,34100000,34400000,34700000,34900000,35200000,35500000,35700000,35900000,36100000,36200000,36300000,36400000,36400000,36500000,36600000,36700000,36800000,37000000,37200000,37500000,37800000,38100000,38500000,38800000,39100000,39500000,39800000,40200000,40500000,40800000,41200000,41500000,41900000,42200000,42600000,42900000,43300000,43600000,43900000,44200000,44500000,44700000,45000000,45300000,45500000,45800000,46100000,46400000,46800000,47000000,47400000,47800000,48100000,48400000,48700000,48900000,49200000,49500000,49800000,50200000,50600000,51000000,51500000,51900000,52300000,52700000,53000000,53300000,53600000,54000000,54400000,54800000,55100000,55400000,55600000,55900000,56100000,56300000,56500000,56600000,56600000,56600000,56600000,56600000,56600000,56700000,56700000,56800000,56800000,56800000,56900000,56900000,56900000,56900000,56900000,56900000,56900000,57000000,57000000,57100000,57400000,57900000,58200000,58400000,58800000,59200000,59600000,59800000,60000000,60200000,60300000,60300000,60200000,60100000,60000000,59900000,59700000,59500000,59200000,59000000,58900000,58700000,58500000,58300000,58100000,58000000,57700000,57500000,57300000,57100000,56900000,56700000,56500000,56200000,56000000,55800000,55500000,55300000,55000000,54700000,54500000,54200000,53900000,53600000,53300000,52900000,52600000,52300000,51900000,51500000,51100000,50700000,50300000,49900000,49500000,49100000,48700000,48200000,47800000,47400000,47000000,46600000,46200000,45800000,45400000,45000000,44600000,44300000,43900000,43600000,43300000,43000000,42700000,42400000,42200000,41900000,41600000,41400000,41100000,40900000,40700000,40400000,40200000,40000000,39700000,39500000,39300000,39000000,38800000,38600000,38400000,38200000,37900000,37700000,37500000,37300000,37100000,36900000 +Jamaica,300000,304000,309000,313000,318000,323000,327000,332000,337000,342000,347000,352000,357000,362000,368000,373000,378000,384000,390000,394000,397000,398000,399000,397000,396000,395000,394000,392000,391000,390000,389000,388000,386000,385000,384000,383000,382000,381000,379000,379000,379000,380000,381000,383000,386000,388000,390000,392000,395000,397000,400000,403000,407000,411000,416000,420000,424000,429000,433000,438000,443000,448000,453000,459000,465000,471000,477000,483000,489000,495000,502000,509000,517000,525000,533000,541000,550000,558000,567000,575000,583000,590000,596000,602000,608000,614000,620000,626000,632000,639000,646000,653000,660000,669000,677000,685000,693000,702000,710000,719000,728000,736000,745000,754000,763000,772000,781000,790000,800000,808000,816000,822000,828000,833000,838000,843000,848000,853000,858000,864000,873000,884000,897000,912000,927000,942000,958000,974000,990000,1010000,1020000,1040000,1060000,1080000,1100000,1120000,1140000,1160000,1190000,1210000,1230000,1240000,1260000,1280000,1300000,1310000,1330000,1350000,1370000,1390000,1410000,1450000,1480000,1510000,1530000,1550000,1570000,1590000,1600000,1620000,1640000,1660000,1680000,1700000,1730000,1750000,1770000,1790000,1810000,1830000,1860000,1890000,1920000,1950000,1970000,2000000,2029999.9999999998,2049999.9999999998,2080000,2110000,2140000,2170000,2200000,2230000,2260000,2290000,2320000,2340000,2350000,2370000,2390000,2410000,2430000,2460000,2480000,2510000,2530000,2550000,2580000,2600000,2610000,2630000,2640000,2650000,2660000,2680000,2690000,2700000,2710000,2720000,2730000,2750000,2760000,2770000,2780000,2790000,2800000,2810000,2810000,2810000,2820000,2830000,2830000,2830000,2820000,2820000,2820000,2820000,2810000,2810000,2800000,2800000,2790000,2780000,2770000,2760000,2750000,2740000,2730000,2710000,2700000,2680000,2660000,2650000,2630000,2610000,2590000,2560000,2540000,2520000,2490000,2470000,2440000,2420000,2390000,2360000,2340000,2310000,2280000,2250000,2220000,2190000,2160000,2130000,2100000,2060000,2029999.9999999998,2000000,1970000,1930000,1900000,1860000,1830000,1790000,1760000,1720000,1690000,1650000,1620000,1580000,1540000,1510000,1470000,1440000,1400000,1370000,1330000,1300000,1270000,1230000,1200000,1170000,1140000,1110000,1080000,1040000,1010000,985000,955000,926000,897000 +Jordan,200000,201000,202000,202000,203000,204000,205000,206000,207000,207000,208000,209000,210000,211000,212000,213000,213000,214000,215000,216000,218000,220000,222000,224000,227000,229000,232000,234000,237000,239000,242000,244000,247000,250000,252000,255000,258000,261000,264000,266000,269000,272000,275000,278000,281000,284000,287000,290000,294000,296000,297000,296000,295000,292000,289000,287000,284000,281000,279000,276000,274000,271000,269000,266000,264000,261000,259000,256000,254000,252000,251000,250000,250000,250000,250000,250000,250000,250000,250000,251000,251000,251000,251000,251000,251000,251000,251000,252000,252000,252000,252000,252000,252000,252000,252000,252000,252000,253000,253000,253000,254000,256000,258000,261000,264000,267000,270000,273000,276000,276000,274000,268000,260000,250000,240000,230000,221000,212000,204000,199000,196000,196000,198000,203000,207000,212000,217000,221000,226000,231000,234000,236000,237000,237000,237000,237000,237000,237000,237000,240000,246000,256000,269000,287000,305000,325000,346000,368000,392000,416000,438000,470000,505000,542000,581000,622000,665000,710000,756000,802000,848000,892000,935000,979000,1030000,1090000,1170000,1270000,1370000,1470000,1560000,1640000,1700000,1770000,1830000,1890000,1950000,2009999.9999999998,2069999.9999999998,2140000,2220000,2310000,2410000,2510000,2630000,2750000,2880000,3010000,3160000,3310000,3480000,3670000,3870000,4080000,4280000,4460000,4610000,4730000,4840000,4950000,5060000,5160000,5280000,5400000,5530000,5680000,6080000,6470000,6630000,6780000,6930000,7110000,7210000,7690000,8660000,9490000,9960000,10200000,10500000,10700000,10900000,11100000,11300000,11300000,11400000,11400000,11500000,11600000,11700000,11800000,11900000,12100000,12200000,12400000,12500000,12700000,12900000,13000000,13200000,13400000,13500000,13700000,13900000,14000000,14200000,14300000,14500000,14600000,14700000,14900000,15000000,15100000,15300000,15400000,15500000,15600000,15700000,15800000,15900000,16000000,16100000.000000002,16200000,16300000,16399999.999999998,16500000,16600000.000000002,16700000,16800000,16800000,16900000,17000000,17100000,17100000,17200000,17200000,17300000,17300000,17400000,17400000,17500000,17500000,17500000,17600000,17600000,17600000,17600000,17600000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17700000,17600000,17600000 +Japan,28000000,28100000,28300000,28400000,28600000,28700000,28900000,29000000,29200000,29300000,29500000,29600000,29800000,29900000,30100000,30200000,30400000,30500000,30700000,30800000,30900000,31000000,31100000,31100000,31100000,31200000,31200000,31200000,31300000,31300000,31300000,31400000,31400000,31400000,31500000,31500000,31500000,31600000,31600000,31600000,31700000,31700000,31700000,31800000,31800000,31800000,31900000,31900000,31900000,32000000,32100000,32100000,32200000.000000004,32400000,32500000,32600000,32700000.000000004,32900000,33000000,33100000,33200000.000000004,33400000,33500000,33600000,33700000,33900000,34000000,34100000,34300000,34400000,34600000,34800000,35000000,35200000,35500000,35700000,35900000,36200000,36400000,36700000,37000000,37300000,37600000,37900000,38200000,38600000,38900000,39200000,39600000,39900000,40300000,40700000,41100000,41500000,41900000,42300000,42700000,43100000,43500000,44000000,44400000,44900000,45400000,45900000,46500000,47000000,47600000,48100000,48700000,49300000,49900000,50500000,51100000,51700000,52300000,53000000,53600000,54300000,54900000,55600000,56300000,57100000,57900000,58700000,59500000,60300000,61200000,62100000,62900000,63800000,64700000,65500000,66400000.00000001,67200000,68100000,69000000,69900000,70800000,71700000,72600000,73600000,74600000,75600000,76700000,77700000,78800000,79900000,81000000,82200000,83300000,84400000,85700000,86900000,88100000,89100000,90100000,91000000,91800000,92700000,93600000,94500000,95400000,96300000,97200000,98300000,99500000,100000000,102000000,103000000,104000000,105000000,107000000,108000000,110000000,111000000,112000000,114000000,115000000,116000000,117000000,118000000,118000000,119000000,120000000,120000000,121000000,122000000,122000000,123000000,123000000,124000000,124000000,124000000,125000000,125000000,125000000,126000000,126000000,126000000,127000000,127000000,127000000,127000000,128000000,128000000,128000000,128000000,128000000,128000000,128000000,128000000,128000000,128000000,128000000,127000000,127000000,127000000,127000000,126000000,126000000,125000000,125000000,124000000,123000000,123000000,122000000,121000000,121000000,120000000,119000000,119000000,118000000,117000000,116000000,116000000,115000000,114000000,113000000,113000000,112000000,111000000,110000000,110000000,109000000,108000000,107000000,107000000,106000000,105000000,104000000,104000000,103000000,102000000,102000000,101000000,100000000,99500000,98800000,98100000,97400000,96600000,95900000,95100000,94400000,93600000,92900000,92100000,91300000,90600000,89900000,89100000,88400000,87700000,87000000,86400000,85700000,85100000,84500000,83900000,83400000,82800000,82300000,81800000,81300000,80800000,80300000,79800000,79300000,78900000,78400000,78000000,77500000,77100000,76600000,76200000,75700000,75300000,74900000,74500000,74100000,73600000 +Kazakhstan,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2040000,2049999.9999999998,2049999.9999999998,2060000,2080000,2100000,2120000,2140000,2160000,2180000,2200000,2220000,2240000,2260000,2280000,2300000,2320000,2340000,2360000,2380000,2410000,2430000,2450000,2470000,2500000,2520000,2540000,2570000,2590000,2610000,2640000,2660000,2690000,2710000,2730000,2760000,2780000,2810000,2830000,2860000,2880000,2910000,2930000,2960000,2980000,3010000,3040000,3060000,3090000,3120000,3140000,3170000,3200000,3230000,3260000,3280000,3310000,3340000,3370000,3400000,3430000,3460000,3490000,3520000,3550000,3590000,3620000,3650000,3680000,3710000,3750000,3780000,3810000,3850000,3880000,3910000,3950000,3980000,4019999.9999999995,4050000,4090000,4130000,4160000,4200000,4240000,4270000,4310000,4350000,4390000,4430000,4460000,4500000,4540000,4580000,4620000,4660000,4710000,4750000,4790000,4830000,4870000,4920000,4960000,5010000,5060000,5100000,5150000,5200000,5240000,5290000,5340000,5390000,5440000,5490000,5540000,5590000,5640000,5690000,5750000,5800000,5850000,5910000,5960000,6010000,6070000,6130000,6180000,6240000,6300000,6350000,6410000,6510000,6660000,6890000,7120000,7360000,7610000,7860000,8119999.999999999,8410000,8700000,9000000,9320000,9640000,9960000,10300000,10600000,10900000,11200000,11500000,11800000,12000000,12300000,12400000,12600000,12800000,13000000,13200000,13300000,13500000,13800000,14000000,14200000,14400000,14600000,14900000,15100000,15400000,15700000,16100000.000000002,16399999.999999998,16700000,16900000,17000000,17000000,17000000,16700000,16399999.999999998,16100000.000000002,15800000,15500000,15300000,15200000,15300000,15300000,15400000,15500000,15700000,15800000,16000000,16200000,16399999.999999998,16600000.000000002,16900000,17100000,17300000,17600000,17800000,18100000,18300000,18500000,18800000,19000000,19200000,19400000,19600000,19800000,20100000,20300000,20500000,20700000,20900000,21100000,21300000,21500000,21800000,22000000,22200000,22400000,22600000,22800000,23100000,23300000,23500000,23700000,24000000,24200000,24500000,24700000,24900000,25200000,25400000,25600000,25800000,26100000,26300000,26500000,26700000,26900000,27100000,27300000,27500000,27700000,27900000,28100000,28300000,28500000,28700000,28800000,29000000,29200000,29400000,29600000,29800000,29900000,30100000,30300000,30500000,30700000,30800000,31000000,31200000,31400000,31600000,31700000,31900000,32100000,32200000.000000004,32400000,32600000,32700000.000000004,32900000,33000000,33100000,33299999.999999996,33400000,33500000,33600000,33700000,33800000,33900000,34000000,34100000 +Kenya,2570000,2590000,2600000,2620000,2630000,2640000,2660000,2670000,2690000,2700000,2710000,2730000,2740000,2760000,2770000,2790000,2800000,2820000,2830000,2850000,2860000,2880000,2890000,2910000,2920000,2940000,2950000,2970000,2980000,3000000,3020000,3030000,3050000,3060000,3080000,3100000,3110000,3130000,3150000,3160000,3180000,3200000,3210000,3230000,3250000,3270000,3280000,3300000,3320000,3340000,3350000,3370000,3390000,3410000,3420000,3440000,3460000,3480000,3490000,3510000,3530000,3550000,3570000,3580000,3600000,3620000,3640000,3660000,3680000,3700000,3720000,3740000,3760000,3780000,3810000,3830000,3850000,3880000,3900000,3930000,3950000,3970000,4000000,4019999.9999999995,4050000,4070000.0000000005,4099999.9999999995,4120000,4150000.0000000005,4160000,4170000,4160000,4150000.0000000005,4120000,4099999.9999999995,4080000,4050000,4030000.0000000005,4000000,3980000,3950000,3920000,3890000,3850000,3820000,3790000,3750000,3720000,3690000,3660000,3630000,3610000,3600000,3590000,3580000,3570000,3560000,3550000,3540000,3550000,3570000,3600000,3650000,3710000,3770000,3840000,3900000,3970000,4040000,4099999.9999999995,4170000,4230000,4290000,4350000,4410000,4470000,4540000,4600000,4670000,4730000,4810000,4890000,4970000,5060000,5150000,5250000,5340000,5440000,5530000,5650000,5770000,5910000,6050000,6200000,6370000,6560000,6760000,6990000,7220000,7480000,7750000,8050000.000000001,8359999.999999999,8700000,9050000,9420000,9800000,10200000,10600000,11000000,11500000,11900000,12300000,12800000,13200000,13700000,14100000,14600000,15100000,15600000,16200000,16800000,17400000,18100000,18800000,19500000,20200000,20900000,21600000,22400000,23200000,23900000,24700000,25400000,26100000,26900000,27600000,28400000,29100000,30000000,30900000,31800000,32799999.999999996,33800000,34800000,35800000,36900000,38000000,39200000,40400000,41500000,42600000,43700000,44800000,45800000,46900000,47900000,48900000,50000000,51000000,52000000,53000000,54000000,55100000,56200000,57300000,58500000,59600000,60800000,61900000,63100000,64300000,65500000,66700000,67800000,69000000,70200000,71300000,72500000,73600000,74800000,75900000,77000000,78000000,79100000,80200000,81200000,82200000,83200000,84200000,85200000,86200000,87100000,88100000,89000000,89900000,90800000,91700000,92600000,93500000,94300000,95200000,96000000,96800000,97500000,98300000,99000000,99700000,100000000,101000000,102000000,102000000,103000000,104000000,104000000,105000000,105000000,106000000,106000000,107000000,107000000,108000000,108000000,108000000,109000000,109000000,109000000,110000000,110000000,110000000,111000000,111000000,111000000,111000000,112000000,112000000,112000000,112000000,112000000,112000000,113000000 +Kyrgyz Republic,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,530000,531000,533000,536000,540000,545000,550000,555000,560000,565000,571000,576000,581000,586000,592000,597000,603000,608000,614000,619000,625000,631000,637000,643000,648000,654000,660000,666000,673000,679000,685000,691000,698000,704000,710000,717000,724000,730000,737000,744000,750000,757000,764000,771000,778000,785000,793000,800000,807000,815000,822000,830000,837000,845000,853000,860000,868000,876000,884000,892000,901000,909000,917000,925000,934000,943000,951000,960000,969000,978000,987000,996000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1210000,1220000,1230000,1240000,1250000,1260000,1270000,1290000,1300000,1310000,1320000,1330000,1350000,1360000,1370000,1380000,1400000,1410000,1420000,1430000,1450000,1460000,1470000,1490000,1500000,1510000,1530000,1540000,1560000,1570000,1590000,1600000,1610000,1630000,1640000,1660000,1670000,1690000,1710000,1730000,1750000,1790000,1820000,1860000,1900000,1940000,1990000,2040000,2089999.9999999998,2150000,2220000,2290000,2370000,2450000,2530000,2620000,2700000,2780000,2860000,2940000,3020000,3090000,3160000,3220000,3290000,3350000,3420000,3480000,3550000,3620000,3690000,3760000,3840000,3920000,4000000,4059999.9999999995,4130000,4200000,4270000,4340000,4390000,4460000,4500000,4510000,4530000,4600000,4670000,4740000,4810000,4880000,4940000,4980000,5030000,5080000,5140000,5190000,5250000,5290000,5350000,5410000,5480000,5550000,5630000,5720000,5810000,5910000,6020000,6120000,6220000,6320000,6420000,6530000,6630000,6740000,6840000,6940000,7040000,7140000,7240000,7340000,7440000,7530000,7630000,7730000,7830000,7930000,8029999.999999999,8130000.000000001,8240000,8340000,8440000,8550000,8650000,8750000,8860000,8950000,9050000,9150000,9240000,9340000,9430000,9520000,9600000,9690000,9770000,9850000,9930000,10000000,10100000,10200000,10200000,10300000,10400000,10400000,10500000,10600000,10600000,10700000,10800000,10800000,10900000,11000000,11000000,11100000,11100000,11200000,11200000,11300000,11300000,11400000,11400000,11500000,11500000,11500000,11600000,11600000,11700000,11700000,11700000,11800000,11800000,11800000,11800000,11900000,11900000,11900000,11900000,11900000,12000000,12000000,12000000 +Cambodia,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2089999.9999999998,2100000,2100000,2100000,2110000,2110000,2120000,2120000,2130000,2130000,2140000,2140000,2150000,2150000,2160000,2160000,2170000,2170000,2180000,2180000,2190000,2190000,2200000,2200000,2210000,2210000,2220000,2220000,2230000,2230000,2240000,2240000,2250000,2250000,2260000,2260000,2260000,2270000,2270000,2280000,2280000,2290000,2290000,2300000,2300000,2310000,2310000,2320000,2320000,2330000,2340000,2350000,2360000,2380000,2390000,2410000,2420000,2440000,2460000,2470000,2490000,2510000,2520000,2540000,2560000,2570000,2590000,2610000,2620000,2640000,2660000,2680000,2690000,2710000,2730000,2750000,2770000,2780000,2800000,2820000,2840000,2860000,2880000,2900000,2920000,2930000,2950000,2970000,2990000,3010000,3010000,3010000,3000000,2990000,2980000,2960000,2950000,2930000,2920000,2910000,2900000,2880000,2870000,2860000,2840000,2830000,2820000,2810000,2790000,2790000,2790000,2800000,2810000,2840000,2860000,2880000,2910000,2930000,2960000,3000000,3060000,3140000,3250000,3380000,3510000,3650000,3790000,3940000,4090000,4240000,4380000,4490000,4590000,4700000,4810000,4930000,5050000,5180000,5300000,5420000,5540000,5660000,5790000,5910000,6040000,6170000,6300000,6430000,6550000,6680000,6710000,6700000,6770000,6850000,6910000,6730000,6310000,6040000,5960000,6050000,6200000,6360000,6620000,6880000,7130000,7380000,7660000,7980000,8270000,8570000,8910000,9260000,9720000,10200000,10600000,10900000,11200000,11400000,11700000,11900000,12100000,12300000,12600000,12800000,13000000,13200000,13500000,13700000,13900000,14200000,14400000,14600000,14800000,15000000,15200000,15400000,15600000,15800000,16000000,16200000,16399999.999999998,16600000.000000002,16800000,16900000,17100000,17300000,17500000,17600000,17800000,17900000,18100000,18200000,18400000,18500000,18700000,18800000,18900000,19000000,19200000,19300000,19400000,19500000,19600000,19700000,19800000,19900000,20000000,20100000,20100000,20200000,20300000,20300000,20400000,20400000,20500000,20500000,20600000,20600000,20600000,20700000,20700000,20700000,20700000,20800000,20800000,20800000,20800000,20800000,20800000,20800000,20800000,20700000,20700000,20700000,20700000,20600000,20600000,20600000,20500000,20500000,20400000,20400000,20300000,20300000,20200000,20200000,20100000,20100000,20000000,19900000,19900000,19800000,19700000,19700000,19600000,19500000,19500000,19400000,19300000,19200000,19100000 +Kiribati,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,17900,18000,18100,18100,18200,18300,18400,18500,18600,18700,18800,18900,18900,19000,19100,19200,19300,19400,19500,19600,19700,19800,19900,20000,20100,20200,20300,20400,20500,20600,20700,20800,20900,21100,21200,21400,21500,21600,21800,21900,22100,22200,22400,22500,22700,22800,23000,23100,23300,23400,23600,23700,23900,24000,24200,24400,24500,24700,24800,25000,25200,25300,25500,25700,25800,26000,26200,26300,26500,26700,26900,27000,27200,27400,27600,27800,27900,28100,28300,28500,28700,28900,29000,29200,29400,29600,29800,30000,30200,30400,30600,30800,31000,31200,31400,31600,31800,32000,32100,32299.999999999996,32500,32600,32800,32900,33100,33200,33400,33600,33700,33900,34100,34200,34400,34600,34700,34900,35100,35200,35400,35600,35700,35900,36100,36300,36400,36600,36800,37000,37100,37400,37800,38600,39400,40300,41100,42000,42900,43900,44900,46000,47100,48300,49500,50800,52100,53400,54400,55000,55500,56300,57400,58500,59600,60600,61000,60700,60300,59900,59500,59800,60800,61900,63000,64099.99999999999,65300,66700,68300,69900,71700,73400,75100,76600,77900,79100,80300,81500,82800,84300,85800,87300,88800,90500,92400,94300,96200,98200,100000,102000,104000,106000,108000,110000,112000,113000,115000,117000,119000,120000,122000,124000,126000,129000,131000,134000,136000,138000,140000,142000,145000,147000,149000,151000,153000,155000,157000,159000,161000,163000,165000,167000,169000,171000,173000,175000,177000,179000,181000,183000,185000,187000,189000,190000,192000,194000,196000,198000,199000,201000,202000,204000,205000,207000,208000,210000,211000,212000,214000,215000,216000,217000,219000,220000,221000,222000,223000,224000,225000,226000,227000,228000,229000,230000,231000,232000,232000,233000,234000,234000,235000,236000,236000,237000,237000,237000,238000,238000,238000,238000,238000,239000,239000 +St. Kitts and Nevis,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17200,17300,17400,17600,17800,18100,18400,18700,19100,19400,19700,20100,20400,20800,21100,21500,21800,22200,22600,23000,23400,23800,24200,24600,25000,25500,25900,26300,26800,27300,27700,28200,28700,29200,29700,30300,30800,31400,32000,32500,33100,33700,34300,34900,35500,36200,36800,37400,38100,38700,39400,40000,40600,41200,41700,42100,42500,43000,43400,43900,44400,44800,45300,45700,46200,46600,47100,47500,48000,48500,48900,49300,49500,49600,49600,49400,49200,49100,48900,48800,48600,48400,48200,48000,47700,47400,47200,46900,46600,46400,46100,45700,45300,44800,44300,43700,43100,42500,41900,41300,40700,40200,39700,39400,39200,39100,39000,38900,38800,38700,38600,38600,38600,38700,38800,39000,39200,39400,39700,39900,40100,40400,40800,41200,41800,42400,43100,43800,44500,45100,45900,46600,47300,48400,49500,50600,51500,52300,53300,54300,55300,56200,56700,56200,55400,54400,53300,52000,50700,49300,47800,46100,45000,44600,44400,44200,44100,43900,43700,43600,43500,43300,43100,43000,42800,42600,42400,42100,41900,41600,41300,41000,40600,40500,40900,41400,42000,42500,43100,43700,44200,44800,45500,46000,46300,46400,46600,46700,46900,47000,47200,47300,47400,47600,47700,47800,47800,47800,47800,47800,47800,47700,47600,47600,47700,47800,47800,47900,48000,48100,48100,48200,48200,48300,48300,48300,48300,48300,48300,48200,48200,48100,48100,48000,47900,47800,47700,47600,47500,47300,47200,47000,46900,46700,46600,46400,46200,46100,45900,45700,45500,45300,45100,44900,44700,44500,44300,44000,43800,43600,43400,43100,42900,42700,42400,42200,41900,41700,41400,41200,41000,40700,40500,40200,40000,39700,39500,39300,39000,38800,38600,38300,38100,37900,37700,37400,37200,37000,36800,36600,36400,36100,35900 +South Korea,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9390000,9400000,9400000,9400000,9400000,9410000,9410000,9420000,9420000,9430000,9430000,9440000,9440000,9450000,9450000,9460000,9460000,9470000,9470000,9480000,9480000,9490000,9490000,9500000,9500000,9510000,9510000,9520000,9520000,9530000,9530000,9540000,9550000,9550000,9560000,9560000,9570000,9580000,9580000,9590000,9590000,9600000,9610000,9610000,9620000,9620000,9630000,9640000,9640000,9650000,9660000,9660000,9660000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9670000,9680000,9680000,9680000,9680000,9680000,9680000,9680000,9680000,9680000,9680000,9690000,9700000,9710000,9720000,9740000,9750000,9770000,9780000,9800000,9840000,9910000,10000000,10100000,10300000,10400000,10600000,10800000,10900000,11100000,11300000,11500000,11700000,11800000,12000000,12200000,12400000,12600000,12800000,13100000,13300000,13500000,13600000,13800000,14000000,14100000,14300000,14500000,14600000,14800000,15000000,15300000,15700000,16100000.000000002,16600000.000000002,17000000,17500000,18000000,18600000,19100000,19600000,20100000,20100000,20400000,20900000,21400000,22100000,22800000,23500000,24300000,25000000,25800000,26600000,27200000,27900000,28600000,29200000,29800000,30500000,31200000,31900000,32600000,33299999.999999996,34000000,34700000,35300000,35900000,36500000,36900000,37300000,37700000,38200000,38700000,39400000,40100000,40700000,41200000,41800000,42400000,43000000,43600000,44100000,44500000,44700000,44900000,45200000,45400000,45700000,46000000,46300000,46500000,46800000,47100000,47300000,47500000,47700000,47900000,48000000,48200000,48400000,48600000,48800000,49200000,49600000,50100000,50600000,51000000,51300000,51500000,51700000,51800000,51800000,51800000,51800000,51800000,51700000,51700000,51600000,51600000,51500000,51400000,51300000,51200000,51000000,50900000,50700000,50500000,50300000,50100000,49900000,49600000,49300000,49000000,48700000,48400000,48100000,47700000,47400000,47000000,46600000,46200000,45800000,45300000,44900000,44400000,43900000,43400000,42900000,42400000,41900000,41400000,40900000,40400000,39900000,39400000,38900000,38400000,37900000,37400000,36900000,36400000,35900000,35400000,35000000,34500000,34000000,33600000,33100000,32700000.000000004,32299999.999999996,31800000,31400000,31000000,30600000,30200000,29800000,29300000,28900000,28600000,28200000,27800000,27400000,27000000,26700000,26300000,26000000,25600000,25300000,25000000,24700000,24400000,24100000 +Kuwait,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81300,81400,81400,81400,81400,81500,81500,81500,81500,81600,81600,81600,81600,81700,81700,81700,81700,81900,82100,82400,82800,83400,83900,84400,84900,85500,86000,86600,87100,87700,88200,88800,89300,89900,90500,91000,91600,92200,92800,93400,93900,94500,95100,95700,96300,96900,97600,98200,98800,99400,100000,101000,101000,102000,103000,103000,104000,105000,105000,106000,107000,108000,109000,110000,111000,112000,113000,114000,115000,116000,117000,118000,119000,120000,121000,122000,123000,124000,125000,126000,127000,128000,129000,130000,131000,132000,134000,135000,136000,137000,138000,139000,141000,142000,143000,144000,145000,149000,154000,158000,162000,166000,171000,183000,204000,223000,246000,275000,305000,340000,378000,420000,466000,514000,565000,621000,681000,743000,803000,859000,914000,971000,1030000,1100000,1170000,1250000,1330000,1410000,1490000,1570000,1650000,1740000,1810000,1890000,1970000,2049999.9999999998,2130000,2210000,1670000,1340000,1620000,1650000,1640000,1660000,1700000,1760000,1820000,1880000,1930000,1990000,2049999.9999999998,2100000,2150000,2240000,2360000,2510000,2650000,2800000,2940000,3140000,3390000,3650000,3760000,3910000,4050000,4120000,4320000,4440000,4360000,4250000,4270000,4310000,4350000,4390000,4420000,4460000,4490000,4530000,4560000,4600000,4640000,4670000,4710000,4740000,4780000,4820000,4860000,4890000,4930000,4960000,5000000,5030000,5060000,5080000,5100000,5120000,5140000,5150000,5160000,5160000,5160000,5160000,5150000,5140000,5130000,5120000,5100000,5090000,5070000,5050000,5030000,5020000,5000000,4980000,4960000,4940000,4930000,4910000,4900000,4880000,4870000,4860000,4850000,4840000,4830000,4820000,4820000,4810000,4810000,4810000,4810000,4810000,4810000,4820000,4820000,4830000,4830000,4840000,4850000,4850000,4860000,4870000,4870000,4880000,4880000,4890000,4890000,4890000,4900000 +Lao,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,471000,473000,475000,479000,484000,488000,493000,498000,502000,507000,512000,517000,522000,527000,532000,537000,542000,547000,552000,557000,563000,568000,574000,579000,585000,590000,596000,601000,607000,613000,619000,625000,630000,635000,640000,645000,651000,656000,662000,667000,672000,678000,684000,689000,695000,701000,706000,712000,718000,724000,732000,742000,754000,769000,785000,802000,820000,838000,856000,875000,894000,913000,933000,953000,974000,995000,1020000,1040000,1060000,1090000,1110000,1130000,1160000,1180000,1210000,1230000,1260000,1290000,1320000,1350000,1370000,1380000,1380000,1380000,1370000,1350000,1340000,1330000,1320000,1300000,1290000,1270000,1250000,1230000,1200000,1180000,1160000,1130000,1110000,1090000,1070000,1050000,1030000,1010000,988000,969000,951000,933000,915000,897000,885000,877000,874000,875000,881000,888000,894000,900000,906000,913000,930000,958000,999000,1050000,1120000,1190000,1270000,1350000,1440000,1530000,1610000,1680000,1730000,1770000,1810000,1850000,1890000,1940000,1980000,2029999.9999999998,2080000,2120000,2170000,2220000,2270000,2330000,2380000,2430000,2490000,2550000,2610000,2680000,2740000,2810000,2880000,2950000,3010000,3070000,3130000,3180000,3230000,3300000,3370000,3450000,3540000,3640000,3740000,3850000,3960000,4070000.0000000005,4190000.0000000005,4310000,4440000,4560000,4690000,4810000,4930000,5040000,5150000,5250000,5340000,5430000,5520000,5610000,5690000,5770000,5850000,5950000,6040000,6140000,6230000,6320000,6420000,6510000,6600000,6690000,6790000,6890000,7000000,7110000,7210000,7320000,7430000,7530000,7630000,7740000,7840000,7940000,8039999.999999999,8130000.000000001,8230000,8320000,8410000,8500000,8590000,8670000,8760000,8840000,8920000,9000000,9070000,9150000,9220000,9290000,9360000,9420000,9490000,9550000,9610000,9670000,9720000,9780000,9830000,9870000,9920000,9960000,10000000,10000000,10100000,10100000,10100000,10200000,10200000,10200000,10200000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10200000,10200000,10200000,10200000,10200000,10100000,10100000,10100000,10100000,10000000,10000000,9970000,9940000,9900000,9870000,9840000,9800000,9770000,9730000,9690000 +Lebanon,300000,302000,303000,305000,306000,308000,309000,311000,312000,314000,316000,317000,319000,320000,322000,324000,325000,327000,329000,330000,332000,335000,337000,339000,342000,344000,347000,349000,352000,354000,357000,359000,362000,365000,367000,370000,373000,375000,378000,381000,383000,386000,389000,392000,395000,398000,400000,403000,406000,409000,412000,415000,418000,421000,424000,427000,430000,433000,436000,439000,442000,445000,448000,451000,454000,458000,461000,464000,467000,470000,472000,474000,475000,476000,476000,477000,478000,478000,479000,480000,480000,481000,482000,482000,483000,484000,484000,485000,486000,486000,487000,488000,489000,489000,490000,491000,491000,492000,493000,496000,501000,510000,521000,534000,548000,563000,577000,592000,608000,623000,637000,651000,664000,676000,689000,701000,714000,727000,741000,755000,769000,784000,798000,813000,828000,844000,860000,876000,892000,909000,926000,943000,961000,979000,997000,1020000,1040000,1050000,1070000,1090000,1120000,1140000,1160000,1180000,1200000,1220000,1250000,1270000,1290000,1320000,1350000,1390000,1430000,1470000,1510000,1560000,1600000,1650000,1700000,1750000,1800000,1850000,1910000,1970000,2029999.9999999998,2089999.9999999998,2150000,2200000,2260000,2320000,2380000,2440000,2510000,2570000,2630000,2690000,3070000,3460000,3180000,2900000,2960000,3030000,3070000,3110000,3160000,3230000,3310000,3390000,3460000,3530000,3590000,3670000,3750000,3820000,3890000,3960000,4030000.0000000005,4110000.0000000005,4179999.9999999995,4250000,4320000,4390000,4450000,4500000,4570000,4640000,4720000,4810000,4890000,4950000,5000000,5050000,5180000,5680000,6270000,6400000,6260000,6110000,5950000,5780000,5660000,5590000,5490000,5350000,5220000,5100000,4990000,4900000,4820000,4760000,4710000,4680000,4650000,4640000,4640000,4640000,4650000,4670000,4700000,4720000,4740000,4770000,4790000,4810000,4840000,4860000,4880000,4900000,4910000,4930000,4940000,4950000,4950000,4960000,4960000,4960000,4960000,4960000,4950000,4950000,4950000,4940000,4940000,4930000,4930000,4930000,4930000,4930000,4930000,4930000,4930000,4930000,4930000,4930000,4940000,4940000,4940000,4950000,4950000,4950000,4950000,4950000,4950000,4950000,4950000,4950000,4940000,4940000,4930000,4920000,4910000,4900000,4890000,4880000,4860000,4850000,4830000,4810000,4790000,4770000,4750000 +Liberia,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,314000,315000,315000,316000,316000,317000,317000,318000,318000,319000,320000,320000,321000,321000,322000,322000,323000,323000,324000,324000,325000,326000,326000,327000,327000,328000,328000,329000,330000,331000,332000,334000,337000,339000,341000,343000,346000,348000,350000,353000,355000,358000,361000,363000,366000,369000,372000,374000,377000,380000,383000,387000,390000,393000,397000,400000,403000,407000,410000,414000,417000,421000,425000,428000,432000,435000,439000,443000,447000,450000,454000,458000,462000,466000,470000,474000,478000,482000,486000,490000,494000,499000,503000,507000,511000,516000,520000,524000,529000,533000,537000,541000,545000,549000,554000,558000,562000,565000,570000,575000,582000,589000,598000,607000,616000,626000,635000,645000,654000,664000,673000,683000,692000,702000,712000,722000,732000,742000,753000,765000,777000,791000,805000,820000,834000,849000,865000,880000,897000,916000,933000,952000,971000,992000,1010000,1040000,1060000,1080000,1110000,1140000,1170000,1190000,1220000,1260000,1290000,1320000,1350000,1390000,1430000,1460000,1500000,1540000,1580000,1630000,1670000,1720000,1770000,1820000,1880000,1930000,1990000,2049999.9999999998,2110000,2170000,2240000,2310000,2370000,2440000,2510000,2210000,1940000,2049999.9999999998,2130000,2130000,2140000,2200000,2380000,2640000,2790000,2900000,2980000,3060000,3090000,3120000,3270000,3460000,3630000,3780000,3910000,4019999.9999999995,4179999.9999999995,4330000,4430000,4520000,4610000,4710000,4800000,4890000,4990000,5090000,5190000,5300000,5420000,5540000,5660000,5780000,5900000,6030000,6150000,6280000,6410000,6540000,6670000,6800000,6930000,7060000,7200000,7330000,7460000,7590000,7730000,7860000,7990000,8119999.999999999,8250000,8380000.000000001,8510000,8640000,8760000,8890000,9020000,9140000,9270000,9390000,9510000,9630000,9750000,9870000,9990000,10100000,10200000,10300000,10400000,10600000,10700000,10800000,10900000,11000000,11100000,11200000,11300000,11400000,11500000,11600000,11700000,11800000,11900000,11900000,12000000,12100000,12200000,12300000,12300000,12400000,12500000,12500000,12600000,12700000,12700000,12800000,12800000,12900000,12900000,13000000,13000000,13100000,13100000,13100000,13200000,13200000 +Libya,230000,230000,230000,230000,231000,231000,231000,231000,231000,231000,231000,232000,232000,232000,233000,233000,233000,234000,234000,235000,236000,236000,237000,238000,239000,240000,241000,242000,243000,244000,245000,246000,247000,249000,250000,251000,252000,254000,255000,256000,257000,259000,260000,261000,263000,264000,265000,267000,268000,269000,271000,272000,274000,277000,281000,284000,287000,290000,294000,297000,301000,304000,308000,311000,315000,318000,322000,326000,329000,333000,337000,341000,345000,349000,353000,357000,361000,365000,369000,374000,379000,384000,389000,395000,401000,407000,413000,420000,426000,432000,439000,446000,453000,460000,468000,475000,483000,491000,498000,506000,514000,522000,531000,539000,547000,555000,564000,573000,582000,590000,599000,607000,615000,623000,631000,640000,648000,656000,664000,672000,679000,687000,695000,703000,710000,718000,726000,734000,743000,751000,760000,770000,780000,791000,802000,813000,824000,835000,846000,860000,876000,895000,917000,941000,966000,992000,1020000,1040000,1070000,1100000,1130000,1140000,1160000,1180000,1200000,1230000,1260000,1300000,1340000,1380000,1430000,1480000,1540000,1590000,1650000,1700000,1740000,1780000,1820000,1860000,1910000,1960000,2009999.9999999998,2080000,2180000,2290000,2410000,2540000,2680000,2820000,2960000,3110000,3270000,3420000,3560000,3680000,3800000,3910000,4019999.9999999995,4130000,4240000,4340000,4440000,4540000,4640000,4730000,4820000,4900000,4980000,5060000,5150000,5280000,5410000,5540000,5690000,5840000,5970000,6100000,6230000,6360000,6490000,6190000,5870000,5990000,6100000,6190000,6280000,6380000,6480000,6570000,6650000,6740000,6810000,6890000,6960000,7040000,7110000,7180000,7250000,7320000,7390000,7460000,7530000,7600000,7670000,7740000,7800000,7870000,7930000,7990000,8060000.000000001,8119999.999999999,8170000,8230000,8279999.999999999,8330000,8380000.000000001,8420000,8460000,8500000,8540000,8570000,8600000,8630000,8660000,8680000,8700000,8720000,8730000,8750000,8760000,8770000,8790000,8800000,8800000,8810000,8820000,8830000,8830000,8840000,8840000,8850000,8850000,8860000,8860000,8860000,8860000,8860000,8860000,8860000,8850000,8850000,8840000,8830000,8820000,8810000,8800000,8780000,8760000,8750000,8730000,8710000,8690000,8660000,8640000,8610000,8590000,8560000,8530000,8500000,8470000 +St. Lucia,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24000,24100,24200,24400,24600,25000,25300,25600,26000,26300,26700,27100,27500,27900,28400,29000,29500,30000,30600,31200,31800,32400,33000,33700,34400,35100,35900,36600,37400,38200,39000,39800,40400,41000,41400,41800,42200,42500,42900,43300,43700,44200,44700,45400,46200,47000,47900,48800,49800,50700,51700,52500,53000,53400,53600,53500,53500,53500,53400,53400,53400,53400,53500,53800,54100,54500,54900,55300,55700,56100,56400,56800,57400,58000,58800,59600,60500,61300,62200,63100,64000,65000,65900,66900,67900,69000,70100,71200,72300,73400,74500,75600,76700,77700,78700,79700,80700,81700,82700,83700,84700,85700,86700,87300,87500,87800,88100,88500,88900,89400,90000,90700,91600,92800,93800,94900,95900,97000,98100,99300,100000,102000,103000,105000,106000,108000,110000,111000,113000,115000,117000,119000,122000,124000,126000,128000,131000,133000,135000,137000,139000,140000,142000,144000,146000,149000,151000,152000,154000,155000,157000,158000,160000,161000,162000,163000,164000,165000,166000,168000,169000,170000,171000,172000,173000,174000,175000,176000,176000,177000,178000,179000,179000,180000,180000,180000,181000,181000,182000,182000,183000,183000,183000,184000,184000,184000,184000,184000,184000,184000,184000,183000,183000,183000,182000,182000,182000,181000,180000,180000,179000,179000,178000,177000,176000,176000,175000,174000,173000,172000,171000,170000,169000,168000,167000,166000,165000,164000,163000,162000,160000,159000,158000,157000,156000,154000,153000,152000,151000,149000,148000,147000,145000,144000,143000,141000,140000,139000,137000,136000,135000,134000,132000,131000,130000,129000,128000,127000,126000,125000,124000,123000,122000 +Liechtenstein,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5800,5810,5830,5850,5890,5930,5970,6010,6060,6100,6140,6190,6230,6270,6320,6360,6410,6460,6500,6550,6590,6640,6690,6740,6780,6830,6880,6930,6980,7030,7080,7130,7180,7230,7290,7340,7390,7450,7500,7560,7610,7670,7720,7780,7840,7890,7950,8010,8070,8130,8190,8250,8310,8370,8430,8490,8550,8610,8680,8740,8800,8870,8930,9000,9060,9130,9200,9260,9330,9400,9470,9540,9610,9680,9750,9820,9890,9960,10000,10100,10200,10300,10300,10400,10500,10600,10600,10700,10800,10900,10900,11000,11100,11200,11300,11400,11500,11600,11700,11800,11900,12000,12100,12100,12100,12100,12100,12100,12100,12100,12100,12100,12200,12200,12300,12300,12400,12500,12600,12600,12700,12800,12900,12900,13000,13100,13200,13300,13300,13400,13500,13600,13800,14000,14200,14500,14700,14900,15200,15500,15800,16200,16500,16800,17200,17600,18100,18500,19000,19500,20000,20600,21100,21500,21900,22300,22600,23000,23400,23800,24200,24600,25000,25300,25700,26100,26400,26800,27200,27500,27900,28400,28800,29200,29600,30000,30400,30900,31300,31800,32200.000000000004,32600,33000,33400,33700,34000,34300,34600,34900,35100,35400,35700,35900,36200,36500,36800,37100,37400,37600,37900,38200,38500,38800,39000,39300,39600,39800,40000,40300,40500,40700,40900,41000,41200,41300,41500,41600,41700,41800,41900,42000,42000,42100,42100,42200,42200,42300,42300,42300,42300,42300,42300,42300,42300,42200,42200,42200,42200,42100,42100,42000,42000,41900,41900,41800,41800,41700,41700,41600,41600,41600,41500,41500,41500,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41400,41500,41500,41500 +Sri Lanka,1750000,1720000,1690000,1660000,1630000,1600000,1570000,1540000,1510000,1480000,1460000,1430000,1410000,1380000,1350000,1330000,1310000,1280000,1260000,1250000,1240000,1250000,1260000,1290000,1320000,1340000,1370000,1400000,1430000,1450000,1480000,1510000,1540000,1580000,1610000,1640000,1670000,1710000,1740000,1780000,1810000,1850000,1890000,1930000,1970000,2009999.9999999998,2049999.9999999998,2089999.9999999998,2130000,2160000,2170000,2170000,2150000,2120000,2089999.9999999998,2060000,2029999.9999999998,2000000,1970000,1960000,1970000,2009999.9999999998,2069999.9999999998,2150000,2240000,2330000,2420000,2520000,2620000,2700000,2780000,2840000,2880000,2900000,2930000,2960000,2980000,3010000,3030000,3060000,3090000,3120000,3160000,3190000,3230000,3260000,3300000,3330000,3370000,3410000,3450000,3500000,3560000,3620000,3680000,3740000,3800000,3860000,3930000,3990000,4059999.9999999995,4139999.9999999995,4210000,4290000,4370000,4450000,4530000,4620000,4700000,4780000,4860000,4930000,5000000,5060000,5130000,5190000,5260000,5320000,5380000,5440000,5500000,5550000,5600000,5650000,5700000,5750000,5800000,5840000,5890000,5940000,5990000,6030000,6080000,6120000,6170000,6210000,6260000,6300000,6350000,6410000,6490000,6590000,6710000,6850000,6990000,7140000,7290000,7440000,7590000,7760000,7950000,8090000,8250000,8410000,8580000,8750000,8930000,9120000,9330000,9550000,9780000,10000000,10300000,10500000,10800000,11000000,11300000,11600000,11800000,12100000,12400000,12700000,12900000,13200000,13400000,13700000,13900000,14200000,14400000,14700000,14900000,15200000,15400000,15700000,15900000,16100000.000000002,16300000,16500000,16800000,17000000,17200000,17400000,17600000,17800000,18000000,18200000,18300000,18400000,18600000,18700000,18800000,18900000,19100000,19300000,19500000,19700000,19900000,20100000,20300000,20500000,20700000,20900000,21000000,21100000,21200000,21300000,21400000,21500000,21600000,21600000,21700000,21800000,21800000,21900000,21900000,22000000,22000000,22100000,22100000,22200000,22200000,22200000,22200000,22300000,22300000,22300000,22300000,22300000,22300000,22300000,22300000,22200000,22200000,22200000,22200000,22100000,22100000,22000000,22000000,21900000,21800000,21700000,21700000,21600000,21500000,21400000,21300000,21200000,21100000,21000000,20900000,20800000,20700000,20600000,20400000,20300000,20200000,20100000,20000000,19800000,19700000,19600000,19400000,19300000,19100000,19000000,18900000,18700000,18600000,18400000,18200000,18100000,17900000,17800000,17600000,17400000,17300000,17100000,16900000,16700000,16600000.000000002,16399999.999999998,16200000,16000000,15800000,15600000,15500000,15300000,15100000,14900000,14700000 +Lesotho,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,276000,274000,272000,268000,265000,261000,257000,253000,249000,246000,242000,239000,235000,232000,228000,225000,222000,219000,215000,212000,209000,206000,203000,200000,197000,194000,191000,189000,186000,183000,181000,181000,180000,180000,182000,183000,184000,185000,187000,188000,189000,191000,192000,193000,195000,196000,197000,199000,200000,201000,203000,204000,205000,207000,208000,210000,211000,212000,214000,215000,217000,218000,219000,221000,222000,224000,225000,227000,228000,230000,231000,233000,234000,236000,237000,239000,240000,242000,244000,245000,247000,249000,252000,255000,258000,261000,264000,268000,271000,275000,278000,281000,285000,288000,291000,295000,298000,302000,305000,310000,315000,321000,327000,333000,340000,347000,355000,362000,370000,377000,385000,393000,401000,410000,418000,426000,435000,444000,453000,462000,471000,480000,490000,499000,509000,518000,528000,539000,549000,559000,570000,579000,590000,601000,614000,627000,641000,656000,674000,694000,716000,738000,761000,785000,809000,834000,860000,888000,919000,953000,988000,1020000,1060000,1100000,1140000,1180000,1220000,1260000,1290000,1330000,1370000,1410000,1450000,1490000,1530000,1570000,1620000,1660000,1700000,1730000,1770000,1800000,1830000,1860000,1890000,1910000,1930000,1960000,1970000,1990000,1990000,2000000,2000000,2000000,1990000,1990000,1980000,1980000,1980000,2000000,2009999.9999999998,2020000,2040000,2049999.9999999998,2069999.9999999998,2100000,2120000,2140000,2170000,2200000,2230000,2250000,2280000,2310000,2330000,2360000,2380000,2410000,2430000,2450000,2480000,2500000,2530000,2550000,2570000,2590000,2610000,2640000,2660000,2680000,2700000,2720000,2740000,2760000,2780000,2800000,2820000,2830000,2850000,2870000,2880000,2900000,2910000,2930000,2940000,2950000,2970000,2980000,2990000,3000000,3010000,3020000,3030000,3040000,3050000,3050000,3060000,3070000,3070000,3080000,3080000,3080000,3090000,3090000,3090000,3090000,3090000,3100000,3090000,3090000,3090000,3090000,3090000,3090000,3080000,3080000,3080000,3070000,3070000,3060000,3060000,3050000,3040000,3040000,3030000,3020000,3010000,3000000,3000000,2990000,2980000,2970000 +Lithuania,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,779000,781000,786000,793000,802000,814000,826000,838000,850000,863000,876000,889000,902000,915000,929000,942000,956000,971000,985000,999000,1010000,1030000,1040000,1060000,1080000,1090000,1110000,1120000,1140000,1160000,1170000,1190000,1210000,1230000,1250000,1260000,1280000,1300000,1320000,1340000,1360000,1380000,1400000,1420000,1440000,1460000,1490000,1510000,1530000,1550000,1580000,1600000,1620000,1650000,1670000,1700000,1720000,1750000,1770000,1800000,1830000,1850000,1880000,1910000,1940000,1960000,1990000,2020000,2049999.9999999998,2080000,2110000,2150000,2180000,2210000,2240000,2280000,2310000,2340000,2380000,2410000,2450000,2490000,2520000,2560000,2600000,2640000,2680000,2720000,2760000,2800000,2840000,2860000,2850000,2820000,2770000,2700000,2630000,2560000,2490000,2420000,2360000,2310000,2280000,2270000,2270000,2290000,2310000,2330000,2350000,2370000,2390000,2400000,2420000,2430000,2430000,2430000,2440000,2440000,2440000,2440000,2440000,2450000,2450000,2460000,2470000,2480000,2490000,2500000,2510000,2530000,2540000,2550000,2560000,2590000,2620000,2640000,2670000,2700000,2730000,2760000,2800000,2840000,2880000,2920000,2950000,2990000,3020000,3050000,3080000,3120000,3150000,3180000,3210000,3240000,3280000,3310000,3340000,3370000,3400000,3430000,3460000,3490000,3520000,3550000,3580000,3610000,3640000,3670000,3700000,3730000,3760000,3770000,3790000,3790000,3800000,3790000,3770000,3750000,3720000,3690000,3670000,3630000,3600000,3560000,3520000,3470000,3420000,3370000,3320000,3270000,3220000,3180000,3140000,3100000,3060000,3030000,2990000,2960000,2930000,2900000,2880000,2850000,2820000,2790000,2750000,2720000,2690000,2670000,2650000,2620000,2600000,2580000,2560000,2540000,2520000,2500000,2480000,2460000,2440000,2420000,2400000,2380000,2360000,2340000,2320000,2310000,2290000,2270000,2250000,2240000,2220000,2200000,2190000,2170000,2150000,2140000,2120000,2100000,2089999.9999999998,2069999.9999999998,2049999.9999999998,2040000,2020000,2000000,1990000,1970000,1950000,1940000,1920000,1900000,1890000,1870000,1860000,1840000,1830000,1810000,1800000,1780000,1770000,1760000,1750000,1730000,1720000,1710000,1700000,1680000,1670000,1660000,1650000,1640000,1630000,1620000,1610000,1600000,1590000,1580000,1570000,1560000,1550000,1530000,1520000,1510000,1500000 +Luxembourg,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,128000,129000,132000,135000,139000,143000,147000,151000,156000,161000,164000,168000,170000,172000,173000,174000,175000,176000,177000,178000,179000,180000,181000,183000,184000,185000,186000,188000,189000,190000,192000,193000,194000,195000,196000,197000,198000,199000,200000,201000,202000,202000,202000,202000,201000,201000,200000,200000,199000,199000,199000,199000,199000,200000,201000,203000,204000,205000,206000,207000,208000,209000,210000,210000,210000,210000,210000,210000,211000,211000,211000,212000,214000,216000,218000,220000,223000,225000,228000,231000,233000,236000,238000,240000,243000,245000,247000,250000,252000,255000,257000,259000,260000,261000,262000,263000,264000,265000,266000,267000,268000,270000,272000,275000,278000,281000,284000,287000,290000,293000,296000,298000,299000,300000,300000,300000,300000,300000,300000,300000,300000,300000,300000,300000,299000,298000,298000,297000,297000,296000,296000,297000,298000,300000,302000,304000,306000,307000,309000,311000,313000,314000,317000,320000,323000,326000,330000,333000,336000,337000,338000,339000,342000,346000,349000,351000,354000,356000,358000,361000,363000,364000,364000,365000,365000,366000,366000,368000,371000,373000,377000,381000,386000,392000,397000,402000,408000,413000,418000,424000,429000,436000,441000,446000,451000,458000,465000,472000,480000,489000,498000,507000,518000,531000,543000,556000,569000,583000,596000,608000,620000,630000,639000,648000,655000,662000,668000,674000,680000,686000,692000,697000,702000,708000,713000,718000,723000,727000,732000,736000,741000,745000,749000,753000,757000,761000,765000,768000,772000,775000,779000,782000,785000,788000,791000,794000,796000,799000,802000,804000,807000,809000,811000,813000,815000,817000,819000,821000,823000,825000,826000,828000,830000,831000,833000,835000,836000,838000,839000,841000,843000,844000,846000,847000,849000,850000,852000,853000,855000,857000,858000,860000,862000,864000,865000,867000,869000,871000,873000,875000,877000,879000 +Latvia,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,591000,593000,596000,602000,610000,620000,630000,641000,651000,662000,673000,684000,695000,706000,718000,730000,742000,754000,766000,779000,792000,805000,818000,831000,845000,859000,873000,887000,902000,916000,931000,947000,962000,978000,994000,1010000,1030000,1040000,1060000,1080000,1090000,1110000,1130000,1150000,1170000,1190000,1200000,1220000,1240000,1260000,1280000,1310000,1330000,1350000,1370000,1390000,1410000,1440000,1460000,1480000,1510000,1530000,1560000,1580000,1610000,1640000,1660000,1690000,1720000,1740000,1770000,1800000,1830000,1860000,1890000,1920000,1950000,1980000,2009999.9999999998,2049999.9999999998,2080000,2110000,2150000,2180000,2220000,2250000,2290000,2330000,2370000,2400000,2440000,2460000,2450000,2420000,2370000,2290000,2220000,2140000,2080000,2009999.9999999998,1950000,1900000,1860000,1840000,1830000,1840000,1840000,1850000,1850000,1860000,1860000,1870000,1880000,1880000,1890000,1890000,1900000,1900000,1910000,1910000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1910000,1920000,1920000,1940000,1970000,1990000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2080000,2100000,2130000,2150000,2180000,2210000,2240000,2260000,2290000,2310000,2330000,2360000,2380000,2400000,2420000,2440000,2460000,2480000,2490000,2510000,2520000,2540000,2560000,2570000,2590000,2600000,2620000,2640000,2660000,2670000,2680000,2690000,2690000,2690000,2680000,2660000,2640000,2610000,2570000,2530000,2500000,2460000,2430000,2390000,2360000,2330000,2290000,2260000,2230000,2200000,2180000,2150000,2130000,2100000,2080000,2049999.9999999998,2029999.9999999998,2009999.9999999998,1990000,1970000,1950000,1940000,1920000,1900000,1870000,1850000,1830000,1810000,1790000,1770000,1750000,1740000,1720000,1700000,1680000,1670000,1650000,1640000,1620000,1610000,1590000,1580000,1570000,1550000,1540000,1530000,1520000,1500000,1490000,1480000,1470000,1460000,1450000,1430000,1420000,1410000,1400000,1390000,1370000,1360000,1350000,1340000,1330000,1310000,1300000,1290000,1280000,1270000,1260000,1250000,1230000,1220000,1210000,1200000,1190000,1180000,1170000,1160000,1150000,1140000,1140000,1130000,1120000,1110000,1100000,1090000,1080000,1080000,1070000,1060000,1050000,1040000,1040000,1030000,1020000,1010000,1010000,1000000,992000,985000,977000,970000,962000,954000 +Morocco,2500000,2510000,2520000,2530000,2540000,2550000,2560000,2560000,2570000,2580000,2590000,2600000,2610000,2620000,2630000,2640000,2650000,2660000,2670000,2680000,2690000,2690000,2700000,2700000,2710000,2710000,2720000,2730000,2730000,2740000,2740000,2750000,2750000,2760000,2760000,2770000,2770000,2780000,2780000,2790000,2790000,2800000,2800000,2810000,2810000,2820000,2830000,2830000,2840000,2850000,2860000,2880000,2900000,2930000,2960000,2990000,3020000,3050000,3080000,3110000,3140000,3180000,3210000,3240000,3270000,3300000,3340000,3370000,3400000,3440000,3470000,3510000,3540000,3580000,3610000,3650000,3690000,3720000,3760000,3800000,3840000,3870000,3910000,3950000,3990000,4030000.0000000005,4070000.0000000005,4110000.0000000005,4150000.0000000005,4190000.0000000005,4240000,4280000,4320000,4360000,4400000,4440000,4490000,4530000,4570000,4620000,4680000,4740000,4820000,4890000,4970000,5050000,5130000,5220000,5300000,5380000,5440000,5490000,5530000,5550000,5580000,5610000,5640000,5670000,5690000,5730000,5770000,5820000,5880000,5950000,6010000,6080000,6150000,6210000,6280000,6360000,6450000,6550000,6650000,6770000,6890000,7010000,7140000,7260000,7390000,7520000,7640000,7760000,7890000,8000000,8119999.999999999,8250000,8369999.999999999,8500000,8620000,8770000,8950000,9190000,9440000,9700000,9960000,10200000,10500000,10800000,11100000,11500000,11800000,12100000,12400000,12700000,13000000,13400000,13700000,14100000,14500000,14900000,15300000,15700000,16100000.000000002,16500000,16900000,17300000,17800000,18200000,18700000,19200000,19700000,20200000,20700000,21300000,21800000,22300000,22800000,23300000,23700000,24100000,24600000,25000000,25400000,25800000,26200000,26600000,27000000,27400000,27800000,28200000,28600000,28900000,29300000,29700000,30000000,30400000,30800000,31200000,31600000,32000000,32500000,32900000,33400000,33800000,34200000,34700000,35100000,35500000,35900000,36300000,36700000,37100000,37500000,37800000,38200000,38600000,38900000,39300000,39600000,39900000,40200000,40500000,40800000,41100000,41400000,41700000,42000000,42200000,42500000,42700000,43000000,43200000,43500000,43700000,43900000,44100000,44300000,44500000,44700000,44900000,45000000,45200000,45400000,45500000,45600000,45700000,45900000,46000000,46100000,46100000,46200000,46300000,46300000,46400000,46400000,46500000,46500000,46500000,46500000,46500000,46500000,46500000,46500000,46500000,46500000,46500000,46400000,46400000,46300000,46300000,46200000,46200000,46100000,46000000,45900000,45800000,45700000,45700000,45500000,45400000,45300000,45200000,45100000,45000000,44800000,44700000,44600000,44400000,44300000,44100000,43900000 +Monaco,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7790,7810,7850,7900,7980,8080,8170,8270,8370,8480,8580,8680,8790,8890,9000,9110,9220,9330,9440,9560,9670,9790,9910,10000,10200,10300,10400,10500,10700,10800,10900,11000,11200,11300,11500,11600,11800,11900,12100,12200,12400,12600,12700,12900,13100,13200,13400,13600,13700,13900,14100,14300,14500,14700,14900,15100,15200,15400,15600,15800,16100.000000000002,16300,16500,16700,16900,17100,17300,17600,17800,18000,18300,18500,18700,19000,19200,19500,19700,20000,20300,20500,20800,21100,21300,21600,21900,22200,22500,22800,23000,23300,23700,23900,24000,24100,24100,24000,23900,23800,23800,23700,23600,23500,23600,23700,24000,24300,24600,24900,25200,25500,25900,26100,26300,26300,26300,26200,26100,26000,25900,25800,25700,25500,25100,24700,24100,23400,22800,22200,21500,20900,20400,20000,19700,19900,19700,20000,20300,20400,20700,21100,21400,21600,21800,21900,22100,22400,22800,23000,23200,23300,23500,23900,24300,24600,24900,25100,25300,25500,25900,26200,26600,26800,27100,27300,27600,28000,28400,28800,29200,29500,29800,30100,30300,30600,30800,31000,31300,31500,31700,32000,32200.000000000004,32400,32500,32400,32400,32299.999999999996,32200.000000000004,32100,32000,31800,31900,32400,33200,33900,34700,35400,36100,36800,37100,37000,37000,37000,36900,36700,36500,36300,36200,36100,36000,35900,35900,35900,35900,35900,35900,35900,36000,36000,36100,36200,36300,36400,36400,36500,36600,36700,36900,37000,37100,37200,37400,37500,37700,37800,38000,38100,38300,38400,38600,38800,39000,39200,39400,39600,39800,40000,40300,40500,40800,41000,41300,41600,41900,42200,42500,42800,43100,43400,43700,44000,44300,44600,44900,45200,45600,45900,46200,46500,46800,47100,47400,47700,48000,48300,48600,48900,49200,49500,49700,50000,50300,50600,50900 +Moldova,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,713000,714000,716000,720000,726000,732000,739000,746000,753000,760000,767000,774000,781000,788000,795000,802000,810000,817000,825000,832000,840000,848000,855000,863000,871000,879000,887000,895000,904000,912000,920000,929000,937000,946000,955000,964000,972000,981000,990000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1240000,1250000,1260000,1270000,1280000,1290000,1310000,1320000,1330000,1340000,1350000,1370000,1380000,1390000,1410000,1420000,1430000,1440000,1460000,1470000,1480000,1500000,1510000,1530000,1540000,1550000,1570000,1580000,1600000,1610000,1630000,1640000,1660000,1670000,1690000,1700000,1720000,1740000,1750000,1770000,1780000,1800000,1820000,1830000,1850000,1870000,1890000,1900000,1920000,1940000,1960000,1970000,1990000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2069999.9999999998,2080000,2100000,2120000,2140000,2160000,2180000,2200000,2220000,2240000,2260000,2280000,2300000,2330000,2370000,2430000,2490000,2560000,2640000,2710000,2800000,2880000,2960000,3050000,3130000,3210000,3290000,3360000,3420000,3480000,3530000,3580000,3630000,3670000,3710000,3750000,3790000,3830000,3870000,3910000,3950000,3990000,4030000.0000000005,4070000.0000000005,4099999.9999999995,4139999.9999999995,4179999.9999999995,4220000,4260000,4300000,4340000,4390000,4430000,4460000,4480000,4490000,4490000,4490000,4480000,4460000,4430000,4390000,4350000,4300000,4250000,4200000,4150000.0000000005,4090000,4050000,4000000,3940000,3880000,3810000,3750000,3680000,3600000,3510000,3420000,3340000,3280000,3230000,3180000,3140000,3110000,3080000,3060000,3270000,3440000,3330000,3250000,3210000,3190000,3190000,3180000,3170000,3170000,3160000,3150000,3140000,3130000,3120000,3110000,3100000,3090000,3080000,3070000,3060000,3050000,3040000,3030000,3030000,3020000,3010000,3000000,3000000,2990000,2980000,2980000,2970000,2960000,2950000,2940000,2930000,2920000,2910000,2900000,2890000,2880000,2860000,2850000,2840000,2820000,2810000,2800000,2780000,2770000,2750000,2740000,2730000,2720000,2700000,2690000,2680000,2670000,2660000,2650000,2630000,2620000,2610000,2600000,2600000,2590000,2580000,2570000,2560000,2550000,2540000,2530000,2520000,2510000,2500000,2490000,2480000,2470000,2460000 +Madagascar,1500000,1510000,1520000,1530000,1530000,1540000,1550000,1560000,1570000,1580000,1590000,1600000,1610000,1620000,1630000,1640000,1640000,1650000,1660000,1680000,1690000,1710000,1730000,1760000,1790000,1810000,1840000,1870000,1900000,1920000,1950000,1980000,2009999.9999999998,2040000,2069999.9999999998,2100000,2140000,2170000,2200000,2230000,2270000,2300000,2340000,2370000,2410000,2440000,2480000,2520000,2550000,2590000,2610000,2630000,2640000,2650000,2650000,2660000,2660000,2670000,2670000,2680000,2680000,2690000,2690000,2700000,2700000,2710000,2710000,2720000,2720000,2730000,2740000,2740000,2750000,2760000,2770000,2780000,2780000,2790000,2800000,2810000,2820000,2820000,2830000,2840000,2850000,2860000,2870000,2870000,2880000,2880000,2880000,2870000,2850000,2830000,2810000,2780000,2760000,2740000,2720000,2700000,2680000,2660000,2650000,2630000,2620000,2610000,2590000,2580000,2570000,2550000,2540000,2530000,2520000,2520000,2510000,2500000,2490000,2490000,2480000,2480000,2500000,2520000,2550000,2580000,2620000,2660000,2700000,2740000,2780000,2820000,2870000,2910000,2950000,2990000,3030000,3070000,3120000,3160000,3200000,3250000,3300000,3360000,3420000,3480000,3540000,3600000,3670000,3730000,3800000,3870000,3950000,4050000,4150000.0000000005,4250000,4360000,4470000,4580000,4700000,4820000,4940000,5070000,5210000,5340000,5480000,5630000,5780000,5940000,6100000,6270000,6450000,6640000,6840000,7050000,7270000,7490000,7720000,7960000,8199999.999999999,8440000,8690000,8950000,9210000,9470000,9740000,10000000,10300000,10600000,10900000,11200000,11500000,11900000,12200000,12600000,13000000,13400000,13900000,14300000,14800000,15300000,15700000,16200000,16700000,17200000,17700000,18300000,18800000,19400000,19900000,20500000,21100000,21700000,22300000,23000000,23600000,24200000,24900000,25500000,26200000,26800000,27500000,28200000,28900000,29600000,30300000,31100000,31800000,32500000,33299999.999999996,34100000,34800000,35600000,36400000,37200000,38000000,38700000,39500000,40300000,41100000,41900000,42700000,43500000,44300000,45100000,45900000,46700000,47500000,48400000,49200000,50000000,50800000,51600000,52400000,53200000,54000000,54800000,55600000,56400000,57200000,58000000,58800000,59600000,60300000,61100000,61900000,62600000,63400000,64099999.99999999,64900000.00000001,65599999.99999999,66300000,67000000,67700000,68400000,69100000,69700000,70400000,71100000,71700000,72300000,72900000,73600000,74200000,74700000,75300000,75900000,76400000,76900000,77500000,78000000,78500000,79000000,79500000,79900000,80400000,80800000,81300000,81700000,82100000,82500000,82900000,83300000 +Maldives,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42400,42500,42700,42900,43100,43400,43600,43900,44200,44400,44700,45000,45200,45500,45800,46000,46300,46600,46800,47100,47400,47700,48000,48200,48500,48800,49100,49400,49700,50000,50300,50600,50800,51100,51300,51500,51800,52000,52300,52500,52800,53000,53300,53600,53800,54100,54300,54600,54800,55100,55400,55600,55900,56200,56400,56700,57000,57300,57500,57800,58100,58400,58600,58900,59200,59500,59800,60000,60300,60600,60900,61200,61500,61800,62100,62400,62700,62900,63200,63500,63800,64200,64500,64800,65099.99999999999,65400.00000000001,65700,66000,66300,66600,66800,66900,66900,66700,66400,66200,65900,65700,65400.00000000001,65200,65200,65400.00000000001,65800,66400,67200,68100,68900,69700,70600,71400,72300,73000,73800,74400,75100,75700,76400,77000,77700,78300,78700,78900,78800,78400,77700,77100,76500,75900,75300,74700,74400,74500,75800,77200,78700,80200,81800,83600,85400,87400,89500,91700,94000,96300,98800,101000,105000,109000,113000,116000,120000,123000,127000,131000,135000,139000,143000,147000,152000,156000,160000,165000,170000,175000,179000,184000,190000,197000,204000,211000,218000,225000,232000,239000,246000,252000,258000,264000,269000,274000,278000,283000,287000,292000,297000,302000,307000,314000,325000,337000,349000,362000,374000,388000,401000,417000,436000,454000,472000,490000,505000,514000,521000,524000,521000,518000,515000,513000,512000,512000,512000,513000,515000,518000,521000,524000,527000,530000,533000,536000,539000,542000,545000,548000,551000,554000,557000,560000,562000,565000,568000,570000,572000,574000,575000,577000,578000,578000,579000,579000,579000,578000,577000,576000,575000,573000,571000,569000,567000,564000,562000,559000,556000,553000,550000,546000,543000,539000,536000,532000,528000,525000,521000,517000,513000,510000,506000,503000,500000,497000,494000,491000,488000,486000,483000,481000,479000,477000,475000,473000,471000,469000 +Mexico,5100000,5170000,5230000,5300000,5370000,5440000,5510000,5580000,5650000,5720000,5800000,5870000,5950000,6020000,6100000,6180000,6260000,6340000,6420000,6480000,6520000,6550000,6550000,6520000,6500000,6480000,6460000,6440000,6420000,6420000,6430000,6460000,6510000,6570000,6640000,6710000,6770000,6840000,6910000,6970000,7040000,7100000,7160000,7220000,7290000,7350000,7410000,7470000,7530000,7610000,7690000,7780000,7870000,7980000,8090000,8199999.999999999,8310000.000000001,8430000,8540000,8640000,8730000,8800000,8850000,8880000,8920000,8950000,8990000,9030000,9060000,9110000,9180000,9260000,9350000,9460000,9570000,9680000,9790000,9910000,10000000,10100000,10300000,10400000,10500000,10600000,10700000,10900000,11000000,11100000,11300000,11400000,11500000,11700000,11900000,12000000,12200000,12400000,12600000,12700000,12900000,13100000,13300000,13400000,13600000,13700000,13800000,13900000,14100000,14200000,14300000,14400000,14500000,14500000,14600000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14600000,14700000,14900000,15100000,15300000,15500000,15700000,16000000,16200000,16399999.999999998,16700000,17000000,17200000,17500000,17800000,18200000,18500000,18800000,19100000,19500000,20000000,20500000,21200000,21900000,22600000,23400000,24200000,25000000,25900000,26700000,27600000,28300000,29100000,29800000,30600000,31500000,32299999.999999996,33200000.000000004,34200000,35200000,36300000,37400000,38700000,40000000,41300000,42700000,44200000,45700000,47200000,48700000,50300000,51900000,53500000,55200000,56900000,58700000,60500000,62300000,64099999.99999999,66000000,67700000,69200000,70700000,72100000,73500000,74900000,76200000,77600000,78900000,80200000,81700000,83400000,85000000,86600000,88300000,90000000,91600000,93200000,94800000,96300000,97900000,99400000,101000000,102000000,104000000,105000000,107000000,108000000,110000000,111000000,113000000,114000000,116000000,117000000,119000000,120000000,122000000,123000000,124000000,125000000,126000000,127000000,128000000,128000000,129000000,130000000,131000000,132000000,133000000,134000000,135000000,135000000,136000000,137000000,138000000,138000000,139000000,139000000,140000000,141000000,141000000,142000000,142000000,142000000,143000000,143000000,143000000,143000000,144000000,144000000,144000000,144000000,144000000,144000000,144000000,144000000,144000000,143000000,143000000,143000000,143000000,143000000,142000000,142000000,142000000,141000000,141000000,140000000,140000000,140000000,139000000,139000000,138000000,137000000,137000000,136000000,136000000,135000000,134000000,134000000,133000000,132000000,131000000,131000000,130000000,129000000,128000000,127000000,126000000,126000000,125000000,124000000,123000000,122000000,121000000,120000000,119000000,118000000,117000000,117000000,116000000 +Marshall Islands,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5830,5860,5910,5990,6110,6250,6390,6540,6690,6850,7010,7170,7340,7510,7680,7860,8040,8230,8420,8620,8820,9020,9230,9450,9670,9890,10100,10400,10600,10800,11100,11400,11600,11900,12200,12500,12800,13100,13500,13800,14100,14500,14900,15200,15600,16000,16400,16800,17200,17600,18100,18500,19000,19500,19900,20400,20900,21500,22000,22500,23100,23700,24300,24900,25500,26100,26800,27400,28100,28800,29500,30300,31000,31800,32600,33400,34200,35000,35900,36800,37700,38600,39600,40600,41600,42600,43700,44700,45900,47000,48200,49300,50600,51800,53100,54400,55800,57100,58600,60000,61400,62800,64300,65800,67300,68900,70500,72100,73800,75500,77300,77200,75500,72200,67500,61300,55800,50700,46100,41900,38100,34700,31500,28700,26100,23700,21600,19600,17800,16200,14700,13700,13100,13300,13500,13700,13900,14100,14200,14300,14500,14900,15400,15900,16400,16900,17500,18200,18800,19700,21000,22600,24000,24700,25100,25500,26200,27000,28000,28900,29900,30900,32000,33200,34600,36000,37400,39000,40500,42100,43700,45000,46000,47100,48000,48900,49800,50700,51500,52400,53200,53800,54200,54400,54500,54500,54400,54300,54200,54000,53800,53600,53400,53000,52200,51400,50400,49400,48300,47200,46000,44700,43400,42000,41600,42000,42400,42800,43200,43600,44000,44400,44700,45100,45500,45900,46200,46600,47000,47400,47700,48100,48400,48800,49100,49400,49700,50000,50300,50600,50800,51000,51200,51400,51600,51700,51900,52000,52100,52200,52300,52400,52500,52600,52700,52700,52800,52900,52900,53000,53100,53100,53200,53200,53300,53300,53300,53400,53400,53400,53400,53400,53400,53300,53300,53200,53200,53100,53000,52900,52800,52700,52500,52400,52300,52100,52000,51800,51600,51500,51300,51100,51000 +North Macedonia,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,392000,393000,394000,396000,399000,402000,406000,409000,413000,417000,420000,424000,428000,432000,435000,439000,443000,447000,451000,455000,459000,463000,467000,471000,475000,479000,484000,488000,492000,497000,501000,505000,510000,514000,519000,524000,529000,533000,538000,543000,548000,553000,558000,563000,568000,574000,579000,584000,589000,595000,600000,606000,611000,617000,622000,628000,634000,639000,645000,651000,657000,663000,669000,675000,681000,688000,694000,700000,707000,713000,720000,726000,733000,739000,746000,753000,760000,767000,774000,781000,788000,795000,802000,810000,817000,824000,832000,839000,847000,855000,863000,870000,878000,886000,894000,903000,911000,919000,927000,936000,944000,952000,961000,969000,978000,986000,995000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1120000,1130000,1140000,1150000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1250000,1280000,1310000,1340000,1360000,1380000,1400000,1410000,1430000,1450000,1460000,1480000,1500000,1510000,1530000,1550000,1570000,1590000,1610000,1630000,1660000,1680000,1700000,1730000,1750000,1770000,1800000,1830000,1850000,1880000,1910000,1940000,1960000,1970000,1990000,2000000,2009999.9999999998,2020000,2029999.9999999998,2040000,2040000,2040000,2020000,2000000,1980000,1980000,1990000,2000000,2009999.9999999998,2020000,2040000,2049999.9999999998,2060000,2069999.9999999998,2080000,2080000,2080000,2080000,2089999.9999999998,2089999.9999999998,2089999.9999999998,2100000,2100000,2100000,2110000,2110000,2110000,2110000,2110000,2110000,2110000,2100000,2089999.9999999998,2089999.9999999998,2080000,2080000,2080000,2080000,2080000,2080000,2069999.9999999998,2069999.9999999998,2060000,2060000,2049999.9999999998,2049999.9999999998,2040000,2029999.9999999998,2029999.9999999998,2020000,2009999.9999999998,2000000,1990000,1980000,1970000,1960000,1950000,1940000,1930000,1920000,1910000,1900000,1890000,1870000,1860000,1850000,1840000,1820000,1810000,1800000,1780000,1770000,1760000,1740000,1730000,1710000,1700000,1680000,1670000,1650000,1640000,1620000,1610000,1590000,1580000,1560000,1540000,1530000,1510000,1500000,1480000,1470000,1450000,1440000,1420000,1410000,1390000,1380000,1360000,1350000,1340000,1320000,1310000,1300000,1280000,1270000,1260000,1250000,1230000,1220000,1210000 +Mali,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1400000,1410000,1410000,1410000,1410000,1420000,1420000,1420000,1430000,1430000,1430000,1440000,1440000,1440000,1450000,1450000,1450000,1460000,1460000,1460000,1470000,1470000,1470000,1480000,1480000,1480000,1490000,1490000,1490000,1500000,1500000,1500000,1510000,1530000,1540000,1550000,1560000,1580000,1590000,1600000,1610000,1630000,1640000,1650000,1660000,1680000,1690000,1700000,1720000,1730000,1740000,1760000,1770000,1790000,1800000,1820000,1840000,1860000,1870000,1890000,1910000,1930000,1940000,1960000,1980000,2000000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2069999.9999999998,2089999.9999999998,2110000,2130000,2150000,2170000,2190000,2210000,2230000,2260000,2280000,2300000,2330000,2360000,2400000,2430000,2470000,2510000,2550000,2590000,2630000,2670000,2710000,2740000,2780000,2820000,2850000,2890000,2920000,2960000,2980000,3010000,3040000,3080000,3120000,3160000,3200000,3250000,3290000,3340000,3390000,3430000,3480000,3530000,3570000,3620000,3670000,3710000,3760000,3810000,3860000,3910000,3970000,4030000.0000000005,4099999.9999999995,4170000,4240000,4310000,4380000,4460000,4530000,4610000,4690000,4760000,4820000,4890000,4950000,5010000,5080000,5140000,5210000,5280000,5350000,5420000,5490000,5570000,5650000,5730000,5810000,5890000,5970000,6060000,6150000,6250000,6350000,6460000,6570000,6690000,6810000,6940000,7070000,7220000,7370000,7530000,7700000,7860000,8029999.999999999,8189999.999999999,8330000,8470000,8620000,8770000,8950000,9120000,9310000,9510000,9710000,9920000,10100000,10400000,10600000,10900000,11200000,11600000,12000000,12300000,12800000,13200000,13600000,14100000,14600000,15000000,15500000,16000000,16500000,17000000,17600000,18100000,18700000,19300000,19900000,20600000,21200000,21900000,22600000,23300000,24000000,24800000,25500000,26300000,27100000,27900000,28700000,29600000,30400000,31300000,32200000.000000004,33100000,34000000,34900000,35800000,36700000,37700000,38600000,39600000,40600000,41500000,42500000,43500000,44500000,45500000,46500000,47400000,48400000,49400000,50400000,51400000,52300000,53300000,54300000,55300000,56200000,57200000,58200000,59200000,60100000,61100000,62000000,62900000,63900000,64800000,65700000,66599999.99999999,67500000,68400000,69300000,70100000,71000000,71800000,72600000,73400000,74200000,75000000,75800000,76500000,77300000,78000000,78700000,79400000,80100000,80700000,81300000,81900000,82500000,83100000,83700000,84200000,84700000,85200000,85700000,86200000,86600000,87100000 +Malta,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,134000,135000,135000,136000,136000,137000,138000,139000,140000,141000,141000,142000,143000,144000,145000,146000,147000,147000,148000,149000,150000,151000,152000,153000,154000,155000,156000,157000,157000,158000,159000,160000,161000,162000,163000,164000,164000,165000,166000,167000,168000,169000,169000,170000,171000,172000,173000,174000,175000,176000,176000,177000,178000,179000,180000,181000,182000,183000,184000,185000,186000,186000,187000,188000,189000,190000,191000,192000,193000,194000,195000,196000,197000,198000,199000,200000,201000,202000,203000,204000,205000,206000,207000,208000,209000,210000,211000,213000,214000,215000,215000,216000,216000,216000,215000,215000,214000,213000,213000,212000,212000,213000,213000,215000,216000,218000,219000,221000,222000,224000,225000,227000,230000,232000,235000,237000,240000,243000,246000,248000,251000,255000,258000,261000,265000,269000,273000,277000,281000,285000,289000,292000,298000,305000,311000,318000,324000,329000,333000,335000,337000,338000,337000,335000,333000,330000,326000,323000,320000,318000,316000,315000,315000,315000,316000,318000,320000,322000,325000,327000,330000,334000,337000,340000,343000,346000,349000,352000,355000,358000,362000,365000,369000,372000,375000,379000,382000,385000,389000,392000,396000,399000,402000,405000,407000,409000,410000,411000,412000,413000,416000,419000,424000,430000,438000,446000,457000,468000,479000,492000,504000,515000,527000,533000,535000,537000,538000,540000,541000,542000,543000,543000,544000,544000,544000,543000,543000,542000,541000,540000,539000,538000,536000,535000,533000,532000,530000,529000,527000,526000,524000,523000,521000,520000,518000,517000,515000,514000,512000,510000,509000,507000,505000,503000,501000,499000,496000,494000,491000,488000,485000,482000,479000,475000,472000,468000,465000,461000,457000,453000,449000,445000,441000,437000,433000,430000,426000,422000,419000,415000,412000,409000,406000,403000,401000,398000,396000,394000,392000,390000,388000,386000 +Myanmar,6000000,5840000,5690000,5540000,5390000,5250000,5110000,4970000,4840000,4710000,4590000,4470000,4350000,4230000,4120000,4010000,3910000,3800000,3700000,3630000,3570000,3540000,3530000,3550000,3560000,3570000,3590000,3600000,3610000,3630000,3640000,3660000,3670000,3680000,3700000,3710000,3730000,3740000,3760000,3770000,3780000,3800000,3810000,3830000,3840000,3860000,3870000,3890000,3900000,3920000,3930000,3940000,3950000,3960000,3970000,3980000,3990000,4000000,4010000,4019999.9999999995,4030000.0000000005,4040000,4050000,4059999.9999999995,4070000.0000000005,4080000,4090000,4099999.9999999995,4110000.0000000005,4110000.0000000005,4090000,4059999.9999999995,4019999.9999999995,3960000,3900000,3850000,3800000,3740000,3690000,3700000,3770000,3910000,4130000,4420000,4730000,5070000,5420000,5800000,6210000,6590000,6940000,7250000,7520000,7740000,7970000,8210000.000000001,8450000,8700000,8960000,9200000,9410000,9600000,9770000,9920000,10100000,10200000,10400000,10500000,10700000,10800000,10900000,11000000,11100000,11200000,11300000,11400000,11500000,11600000,11700000,11800000,11900000,12000000,12200000,12300000,12400000,12500000,12700000,12800000,12900000,13100000,13200000,13400000,13600000,13700000,13900000,14100000,14300000,14500000,14700000,14900000,15100000,15400000,15600000,15800000,16100000.000000002,16399999.999999998,16600000.000000002,16900000,17200000,17500000,17700000,18100000,18400000,18700000,19100000,19500000,19900000,20400000,20800000,21300000,21700000,22200000,22700000,23200000,23700000,24300000,24900000,25400000,26000000,26700000,27300000,27900000,28600000,29200000,29800000,30300000,30900000,31600000,32200000.000000004,32799999.999999996,33500000,34100000,34700000,35400000,36200000,36900000,37600000,38200000,38900000,39500000,40100000,40700000,41200000,41800000,42300000,42900000,43400000,44000000,44500000,45000000,45500000,46000000,46500000,46900000,47300000,47700000,48100000,48400000,48700000,49000000,49400000,49800000,50200000,50600000,51100000,51500000,51900000,52300000,52700000,53000000,53400000,53800000,54200000,54600000,55000000,55300000,55700000,56000000,56400000,56700000,57000000,57300000,57500000,57800000,58000000,58200000,58500000,58600000,58800000,59000000,59100000,59300000,59400000,59500000,59600000,59700000,59800000,59800000,59900000,59900000,59900000,59900000,59900000,59900000,59900000,59900000,59900000,59800000,59700000,59700000,59600000,59500000,59400000,59300000,59200000,59100000,59000000,58900000,58700000,58600000,58400000,58300000,58100000,58000000,57800000,57600000,57500000,57300000,57100000,56900000,56700000,56500000,56300000,56100000,55900000,55700000,55500000,55300000,55100000,54900000,54700000,54500000,54200000,54000000,53800000,53600000,53300000,53100000,52900000,52700000,52400000 +Montenegro,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,127000,128000,129000,131000,133000,135000,137000,139000,141000,143000,146000,148000,150000,153000,155000,158000,160000,163000,165000,168000,170000,173000,176000,179000,181000,184000,187000,190000,193000,196000,199000,202000,205000,209000,212000,215000,219000,222000,226000,229000,233000,237000,240000,244000,248000,252000,256000,260000,264000,268000,272000,277000,281000,285000,290000,295000,299000,304000,309000,314000,319000,324000,329000,334000,339000,345000,350000,355000,361000,367000,373000,378000,384000,391000,397000,403000,409000,416000,422000,429000,436000,443000,450000,457000,464000,471000,479000,486000,494000,502000,507000,511000,512000,511000,507000,504000,501000,498000,494000,491000,488000,485000,481000,478000,475000,472000,469000,466000,463000,459000,456000,453000,450000,447000,444000,441000,439000,436000,433000,430000,427000,424000,421000,419000,416000,413000,410000,408000,405000,402000,401000,402000,410000,419000,428000,435000,441000,448000,454000,460000,467000,473000,479000,486000,492000,497000,503000,509000,515000,520000,525000,530000,535000,541000,547000,553000,559000,565000,571000,577000,583000,589000,594000,597000,599000,602000,605000,608000,611000,614000,618000,621000,625000,628000,630000,631000,632000,633000,634000,634000,634000,633000,633000,633000,632000,633000,633000,633000,632000,631000,631000,631000,632000,633000,634000,634000,634000,633000,632000,631000,630000,629000,628000,627000,626000,626000,626000,625000,624000,624000,623000,622000,621000,619000,618000,617000,615000,614000,612000,611000,609000,607000,605000,603000,601000,599000,597000,595000,593000,591000,589000,586000,584000,582000,579000,577000,574000,572000,569000,566000,563000,560000,558000,555000,552000,549000,546000,542000,539000,536000,533000,530000,526000,523000,520000,516000,513000,510000,506000,503000,500000,496000,493000,489000,486000,483000,479000,476000,473000,469000,466000,463000,459000,456000,453000,449000,446000,443000,439000,436000,433000,429000 +Mongolia,600000,601000,602000,603000,604000,605000,606000,607000,608000,608000,609000,610000,611000,612000,613000,614000,615000,616000,617000,618000,619000,620000,621000,622000,623000,624000,625000,626000,627000,628000,629000,629000,630000,631000,632000,633000,634000,635000,636000,637000,638000,639000,640000,641000,642000,643000,644000,645000,646000,647000,648000,649000,650000,651000,652000,653000,653000,654000,655000,656000,657000,658000,659000,660000,661000,662000,663000,664000,665000,666000,666000,667000,668000,669000,670000,671000,672000,673000,674000,675000,676000,677000,678000,679000,680000,681000,682000,683000,684000,685000,686000,687000,688000,689000,690000,691000,692000,693000,694000,695000,697000,699000,701000,703000,705000,708000,710000,713000,715000,717000,719000,721000,722000,724000,725000,726000,727000,728000,730000,731000,732000,734000,735000,736000,738000,739000,740000,741000,743000,744000,745000,747000,748000,749000,751000,752000,753000,755000,756000,757000,759000,760000,762000,763000,764000,766000,767000,768000,770000,774000,781000,793000,805000,818000,831000,845000,864000,889000,916000,945000,978000,1010000,1050000,1080000,1100000,1130000,1170000,1200000,1230000,1260000,1290000,1330000,1360000,1400000,1440000,1490000,1530000,1570000,1620000,1660000,1700000,1740000,1780000,1830000,1870000,1920000,1970000,2020000,2069999.9999999998,2120000,2160000,2200000,2240000,2270000,2300000,2330000,2360000,2380000,2410000,2430000,2450000,2470000,2490000,2520000,2540000,2560000,2580000,2610000,2630000,2670000,2700000,2740000,2790000,2850000,2900000,2960000,3030000,3100000,3160000,3230000,3290000,3350000,3400000,3450000,3490000,3540000,3580000,3620000,3660000,3700000,3740000,3770000,3810000,3850000,3890000,3930000,3970000,4000000,4050000,4090000,4130000,4170000,4210000,4250000,4290000,4330000,4370000,4410000,4450000,4480000,4520000,4550000,4580000,4610000,4640000,4670000,4700000,4720000,4750000,4770000,4790000,4810000,4830000,4850000,4870000,4890000,4910000,4930000,4950000,4970000,4990000,5000000,5020000,5040000,5060000,5070000,5090000,5100000,5120000,5130000,5140000,5150000,5160000,5170000,5180000,5190000,5200000,5210000,5220000,5220000,5230000,5230000,5240000,5240000,5250000,5250000,5250000,5260000,5260000,5260000,5260000 +Mozambique,2000000,2000000,2009999.9999999998,2009999.9999999998,2020000,2020000,2029999.9999999998,2029999.9999999998,2040000,2040000,2049999.9999999998,2049999.9999999998,2060000,2060000,2069999.9999999998,2069999.9999999998,2080000,2080000,2089999.9999999998,2100000,2130000,2170000,2220000,2280000,2340000,2400000,2470000,2540000,2610000,2680000,2760000,2830000,2910000,2990000,3070000,3160000,3250000,3340000,3430000,3520000,3620000,3720000,3820000,3930000,4040000,4150000.0000000005,4260000,4380000,4500000,4600000,4680000,4720000,4740000,4740000,4730000,4730000,4730000,4720000,4720000,4710000,4700000,4700000,4690000,4680000,4670000,4660000,4650000,4640000,4630000,4620000,4610000,4600000,4590000,4570000,4560000,4550000,4530000,4520000,4510000,4500000,4490000,4480000,4480000,4480000,4480000,4480000,4480000,4480000,4480000,4480000,4470000,4450000,4440000,4410000,4390000,4370000,4350000,4330000,4300000,4280000,4250000,4220000,4190000.0000000005,4150000.0000000005,4110000.0000000005,4070000.0000000005,4040000,4000000,3960000,3930000,3900000,3880000,3850000,3830000,3820000,3800000,3780000,3760000,3740000,3740000,3760000,3780000,3830000,3880000,3940000,4000000,4059999.9999999995,4120000,4179999.9999999995,4250000,4310000,4370000,4430000,4490000,4560000,4620000,4690000,4750000,4820000,4890000,4970000,5050000,5130000,5230000,5320000,5420000,5510000,5610000,5710000,5820000,5920000,6000000,6080000,6160000,6240000,6320000,6400000,6490000,6580000,6680000,6790000,6920000,7060000,7210000,7360000,7520000,7690000,7860000,8039999.999999999,8220000.000000001,8410000,8620000,8860000,9120000,9400000,9700000,10000000,10400000,10700000,11100000,11400000,11600000,11900000,12200000,12400000,12700000,12900000,13000000,13000000,13100000,13300000,13600000,13800000,14200000,14900000,15600000,16100000.000000002,16500000,16900000,17300000,17800000,18200000,18700000,19200000,19700000,20200000,20700000,21300000,21800000,22400000,23100000,23800000,24500000,25300000,26000000,26800000,27700000,28600000,29400000,30300000,31200000,32100000,33000000,33900000,34900000,35800000,36800000,37800000,38800000,39900000,40900000,42000000,43000000,44100000,45200000,46300000,47400000,48500000,49600000,50700000,51800000,52900000,54000000,55200000,56300000,57400000,58500000,59700000,60800000,61900000,63000000,64200000,65300000,66400000.00000001,67500000,68600000,69800000,70900000,72000000,73000000,74100000,75200000,76200000,77300000,78300000,79400000,80400000,81400000,82400000,83400000,84300000,85300000,86200000,87200000,88100000,89000000,89900000,90700000,91600000,92400000,93300000,94100000,94900000,95700000,96400000,97200000,97900000,98600000,99300000,100000000,101000000,101000000,102000000,102000000,103000000,104000000,104000000,105000000,105000000,106000000,106000000 +Mauritania,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,383000,382000,381000,378000,376000,372000,369000,365000,362000,358000,355000,352000,348000,345000,342000,339000,335000,332000,329000,326000,323000,320000,317000,314000,311000,308000,305000,302000,300000,297000,294000,292000,291000,290000,290000,291000,292000,293000,294000,295000,296000,297000,298000,299000,300000,301000,302000,303000,304000,305000,306000,307000,308000,309000,310000,311000,313000,314000,315000,317000,318000,319000,321000,322000,324000,326000,327000,329000,331000,332000,334000,336000,338000,340000,342000,344000,346000,348000,350000,352000,355000,357000,359000,362000,365000,368000,371000,374000,377000,380000,383000,386000,389000,391000,394000,396000,398000,400000,402000,404000,406000,409000,413000,418000,424000,430000,436000,443000,450000,456000,463000,470000,477000,484000,491000,497000,504000,511000,519000,526000,533000,541000,550000,559000,568000,579000,589000,600000,610000,621000,633000,645000,659000,673000,689000,705000,721000,739000,757000,776000,796000,816000,838000,862000,886000,911000,938000,966000,995000,1020000,1060000,1090000,1120000,1160000,1190000,1230000,1260000,1300000,1340000,1380000,1420000,1460000,1510000,1550000,1600000,1650000,1700000,1750000,1800000,1850000,1910000,1960000,2009999.9999999998,2069999.9999999998,2150000,2240000,2320000,2380000,2430000,2480000,2550000,2620000,2700000,2760000,2820000,2880000,2950000,3010000,3080000,3150000,3230000,3320000,3420000,3520000,3640000,3740000,3840000,3950000,4050000,4160000,4270000,4380000,4500000,4610000,4740000,4860000,4990000,5130000,5260000,5400000,5540000,5690000,5830000,5980000,6120000,6270000,6420000,6580000,6730000,6880000,7040000,7190000,7350000,7500000,7660000,7820000,7970000,8130000.000000001,8289999.999999999,8440000,8600000,8760000,8910000,9070000,9230000,9390000,9550000,9700000,9860000,10000000,10200000,10300000,10500000,10600000,10800000,10900000,11100000,11300000,11400000,11500000,11700000,11800000,12000000,12100000,12300000,12400000,12500000,12700000,12800000,13000000,13100000,13200000,13300000,13500000,13600000,13700000,13800000,14000000,14100000,14200000,14300000,14400000,14500000,14600000,14700000,14800000,14900000,15000000,15100000,15200000,15300000,15400000,15500000 +Mauritius,59000,60700,62400,64200,66000,67800,69800,71700,73800,75900,77300,78700,79900,80900,81900,82900,83900,84900,85900,86800,87700,88400,89000,89500,90000,90500,91000,91500,92000,92800,93900,95300,97100,99200,101000,103000,106000,108000,110000,113000,117000,121000,126000,132000,138000,145000,151000,158000,166000,174000,183000,193000,204000,216000,229000,243000,257000,273000,289000,303000,314000,322000,327000,328000,329000,331000,332000,334000,335000,337000,339000,342000,345000,348000,351000,355000,358000,362000,366000,369000,372000,374000,376000,377000,379000,381000,382000,384000,385000,387000,388000,389000,389000,390000,390000,391000,391000,392000,392000,392000,393000,393000,393000,394000,394000,394000,394000,395000,395000,395000,396000,397000,398000,399000,400000,401000,402000,404000,404000,405000,406000,408000,409000,411000,413000,415000,417000,419000,420000,422000,425000,427000,430000,432000,435000,438000,441000,444000,446000,450000,454000,459000,465000,472000,478000,485000,492000,498000,505000,514000,525000,541000,556000,570000,583000,597000,612000,627000,643000,660000,677000,693000,710000,726000,742000,759000,774000,790000,804000,817000,830000,842000,854000,865000,877000,888000,900000,913000,926000,940000,955000,970000,984000,998000,1010000,1030000,1040000,1050000,1060000,1080000,1090000,1100000,1120000,1130000,1150000,1160000,1170000,1180000,1190000,1210000,1220000,1230000,1230000,1240000,1250000,1260000,1260000,1270000,1280000,1280000,1280000,1290000,1290000,1290000,1290000,1290000,1290000,1290000,1300000,1300000,1300000,1300000,1300000,1300000,1300000,1300000,1300000,1300000,1310000,1310000,1310000,1300000,1300000,1300000,1300000,1300000,1300000,1290000,1290000,1290000,1280000,1280000,1280000,1270000,1260000,1260000,1250000,1250000,1240000,1230000,1230000,1220000,1210000,1210000,1200000,1190000,1180000,1180000,1170000,1160000,1160000,1150000,1140000,1130000,1130000,1120000,1110000,1110000,1100000,1090000,1080000,1080000,1070000,1060000,1050000,1040000,1040000,1030000,1020000,1010000,1000000,995000,986000,978000,970000,961000,953000,945000,937000,929000,921000,913000,905000,897000,890000,882000,875000,868000,861000,854000,847000 +Malawi,737000,753000,769000,786000,803000,820000,838000,856000,875000,894000,914000,934000,954000,975000,996000,1020000,1040000,1060000,1080000,1110000,1130000,1160000,1180000,1210000,1230000,1260000,1290000,1320000,1340000,1370000,1400000,1430000,1460000,1500000,1530000,1560000,1600000,1630000,1670000,1700000,1740000,1780000,1820000,1850000,1890000,1940000,1980000,2020000,2060000,2100000,2130000,2140000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2140000,2140000,2140000,2140000,2140000,2140000,2130000,2130000,2130000,2130000,2120000,2120000,2120000,2120000,2110000,2110000,2120000,2120000,2120000,2130000,2130000,2130000,2140000,2140000,2140000,2140000,2140000,2130000,2130000,2120000,2110000,2100000,2100000,2089999.9999999998,2080000,2069999.9999999998,2049999.9999999998,2040000,2020000,2009999.9999999998,1990000,1980000,1960000,1950000,1930000,1920000,1910000,1900000,1900000,1890000,1880000,1880000,1870000,1860000,1860000,1870000,1880000,1900000,1930000,1960000,1990000,2020000,2049999.9999999998,2080000,2110000,2140000,2170000,2200000,2240000,2270000,2300000,2330000,2360000,2400000,2430000,2470000,2510000,2550000,2600000,2650000,2690000,2740000,2790000,2840000,2890000,2950000,3000000,3060000,3110000,3180000,3240000,3310000,3380000,3460000,3540000,3620000,3710000,3800000,3890000,3990000,4090000,4190000.0000000005,4300000,4400000,4510000,4630000,4740000,4870000,5000000,5130000,5280000,5440000,5610000,5810000,6030000,6270000,6520000,6780000,7060000,7340000,7630000,7910000,8300000.000000001,8750000,9170000,9540000,9830000,10100000,10300000,10100000,10100000,10300000,10500000,10700000,11000000,11200000,11500000,11800000,12100000,12400000,12800000,13100000,13500000,13900000,14300000,14700000,15100000,15600000,16000000,16500000,16900000,17400000,17900000,18400000,18900000,19400000,19900000,20400000,20900000,21500000,22000000,22600000,23200000,23800000,24300000,24900000,25500000,26100000,26800000,27400000,28000000,28600000,29200000,29800000,30400000,31100000,31700000,32299999.999999996,32900000,33500000,34100000,34700000,35300000,36000000,36600000,37200000,37800000,38300000,38900000,39500000,40100000,40700000,41300000,41800000,42400000,43000000,43500000,44100000,44600000,45100000,45700000,46200000,46700000,47200000,47700000,48200000,48600000,49100000,49600000,50000000,50500000,50900000,51300000,51700000,52100000,52500000,52900000,53300000,53700000,54000000,54400000,54700000,55100000,55400000,55700000,56000000,56300000,56600000,56900000,57100000,57400000,57600000,57900000,58100000,58300000,58500000 +Malaysia,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,287000,288000,291000,294000,299000,305000,312000,318000,325000,331000,338000,345000,352000,360000,367000,375000,382000,390000,398000,406000,415000,423000,432000,441000,450000,460000,469000,479000,489000,499000,509000,520000,530000,541000,551000,562000,573000,584000,596000,607000,619000,631000,644000,656000,669000,682000,696000,709000,723000,738000,752000,769000,788000,811000,836000,864000,893000,923000,954000,986000,1020000,1050000,1090000,1120000,1160000,1200000,1240000,1280000,1330000,1370000,1420000,1460000,1510000,1560000,1620000,1670000,1730000,1780000,1840000,1910000,1970000,2029999.9999999998,2089999.9999999998,2150000,2210000,2270000,2320000,2380000,2440000,2500000,2560000,2620000,2680000,2740000,2800000,2850000,2910000,2960000,3020000,3080000,3140000,3210000,3270000,3340000,3420000,3490000,3570000,3650000,3730000,3810000,3900000,3980000,4070000.0000000005,4160000,4240000,4330000,4430000,4520000,4610000,4710000,4810000,4910000,5000000,5090000,5190000,5270000,5360000,5450000,5550000,5640000,5740000,5850000,5970000,6120000,6270000,6440000,6610000,6790000,6980000,7180000,7390000,7600000,7830000,8070000,8320000,8580000,8840000,9090000,9340000,9580000,9820000,10100000,10300000,10600000,10800000,11100000,11300000,11600000,11900000,12200000,12500000,12900000,13200000,13600000,13900000,14300000,14700000,15100000,15600000,16000000,16500000,17000000,17500000,18000000,18500000,19100000,19600000,20100000,20700000,21200000,21800000,22400000,22900000,23500000,24100000,24700000,25300000,25900000,26500000,27100000,27700000,28200000,28700000,29200000,29700000,30100000,30600000,31100000,31500000,32000000,32400000,32799999.999999996,33200000.000000004,33600000,33900000,34300000,34700000,35000000,35400000,35700000,36100000,36400000,36700000,37000000,37300000,37600000,37800000,38100000,38400000,38600000,38800000,39100000,39300000,39500000,39700000,39900000,40100000,40200000,40400000,40600000,40700000,40900000,41000000,41200000,41300000,41400000,41500000,41600000,41700000,41800000,41900000,42000000,42000000,42100000,42100000,42200000,42200000,42200000,42200000,42200000,42200000,42200000,42200000,42100000,42100000,42000000,42000000,41900000,41900000,41800000,41700000,41600000,41500000,41400000,41300000,41200000,41100000,41000000,40900000,40800000,40700000,40600000,40500000,40400000,40300000,40200000,40100000,40000000,39900000,39800000,39700000,39600000,39500000 +Namibia,229000,226000,223000,220000,217000,214000,211000,209000,206000,203000,200000,198000,195000,193000,190000,188000,185000,183000,180000,178000,175000,173000,171000,169000,166000,164000,162000,160000,158000,156000,154000,151000,149000,147000,146000,144000,142000,140000,138000,136000,134000,133000,131000,129000,127000,126000,124000,122000,121000,120000,119000,119000,120000,121000,123000,124000,126000,127000,128000,130000,131000,133000,134000,136000,137000,139000,140000,142000,143000,145000,146000,148000,150000,151000,153000,154000,156000,158000,160000,161000,163000,165000,167000,169000,170000,172000,174000,176000,178000,180000,182000,184000,186000,188000,190000,192000,194000,196000,199000,201000,204000,207000,210000,214000,217000,221000,225000,229000,233000,237000,241000,245000,249000,253000,257000,261000,266000,270000,274000,279000,284000,289000,295000,301000,307000,314000,320000,327000,334000,341000,348000,355000,362000,370000,377000,385000,392000,400000,408000,417000,425000,433000,442000,450000,459000,467000,476000,486000,495000,505000,515000,521000,527000,534000,540000,547000,555000,562000,571000,580000,590000,601000,614000,627000,642000,658000,675000,693000,712000,733000,754000,777000,801000,825000,850000,877000,902000,926000,942000,957000,976000,987000,1010000,1030000,1060000,1090000,1130000,1170000,1210000,1290000,1370000,1420000,1460000,1510000,1560000,1610000,1650000,1690000,1740000,1780000,1820000,1860000,1890000,1920000,1940000,1960000,1990000,2009999.9999999998,2040000,2069999.9999999998,2100000,2130000,2170000,2200000,2240000,2280000,2320000,2360000,2410000,2450000,2490000,2530000,2570000,2600000,2650000,2690000,2730000,2780000,2820000,2870000,2910000,2950000,3000000,3040000,3080000,3130000,3170000,3220000,3260000,3300000,3350000,3390000,3430000,3480000,3520000,3570000,3610000,3650000,3700000,3740000,3780000,3820000,3860000,3900000,3940000,3980000,4019999.9999999995,4059999.9999999995,4099999.9999999995,4130000,4170000,4200000,4240000,4270000,4300000,4330000,4360000,4390000,4420000,4450000,4480000,4510000,4540000,4560000,4590000,4620000,4640000,4670000,4690000,4710000,4730000,4760000,4780000,4800000,4820000,4830000,4850000,4870000,4880000,4900000,4910000,4930000,4940000,4950000,4960000,4980000,4990000,4990000,5000000,5010000,5020000 +Niger,853000,853000,853000,853000,853000,853000,853000,853000,853000,853000,853000,853000,853000,854000,855000,856000,857000,859000,861000,862000,865000,867000,870000,873000,876000,879000,883000,886000,890000,895000,899000,904000,909000,913000,918000,923000,928000,933000,938000,943000,948000,953000,958000,963000,968000,973000,978000,983000,988000,993000,999000,1000000,1010000,1010000,1010000,1020000,1020000,1030000,1030000,1040000,1040000,1050000,1050000,1060000,1060000,1070000,1070000,1080000,1080000,1090000,1100000,1100000,1110000,1120000,1120000,1130000,1140000,1140000,1150000,1160000,1160000,1170000,1180000,1190000,1190000,1200000,1210000,1220000,1220000,1230000,1240000,1250000,1250000,1260000,1270000,1280000,1280000,1290000,1300000,1310000,1320000,1330000,1350000,1370000,1390000,1400000,1420000,1440000,1460000,1480000,1490000,1510000,1530000,1540000,1560000,1570000,1590000,1600000,1620000,1630000,1650000,1670000,1690000,1710000,1740000,1760000,1790000,1810000,1840000,1860000,1890000,1910000,1940000,1960000,1990000,2020000,2040000,2069999.9999999998,2089999.9999999998,2120000,2150000,2190000,2220000,2260000,2300000,2340000,2380000,2420000,2460000,2510000,2570000,2660000,2750000,2840000,2930000,3020000,3110000,3200000,3300000,3400000,3500000,3600000,3710000,3820000,3940000,4050000,4170000,4290000,4420000,4540000,4670000,4800000,4930000,5060000,5200000,5340000,5490000,5640000,5810000,5990000,6170000,6370000,6560000,6770000,6970000,7190000,7410000,7640000,7870000,8119999.999999999,8369999.999999999,8630000,8910000,9190000,9490000,9810000,10100000,10500000,10900000,11200000,11600000,12000000,12500000,12900000,13400000,13900000,14400000,14900000,15500000,16000000,16600000.000000002,17300000,18000000,18700000,19400000,20100000,20900000,21700000,22600000,23400000,24300000,25300000,26200000,27200000,28200000,29300000,30400000,31600000,32799999.999999996,34000000,35200000,36500000,37800000,39200000,40600000,42000000,43400000,44900000,46400000,48000000,49600000,51200000,52800000,54500000,56200000,57900000,59700000,61500000,63300000,65200000,67000000,68900000,70800000,72800000,74700000,76700000,78700000,80700000,82700000,84700000,86800000,88800000,90900000,92900000,95000000,97100000,99200000,101000000,103000000,106000000,108000000,110000000,112000000,114000000,116000000,118000000,120000000,122000000,125000000,127000000,129000000,131000000,133000000,135000000,137000000,139000000,141000000,143000000,145000000,147000000,149000000,151000000,153000000,155000000,156000000,158000000,160000000,162000000,164000000,165000000,167000000 +Nigeria,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12100000,12200000,12200000,12200000,12300000,12300000,12400000,12400000,12500000,12500000,12600000,12600000,12700000,12700000,12800000,12800000,12800000,12900000,12900000,13000000,13000000,13100000,13100000,13200000,13200000,13300000,13300000,13400000,13400000,13500000,13500000,13600000,13700000,13800000,13800000,13900000,14000000,14000000,14100000,14200000,14300000,14300000,14400000,14500000,14600000,14700000,14700000,14800000,14900000,15000000,15100000,15200000,15300000,15400000,15500000,15600000,15700000,15800000,15900000,16000000,16100000.000000002,16200000,16399999.999999998,16500000,16600000.000000002,16700000,16900000,17000000,17100000,17300000,17400000,17500000,17600000,17800000,17900000,18000000,18100000,18200000,18400000,18500000,18700000,18800000,19000000,19200000,19400000,19600000,19800000,20000000,20200000,20400000,20700000,20900000,21100000,21300000,21500000,21800000,22000000,22200000,22400000,22700000,22900000,23200000,23600000,23900000,24300000,24700000,25100000,25500000,25900000,26300000,26700000,27100000,27600000,28000000,28400000,28800000,29200000,29700000,30100000,30600000,31100000,31600000,32200000.000000004,32700000.000000004,33299999.999999996,33900000,34500000,35200000,35800000,36500000,37200000,37900000,38600000,39300000,40100000,40800000,41600000,42400000,43200000,44000000,44900000,45900000,46800000,47800000,48900000,49900000,51000000,52100000,53200000,54400000,55600000,56800000,58200000,59600000,61200000,62900000,64700000,66599999.99999999,68600000,70800000,73000000,75200000,77400000,79400000,81300000,83600000,85800000,88000000,90400000,92700000,95200000,97700000,100000000,103000000,105000000,108000000,111000000,114000000,117000000,120000000,123000000,126000000,130000000,133000000,137000000,140000000,144000000,148000000,152000000,157000000,161000000,165000000,170000000,175000000,179000000,184000000,189000000,193000000,198000000,203000000,208000000,213000000,219000000,224000000,229000000,235000000,240000000,246000000,251000000,257000000,263000000,268000000,274000000,280000000,286000000,292000000,297000000,303000000,309000000,315000000,321000000,327000000,332000000,338000000,344000000,350000000,355000000,361000000,366000000,372000000,377000000,383000000,388000000,394000000,399000000,404000000,409000000,414000000,419000000,424000000,429000000,434000000,439000000,443000000,448000000,453000000,457000000,461000000,466000000,470000000,474000000,478000000,482000000,486000000,489000000,493000000,496000000,500000000,503000000,506000000,509000000,512000000,515000000,518000000,520000000,523000000,525000000,527000000,529000000,531000000,533000000,535000000,537000000,538000000,540000000,541000000,542000000,543000000,544000000,545000000,546000000 +Nicaragua,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,186000,187000,188000,190000,192000,195000,198000,201000,205000,208000,211000,215000,218000,222000,225000,229000,233000,236000,240000,244000,248000,252000,256000,260000,264000,268000,273000,277000,282000,286000,291000,295000,298000,302000,305000,308000,311000,314000,316000,319000,322000,325000,328000,331000,334000,337000,340000,343000,346000,349000,352000,355000,359000,364000,369000,374000,380000,385000,391000,396000,402000,408000,414000,420000,426000,432000,439000,445000,452000,458000,465000,472000,479000,485000,493000,500000,507000,514000,522000,529000,537000,545000,554000,563000,572000,582000,592000,602000,613000,623000,634000,645000,657000,668000,680000,691000,703000,716000,728000,741000,751000,761000,770000,777000,783000,788000,793000,797000,802000,807000,812000,819000,829000,841000,856000,873000,891000,908000,927000,945000,964000,986000,1010000,1030000,1060000,1090000,1120000,1150000,1190000,1220000,1260000,1290000,1330000,1370000,1410000,1450000,1490000,1540000,1590000,1630000,1680000,1740000,1790000,1840000,1900000,1960000,2020000,2080000,2150000,2220000,2290000,2370000,2440000,2530000,2600000,2680000,2770000,2860000,2950000,3040000,3130000,3210000,3300000,3400000,3490000,3580000,3670000,3760000,3850000,3940000,4030000.0000000005,4130000,4230000,4330000,4430000,4530000,4630000,4720000,4810000,4900000,4970000,5050000,5120000,5190000,5260000,5320000,5390000,5450000,5530000,5610000,5690000,5770000,5860000,5940000,6030000,6120000,6210000,6300000,6390000,6480000,6570000,6660000,6760000,6850000,6950000,7050000,7140000,7240000,7330000,7420000,7510000,7600000,7690000,7770000,7860000,7940000,8020000,8100000,8180000,8260000,8330000,8410000,8480000,8550000,8620000,8680000,8750000,8810000,8870000,8930000,8990000,9040000,9090000,9140000,9190000,9240000,9280000,9320000,9360000,9400000,9440000,9470000,9500000,9530000,9550000,9580000,9600000,9620000,9640000,9650000,9660000,9670000,9680000,9680000,9690000,9690000,9690000,9690000,9680000,9680000,9670000,9660000,9650000,9640000,9620000,9600000,9590000,9570000,9550000,9520000,9500000,9480000,9450000,9420000,9400000,9370000,9340000,9310000,9280000,9240000,9210000,9170000,9140000 +Netherlands,2000000,2000000,2009999.9999999998,2009999.9999999998,2020000,2020000,2029999.9999999998,2029999.9999999998,2040000,2040000,2060000,2080000,2100000,2130000,2160000,2190000,2210000,2240000,2270000,2300000,2330000,2360000,2390000,2420000,2450000,2480000,2510000,2540000,2570000,2600000,2630000,2660000,2680000,2710000,2730000,2760000,2780000,2810000,2830000,2860000,2880000,2910000,2930000,2950000,2970000,2990000,3010000,3030000,3050000,3080000,3100000,3120000,3140000,3160000,3180000,3210000,3230000,3250000,3270000,3300000,3320000,3350000,3370000,3400000,3430000,3460000,3490000,3520000,3550000,3580000,3610000,3650000,3690000,3730000,3780000,3820000,3860000,3910000,3950000,3990000,4040000,4090000,4130000,4179999.9999999995,4230000,4280000,4330000,4380000,4430000,4480000,4530000,4590000,4650000,4700000,4760000,4820000,4880000,4950000,5010000,5070000,5140000,5210000,5280000,5360000,5430000,5510000,5590000,5670000,5750000,5830000,5910000,6000000,6090000,6180000,6270000,6360000,6450000,6540000,6640000,6740000,6830000,6930000,7030000,7130000,7230000,7330000,7440000,7540000,7650000,7760000,7860000,7960000,8060000.000000001,8160000,8250000,8350000,8450000,8550000,8650000,8760000,8870000,8980000,9100000,9220000,9340000,9460000,9580000,9710000,9840000,9960000,10100000,10200000,10400000,10500000,10600000,10800000,10900000,11000000,11200000,11300000,11500000,11600000,11800000,12000000,12100000,12300000,12400000,12600000,12700000,12900000,13000000,13200000,13300000,13400000,13600000,13700000,13800000,13900000,13900000,14000000,14100000,14200000,14300000,14400000,14400000,14500000,14600000,14700000,14800000,14900000,14900000,15000000,15200000,15300000,15300000,15400000,15500000,15600000,15700000,15800000,15900000,16000000,16100000.000000002,16100000.000000002,16200000,16300000,16300000,16399999.999999998,16500000,16500000,16600000.000000002,16700000,16800000,16900000,17000000,17000000,17100000,17200000,17300000,17400000,17400000,17500000,17600000,17600000,17700000,17700000,17800000,17800000,17900000,17900000,17900000,18000000,18000000,18000000,18100000,18100000,18100000,18100000,18100000,18100000,18100000,18100000,18100000,18100000,18000000,18000000,18000000,18000000,18000000,17900000,17900000,17900000,17800000,17800000,17800000,17700000,17700000,17700000,17700000,17600000,17600000,17600000,17600000,17500000,17500000,17500000,17500000,17500000,17400000,17400000,17400000,17400000,17400000,17400000,17300000,17300000,17300000,17300000,17300000,17200000,17200000,17200000,17100000,17100000,17100000,17000000,17000000,17000000,16900000,16900000,16900000,16800000,16800000,16800000,16700000,16700000,16700000,16700000,16600000.000000002,16600000.000000002,16600000.000000002 +Norway,900000,898000,897000,895000,894000,892000,891000,889000,888000,886000,891000,895000,901000,910000,918000,927000,935000,944000,952000,962000,973000,986000,999000,1010000,1030000,1040000,1060000,1080000,1090000,1110000,1120000,1130000,1150000,1160000,1170000,1180000,1190000,1200000,1220000,1230000,1240000,1260000,1270000,1280000,1300000,1310000,1330000,1350000,1360000,1380000,1390000,1410000,1430000,1450000,1470000,1490000,1510000,1530000,1550000,1570000,1590000,1610000,1620000,1640000,1650000,1670000,1680000,1690000,1710000,1720000,1740000,1760000,1770000,1790000,1810000,1830000,1850000,1870000,1880000,1900000,1920000,1930000,1940000,1950000,1950000,1960000,1970000,1980000,1990000,2000000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2069999.9999999998,2089999.9999999998,2120000,2140000,2170000,2190000,2210000,2230000,2250000,2270000,2280000,2300000,2320000,2330000,2350000,2360000,2380000,2400000,2420000,2440000,2470000,2490000,2520000,2540000,2570000,2600000,2620000,2640000,2660000,2680000,2700000,2720000,2730000,2750000,2770000,2790000,2800000,2820000,2840000,2850000,2870000,2890000,2900000,2920000,2940000,2950000,2970000,2990000,3020000,3040000,3070000,3100000,3130000,3160000,3190000,3220000,3250000,3280000,3300000,3330000,3360000,3390000,3430000,3460000,3490000,3520000,3550000,3580000,3610000,3640000,3670000,3690000,3720000,3750000,3780000,3820000,3850000,3880000,3900000,3930000,3960000,3990000,4010000,4030000.0000000005,4040000,4059999.9999999995,4070000.0000000005,4090000,4099999.9999999995,4110000.0000000005,4130000,4139999.9999999995,4150000.0000000005,4170000,4190000.0000000005,4210000,4230000,4240000,4260000,4290000,4310000,4340000,4360000,4380000,4410000,4430000,4460000,4490000,4510000,4540000,4570000,4590000,4620000,4660000,4710000,4770000,4830000,4890000,4950000,5020000,5080000,5140000,5190000,5240000,5280000,5310000,5350000,5380000,5400000,5430000,5470000,5510000,5550000,5590000,5630000,5670000,5710000,5750000,5790000,5820000,5860000,5890000,5930000,5960000,5990000,6030000,6060000,6090000,6120000,6150000,6180000,6210000,6240000,6270000,6290000,6320000,6340000,6370000,6390000,6410000,6430000,6460000,6480000,6500000,6520000,6540000,6550000,6570000,6590000,6610000,6630000,6650000,6660000,6680000,6700000,6720000,6740000,6760000,6780000,6800000,6820000,6840000,6860000,6880000,6900000,6910000,6930000,6950000,6960000,6980000,6990000,7010000,7020000,7030000,7050000,7060000,7070000,7090000,7100000,7110000,7130000,7140000,7150000,7170000,7180000,7190000,7210000,7220000 +Nepal,4000000,3990000,3990000,3980000,3980000,3970000,3960000,3960000,3950000,3950000,3940000,3930000,3930000,3920000,3920000,3910000,3900000,3900000,3890000,3890000,3890000,3900000,3910000,3930000,3940000,3960000,3970000,3990000,4000000,4019999.9999999995,4030000.0000000005,4050000,4059999.9999999995,4080000,4090000,4110000.0000000005,4130000,4139999.9999999995,4160000,4170000,4190000.0000000005,4210000,4220000,4240000,4250000,4270000,4290000,4300000,4320000,4340000,4350000,4370000,4380000,4390000,4410000,4420000,4430000,4450000,4460000,4480000,4490000,4500000,4520000,4530000,4550000,4560000,4580000,4590000,4600000,4620000,4640000,4650000,4670000,4690000,4710000,4730000,4750000,4780000,4800000,4820000,4840000,4860000,4880000,4900000,4920000,4940000,4960000,4980000,5010000,5020000,5040000,5050000,5060000,5060000,5070000,5080000,5080000,5090000,5090000,5100000,5120000,5140000,5160000,5190000,5220000,5250000,5280000,5310000,5340000,5370000,5380000,5390000,5400000,5390000,5380000,5380000,5370000,5370000,5360000,5360000,5360000,5360000,5360000,5360000,5350000,5350000,5350000,5350000,5350000,5340000,5340000,5340000,5340000,5340000,5340000,5340000,5340000,5340000,5340000,5390000,5500000,5660000,5890000,6170000,6470000,6780000,7110000,7460000,7820000,8130000.000000001,8400000,8580000,8760000,8940000,9110000,9280000,9460000,9630000,9810000,9980000,10200000,10400000,10600000,10800000,11000000,11200000,11500000,11700000,12000000,12200000,12500000,12800000,13100000,13300000,13600000,13900000,14200000,14600000,14900000,15200000,15600000,16000000,16300000,16700000,17100000,17500000,17900000,18300000,18700000,19100000,19600000,20100000,20700000,21300000,21800000,22300000,22800000,23200000,23700000,24100000,24600000,25000000,25300000,25700000,26000000,26300000,26500000,26700000,26900000,27000000,27200000,27300000,27300000,27400000,27500000,27600000,27900000,28200000,28500000,28800000,29300000,30000000,30500000,30900000,31200000,31600000,31900000,32200000.000000004,32500000,32799999.999999996,33100000,33400000,33700000,33900000,34200000,34400000,34700000,34900000,35100000,35400000,35600000,35800000,36000000,36200000,36400000,36600000,36700000,36900000,37100000,37200000,37400000,37500000,37700000,37800000,37900000,38000000,38100000,38200000,38300000,38400000,38400000,38500000,38500000,38600000,38600000,38600000,38600000,38600000,38600000,38500000,38500000,38500000,38400000,38300000,38300000,38200000,38100000,38000000,37900000,37800000,37600000,37500000,37300000,37200000,37000000,36800000,36700000,36500000,36300000,36100000,35900000,35700000,35500000,35300000,35000000,34800000,34600000,34400000,34200000,34000000,33800000 +Nauru,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1830,1840,1840,1840,1840,1840,1840,1840,1850,1850,1850,1850,1850,1850,1860,1860,1860,1860,1860,1860,1860,1870,1870,1870,1870,1870,1870,1880,1880,1880,1880,1880,1880,1880,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1920,1920,1920,1920,1920,1920,1920,1920,1920,1920,1920,1920,1920,1930,1930,1930,1930,1930,1930,1930,1930,1930,1930,1930,1930,1940,1950,1990,2040,2110,2190,2280,2380,2480,2580,2690,2770,2840,2890,2910,2910,2910,2910,2910,2910,2910,2920,2930,2960,2990,3030,3070,3110,3150,3200,3240,3290,3350,3410,3510,3610,3700,3820,3960,4110,4260,4410,4580,4750,4950,5200,5480,5800,6020,6110,6290,6510,6660,6780,6880,6990,7100,7200,7310,7440,7540,7590,7640,7690,7670,7830,8130,8310,8530,8760,9020,9310,9600,9900,10100,10200,10300,10300,10300,10400,10400,10400,10400,10400,10400,10300,10300,10300,10300,10300,10200,10200,10200,10300,10400,10700,10900,11200,11400,11700,11900,12100,12300,12500,12700,12800,12900,13000,13100,13100,13200,13300,13400,13400,13500,13600,13600,13700,13800,13900,13900,14000,14100,14200,14200,14300,14400,14500,14500,14600,14600,14700,14700,14700,14800,14800,14800,14800,14800,14800,14800,14800,14900,14800,14800,14800,14800,14800,14800,14800,14800,14800,14700,14700,14700,14600,14600,14600,14500,14500,14400,14400,14300,14300,14200,14100,14100,14000,13900,13800,13700,13600,13500,13400,13300,13200,13100,13000,12900,12800,12600,12500,12400 +New Zealand,200000,193000,187000,180000,174000,168000,162000,157000,152000,146000,142000,137000,132000,128000,123000,119000,115000,111000,107000,104000,102000,101000,100000,100000,100000,100000,100000,100000,100000,99300,97900,95900,93200,90000,86800,83800,80800,78000,75300,73500,72600,72700,73700,75500,77500,79400,81400,83500,85600,88100,90800,93900,97300,101000,105000,109000,113000,118000,122000,128000,136000,145000,156000,168000,182000,197000,213000,231000,250000,269000,289000,308000,328000,347000,368000,390000,413000,438000,464000,488000,510000,529000,546000,559000,573000,588000,602000,617000,633000,648000,662000,677000,690000,704000,718000,732000,746000,760000,775000,791000,809000,828000,849000,871000,894000,917000,941000,966000,991000,1010000,1040000,1060000,1080000,1100000,1120000,1140000,1160000,1180000,1200000,1220000,1240000,1260000,1290000,1310000,1330000,1360000,1380000,1410000,1440000,1460000,1480000,1500000,1520000,1530000,1550000,1560000,1570000,1590000,1600000,1620000,1640000,1660000,1680000,1710000,1740000,1760000,1790000,1820000,1850000,1880000,1910000,1950000,2000000,2049999.9999999998,2100000,2140000,2190000,2240000,2290000,2340000,2380000,2430000,2490000,2540000,2590000,2640000,2680000,2730000,2760000,2790000,2820000,2870000,2920000,2980000,3040000,3100000,3130000,3140000,3140000,3140000,3150000,3160000,3190000,3220000,3250000,3270000,3280000,3300000,3320000,3330000,3400000,3480000,3530000,3570000,3620000,3670000,3730000,3780000,3810000,3830000,3860000,3890000,3950000,4019999.9999999995,4080000,4130000,4179999.9999999995,4220000,4260000,4300000,4350000,4380000,4410000,4450000,4510000,4590000,4670000,4750000,4840000,4960000,5060000,5130000,5190000,5230000,5270000,5310000,5350000,5390000,5430000,5460000,5500000,5530000,5560000,5590000,5620000,5650000,5670000,5700000,5720000,5750000,5770000,5790000,5810000,5830000,5850000,5870000,5890000,5900000,5920000,5930000,5950000,5960000,5970000,5990000,6000000,6010000,6020000,6030000,6040000,6050000,6060000,6070000,6070000,6080000,6090000,6100000,6100000,6110000,6110000,6120000,6120000,6130000,6130000,6140000,6140000,6140000,6140000,6140000,6140000,6140000,6140000,6140000,6140000,6140000,6130000,6130000,6130000,6130000,6120000,6120000,6110000,6110000,6110000,6100000,6100000,6090000,6090000,6080000,6080000,6070000,6070000 +Oman,300000,301000,302000,303000,304000,304000,305000,306000,307000,308000,309000,310000,311000,312000,312000,313000,314000,315000,316000,317000,318000,319000,320000,321000,322000,323000,324000,324000,325000,326000,327000,328000,329000,330000,331000,332000,333000,334000,335000,336000,337000,338000,339000,340000,341000,342000,343000,344000,345000,346000,347000,347000,348000,348000,349000,350000,350000,351000,351000,352000,353000,353000,354000,355000,355000,356000,356000,357000,358000,358000,359000,359000,360000,361000,361000,362000,363000,363000,364000,365000,365000,366000,366000,367000,368000,368000,369000,370000,370000,371000,371000,372000,373000,373000,374000,375000,375000,376000,377000,378000,380000,382000,385000,389000,392000,396000,399000,403000,407000,410000,413000,414000,415000,416000,416000,417000,417000,418000,419000,420000,421000,422000,423000,424000,425000,426000,427000,428000,429000,430000,431000,432000,433000,434000,435000,436000,437000,438000,440000,441000,442000,443000,444000,445000,446000,447000,448000,449000,450000,453000,457000,464000,470000,477000,485000,492000,500000,509000,518000,527000,537000,546000,557000,569000,581000,594000,608000,622000,637000,654000,671000,689000,708000,729000,755000,787000,824000,866000,913000,963000,1020000,1080000,1140000,1200000,1270000,1350000,1440000,1530000,1620000,1710000,1800000,1900000,1990000,2069999.9999999998,2130000,2170000,2210000,2250000,2280000,2310000,2340000,2370000,2400000,2430000,2470000,2520000,2560000,2610000,2650000,2700000,2880000,3210000,3540000,3820000,4010000,4190000.0000000005,4400000,4540000,4600000,4600000,4540000,4520000,4580000,4640000,4710000,4780000,4850000,4910000,4970000,5030000,5090000,5150000,5210000,5270000,5330000,5390000,5450000,5510000,5570000,5630000,5690000,5750000,5820000,5880000,5940000,6010000,6070000,6140000,6200000,6270000,6330000,6390000,6450000,6510000,6570000,6620000,6680000,6730000,6780000,6820000,6870000,6910000,6950000,6990000,7020000,7060000,7090000,7120000,7150000,7180000,7210000,7230000,7260000,7280000,7310000,7330000,7350000,7370000,7390000,7410000,7440000,7460000,7480000,7500000,7520000,7540000,7560000,7580000,7600000,7620000,7640000,7670000,7690000,7710000,7730000,7750000,7770000,7790000,7810000,7820000,7840000 +Pakistan,13100000,13100000,13200000,13200000,13200000,13200000,13300000,13300000,13300000,13400000,13400000,13400000,13400000,13500000,13500000,13500000,13600000,13600000,13600000,13700000,13700000,13700000,13700000,13800000,13800000,13900000,13900000,14000000,14000000,14100000,14100000,14200000,14200000,14200000,14300000,14300000,14400000,14400000,14500000,14500000,14600000,14600000,14700000,14700000,14800000,14800000,14900000,14900000,15000000,15000000,15100000,15100000,15100000,15200000,15200000,15300000,15300000,15300000,15400000,15400000,15500000,15500000,15500000,15600000,15600000,15700000,15700000,15700000,15800000,15800000,15900000,15900000,16000000,16100000.000000002,16200000,16200000,16300000,16399999.999999998,16500000,16500000,16600000.000000002,16700000,16800000,16900000,16900000,17000000,17100000,17200000,17300000,17300000,17400000,17500000,17600000,17700000,17800000,17800000,17900000,18000000,18100000,18200000,18300000,18300000,18400000,18500000,18600000,18700000,18800000,18900000,19000000,19100000,19200000,19400000,19600000,19900000,20100000,20400000,20600000,20900000,21100000,21500000,21800000,22100000,22500000,22900000,23400000,23800000,24200000,24700000,25100000,25600000,26100000,26500000,27000000,27500000,28000000,28600000,29100000,29600000,30200000,30700000,31300000,31900000,32400000,33000000,33700000,34300000,34900000,35500000,36200000,36900000,37700000,38200000,38800000,39500000,40200000,41000000,41900000,42800000,43800000,44800000,46000000,47100000,48200000,49300000,50600000,51800000,53200000,54600000,56100000,57700000,59300000,60900000,62500000,64300000,66099999.99999999,68100000,70200000,72500000,74800000,77400000,80600000,84300000,87800000,91100000,94000000,97100000,101000000,104000000,108000000,112000000,115000000,119000000,122000000,126000000,129000000,133000000,137000000,141000000,145000000,150000000,154000000,159000000,163000000,167000000,171000000,174000000,178000000,182000000,186000000,190000000,194000000,199000000,202000000,205000000,208000000,211000000,214000000,216000000,220000000,223000000,227000000,231000000,236000000,240000000,245000000,250000000,255000000,260000000,264000000,269000000,274000000,279000000,284000000,289000000,294000000,298000000,303000000,308000000,313000000,318000000,323000000,327000000,332000000,337000000,341000000,346000000,350000000,355000000,359000000,364000000,368000000,372000000,376000000,380000000,384000000,388000000,392000000,396000000,400000000,404000000,408000000,411000000,415000000,418000000,422000000,425000000,428000000,432000000,435000000,438000000,440000000,443000000,446000000,448000000,451000000,453000000,456000000,458000000,460000000,462000000,464000000,466000000,467000000,469000000,471000000,472000000,474000000,475000000,476000000,478000000,479000000,480000000,481000000,482000000,483000000,484000000,485000000,485000000,486000000,486000000,487000000 +Panama,75600,76200,76700,77300,77800,78400,79000,79500,80100,80700,81300,81900,82500,83100,83700,84300,84900,85500,86100,86800,87400,88000,88700,89300,90000,90600,91300,91900,92600,93300,94000,94600,95300,96000,96700,97400,98100,98800,99600,100000,101000,102000,102000,103000,104000,105000,106000,106000,107000,108000,110000,112000,114000,117000,119000,122000,125000,128000,131000,134000,138000,141000,144000,148000,151000,155000,159000,162000,166000,170000,173000,176000,179000,181000,183000,186000,188000,191000,193000,195000,198000,201000,203000,206000,208000,211000,214000,217000,219000,222000,225000,228000,231000,234000,237000,240000,243000,246000,249000,253000,257000,262000,267000,273000,278000,284000,290000,296000,303000,310000,319000,330000,342000,356000,370000,385000,401000,417000,434000,448000,460000,469000,475000,477000,480000,483000,485000,488000,491000,496000,504000,515000,528000,544000,561000,578000,596000,614000,633000,652000,670000,688000,706000,724000,742000,761000,780000,799000,819000,840000,861000,883000,906000,930000,954000,980000,1010000,1030000,1060000,1090000,1130000,1160000,1200000,1230000,1270000,1310000,1350000,1390000,1430000,1470000,1520000,1560000,1600000,1650000,1690000,1730000,1780000,1820000,1870000,1910000,1960000,2000000,2049999.9999999998,2100000,2150000,2200000,2250000,2300000,2350000,2400000,2450000,2500000,2550000,2610000,2660000,2720000,2770000,2830000,2890000,2940000,3000000,3060000,3120000,3180000,3240000,3310000,3370000,3430000,3500000,3560000,3620000,3690000,3750000,3820000,3890000,3960000,4030000.0000000005,4099999.9999999995,4170000,4230000,4290000,4350000,4410000,4470000,4530000,4590000,4640000,4700000,4760000,4810000,4860000,4920000,4970000,5020000,5070000,5120000,5170000,5220000,5260000,5310000,5350000,5400000,5440000,5480000,5520000,5560000,5600000,5630000,5670000,5700000,5740000,5770000,5800000,5830000,5860000,5880000,5910000,5940000,5960000,5980000,6010000,6030000,6050000,6070000,6080000,6100000,6120000,6130000,6150000,6160000,6180000,6190000,6200000,6210000,6220000,6230000,6240000,6240000,6250000,6260000,6260000,6260000,6270000,6270000,6270000,6270000,6270000,6270000,6270000,6270000,6260000,6260000,6260000,6250000,6250000,6240000,6240000,6230000,6220000,6210000,6210000 +Peru,1270000,1270000,1280000,1280000,1280000,1280000,1280000,1290000,1290000,1290000,1290000,1300000,1300000,1300000,1300000,1310000,1310000,1310000,1310000,1320000,1320000,1320000,1330000,1330000,1340000,1350000,1350000,1360000,1360000,1380000,1410000,1450000,1510000,1580000,1650000,1720000,1800000,1890000,1970000,2060000,2160000,2260000,2360000,2470000,2580000,2700000,2830000,2960000,3090000,3180000,3230000,3230000,3180000,3080000,2990000,2900000,2810000,2730000,2650000,2580000,2540000,2520000,2510000,2520000,2530000,2550000,2560000,2570000,2580000,2600000,2620000,2640000,2670000,2710000,2740000,2770000,2810000,2840000,2880000,2920000,2950000,2990000,3030000,3070000,3100000,3140000,3180000,3220000,3260000,3300000,3340000,3370000,3400000,3430000,3460000,3490000,3520000,3550000,3590000,3620000,3660000,3700000,3740000,3790000,3840000,3890000,3930000,3980000,4030000.0000000005,4090000,4139999.9999999995,4190000.0000000005,4240000,4300000,4350000,4410000,4460000,4520000,4570000,4640000,4700000,4770000,4840000,4920000,4990000,5070000,5150000,5230000,5310000,5400000,5480000,5570000,5660000,5750000,5850000,5940000,6040000,6140000,6240000,6340000,6440000,6550000,6660000,6780000,6890000,7010000,7130000,7260000,7380000,7520000,7680000,7900000,8119999.999999999,8350000,8580000,8830000,9080000,9340000,9600000,9880000,10200000,10500000,10800000,11100000,11400000,11800000,12100000,12500000,12800000,13200000,13600000,13900000,14300000,14700000,15100000,15400000,15800000,16200000,16600000.000000002,17100000,17500000,17900000,18400000,18800000,19300000,19700000,20200000,20700000,21100000,21600000,22100000,22600000,23000000,23500000,24000000,24400000,24900000,25400000,25800000,26300000,26700000,27000000,27300000,27600000,27900000,28100000,28400000,28600000,28800000,29000000,29200000,29500000,29700000,30000000,30400000,30700000,31100000,31600000,32200000.000000004,32799999.999999996,33299999.999999996,33700000,34000000,34400000,34700000,35000000,35400000,35700000,36000000,36400000,36700000,37000000,37400000,37700000,38000000,38300000,38600000,38900000,39200000,39400000,39700000,40000000,40200000,40500000,40700000,41000000,41200000,41400000,41600000,41800000,42000000,42200000,42400000,42600000,42700000,42900000,43000000,43100000,43300000,43400000,43500000,43600000,43700000,43800000,43800000,43900000,44000000,44000000,44100000,44100000,44100000,44100000,44200000,44200000,44200000,44100000,44100000,44100000,44100000,44000000,44000000,43900000,43900000,43800000,43800000,43700000,43600000,43500000,43400000,43400000,43300000,43200000,43100000,43000000,42800000,42700000,42600000,42500000,42400000,42200000,42100000 +Philippines,2500000,2440000,2370000,2310000,2260000,2200000,2140000,2089999.9999999998,2040000,1980000,1980000,1970000,1980000,2000000,2029999.9999999998,2049999.9999999998,2080000,2100000,2130000,2150000,2180000,2220000,2250000,2290000,2340000,2380000,2420000,2460000,2510000,2550000,2600000,2640000,2690000,2740000,2790000,2840000,2890000,2940000,2990000,3040000,3090000,3140000,3190000,3240000,3290000,3340000,3400000,3450000,3500000,3560000,3620000,3670000,3720000,3780000,3840000,3890000,3950000,4010000,4070000.0000000005,4130000,4190000.0000000005,4260000,4320000,4390000,4450000,4520000,4590000,4660000,4730000,4800000,4870000,4940000,5010000,5090000,5160000,5240000,5320000,5400000,5480000,5550000,5610000,5660000,5700000,5740000,5770000,5800000,5840000,5870000,5910000,5950000,5990000,6040000,6100000,6160000,6220000,6290000,6350000,6420000,6480000,6560000,6640000,6740000,6850000,6960000,7080000,7200000,7320000,7450000,7580000,7700000,7840000,7970000,8100000,8240000,8380000.000000001,8530000,8670000,8820000,8990000,9160000,9350000,9540000,9730000,9940000,10100000,10400000,10600000,10800000,11000000,11300000,11500000,11800000,12000000,12300000,12600000,12900000,13200000,13500000,13800000,14100000,14500000,14800000,15200000,15500000,15900000,16300000,16700000,17100000,17500000,18000000,18500000,19300000,20200000,21100000,22000000,23000000,24100000,25200000,26300000,27500000,28500000,29300000,30200000,31000000,31900000,32799999.999999996,33700000,34600000,35500000,36500000,37400000,38400000,39400000,40400000,41400000,42400000,43500000,44600000,45900000,47200000,48400000,49700000,50900000,52200000,53500000,54800000,56100000,57400000,58800000,60100000,61600000,63000000,64500000,66099999.99999999,67700000,69300000,70900000,72700000,74500000,76200000,78000000,79600000,81300000,82900000,84600000,86300000,87900000,89600000,91300000,92900000,94600000,96300000,98000000,99700000,101000000,103000000,105000000,107000000,109000000,110000000,112000000,114000000,116000000,117000000,119000000,121000000,123000000,124000000,126000000,128000000,129000000,131000000,133000000,134000000,136000000,138000000,139000000,141000000,142000000,144000000,145000000,146000000,148000000,149000000,150000000,152000000,153000000,154000000,156000000,157000000,158000000,159000000,160000000,161000000,162000000,163000000,164000000,165000000,166000000,167000000,168000000,169000000,170000000,170000000,171000000,172000000,173000000,173000000,174000000,175000000,175000000,176000000,176000000,177000000,177000000,178000000,178000000,178000000,179000000,179000000,179000000,180000000,180000000,180000000,180000000,180000000,180000000,181000000,181000000,181000000,181000000,181000000,181000000,181000000,181000000,181000000,181000000,181000000,180000000,180000000,180000000 +Palau,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3880,3890,3900,3910,3930,3950,3970,3990,4010,4030,4050,4070,4090,4110,4130,4150,4170,4190,4210,4230,4250,4270,4290,4310,4330,4350,4370,4390,4410,4440,4460,4480,4500,4520,4550,4570,4590,4610,4640,4660,4680,4710,4730,4750,4780,4800,4830,4850,4870,4900,4920,4950,4970,5000,5020,5050,5070,5100,5120,5150,5170,5200,5230,5250,5280,5310,5330,5360,5390,5410,5440,5470,5490,5520,5550,5580,5600,5630,5660,5690,5720,5750,5770,5800,5830,5860,5890,5920,5950,5980,6010,6040,6070,6100,6130,6160,6190,6220,6250,6280,6310,6340,6370,6410,6440,6470,6500,6530,6560,6590,6630,6660,6690,6720,6750,6790,6820,6850,6890,6920,6950,6990,7020,7050,7090,7120,7160,7190,7230,7260,7330,7430,7530,7640,7800,8010,8250,8520,8790,9050,9260,9450,9640,9850,10100,10300,10600,10800,11000,11100,11200,11400,11700,12200,12500,12700,12600,12500,12500,12400,12300,12300,12400,12700,13000,13300,13600,14000,14300,14600,15000,15300,15600,16000,16400,16800,17200,17700,18300,18900,19400,19700,19800,19900,19900,19900,19800,19600,19400,19100,18800,18500,18200,17900,17800,17800,17800,17800,17800,17900,17900,18000,18000,18100,18100,18100,18000,18000,18000,18000,18000,17900,17900,17800,17800,17700,17700,17600,17600,17500,17400,17400,17300,17200,17200,17100,17000,17000,16900,16800,16800,16700,16600,16600,16500,16400,16400,16300,16300,16200,16200,16100.000000000002,16000,16000,15900,15900,15800,15800,15700,15700,15600,15600,15500,15500,15400,15400,15400,15300,15300,15200,15200,15100,15100,15000,15000,14900,14900,14800,14800,14700,14700,14600,14600,14500,14400,14400,14300,14300,14200,14100,14100,14000 +Papua New Guinea,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,755000,756000,756000,756000,757000,757000,757000,757000,758000,758000,758000,759000,759000,759000,759000,760000,760000,760000,761000,761000,761000,761000,762000,762000,762000,763000,763000,763000,763000,765000,767000,768000,770000,771000,773000,774000,776000,777000,779000,781000,782000,784000,785000,787000,788000,790000,791000,793000,795000,796000,798000,799000,801000,802000,804000,805000,807000,809000,810000,812000,813000,815000,816000,818000,820000,821000,823000,824000,826000,828000,829000,831000,832000,834000,835000,837000,839000,840000,842000,843000,845000,847000,848000,850000,851000,853000,855000,848000,834000,812000,783000,748000,714000,681000,650000,621000,591000,570000,555000,546000,544000,548000,552000,556000,560000,565000,569000,578000,593000,613000,639000,672000,707000,743000,781000,821000,863000,907000,954000,1000000,1050000,1110000,1160000,1220000,1290000,1350000,1420000,1490000,1540000,1570000,1610000,1650000,1690000,1730000,1780000,1830000,1880000,1930000,1990000,2040000,2080000,2130000,2180000,2220000,2270000,2320000,2380000,2430000,2490000,2550000,2610000,2670000,2730000,2790000,2860000,2920000,2980000,3040000,3100000,3170000,3240000,3300000,3370000,3450000,3520000,3600000,3680000,3760000,3860000,3990000,4139999.9999999995,4290000,4450000,4620000,4790000,4960000,5140000,5320000,5510000,5700000,5890000,6090000,6290000,6500000,6710000,6920000,7140000,7360000,7580000,7810000,8029999.999999999,8250000,8460000,8680000,8900000,9110000,9330000,9540000,9750000,9950000,10100000,10300000,10500000,10700000,10900000,11100000,11300000,11400000,11600000,11800000,12000000,12200000,12300000,12500000,12700000,12900000,13000000,13200000,13400000,13500000,13700000,13900000,14000000,14200000,14300000,14500000,14600000,14800000,14900000,15100000,15200000,15300000,15500000,15600000,15700000,15800000,16000000,16100000.000000002,16200000,16300000,16399999.999999998,16500000,16600000.000000002,16700000,16800000,16900000,17000000,17100000,17200000,17300000,17300000,17400000,17500000,17600000,17600000,17700000,17800000,17800000,17900000,17900000,18000000,18000000,18100000,18100000,18200000,18200000,18300000,18300000,18300000,18400000,18400000,18400000,18400000,18500000,18500000,18500000,18500000,18500000,18500000 +Poland,9000000,9070000,9130000,9200000,9270000,9340000,9410000,9480000,9550000,9620000,9690000,9760000,9830000,9900000,9980000,10100000,10100000,10200000,10300000,10400000,10400000,10500000,10600000,10700000,10700000,10800000,10900000,11000000,11100000,11100000,11200000,11300000,11400000,11500000,11600000,11600000,11700000,11800000,11900000,12000000,12100000,12200000,12300000,12300000,12400000,12500000,12600000,12700000,12800000,12900000,13000000,13200000,13300000,13500000,13700000,13900000,14000000,14200000,14400000,14600000,14800000,14900000,15100000,15300000,15500000,15700000,15900000,16100000.000000002,16300000,16500000,16800000,17000000,17300000,17500000,17800000,18000000,18300000,18600000,18900000,19100000,19400000,19700000,20000000,20300000,20600000,20900000,21200000,21600000,21900000,22200000,22400000,22700000,22900000,23100000,23200000,23400000,23600000,23800000,24000000,24100000,24300000,24500000,24700000,24800000,25000000,25200000,25400000,25500000,25700000,25800000,25800000,25700000,25500000,25200000,25000000,24700000,24400000,24200000,23900000,23800000,23800000,23900000,24200000,24600000,25000000,25400000,25800000,26200000,26700000,27100000,27400000,27700000,27900000,28100000,28200000,28400000,28600000,28800000,29000000,29000000,28900000,28600000,28200000,27700000,27200000,26700000,26200000,25700000,25200000,24900000,24800000,25200000,25700000,26200000,26600000,27100000,27600000,28100000,28600000,29100000,29500000,29900000,30300000,30600000,30900000,31200000,31500000,31800000,32000000,32299999.999999996,32500000,32700000.000000004,33000000,33299999.999999996,33600000,33900000,34200000,34600000,34900000,35200000,35500000,35900000,36200000,36500000,36900000,37200000,37400000,37700000,37800000,37900000,38100000,38200000,38300000,38300000,38400000,38400000,38400000,38400000,38400000,38400000,38500000,38700000,38600000,38600000,38600000,38600000,38500000,38500000,38500000,38600000,38600000,38600000,38600000,38600000,38600000,38600000,38500000,38500000,38500000,38500000,38400000,38300000,39900000,41000000,40200000,39600000,39200000,39000000,38900000,38800000,38700000,38600000,38400000,38300000,38100000,38000000,37800000,37600000,37400000,37200000,37000000,36800000,36600000,36400000,36200000,36000000,35800000,35600000,35400000,35100000,34900000,34700000,34500000,34300000,34100000,33900000,33600000,33400000,33200000.000000004,33000000,32700000.000000004,32500000,32200000.000000004,32000000,31700000,31500000,31200000,30900000,30600000,30300000,30100000,29800000,29500000,29200000,28900000,28600000,28300000,28000000,27800000,27500000,27200000,27000000,26700000,26500000,26200000,26000000,25800000,25600000,25300000,25100000,24900000,24700000,24500000,24300000,24200000,24000000,23800000,23600000,23400000,23300000,23100000 +North Korea,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4340000,4350000,4350000,4350000,4350000,4350000,4360000,4360000,4360000,4370000,4370000,4370000,4380000,4380000,4380000,4390000,4390000,4390000,4400000,4400000,4400000,4410000,4410000,4410000,4420000,4420000,4420000,4430000,4430000,4430000,4440000,4440000,4440000,4460000,4470000,4490000,4500000,4520000,4530000,4550000,4570000,4580000,4600000,4610000,4630000,4640000,4660000,4670000,4690000,4700000,4720000,4740000,4750000,4770000,4790000,4820000,4840000,4860000,4880000,4900000,4930000,4950000,4970000,4990000,5010000,5040000,5060000,5080000,5110000,5130000,5150000,5170000,5200000,5220000,5240000,5270000,5290000,5310000,5340000,5360000,5380000,5410000,5430000,5460000,5480000,5500000,5530000,5550000,5580000,5600000,5630000,5670000,5720000,5800000,5890000,6000000,6120000,6230000,6350000,6470000,6580000,6690000,6800000,6910000,7030000,7150000,7260000,7380000,7510000,7630000,7760000,7890000,8020000,8150000,8289999.999999999,8430000,8570000,8710000,8850000,9000000,9150000,9300000,9460000,9610000,9770000,9940000,10100000,10300000,10400000,10600000,10800000,11000000,11100000,10600000,10200000,10100000,10200000,10400000,10600000,10800000,11100000,11400000,11700000,11900000,12200000,12500000,12800000,13100000,13400000,13800000,14200000,14600000,15000000,15400000,15800000,16100000.000000002,16399999.999999998,16700000,17000000,17200000,17500000,17700000,18000000,18200000,18500000,18800000,19000000,19300000,19600000,19900000,20200000,20500000,20800000,21100000,21400000,21800000,22100000,22400000,22600000,22800000,23000000,23200000,23400000,23500000,23600000,23800000,23900000,24100000,24200000,24400000,24500000,24600000,24700000,24800000,24900000,25000000,25100000,25300000,25400000,25500000,25600000,25800000,25900000,26000000,26100000,26200000,26200000,26300000,26400000,26400000,26500000,26500000,26600000,26600000,26600000,26600000,26600000,26600000,26600000,26600000,26500000,26500000,26400000,26400000,26300000,26300000,26200000,26200000,26100000,26000000,26000000,25900000,25800000,25700000,25600000,25600000,25500000,25400000,25300000,25200000,25100000,25000000,24900000,24700000,24600000,24500000,24400000,24300000,24200000,24100000,24000000,23900000,23800000,23600000,23500000,23400000,23300000,23200000,23100000,23000000,22900000,22800000,22700000,22500000,22400000,22300000,22200000,22100000,22000000,21900000,21800000,21700000,21600000,21500000,21300000,21200000,21100000,21000000,20900000,20800000,20700000,20600000,20500000 +Portugal,2750000,2780000,2800000,2830000,2850000,2880000,2900000,2930000,2960000,2980000,3010000,3040000,3070000,3090000,3120000,3150000,3180000,3210000,3240000,3270000,3290000,3310000,3340000,3350000,3370000,3390000,3410000,3430000,3450000,3470000,3490000,3510000,3530000,3550000,3570000,3600000,3620000,3640000,3660000,3680000,3700000,3710000,3730000,3740000,3750000,3760000,3770000,3780000,3790000,3810000,3820000,3840000,3850000,3870000,3890000,3910000,3920000,3940000,3960000,3980000,4010000,4030000.0000000005,4059999.9999999995,4090000,4130000,4160000,4190000.0000000005,4220000,4260000,4290000,4320000,4350000,4380000,4410000,4440000,4460000,4490000,4520000,4550000,4580000,4610000,4650000,4690000,4730000,4770000,4810000,4850000,4900000,4940000,4980000,5020000,5060000,5100000,5130000,5170000,5210000,5250000,5280000,5320000,5360000,5400000,5450000,5490000,5540000,5580000,5630000,5680000,5730000,5780000,5820000,5850000,5880000,5900000,5920000,5930000,5950000,5960000,5980000,5990000,6020000,6050000,6100000,6160000,6240000,6310000,6390000,6460000,6540000,6620000,6700000,6780000,6860000,6940000,7030000,7120000,7210000,7300000,7390000,7480000,7570000,7650000,7730000,7810000,7890000,7960000,8039999.999999999,8119999.999999999,8189999.999999999,8270000,8350000,8420000,8470000,8520000,8570000,8620000,8670000,8710000,8750000,8800000,8850000,8880000,8900000,8910000,8910000,8910000,8900000,8880000,8860000,8820000,8770000,8680000,8700000,8830000,8960000,9080000,9200000,9330000,9460000,9580000,9690000,9790000,9860000,9900000,9940000,9970000,10000000,10000000,10000000,10000000,10000000,10000000,9990000,9980000,9990000,10000000,10100000,10100000,10100000,10200000,10200000,10300000,10400000,10400000,10500000,10500000,10500000,10500000,10600000,10600000,10600000,10600000,10600000,10500000,10500000,10400000,10400000,10300000,10300000,10300000,10300000,10300000,10300000,10300000,10200000,10200000,10200000,10200000,10100000,10100000,10100000,10100000,10000000,10000000,9970000,9940000,9910000,9880000,9840000,9810000,9770000,9730000,9690000,9650000,9610000,9560000,9510000,9470000,9420000,9370000,9310000,9260000,9210000,9150000,9100000,9040000,8980000,8920000,8860000,8800000,8740000,8680000,8620000,8560000,8500000,8440000,8380000.000000001,8320000,8260000,8210000.000000001,8150000,8090000,8039999.999999999,7990000,7940000,7890000,7840000,7790000,7750000,7700000,7660000,7620000,7580000,7540000,7510000,7470000,7430000,7390000,7360000,7320000,7280000,7250000,7210000,7170000,7140000,7100000,7060000,7030000,6990000,6950000,6920000,6890000 +Paraguay,300000,289000,279000,268000,259000,249000,240000,231000,223000,215000,207000,200000,193000,186000,179000,172000,166000,160000,154000,151000,149000,149000,152000,157000,161000,166000,171000,176000,182000,187000,193000,199000,205000,211000,217000,224000,231000,238000,245000,252000,260000,268000,276000,284000,293000,302000,311000,320000,330000,338000,345000,350000,353000,355000,357000,359000,361000,362000,364000,366000,368000,370000,371000,373000,375000,377000,379000,381000,383000,381000,377000,369000,359000,346000,333000,321000,310000,298000,287000,284000,288000,300000,321000,351000,384000,420000,459000,502000,549000,584000,605000,612000,605000,583000,561000,540000,520000,501000,483000,470000,464000,463000,468000,479000,491000,502000,514000,526000,539000,552000,565000,578000,592000,606000,620000,635000,650000,666000,681000,697000,714000,730000,747000,765000,783000,801000,820000,839000,858000,878000,899000,920000,941000,964000,986000,1010000,1030000,1060000,1080000,1110000,1140000,1170000,1200000,1240000,1270000,1310000,1350000,1380000,1420000,1460000,1500000,1540000,1570000,1610000,1650000,1690000,1720000,1770000,1810000,1850000,1890000,1940000,1990000,2040000,2089999.9999999998,2140000,2200000,2250000,2300000,2360000,2410000,2460000,2520000,2580000,2650000,2710000,2780000,2850000,2920000,3000000,3080000,3160000,3250000,3340000,3440000,3540000,3640000,3740000,3840000,3950000,4059999.9999999995,4170000,4280000,4390000,4500000,4600000,4710000,4820000,4920000,5030000,5120000,5210000,5290000,5350000,5420000,5480000,5530000,5590000,5650000,5700000,5770000,5840000,5920000,6010000,6090000,6180000,6270000,6360000,6440000,6530000,6620000,6700000,6780000,6860000,6950000,7030000,7110000,7190000,7270000,7350000,7430000,7500000,7570000,7640000,7710000,7770000,7840000,7900000,7960000,8020000,8080000,8140000.000000001,8199999.999999999,8250000,8300000.000000001,8359999.999999999,8410000,8460000,8500000,8550000,8590000,8630000,8670000,8710000,8750000,8780000,8810000,8850000,8870000,8900000,8920000,8950000,8970000,8990000,9000000,9020000,9030000,9040000,9050000,9050000,9060000,9060000,9060000,9060000,9060000,9060000,9050000,9050000,9040000,9030000,9020000,9010000,9000000,8990000,8970000,8960000,8940000,8920000,8900000,8880000,8860000,8840000,8820000,8790000,8770000,8750000,8720000,8690000,8660000,8630000,8610000 +Palestine,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,166000,167000,167000,167000,168000,168000,169000,170000,170000,171000,172000,173000,175000,176000,177000,179000,180000,182000,184000,186000,188000,190000,191000,193000,195000,198000,200000,202000,204000,206000,208000,211000,213000,215000,218000,220000,223000,226000,228000,231000,234000,237000,240000,243000,246000,249000,252000,256000,259000,262000,266000,269000,273000,276000,280000,284000,288000,292000,296000,300000,304000,309000,313000,318000,323000,328000,333000,337000,344000,350000,355000,357000,355000,349000,344000,342000,346000,353000,361000,370000,380000,391000,402000,413000,425000,438000,450000,463000,478000,499000,526000,562000,596000,625000,645000,668000,692000,719000,741000,763000,787000,815000,846000,873000,897000,915000,935000,945000,953000,963000,973000,985000,997000,1010000,1020000,1040000,1060000,1070000,1090000,1110000,1130000,1140000,1150000,1150000,1140000,1120000,1110000,1120000,1140000,1170000,1200000,1230000,1260000,1300000,1340000,1370000,1410000,1450000,1500000,1550000,1600000,1670000,1730000,1780000,1860000,1960000,2040000,2120000,2210000,2310000,2410000,2520000,2620000,2730000,2850000,2950000,3040000,3140000,3230000,3310000,3380000,3460000,3540000,3630000,3720000,3810000,3900000,3990000,4090000,4179999.9999999995,4280000,4380000,4480000,4590000,4700000,4810000,4910000,5020000,5130000,5250000,5370000,5490000,5620000,5750000,5870000,6000000,6130000,6260000,6390000,6520000,6650000,6780000,6910000,7040000,7170000,7300000,7440000,7570000,7700000,7830000,7960000,8100000,8230000,8359999.999999999,8480000,8610000,8740000,8860000,8990000,9110000,9230000,9350000,9470000,9580000,9700000,9810000,9920000,10000000,10100000,10300000,10400000,10500000,10600000,10700000,10800000,10900000,11000000,11100000,11100000,11200000,11300000,11400000,11500000,11600000,11700000,11700000,11800000,11900000,11900000,12000000,12100000,12100000,12200000,12300000,12300000,12400000,12400000,12500000,12500000,12500000,12600000,12600000,12700000,12700000,12700000,12800000,12800000,12800000 +Qatar,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14100,14000,14000,14000,14000,14000,14000,14000,13900,13900,13900,13900,13900,13900,13900,13900,13900,13900,13900,14000,14000,14100,14200,14200,14300,14400,14500,14500,14600,14700,14800,14800,14900,15000,15100,15100,15200,15300,15400,15400,15500,15600,15700,15700,15800,15900,16000,16100.000000000002,16100.000000000002,16200,16300,16400,16500,16500,16600,16700,16800,16900,17000,17100,17300,17400,17500,17700,17800,17900,18100,18200,18400,18600,18700,18900,19000,19200,19400,19500,19700,19900,20000,20200,20400,20500,20700,20900,21100,21200,21400,21600,21800,22000,22200,22300,22500,22700,22900,23100,23600,24300,25100,25900,26800,27700,28700,29700,30900,32200.000000000004,34000,36400,40100,45100,51000,57500,64800,73100,82500,93000,105000,118000,133000,148000,164000,179000,195000,211000,227000,244000,260000,277000,295000,313000,330000,348000,366000,382000,397000,412000,427000,442000,456000,471000,486000,501000,515000,529000,551000,581000,613000,646000,679000,713000,749000,778000,849000,1020000,1230000,1440000,1610000,1710000,1800000,1910000,2040000,2210000,2410000,2600000,2710000,2770000,2810000,2760000,2690000,2700000,2720000,2740000,2760000,2780000,2800000,2820000,2840000,2860000,2880000,2900000,2920000,2940000,2960000,2990000,3010000,3040000,3060000,3090000,3120000,3140000,3170000,3200000,3230000,3250000,3280000,3310000,3330000,3360000,3380000,3410000,3430000,3450000,3470000,3500000,3520000,3530000,3550000,3570000,3590000,3610000,3620000,3640000,3660000,3670000,3690000,3700000,3720000,3730000,3750000,3770000,3780000,3800000,3810000,3830000,3850000,3860000,3880000,3900000,3920000,3940000,3960000,3980000,4000000,4019999.9999999995,4040000,4070000.0000000005,4090000,4120000,4139999.9999999995,4170000,4190000.0000000005,4220000,4250000,4270000,4300000,4330000,4350000,4380000 +Romania,5500000,5540000,5580000,5630000,5670000,5710000,5750000,5800000,5840000,5880000,5930000,5970000,6020000,6060000,6110000,6150000,6200000,6250000,6290000,6340000,6390000,6440000,6490000,6530000,6580000,6630000,6680000,6730000,6780000,6840000,6890000,6940000,6990000,7040000,7100000,7150000,7200000,7260000,7310000,7370000,7420000,7480000,7530000,7590000,7650000,7710000,7760000,7820000,7880000,7940000,8000000,8050000.000000001,8109999.999999999,8170000,8220000.000000001,8279999.999999999,8340000,8390000,8450000,8510000,8570000,8630000,8690000,8750000,8810000,8870000,8930000,8990000,9050000,9110000,9170000,9230000,9290000,9350000,9400000,9460000,9520000,9580000,9640000,9700000,9750000,9810000,9870000,9930000,10000000,10100000,10100000,10200000,10200000,10300000,10400000,10400000,10500000,10600000,10600000,10700000,10700000,10800000,10900000,10900000,11000000,11100000,11200000,11200000,11300000,11400000,11500000,11600000,11700000,11800000,11800000,11900000,12000000,12000000,12000000,12100000,12100000,12200000,12200000,12300000,12400000,12500000,12700000,12800000,13000000,13200000,13400000,13600000,13800000,13900000,14100000,14300000,14500000,14600000,14800000,15000000,15200000,15300000,15500000,15700000,15800000,15900000,16000000,16000000,16100000.000000002,16100000.000000002,16100000.000000002,16200000,16200000,16300000,16399999.999999998,16600000.000000002,16800000,17000000,17300000,17500000,17700000,17900000,18100000,18300000,18500000,18600000,18800000,18900000,19000000,19100000,19200000,19300000,19500000,19700000,19900000,20100000,20400000,20600000,20900000,21200000,21400000,21700000,21800000,22000000,22100000,22200000,22300000,22400000,22500000,22500000,22600000,22700000,22700000,22800000,22800000,22800000,22800000,22700000,22600000,22500000,22400000,22300000,22200000,22000000,21900000,21800000,21700000,21500000,21300000,21100000,20900000,20700000,20600000,20500000,20300000,20200000,20100000,20100000,20000000,19900000,19800000,19700000,19600000,19500000,19400000,19300000,19700000,19900000,19600000,19400000,19300000,19200000,19100000,19100000,19000000,19000000,18900000,18800000,18800000,18700000,18600000,18500000,18500000,18400000,18300000,18200000,18100000,18000000,18000000,17900000,17800000,17700000,17600000,17500000,17500000,17400000,17300000,17200000,17100000,17000000,16900000,16800000,16700000,16600000.000000002,16500000,16399999.999999998,16300000,16200000,16100000.000000002,16000000,15900000,15800000,15700000,15600000,15500000,15400000,15300000,15200000,15100000,15000000,14900000,14800000,14700000,14600000,14600000,14500000,14400000,14300000,14200000,14200000,14100000,14000000,13900000,13900000,13800000,13700000,13700000,13600000,13500000,13500000,13400000,13300000,13200000,13200000,13100000 +Russia,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31300000,31400000,31400000,31500000,31600000,31700000,31800000,31900000,32100000,32200000.000000004,32400000,32600000,32799999.999999996,33000000,33299999.999999996,33500000,33800000,34100000,34400000,34700000,35000000,35300000,35600000,36000000,36300000,36600000,37000000,37300000,37700000,38000000,38400000,38700000,39100000,39400000,39800000,40200000,40500000,40900000,41300000,41700000,42100000,42400000,42800000,43200000,43600000,44000000,44400000,44800000,45200000,45600000,46000000,46500000,46900000,47300000,47700000,48200000,48600000,49000000,49500000,49900000,50300000,50800000,51300000,51700000,52200000,52700000,53100000,53600000,54100000,54600000,55100000,55600000,56100000,56600000,57100000,57600000,58200000,58700000,59200000,59800000,60300000,60900000,61400000,62000000,62500000,63100000,63700000,64300000,64800000,65400000.00000001,66000000,66599999.99999999,67200000,67800000,68500000,69100000,69700000,70300000,71000000,71600000,72300000,72900000,73600000,74200000,74900000,75600000,76300000,77000000,77700000,78400000,79100000,79900000,80600000,81400000,82100000,82900000,83600000,84400000,85200000,86000000,86800000,87600000,88400000,89200000,90000000,90800000,91700000,92500000,93400000,94300000,95100000,96000000,96900000,97800000,98700000,99600000,101000000,101000000,103000000,104000000,106000000,107000000,109000000,111000000,113000000,115000000,116000000,118000000,120000000,121000000,123000000,124000000,125000000,126000000,127000000,128000000,129000000,129000000,130000000,131000000,131000000,132000000,133000000,134000000,135000000,136000000,137000000,138000000,138000000,139000000,140000000,141000000,142000000,143000000,144000000,145000000,146000000,147000000,148000000,148000000,149000000,149000000,149000000,149000000,148000000,148000000,148000000,147000000,147000000,146000000,146000000,145000000,144000000,144000000,143000000,143000000,143000000,143000000,143000000,143000000,144000000,144000000,144000000,145000000,145000000,145000000,146000000,146000000,146000000,145000000,145000000,144000000,144000000,143000000,143000000,143000000,142000000,142000000,141000000,141000000,141000000,140000000,140000000,139000000,139000000,138000000,138000000,138000000,137000000,137000000,136000000,136000000,136000000,135000000,135000000,134000000,134000000,134000000,133000000,133000000,132000000,132000000,131000000,131000000,130000000,130000000,129000000,129000000,128000000,127000000,127000000,126000000,126000000,125000000,125000000,124000000,124000000,123000000,122000000,122000000,121000000,121000000,121000000,120000000,120000000,119000000,119000000,118000000,118000000,118000000,117000000,117000000,117000000,116000000,116000000,116000000,115000000,115000000,115000000,115000000,114000000,114000000,114000000,113000000,113000000,113000000,113000000,112000000,112000000 +Rwanda,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,928000,931000,938000,947000,959000,975000,991000,1010000,1020000,1040000,1060000,1080000,1090000,1110000,1130000,1150000,1170000,1190000,1210000,1230000,1250000,1270000,1290000,1310000,1330000,1350000,1370000,1400000,1420000,1440000,1470000,1490000,1500000,1510000,1520000,1520000,1520000,1520000,1520000,1520000,1530000,1530000,1530000,1530000,1530000,1530000,1530000,1530000,1540000,1540000,1540000,1540000,1540000,1540000,1540000,1540000,1550000,1550000,1550000,1550000,1550000,1550000,1560000,1560000,1570000,1570000,1580000,1580000,1590000,1600000,1600000,1600000,1600000,1600000,1590000,1580000,1570000,1570000,1560000,1550000,1540000,1530000,1520000,1500000,1490000,1480000,1470000,1460000,1440000,1430000,1420000,1410000,1400000,1390000,1390000,1380000,1380000,1370000,1360000,1360000,1350000,1350000,1360000,1370000,1380000,1400000,1420000,1450000,1470000,1490000,1510000,1530000,1560000,1580000,1600000,1620000,1650000,1670000,1690000,1720000,1740000,1770000,1790000,1820000,1850000,1890000,1920000,1960000,1990000,2029999.9999999998,2060000,2110000,2150000,2230000,2300000,2380000,2460000,2540000,2620000,2710000,2790000,2880000,2970000,3050000,3120000,3190000,3260000,3350000,3440000,3550000,3660000,3780000,3900000,4019999.9999999995,4139999.9999999995,4260000,4390000,4520000,4650000,4780000,4920000,5070000,5250000,5440000,5650000,5860000,6060000,6270000,6500000,6740000,6950000,7140000,7320000,7490000,7660000,7900000,6730000,5690000,6720000,7670000,7910000,8010000,8109999.999999999,8220000.000000001,8369999.999999999,8570000,8790000,9030000,9270000,9520000,9780000,10000000,10300000,10600000,10800000,11100000,11400000,11600000,11900000,12200000,12500000,12800000,13100000,13500000,13800000,14100000,14400000,14700000,15100000,15400000,15700000,16000000,16399999.999999998,16700000,17000000,17400000,17700000,18000000,18400000,18700000,19100000,19400000,19700000,20100000,20400000,20700000,21100000,21400000,21700000,22100000,22400000,22700000,23000000,23300000,23700000,24000000,24300000,24600000,24900000,25200000,25500000,25800000,26100000,26400000,26700000,27000000,27200000,27500000,27800000,28000000,28300000,28500000,28800000,29000000,29200000,29500000,29700000,29900000,30100000,30300000,30600000,30800000,31000000,31100000,31300000,31500000,31700000,31900000,32000000,32200000.000000004,32400000,32500000,32600000,32799999.999999996,32900000,33100000,33200000.000000004,33299999.999999996,33400000,33500000,33600000,33700000,33800000 +Saudi Arabia,2000000,2000000,2009999.9999999998,2009999.9999999998,2020000,2020000,2029999.9999999998,2029999.9999999998,2040000,2040000,2049999.9999999998,2049999.9999999998,2049999.9999999998,2060000,2060000,2069999.9999999998,2069999.9999999998,2080000,2080000,2089999.9999999998,2089999.9999999998,2100000,2100000,2110000,2110000,2110000,2120000,2120000,2130000,2130000,2140000,2140000,2150000,2150000,2160000,2160000,2170000,2170000,2180000,2180000,2190000,2190000,2200000,2200000,2210000,2210000,2220000,2220000,2230000,2230000,2240000,2230000,2230000,2230000,2230000,2230000,2220000,2220000,2220000,2220000,2220000,2210000,2210000,2210000,2210000,2210000,2200000,2200000,2200000,2200000,2190000,2190000,2190000,2190000,2190000,2180000,2180000,2180000,2180000,2170000,2170000,2170000,2170000,2160000,2160000,2160000,2160000,2150000,2150000,2150000,2150000,2140000,2140000,2140000,2130000,2130000,2130000,2130000,2120000,2120000,2120000,2130000,2130000,2140000,2140000,2150000,2160000,2160000,2170000,2180000,2190000,2200000,2210000,2220000,2230000,2240000,2260000,2270000,2290000,2310000,2330000,2350000,2370000,2400000,2420000,2440000,2460000,2490000,2510000,2530000,2560000,2580000,2600000,2630000,2650000,2680000,2700000,2720000,2750000,2770000,2800000,2830000,2850000,2880000,2900000,2930000,2960000,2990000,3010000,3050000,3090000,3180000,3280000,3380000,3480000,3580000,3690000,3800000,3920000,4040000,4170000,4310000,4460000,4620000,4800000,4980000,5170000,5380000,5600000,5840000,6110000,6400000,6720000,7090000,7480000,7900000,8320000,8760000,9210000,9680000,10200000,10700000,11200000,11700000,12300000,12900000,13500000,14100000,14700000,15400000,16000000,16700000,17300000,17800000,18400000,18900000,19400000,19900000,20500000,21000000,21500000,22100000,22600000,23200000,23700000,24400000,25400000,26400000,27400000,28500000,29400000,30200000,30800000,31500000,32100000,32700000.000000004,33400000,34200000,35000000,35800000,36000000,36000000,36400000,36900000,37500000,38000000,38500000,39000000,39500000,40000000,40500000,40900000,41400000,41900000,42300000,42800000,43200000,43600000,44100000,44500000,44900000,45300000,45700000,46100000,46400000,46800000,47100000,47500000,47800000,48100000,48400000,48600000,48900000,49100000,49300000,49500000,49700000,49900000,50000000,50100000,50200000,50300000,50400000,50500000,50500000,50600000,50600000,50600000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50700000,50600000,50600000,50600000,50500000,50500000 +Sudan,3990000,4000000,4000000,4010000,4019999.9999999995,4019999.9999999995,4030000.0000000005,4030000.0000000005,4040000,4040000,4050000,4050000,4059999.9999999995,4070000.0000000005,4080000,4080000,4090000,4099999.9999999995,4110000.0000000005,4120000,4139999.9999999995,4150000.0000000005,4160000,4170000,4190000.0000000005,4200000,4220000,4240000,4250000,4270000,4290000,4310000,4330000,4350000,4370000,4390000,4410000,4420000,4440000,4460000,4480000,4500000,4520000,4540000,4560000,4580000,4610000,4630000,4650000,4670000,4690000,4700000,4710000,4720000,4730000,4740000,4750000,4760000,4770000,4780000,4790000,4800000,4810000,4810000,4820000,4830000,4840000,4850000,4860000,4870000,4880000,4890000,4900000,4910000,4920000,4930000,4940000,4950000,4960000,4970000,4980000,4990000,5000000,5010000,5020000,5020000,5030000,5040000,5050000,5060000,5070000,5080000,5090000,5100000,5110000,5120000,5130000,5140000,5150000,5160000,5160000,5170000,5180000,5190000,5200000,5210000,5220000,5230000,5240000,5250000,5260000,5260000,5270000,5280000,5290000,5300000,5310000,5320000,5340000,5360000,5390000,5410000,5440000,5460000,5490000,5510000,5530000,5560000,5580000,5610000,5630000,5660000,5680000,5710000,5730000,5760000,5790000,5810000,5840000,5860000,5890000,5920000,5940000,5970000,6000000,6020000,6050000,6080000,6100000,6130000,6190000,6380000,6570000,6770000,6980000,7190000,7410000,7640000,7860000,8090000,8330000,8580000,8840000,9120000,9410000,9710000,10000000,10300000,10600000,11000000,11300000,11700000,12100000,12500000,13000000,13500000,14100000,14700000,15300000,16000000,16700000,17400000,18100000,18700000,19200000,19500000,19900000,20200000,20500000,20700000,21100000,21500000,21800000,22200000,22700000,23300000,23900000,24500000,25000000,25600000,26300000,26900000,27600000,28200000,28800000,29500000,30300000,31200000,32100000,32900000,33700000,34400000,35200000,36000000,37000000,38200000,39400000,40700000,42000000,43200000,44400000,45700000,46900000,48100000,49400000,50600000,51900000,53200000,54400000,55700000,57000000,58300000,59600000,60900000,62200000,63600000,64900000.00000001,66300000,67600000,69000000,70400000,71800000,73200000,74600000,76000000,77400000,78800000,80200000,81600000,83100000,84500000,85900000,87300000,88800000,90200000,91600000,93000000,94400000,95700000,97100000,98400000,99800000,101000000,102000000,104000000,105000000,106000000,108000000,109000000,110000000,111000000,113000000,114000000,115000000,116000000,118000000,119000000,120000000,121000000,122000000,123000000,124000000,126000000,127000000,128000000,129000000,130000000,131000000,132000000,133000000,134000000,135000000,135000000,136000000,137000000,138000000,139000000,140000000,140000000,141000000,142000000 +Senegal,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1010000,1000000,1000000,999000,996000,994000,991000,988000,986000,983000,980000,978000,975000,973000,970000,967000,965000,962000,960000,957000,954000,952000,949000,947000,944000,942000,939000,937000,936000,937000,939000,942000,948000,953000,958000,964000,969000,975000,981000,987000,994000,1000000,1010000,1020000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1250000,1260000,1270000,1280000,1290000,1300000,1310000,1310000,1320000,1330000,1340000,1350000,1360000,1370000,1380000,1390000,1400000,1400000,1410000,1420000,1430000,1440000,1450000,1460000,1470000,1480000,1490000,1500000,1500000,1510000,1520000,1530000,1540000,1550000,1570000,1580000,1610000,1630000,1650000,1680000,1700000,1730000,1760000,1780000,1810000,1830000,1860000,1890000,1910000,1940000,1970000,1990000,2020000,2049999.9999999998,2080000,2120000,2150000,2190000,2230000,2270000,2310000,2350000,2400000,2440000,2500000,2560000,2630000,2700000,2770000,2850000,2930000,3010000,3090000,3180000,3270000,3370000,3460000,3560000,3660000,3770000,3880000,4000000,4120000,4240000,4370000,4500000,4630000,4770000,4910000,5050000,5180000,5310000,5430000,5560000,5700000,5850000,6010000,6170000,6340000,6520000,6710000,6910000,7110000,7320000,7540000,7750000,7970000,8199999.999999999,8420000,8630000,8840000,9050000,9260000,9480000,9700000,9940000,10200000,10400000,10700000,11000000,11300000,11600000,11900000,12200000,12500000,12900000,13200000,13600000,14000000,14400000,14800000,15200000,15600000,16000000,16399999.999999998,16900000,17300000,17800000,18200000,18700000,19200000,19600000,20100000,20600000,21100000,21600000,22200000,22700000,23200000,23800000,24300000,24900000,25400000,26000000,26600000,27100000,27700000,28300000,28900000,29500000,30100000,30700000,31300000,31900000,32600000,33200000.000000004,33800000,34400000,35000000,35700000,36300000,36900000,37500000,38200000,38800000,39400000,40100000,40700000,41300000,42000000,42600000,43200000,43900000,44500000,45100000,45700000,46400000,47000000,47600000,48200000,48900000,49500000,50100000,50700000,51300000,51900000,52500000,53100000,53700000,54300000,54800000,55400000,55900000,56500000,57000000,57600000,58100000,58600000,59100000,59600000,60100000,60600000,61100000,61600000,62100000 +Singapore,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30000,30100,30400,30800,31300,31900,32600,33300,34000,34700,35400,36200,37000,37700,38500,39300,40200,41000,41900,42700,43600,44600,45500,46500,47400,48400,49500,50500,51600,52600,53700,54900,56000,57100,58300,59500,60700,61900,63100,64400.00000000001,65700,67000,68300,69700,71100,72500,74000,75500,77000,78500,80100,81900,83900,86200,88700,91500,94400,97300,100000,104000,107000,110000,114000,117000,121000,125000,129000,133000,137000,141000,145000,150000,155000,160000,165000,170000,175000,181000,186000,192000,198000,205000,212000,220000,229000,238000,248000,258000,269000,280000,291000,302000,312000,320000,327000,334000,340000,346000,353000,360000,367000,375000,386000,399000,415000,433000,451000,471000,491000,512000,534000,555000,574000,592000,608000,622000,637000,652000,667000,682000,698000,716000,735000,756000,778000,803000,828000,854000,880000,908000,936000,969000,1010000,1050000,1100000,1150000,1210000,1270000,1330000,1400000,1470000,1540000,1600000,1660000,1710000,1760000,1810000,1860000,1910000,1950000,1990000,2029999.9999999998,2060000,2100000,2130000,2170000,2200000,2230000,2260000,2290000,2320000,2360000,2400000,2450000,2510000,2560000,2620000,2690000,2750000,2810000,2880000,2950000,3020000,3120000,3230000,3330000,3440000,3540000,3650000,3760000,3870000,3970000,4050000,4120000,4179999.9999999995,4230000,4270000,4340000,4490000,4660000,4840000,5010000,5160000,5280000,5380000,5480000,5570000,5650000,5710000,5760000,5810000,5870000,5910000,5940000,5980000,6010000,6050000,6090000,6130000,6160000,6190000,6220000,6250000,6280000,6300000,6330000,6350000,6360000,6380000,6390000,6400000,6400000,6410000,6410000,6410000,6410000,6400000,6390000,6390000,6380000,6360000,6350000,6340000,6320000,6310000,6290000,6270000,6250000,6230000,6210000,6190000,6170000,6150000,6130000,6110000,6090000,6060000,6040000,6020000,6000000,5970000,5950000,5930000,5910000,5890000,5860000,5840000,5820000,5800000,5780000,5760000,5740000,5720000,5700000,5680000,5660000,5640000,5620000,5610000,5590000,5570000,5560000,5540000,5530000,5520000,5500000,5490000,5480000,5470000,5460000,5460000,5450000,5450000 +Solomon Islands,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57000,57100,57400,57700,58200,58900,59500,60200,60800,61500,62100,62800,63500,64200,64900.00000000001,65600,66300,67000,67700,68400,69200,69900,70700,71400,72200,73000,73800,74600,75400,76200,77000,77900,78700,79500,80400,81200,82100,82900,83800,84700,85600,86500,87400,88300,89300,90200,91200,92100,93100,94100,95100,96100,97100,98100,99200,100000,101000,102000,103000,104000,106000,107000,108000,109000,110000,111000,112000,114000,115000,116000,117000,119000,120000,121000,122000,124000,125000,126000,128000,129000,130000,132000,133000,134000,136000,137000,139000,140000,142000,143000,145000,146000,147000,147000,148000,148000,148000,148000,148000,148000,148000,147000,144000,140000,135000,129000,123000,117000,112000,107000,102000,98000,95200,93400,92600,92700,92800,92900,93000,93100,93200,93500,94000,94700,95600,96700,97800,99000,100000,101000,102000,104000,105000,107000,109000,112000,114000,117000,120000,123000,127000,130000,133000,137000,140000,144000,148000,151000,156000,160000,164000,168000,173000,177000,182000,187000,192000,198000,204000,211000,218000,226000,234000,242000,250000,259000,268000,277000,287000,296000,305000,315000,324000,334000,344000,354000,365000,375000,386000,397000,408000,419000,430000,440000,451000,461000,472000,482000,493000,505000,516000,528000,540000,554000,568000,582000,597000,613000,628000,644000,659000,675000,691000,708000,724000,740000,757000,773000,789000,806000,823000,839000,856000,873000,891000,908000,926000,944000,962000,980000,998000,1020000,1040000,1050000,1070000,1090000,1110000,1130000,1150000,1170000,1190000,1210000,1230000,1240000,1260000,1280000,1300000,1320000,1340000,1360000,1370000,1390000,1410000,1430000,1450000,1460000,1480000,1500000,1520000,1540000,1550000,1570000,1590000,1610000,1620000,1640000,1660000,1670000,1690000,1710000,1720000,1740000,1750000,1770000,1780000,1800000,1810000,1830000,1840000,1850000,1870000,1880000,1890000,1900000,1920000,1930000,1940000,1950000,1960000,1970000,1980000,1990000,2000000 +Sierra Leone,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,794000,793000,793000,792000,792000,791000,791000,790000,790000,789000,789000,788000,787000,787000,786000,786000,785000,785000,784000,784000,783000,783000,782000,782000,781000,781000,780000,780000,780000,781000,784000,787000,792000,796000,800000,805000,809000,813000,818000,823000,828000,833000,838000,844000,849000,855000,860000,866000,872000,878000,884000,890000,897000,903000,910000,917000,924000,931000,938000,945000,952000,959000,966000,973000,980000,988000,995000,1000000,1010000,1020000,1030000,1030000,1040000,1050000,1060000,1060000,1070000,1080000,1090000,1100000,1100000,1110000,1120000,1130000,1140000,1150000,1150000,1160000,1170000,1180000,1190000,1200000,1200000,1210000,1220000,1230000,1230000,1240000,1250000,1260000,1280000,1300000,1310000,1330000,1350000,1370000,1400000,1420000,1440000,1460000,1480000,1500000,1520000,1540000,1560000,1590000,1610000,1630000,1650000,1680000,1710000,1740000,1770000,1800000,1830000,1870000,1900000,1930000,1970000,2000000,2029999.9999999998,2049999.9999999998,2080000,2110000,2140000,2170000,2200000,2230000,2260000,2300000,2340000,2380000,2430000,2470000,2520000,2570000,2620000,2670000,2720000,2780000,2830000,2890000,2940000,3000000,3060000,3110000,3170000,3240000,3300000,3370000,3440000,3510000,3590000,3670000,3750000,3840000,3950000,4059999.9999999995,4160000,4330000,4380000,4300000,4300000,4310000,4320000,4350000,4410000,4450000,4480000,4580000,4860000,5140000,5350000,5530000,5680000,5810000,5940000,6090000,6260000,6440000,6610000,6790000,6960000,7140000,7310000,7490000,7680000,7860000,8050000.000000001,8230000,8420000,8610000,8790000,8980000,9170000,9350000,9540000,9730000,9920000,10100000,10300000,10500000,10700000,10900000,11000000,11200000,11400000,11600000,11800000,11900000,12100000,12300000,12500000,12600000,12800000,13000000,13100000,13300000,13400000,13600000,13700000,13900000,14000000,14200000,14300000,14500000,14600000,14700000,14900000,15000000,15100000,15200000,15300000,15500000,15600000,15700000,15800000,15900000,15900000,16000000,16100000.000000002,16200000,16300000,16300000,16399999.999999998,16500000,16500000,16600000.000000002,16600000.000000002,16700000,16700000,16800000,16800000,16800000,16900000,16900000,16900000,16900000,17000000,17000000,17000000,17000000,17000000,17000000,17000000,17000000,17000000,17000000,17000000,17000000 +El Salvador,248000,238000,229000,219000,211000,202000,194000,186000,179000,172000,173000,175000,179000,187000,195000,203000,211000,220000,229000,237000,244000,250000,255000,258000,261000,265000,268000,272000,275000,279000,282000,286000,290000,294000,297000,301000,305000,309000,313000,317000,322000,326000,330000,334000,339000,343000,348000,352000,357000,361000,366000,372000,378000,385000,391000,398000,404000,411000,418000,425000,432000,439000,446000,454000,461000,469000,477000,485000,493000,502000,512000,522000,534000,547000,560000,573000,587000,601000,616000,629000,642000,654000,666000,676000,686000,697000,708000,719000,730000,741000,751000,760000,769000,776000,784000,792000,800000,808000,816000,827000,839000,854000,872000,892000,912000,933000,955000,977000,999000,1020000,1050000,1070000,1090000,1120000,1150000,1170000,1200000,1230000,1250000,1280000,1310000,1330000,1360000,1390000,1420000,1450000,1480000,1510000,1540000,1570000,1600000,1630000,1650000,1670000,1690000,1710000,1730000,1750000,1780000,1800000,1830000,1850000,1890000,1920000,1950000,1990000,2020000,2060000,2089999.9999999998,2130000,2180000,2230000,2280000,2340000,2390000,2450000,2510000,2570000,2640000,2710000,2780000,2860000,2940000,3010000,3100000,3180000,3270000,3350000,3440000,3530000,3620000,3710000,3800000,3890000,3980000,4080000,4170000,4260000,4350000,4430000,4510000,4550000,4600000,4690000,4780000,4880000,4970000,5070000,5170000,5270000,5370000,5460000,5550000,5630000,5690000,5750000,5800000,5840000,5890000,5920000,5960000,5990000,6010000,6030000,6040000,6040000,6030000,6040000,6070000,6090000,6110000,6140000,6160000,6190000,6210000,6230000,6250000,6270000,6280000,6280000,6290000,6310000,6340000,6360000,6400000,6430000,6450000,6480000,6510000,6530000,6550000,6580000,6590000,6610000,6630000,6640000,6660000,6670000,6670000,6680000,6680000,6690000,6690000,6690000,6680000,6680000,6670000,6670000,6660000,6650000,6640000,6620000,6610000,6590000,6570000,6560000,6530000,6510000,6490000,6460000,6440000,6410000,6380000,6350000,6310000,6280000,6240000,6210000,6170000,6130000,6080000,6040000,6000000,5950000,5900000,5850000,5800000,5750000,5690000,5640000,5580000,5520000,5460000,5400000,5340000,5280000,5210000,5150000,5080000,5010000,4950000,4880000,4810000,4750000,4680000,4610000,4550000,4480000,4420000,4350000,4280000 +San Marino,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5490,5500,5520,5540,5580,5620,5670,5710,5750,5800,5840,5890,5930,5980,6030,6070,6120,6170,6210,6260,6310,6360,6410,6460,6510,6560,6610,6660,6710,6770,6820,6870,6920,6980,7030,7080,7140,7190,7250,7300,7360,7420,7470,7530,7590,7640,7700,7760,7820,7880,7940,8000,8060,8120,8190,8250,8310,8380,8440,8500,8570,8640,8700,8770,8840,8900,8970,9040,9110,9180,9250,9320,9390,9460,9530,9610,9680,9750,9830,9900,9980,10100,10100,10200,10300,10400,10400,10500,10600,10700,10800,10900,11000,11100,11300,11500,11700,11900,12100,12300,12500,12700,12800,12900,12900,12900,12900,12900,12900,12900,12900,13000,13000,13100,13300,13500,13700,13900,14100,14300,14500,14600,14600,14600,14400,14200,14000,13800,13500,13300,13100,13000,13000,13200,13300,13500,13800,14000,14200,14600,14900,15200,15600,15900,16200,16600,16900,17300,17600,17900,18300,18400,18200,18200,18600,19000,19400,19800,20200,20500,20800,21100,21300,21600,21800,22000,22100,22200,22400,22400,22500,22800,23100,23500,23800,24200,24500,24900,25200,25600,26000,26400,26800,27300,28000,28600,29100,29500,30000,30400,30700,31100,31600,32500,33100,33300,33400,33600,33800,34100,34200,34200,34000,33700,33700,33600,33600,33600,33600,33500,33500,33500,33500,33400,33400,33400,33400,33300,33300,33200,33200,33200,33100,33000,33000,32900,32800,32700.000000000004,32600,32500,32299.999999999996,32200.000000000004,32000,31900,31700,31500,31300,31100,30900,30700,30500,30300,30100,29800,29600,29400,29200,29100,28900,28700,28500,28400,28300,28100,28000,27900,27800,27700,27600,27500,27500,27400,27300,27300,27200,27200,27100,27000,27000,26900,26900,26800,26700,26700,26600,26600,26500,26400,26400,26300,26200,26200,26100 +Somalia,989000,989000,990000,990000,991000,991000,991000,992000,992000,993000,993000,994000,995000,996000,998000,1000000,1000000,1000000,1010000,1010000,1010000,1020000,1030000,1040000,1050000,1070000,1080000,1100000,1110000,1120000,1140000,1150000,1170000,1180000,1200000,1220000,1230000,1250000,1260000,1280000,1300000,1310000,1330000,1350000,1370000,1380000,1400000,1420000,1440000,1450000,1460000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1460000,1460000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1470000,1480000,1480000,1480000,1480000,1480000,1480000,1480000,1480000,1490000,1490000,1490000,1500000,1500000,1500000,1510000,1510000,1520000,1520000,1520000,1530000,1530000,1540000,1540000,1540000,1550000,1550000,1560000,1560000,1560000,1560000,1570000,1570000,1570000,1570000,1580000,1580000,1590000,1590000,1610000,1620000,1640000,1650000,1670000,1680000,1700000,1720000,1730000,1750000,1770000,1780000,1800000,1810000,1820000,1840000,1850000,1870000,1890000,1910000,1930000,1960000,1990000,2020000,2049999.9999999998,2080000,2110000,2140000,2170000,2210000,2280000,2340000,2400000,2470000,2530000,2600000,2660000,2730000,2800000,2870000,2950000,3020000,3100000,3180000,3270000,3350000,3440000,3530000,3630000,3720000,3820000,3920000,4019999.9999999995,4130000,4230000,4330000,4450000,4780000,5410000,5890000,5930000,5950000,6140000,6370000,6630000,6910000,7160000,7160000,7040000,7000000,6730000,6430000,6620000,6960000,7210000,7470000,7730000,8060000.000000001,8380000.000000001,8720000,9070000,9410000,9760000,10100000,10500000,10800000,11100000,11400000,11700000,12000000,12200000,12400000,12900000,13300000,13800000,14300000,14900000,15400000,16000000,16500000,17100000,17600000,18100000,18700000,19300000,19900000,20500000,21100000,21700000,22300000,23000000,23600000,24300000,24900000,25600000,26300000,27000000,27700000,28400000,29100000,29800000,30500000,31300000,32000000,32700000.000000004,33500000,34200000,35000000,35700000,36500000,37200000,38000000,38700000,39500000,40200000,41000000,41700000,42400000,43200000,43900000,44600000,45400000,46100000,46800000,47500000,48200000,48900000,49600000,50300000,51000000,51600000,52300000,53000000,53600000,54200000,54900000,55500000,56100000,56700000,57300000,57800000,58400000,58900000,59500000,60000000,60500000,61000000,61500000,62000000,62500000,62900000,63400000,63800000,64200000,64599999.99999999,65000000,65300000,65700000,66000000,66300000 +Serbia,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2150000,2140000,2140000,2140000,2130000,2130000,2130000,2120000,2120000,2110000,2110000,2100000,2100000,2100000,2089999.9999999998,2089999.9999999998,2080000,2080000,2069999.9999999998,2069999.9999999998,2069999.9999999998,2060000,2060000,2049999.9999999998,2049999.9999999998,2049999.9999999998,2040000,2040000,2029999.9999999998,2029999.9999999998,2020000,2020000,2009999.9999999998,2009999.9999999998,2000000,1990000,1990000,1980000,1970000,1970000,1960000,1950000,1940000,1940000,1930000,1920000,1920000,1910000,1900000,1900000,1890000,1880000,1880000,1870000,1860000,1860000,1850000,1840000,1840000,1830000,1830000,1830000,1840000,1860000,1880000,1900000,1920000,1950000,1970000,1990000,2009999.9999999998,2040000,2060000,2089999.9999999998,2120000,2140000,2170000,2200000,2230000,2250000,2280000,2310000,2350000,2380000,2410000,2440000,2480000,2510000,2550000,2580000,2620000,2670000,2710000,2760000,2820000,2870000,2930000,2980000,3040000,3110000,3170000,3240000,3310000,3380000,3450000,3520000,3590000,3670000,3750000,3830000,3910000,3990000,4070000.0000000005,4160000,4250000,4340000,4430000,4520000,4620000,4710000,4810000,4910000,5020000,5120000,5230000,5340000,5460000,5570000,5690000,5810000,5920000,6020000,6080000,6150000,6220000,6290000,6350000,6400000,6450000,6490000,6530000,6580000,6640000,6710000,6780000,6840000,6900000,6970000,7030000,7080000,7140000,7190000,7240000,7300000,7360000,7420000,7480000,7540000,7610000,7670000,7730000,7780000,7810000,7840000,7870000,7890000,7910000,7930000,7950000,7960000,7980000,7990000,7960000,7940000,7960000,7970000,7980000,7990000,8000000,7990000,7960000,7940000,7920000,7900000,7890000,7860000,7830000,7790000,7760000,7720000,7690000,7650000,7620000,7590000,7570000,7540000,7520000,7490000,7460000,7430000,7400000,7360000,7300000,7220000,7150000,7100000,7060000,7010000,6970000,6930000,6880000,6830000,6780000,6730000,6680000,6630000,6580000,6530000,6480000,6420000,6370000,6320000,6260000,6210000,6150000,6100000,6040000,5990000,5940000,5880000,5830000,5780000,5720000,5670000,5620000,5570000,5510000,5460000,5400000,5350000,5290000,5240000,5180000,5130000,5070000,5010000,4950000,4900000,4840000,4780000,4720000,4670000,4610000,4560000,4500000,4440000,4390000,4340000,4280000,4230000,4179999.9999999995,4130000,4080000,4030000.0000000005,3990000,3940000,3890000,3850000,3800000,3760000,3720000,3670000,3630000,3590000,3550000,3510000,3470000,3430000,3390000,3350000,3310000,3270000 +South Sudan,1030000,1030000,1030000,1030000,1030000,1030000,1040000,1040000,1040000,1040000,1040000,1040000,1040000,1050000,1050000,1050000,1050000,1060000,1060000,1060000,1060000,1070000,1070000,1070000,1080000,1080000,1090000,1090000,1090000,1100000,1100000,1110000,1110000,1120000,1120000,1130000,1130000,1140000,1140000,1150000,1150000,1160000,1160000,1170000,1170000,1180000,1180000,1190000,1200000,1200000,1210000,1220000,1230000,1240000,1250000,1260000,1270000,1290000,1300000,1310000,1320000,1330000,1340000,1360000,1370000,1380000,1390000,1410000,1420000,1430000,1440000,1460000,1470000,1480000,1490000,1510000,1520000,1530000,1550000,1560000,1570000,1590000,1600000,1610000,1630000,1640000,1660000,1670000,1680000,1700000,1710000,1730000,1740000,1760000,1770000,1790000,1800000,1820000,1830000,1850000,1860000,1880000,1890000,1910000,1930000,1940000,1960000,1970000,1990000,2009999.9999999998,2020000,2040000,2060000,2069999.9999999998,2089999.9999999998,2110000,2120000,2140000,2150000,2160000,2170000,2180000,2190000,2200000,2210000,2220000,2230000,2240000,2250000,2260000,2270000,2280000,2290000,2300000,2310000,2320000,2330000,2340000,2350000,2360000,2370000,2380000,2390000,2400000,2410000,2420000,2430000,2450000,2460000,2470000,2490000,2530000,2560000,2600000,2650000,2700000,2740000,2790000,2830000,2870000,2910000,2950000,2990000,3040000,3090000,3140000,3190000,3220000,3260000,3300000,3340000,3400000,3460000,3540000,3630000,3720000,3810000,3900000,4000000,4090000,4190000.0000000005,4290000,4400000,4500000,4600000,4710000,4820000,4890000,4810000,4710000,4750000,4870000,4960000,5020000,5140000,5300000,5430000,5590000,5700000,5850000,6110000,6390000,6690000,6990000,7320000,7660000,8029999.999999999,8420000,8820000,9230000,9710000,10200000,10700000,11100000,11200000,11200000,11100000,10700000,10400000,10400000,10600000,10700000,10900000,11100000,11300000,11500000,11700000,11900000,12100000,12300000,12600000,12800000,13100000,13300000,13600000,13900000,14100000,14400000,14600000,14900000,15100000,15400000,15600000,15900000,16100000.000000002,16300000,16600000.000000002,16800000,17000000,17200000,17500000,17700000,17900000,18100000,18300000,18500000,18700000,18900000,19100000,19300000,19500000,19700000,19900000,20100000,20300000,20500000,20600000,20800000,21000000,21200000,21300000,21500000,21700000,21800000,22000000,22100000,22200000,22300000,22500000,22600000,22700000,22800000,22900000,23000000,23000000,23100000,23200000,23200000,23300000,23300000,23400000,23400000,23500000,23500000,23600000,23600000,23600000,23600000,23700000,23700000,23700000 +Sao Tome and Principe,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22700,22800,22800,22900,23100,23200,23400,23500,23700,23900,24100,24200,24400,24600,24700,24900,25100,25300,25500,25600,25800,26000,26200,26400,26600,26700,26900,27100,27300,27500,27700,27900,28100,28300,28500,28700,28900,29100,29400,29600,29800,30000,30200,30400,30700,30900,31100,31400,31600,31800,32000,32299.999999999996,32500,32800,33000,33200,33500,33700,34000,34200,34500,34700,35000,35200,35500,35800,36000,36300,36500,36800,37100,37400,37600,37900,38200,38500,38700,39000,39300,39600,39900,40400,41300,42400,43800,45600,47400,49300,51300,53300,55400,57100,58300,59000,59200,59000,58700,58400,58100,57800,57500,57300,57300,57400,57700,58100,58500,58900,59300,59700,60100,60500,60800,61000,61200,61300,61400,61500,61600,61700,61800,61800,61800,61800,61700,61600,61500,61300,61200,61100,60900,60900,61000,62000,63000,63900,64599.99999999999,65300,65900,66500,67000,67500,68000,68700,69500,70300,71000,71700,72600,73600,74700,76100,77600,79200,80800,82500,84200,86000,88100,90300,92700,95000,97200,99200,101000,103000,104000,107000,109000,112000,115000,117000,120000,123000,126000,128000,131000,133000,135000,138000,140000,142000,144000,146000,150000,154000,158000,162000,166000,170000,174000,178000,182000,186000,190000,194000,197000,201000,205000,208000,211000,215000,219000,223000,227000,232000,236000,241000,246000,250000,255000,260000,265000,270000,275000,280000,285000,291000,296000,301000,306000,311000,317000,322000,327000,332000,337000,342000,347000,352000,357000,362000,367000,371000,376000,381000,386000,390000,395000,400000,404000,409000,413000,418000,422000,426000,430000,435000,439000,443000,447000,451000,455000,459000,463000,466000,470000,474000,477000,480000,484000,487000,490000,493000,496000,499000,501000,504000,506000,509000,511000,513000,515000,517000,519000,521000,523000,525000,526000,528000,529000,530000,532000 +Suriname,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80700,80800,80800,80900,81000,81200,81300,81500,81600,81800,81900,82000,82200,82300,82500,82600,82800,82900,83100,83200,83400,83500,83700,83800,84000,84200,84300,84500,84600,84800,84900,85100,85200,85300,85400,85400,85500,85500,85600,85700,85700,85800,85900,85900,86000,86100,86100,86200,86300,86300,86400,86500,86500,86600,86600,86700,86800,86800,86900,87000,87000,87100,87200,87200,87300,87300,87400,87500,87500,87600,87700,87700,87800,87800,87900,88000,88000,88100,88200,88200,88300,88300,88400,88500,88500,88600,88700,88700,88800,88800,88900,89600,90900,92900,95600,98900,102000,106000,110000,114000,118000,122000,125000,127000,129000,131000,133000,134000,136000,137000,139000,141000,143000,145000,148000,150000,153000,156000,159000,162000,165000,168000,171000,173000,175000,178000,180000,182000,184000,186000,189000,192000,196000,201000,207000,213000,220000,227000,235000,242000,251000,259000,268000,278000,288000,299000,310000,321000,332000,344000,355000,368000,380000,392000,398000,396000,395000,392000,389000,386000,382000,377000,375000,376000,377000,379000,383000,387000,392000,397000,402000,408000,413000,416000,420000,422000,427000,434000,444000,453000,462000,470000,479000,487000,496000,504000,511000,516000,522000,528000,534000,540000,546000,552000,558000,564000,570000,575000,581000,588000,594000,600000,607000,613000,618000,623000,629000,634000,640000,645000,650000,655000,660000,664000,669000,673000,677000,682000,686000,689000,693000,697000,700000,703000,706000,709000,712000,714000,717000,719000,721000,724000,726000,727000,729000,731000,732000,734000,735000,737000,738000,739000,740000,741000,741000,742000,743000,743000,744000,744000,744000,744000,744000,744000,744000,744000,744000,743000,743000,742000,741000,740000,740000,739000,737000,736000,735000,734000,732000,731000,729000,728000,726000,724000,722000,720000,719000,716000,714000,712000,710000,708000,705000 +Slovak Republic,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2140000,2150000,2150000,2160000,2160000,2170000,2180000,2190000,2200000,2210000,2210000,2220000,2230000,2240000,2250000,2250000,2260000,2270000,2280000,2290000,2300000,2310000,2310000,2320000,2330000,2340000,2350000,2360000,2370000,2370000,2380000,2390000,2400000,2410000,2420000,2430000,2440000,2440000,2450000,2460000,2470000,2480000,2490000,2500000,2510000,2520000,2530000,2530000,2540000,2550000,2560000,2570000,2580000,2590000,2600000,2610000,2620000,2630000,2640000,2650000,2660000,2670000,2680000,2690000,2700000,2700000,2710000,2720000,2730000,2740000,2750000,2760000,2770000,2780000,2790000,2800000,2810000,2820000,2840000,2850000,2860000,2870000,2880000,2890000,2900000,2910000,2920000,2930000,2940000,2950000,2960000,2970000,2980000,2990000,3000000,3010000,3030000,3040000,3050000,3060000,3070000,3080000,3090000,3100000,3120000,3130000,3140000,3150000,3160000,3170000,3190000,3200000,3210000,3220000,3230000,3250000,3260000,3270000,3280000,3290000,3310000,3320000,3330000,3340000,3360000,3370000,3380000,3390000,3410000,3420000,3440000,3470000,3520000,3590000,3660000,3730000,3800000,3870000,3940000,4000000,4059999.9999999995,4120000,4190000.0000000005,4240000,4280000,4320000,4360000,4400000,4430000,4460000,4490000,4520000,4560000,4600000,4640000,4690000,4740000,4790000,4840000,4880000,4930000,4970000,5010000,5050000,5080000,5120000,5150000,5180000,5200000,5220000,5250000,5260000,5280000,5300000,5320000,5340000,5350000,5360000,5370000,5370000,5370000,5380000,5380000,5380000,5370000,5370000,5380000,5380000,5380000,5380000,5390000,5400000,5400000,5410000,5410000,5420000,5420000,5430000,5440000,5450000,5450000,5460000,5450000,5640000,5800000,5700000,5640000,5600000,5580000,5570000,5560000,5560000,5550000,5530000,5520000,5510000,5490000,5480000,5460000,5440000,5420000,5400000,5380000,5360000,5340000,5320000,5300000,5270000,5250000,5230000,5210000,5190000,5160000,5140000,5120000,5100000,5070000,5050000,5020000,4990000,4970000,4940000,4910000,4880000,4850000,4820000,4790000,4760000,4720000,4690000,4650000,4620000,4590000,4550000,4520000,4490000,4450000,4420000,4390000,4360000,4330000,4300000,4270000,4240000,4220000,4190000.0000000005,4160000,4139999.9999999995,4120000,4090000,4070000.0000000005,4050000,4030000.0000000005,4010000,3990000,3970000,3950000,3930000,3910000,3890000,3870000,3850000 +Slovenia,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,470000,472000,475000,478000,482000,486000,491000,495000,499000,504000,508000,513000,517000,522000,526000,531000,536000,540000,545000,550000,555000,560000,565000,570000,575000,580000,585000,590000,595000,600000,606000,611000,616000,622000,627000,632000,638000,643000,649000,654000,660000,666000,671000,677000,683000,689000,695000,701000,707000,713000,719000,725000,731000,738000,744000,750000,757000,763000,770000,776000,783000,790000,797000,803000,810000,817000,824000,831000,839000,846000,853000,860000,868000,875000,883000,890000,898000,906000,913000,921000,929000,937000,945000,953000,962000,970000,978000,987000,995000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1230000,1240000,1250000,1260000,1270000,1280000,1290000,1300000,1310000,1330000,1340000,1350000,1360000,1370000,1390000,1400000,1410000,1420000,1430000,1450000,1460000,1470000,1490000,1510000,1520000,1540000,1550000,1570000,1580000,1600000,1610000,1630000,1640000,1660000,1670000,1680000,1700000,1710000,1730000,1740000,1750000,1770000,1790000,1800000,1820000,1830000,1850000,1870000,1880000,1900000,1920000,1930000,1940000,1950000,1950000,1960000,1970000,1970000,1980000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1980000,1980000,1980000,1990000,2000000,2000000,2009999.9999999998,2020000,2029999.9999999998,2049999.9999999998,2060000,2069999.9999999998,2069999.9999999998,2069999.9999999998,2069999.9999999998,2080000,2089999.9999999998,2100000,2110000,2110000,2120000,2120000,2120000,2120000,2120000,2120000,2120000,2110000,2110000,2110000,2110000,2100000,2100000,2100000,2089999.9999999998,2089999.9999999998,2080000,2080000,2069999.9999999998,2069999.9999999998,2060000,2060000,2049999.9999999998,2049999.9999999998,2040000,2040000,2029999.9999999998,2020000,2020000,2009999.9999999998,2000000,2000000,1990000,1980000,1970000,1960000,1950000,1950000,1940000,1930000,1920000,1910000,1900000,1890000,1880000,1870000,1870000,1860000,1850000,1840000,1830000,1820000,1820000,1810000,1800000,1790000,1780000,1780000,1770000,1760000,1760000,1750000,1750000,1740000,1730000,1730000,1720000,1720000,1710000,1710000,1710000,1700000,1700000,1690000,1690000,1690000,1680000,1680000,1670000,1670000,1670000 +Sweden,2500000,2490000,2480000,2470000,2460000,2450000,2440000,2430000,2420000,2410000,2410000,2420000,2430000,2450000,2470000,2480000,2500000,2520000,2540000,2560000,2580000,2600000,2630000,2660000,2690000,2720000,2750000,2780000,2810000,2840000,2870000,2900000,2920000,2950000,2970000,3000000,3020000,3050000,3070000,3100000,3130000,3160000,3190000,3220000,3250000,3290000,3320000,3360000,3390000,3430000,3460000,3500000,3530000,3570000,3600000,3640000,3680000,3710000,3750000,3790000,3820000,3860000,3890000,3920000,3960000,3990000,4030000.0000000005,4059999.9999999995,4099999.9999999995,4130000,4170000,4210000,4250000,4290000,4330000,4370000,4410000,4450000,4490000,4530000,4560000,4590000,4620000,4640000,4660000,4680000,4700000,4720000,4740000,4770000,4790000,4820000,4850000,4890000,4920000,4950000,4990000,5020000,5060000,5090000,5120000,5160000,5190000,5220000,5260000,5290000,5320000,5360000,5390000,5430000,5460000,5500000,5540000,5580000,5630000,5670000,5710000,5760000,5800000,5840000,5880000,5910000,5940000,5960000,5990000,6010000,6040000,6070000,6090000,6120000,6140000,6170000,6190000,6210000,6230000,6260000,6280000,6300000,6320000,6350000,6390000,6440000,6500000,6560000,6630000,6690000,6760000,6820000,6890000,6960000,7010000,7070000,7120000,7170000,7220000,7260000,7310000,7360000,7400000,7450000,7490000,7540000,7580000,7630000,7690000,7760000,7820000,7880000,7940000,7980000,8029999.999999999,8070000,8119999.999999999,8160000,8189999.999999999,8220000.000000001,8250000,8270000,8279999.999999999,8300000.000000001,8310000.000000001,8330000,8340000,8359999.999999999,8369999.999999999,8390000,8410000,8440000,8470000,8500000,8550000,8590000,8640000,8680000,8720000,8760000,8790000,8810000,8830000,8850000,8870000,8900000,8930000,8960000,9000000,9050000,9100000,9160000,9230000,9300000,9380000,9470000,9560000,9650000,9750000,9850000,9950000,10100000,10200000,10300000,10400000,10500000,10500000,10600000,10700000,10700000,10800000,10800000,10900000,11000000,11000000,11100000,11100000,11100000,11200000,11200000,11300000,11300000,11400000,11400000,11500000,11500000,11500000,11600000,11600000,11700000,11700000,11800000,11800000,11900000,11900000,11900000,12000000,12000000,12100000,12100000,12100000,12200000,12200000,12200000,12300000,12300000,12300000,12300000,12400000,12400000,12400000,12500000,12500000,12500000,12500000,12600000,12600000,12600000,12700000,12700000,12700000,12700000,12800000,12800000,12800000,12800000,12900000,12900000,12900000,12900000,12900000,12900000,13000000,13000000,13000000,13000000,13000000,13000000,13100000,13100000,13100000,13100000,13100000,13200000,13200000 +Eswatini,86000,85500,85100,84700,84200,83800,83300,82900,82500,82000,81600,81200,80800,80300,79900,79500,79100,78700,78300,77800,77400,77000,76600,76200,75800,75400,75000,74600,74300,73900,73500,73100,72700,72300,72000,71600,71200,70800,70500,70100,69700,69400,69000,68600,68300,67900,67600,67200,66900,66700,66800,67000,67500,68200,68800,69500,70200,70900,71600,72300,73100,73800,74500,75300,76000,76800,77600,78300,79100,79900,80700,81500,82300,83100,84000,84800,85600,86500,87400,88200,89100,90000,90900,91800,92700,93600,94600,95500,96500,97400,98400,99400,100000,101000,102000,103000,104000,105000,107000,108000,109000,111000,112000,114000,116000,118000,120000,122000,124000,126000,128000,130000,132000,134000,136000,138000,140000,142000,144000,147000,149000,152000,155000,159000,162000,165000,169000,172000,176000,180000,183000,187000,191000,195000,199000,203000,207000,211000,215000,219000,224000,228000,233000,237000,242000,246000,251000,256000,261000,266000,272000,279000,286000,293000,300000,307000,314000,322000,330000,337000,345000,353000,361000,370000,379000,388000,399000,410000,420000,431000,443000,455000,468000,481000,495000,510000,525000,542000,560000,579000,599000,616000,634000,656000,677000,702000,730000,759000,794000,826000,854000,890000,925000,953000,954000,954000,974000,991000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1070000,1080000,1080000,1090000,1090000,1100000,1110000,1110000,1120000,1130000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1250000,1260000,1280000,1290000,1310000,1320000,1340000,1360000,1380000,1400000,1420000,1430000,1450000,1470000,1490000,1510000,1530000,1540000,1560000,1580000,1590000,1610000,1620000,1640000,1660000,1670000,1680000,1700000,1710000,1730000,1740000,1750000,1760000,1780000,1790000,1800000,1810000,1820000,1830000,1840000,1850000,1860000,1870000,1880000,1890000,1890000,1900000,1910000,1910000,1920000,1930000,1930000,1940000,1940000,1950000,1950000,1960000,1960000,1970000,1970000,1970000,1980000,1980000,1980000,1980000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000,1990000 +Seychelles,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12500,12600,12600,12700,12700,12700,12800,12800,12900,12900,13000,13000,13100,13100,13200,13200,13200,13300,13300,13400,13400,13500,13500,13600,13600,13700,13700,13800,13800,13900,13900,14000,14100,14100,14200,14300,14400,14500,14500,14600,14700,14800,14900,15000,15000,15100,15200,15300,15400,15500,15600,15600,15700,15800,15900,16000,16100.000000000002,16200,16300,16400,16400,16500,16600,16700,16800,16900,17000,17100,17200,17300,17500,17800,18100,18400,18800,19100,19500,19900,20300,20700,21100,21500,21900,22400,22900,23400,23900,24400,24900,25400,25800,26200,26500,26800,27000,27300,27600,27900,28100,28300,28600,28800,29000,29300,29500,29700,29900,30200,30400,30700,31100,31500,32000,32500,33100,33600,34200,34800,35400,35900,36300,36600,36800,36900,37000,37100,37200,37300,37400,37700,38100,38300,38600,38900,39300,39800,40300,40900,41600,42300,43200,44000,45000,46000,47000,48100,49300,50500,51800,53100,54400,55700,57100,58400,59600,60900,62200,63200,64000,64700,65300,65900,66400,66900,67300,67800,68300,68900,69600,70300,71100,71800,72400,73000,73800,74700,75500,76500,77700,78800,80100,81300,82400,83600,84700,85900,87100,88300,89600,91000,92400,93800,95300,96700,98000,99200,101000,102000,103000,104000,106000,106000,107000,108000,108000,109000,109000,110000,110000,111000,111000,112000,112000,113000,113000,113000,114000,114000,114000,115000,115000,115000,115000,116000,116000,116000,116000,116000,116000,117000,117000,117000,117000,117000,117000,117000,116000,116000,116000,116000,116000,116000,115000,115000,115000,115000,114000,114000,114000,114000,113000,113000,113000,112000,112000,112000,112000,111000,111000,111000,110000,110000,110000,109000,109000,109000,108000,108000,108000,108000,107000,107000,107000,106000,106000,106000,105000,105000,104000,104000,104000 +Syria,1250000,1250000,1260000,1260000,1270000,1270000,1280000,1280000,1280000,1290000,1290000,1300000,1300000,1310000,1310000,1310000,1320000,1320000,1330000,1330000,1340000,1340000,1350000,1350000,1360000,1360000,1360000,1370000,1370000,1380000,1380000,1390000,1390000,1400000,1400000,1410000,1410000,1420000,1420000,1430000,1430000,1430000,1440000,1440000,1450000,1450000,1460000,1460000,1470000,1470000,1480000,1480000,1490000,1490000,1500000,1500000,1510000,1520000,1520000,1530000,1530000,1540000,1540000,1550000,1550000,1560000,1560000,1570000,1570000,1580000,1580000,1590000,1600000,1600000,1610000,1610000,1620000,1620000,1630000,1640000,1640000,1650000,1650000,1660000,1660000,1670000,1680000,1680000,1690000,1690000,1700000,1700000,1710000,1720000,1720000,1730000,1730000,1740000,1750000,1760000,1770000,1790000,1810000,1830000,1850000,1880000,1900000,1930000,1950000,1980000,2009999.9999999998,2029999.9999999998,2060000,2089999.9999999998,2120000,2150000,2180000,2210000,2250000,2280000,2310000,2340000,2370000,2410000,2440000,2480000,2510000,2550000,2580000,2620000,2660000,2690000,2730000,2770000,2810000,2850000,2890000,2930000,2970000,3010000,3060000,3100000,3140000,3190000,3230000,3280000,3330000,3370000,3420000,3480000,3540000,3620000,3700000,3790000,3890000,3990000,4099999.9999999995,4220000,4340000,4470000,4610000,4750000,4890000,5050000,5200000,5370000,5540000,5720000,5910000,6110000,6320000,6540000,6770000,7000000,7240000,7500000,7760000,8029999.999999999,8310000.000000001,8600000,8900000,9200000,9510000,9840000,10200000,10500000,10900000,11300000,11700000,12000000,12400000,12800000,13200000,13500000,13900000,14300000,14700000,15100000,15500000,15900000,16300000,16700000,17200000,17600000,18100000,18600000,19400000,20700000,21500000,21800000,22300000,22700000,22600000,21500000,20100000,19200000,19000000,19000000,19300000,20100000,20800000,21300000,22100000,23200000,24300000,25400000,26400000,27400000,28200000,29100000,29800000,30500000,31100000,31700000,32299999.999999996,32799999.999999996,33299999.999999996,33800000,34300000,34700000,35100000,35500000,35900000,36200000,36600000,36900000,37200000,37500000,37800000,38000000,38300000,38600000,38900000,39100000,39400000,39700000,39900000,40200000,40500000,40800000,41000000,41300000,41600000,41800000,42100000,42300000,42500000,42700000,42900000,43100000,43300000,43400000,43600000,43700000,43800000,43900000,44000000,44000000,44100000,44100000,44200000,44200000,44200000,44200000,44200000,44200000,44200000,44100000,44100000,44100000,44000000,44000000,43900000,43900000,43800000,43800000,43700000,43600000,43600000,43500000,43500000 +Chad,1430000,1440000,1440000,1450000,1460000,1460000,1470000,1480000,1480000,1490000,1500000,1500000,1510000,1520000,1520000,1530000,1540000,1540000,1550000,1560000,1560000,1570000,1580000,1590000,1590000,1600000,1610000,1610000,1620000,1630000,1640000,1640000,1650000,1660000,1670000,1670000,1680000,1690000,1690000,1700000,1710000,1720000,1730000,1730000,1740000,1750000,1760000,1760000,1770000,1780000,1780000,1790000,1790000,1800000,1800000,1800000,1800000,1810000,1810000,1810000,1810000,1820000,1820000,1820000,1820000,1830000,1830000,1830000,1840000,1840000,1840000,1850000,1850000,1850000,1860000,1860000,1870000,1870000,1880000,1880000,1890000,1890000,1900000,1900000,1910000,1910000,1910000,1920000,1920000,1930000,1920000,1920000,1900000,1890000,1880000,1860000,1850000,1830000,1820000,1810000,1800000,1790000,1780000,1770000,1770000,1760000,1750000,1750000,1740000,1740000,1730000,1720000,1720000,1710000,1710000,1700000,1690000,1690000,1680000,1680000,1680000,1700000,1710000,1730000,1760000,1780000,1800000,1830000,1850000,1870000,1900000,1920000,1940000,1970000,1990000,2009999.9999999998,2040000,2060000,2089999.9999999998,2110000,2140000,2170000,2210000,2240000,2280000,2320000,2350000,2390000,2430000,2470000,2510000,2560000,2610000,2660000,2710000,2760000,2810000,2860000,2920000,2970000,3030000,3090000,3150000,3210000,3270000,3340000,3400000,3460000,3530000,3600000,3670000,3740000,3820000,3910000,4000000,4080000,4160000,4240000,4310000,4400000,4410000,4410000,4620000,4860000,4920000,4970000,5120000,5300000,5480000,5670000,5830000,6040000,6300000,6450000,6590000,6890000,7200000,7450000,7710000,7980000,8260000,8540000,8840000,9200000,9610000,10000000,10400000,10700000,11100000,11500000,11900000,12300000,12800000,13200000,13700000,14100000,14600000,15100000,15600000,16100000.000000002,16600000.000000002,17200000,17700000,18300000,18800000,19400000,20000000,20600000,21200000,21800000,22500000,23100000,23700000,24400000,25100000,25700000,26400000,27100000,27800000,28500000,29200000,29900000,30600000,31400000,32100000,32799999.999999996,33500000,34300000,35000000,35700000,36500000,37200000,37900000,38700000,39400000,40100000,40900000,41600000,42300000,43000000,43700000,44400000,45100000,45800000,46500000,47200000,47900000,48600000,49300000,50000000,50600000,51300000,51900000,52500000,53200000,53800000,54400000,55000000,55600000,56200000,56700000,57300000,57800000,58300000,58800000,59400000,59800000,60300000,60800000,61200000,61700000,62100000,62500000,62800000,63200000,63600000,63900000,64300000,64599999.99999999,64900000.00000001,65200000 +Togo,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,446000,447000,448000,450000,452000,454000,456000,458000,459000,461000,463000,465000,467000,469000,471000,473000,475000,477000,479000,481000,483000,486000,488000,490000,492000,494000,496000,498000,500000,502000,505000,507000,510000,514000,517000,520000,524000,528000,531000,535000,538000,542000,546000,549000,553000,557000,561000,564000,568000,572000,576000,581000,586000,591000,597000,603000,609000,615000,621000,627000,633000,638000,644000,649000,654000,659000,664000,670000,675000,680000,685000,691000,696000,701000,707000,712000,718000,723000,729000,735000,740000,746000,752000,758000,764000,770000,776000,782000,788000,794000,800000,807000,813000,820000,828000,835000,842000,849000,857000,864000,872000,881000,892000,904000,918000,932000,946000,960000,974000,989000,1000000,1020000,1030000,1050000,1060000,1080000,1090000,1110000,1120000,1140000,1160000,1170000,1190000,1210000,1240000,1260000,1280000,1300000,1330000,1350000,1370000,1400000,1420000,1440000,1470000,1490000,1520000,1540000,1570000,1600000,1620000,1650000,1680000,1710000,1740000,1770000,1820000,1880000,1960000,2040000,2120000,2200000,2270000,2330000,2390000,2450000,2510000,2570000,2630000,2690000,2760000,2840000,2930000,3020000,3130000,3230000,3340000,3440000,3540000,3650000,3760000,3880000,3990000,4110000.0000000005,4080000,4090000,4280000,4450000,4590000,4730000,4870000,5010000,5150000,5280000,5420000,5570000,5710000,5870000,6050000,6220000,6400000,6570000,6750000,6930000,7110000,7290000,7470000,7660000,7850000,8050000.000000001,8240000,8440000,8640000,8850000,9050000,9260000,9470000,9680000,9900000,10100000,10300000,10600000,10800000,11000000,11200000,11500000,11700000,12000000,12200000,12400000,12700000,12900000,13200000,13400000,13700000,13900000,14200000,14500000,14700000,15000000,15200000,15500000,15700000,16000000,16300000,16500000,16800000,17000000,17300000,17500000,17800000,18100000,18300000,18600000,18800000,19100000,19400000,19600000,19900000,20100000,20400000,20600000,20900000,21100000,21400000,21600000,21800000,22100000,22300000,22500000,22800000,23000000,23200000,23500000,23700000,23900000,24100000,24300000,24500000,24700000,24900000,25100000,25300000,25500000,25700000,25900000,26100000,26300000,26500000,26600000,26800000,27000000 +Thailand,3000000,3070000,3140000,3210000,3280000,3350000,3420000,3500000,3580000,3660000,3740000,3830000,3910000,4000000,4090000,4179999.9999999995,4270000,4370000,4470000,4550000,4620000,4670000,4700000,4720000,4740000,4750000,4770000,4790000,4810000,4830000,4850000,4860000,4880000,4900000,4920000,4940000,4960000,4980000,5000000,5020000,5030000,5050000,5070000,5090000,5110000,5130000,5150000,5170000,5190000,5210000,5230000,5260000,5280000,5310000,5340000,5370000,5390000,5420000,5450000,5480000,5510000,5540000,5560000,5590000,5620000,5650000,5680000,5710000,5740000,5770000,5810000,5850000,5890000,5930000,5970000,6020000,6060000,6110000,6150000,6200000,6250000,6290000,6340000,6390000,6430000,6480000,6530000,6580000,6630000,6680000,6730000,6790000,6860000,6920000,6990000,7050000,7120000,7190000,7260000,7330000,7410000,7500000,7590000,7690000,7790000,7890000,7990000,8090000,8199999.999999999,8310000.000000001,8430000,8560000,8700000,8850000,8990000,9150000,9300000,9460000,9620000,9790000,9980000,10200000,10400000,10700000,10900000,11200000,11400000,11700000,12000000,12300000,12600000,12900000,13100000,13400000,13800000,14100000,14400000,14700000,15000000,15400000,15800000,16200000,16600000.000000002,17000000,17400000,17900000,18400000,18800000,19300000,19800000,20400000,20900000,21400000,22000000,22600000,23200000,23800000,24500000,25100000,25800000,26600000,27400000,28200000,29100000,30000000,30900000,31900000,32799999.999999996,33800000,34800000,35800000,36800000,37800000,38900000,39900000,40900000,41900000,42800000,43800000,44800000,45700000,46700000,47700000,48700000,49600000,50600000,51500000,52500000,53400000,54300000,55200000,56100000,56900000,57800000,58600000,59400000,60200000,61000000,61700000,62400000,63100000,63600000,64200000,64800000,65300000,65800000,66300000,66800000,67300000,67800000,68300000,68700000,69200000,69600000,70000000,70300000,70600000,70900000,71100000,71300000,71500000,71600000,71700000,71800000,71900000,72000000,72000000,72000000,72100000,72100000,72100000,72000000,72000000,71900000,71800000,71700000,71600000,71500000,71300000,71100000,70900000,70700000,70500000,70200000,69900000,69600000,69300000,69000000,68600000,68300000,67900000,67500000,67099999.99999999,66599999.99999999,66200000,65700000,65300000,64800000,64300000,63900000,63400000,62900000,62400000,61900000,61400000,60900000,60400000,59900000,59400000,58900000,58400000,57900000,57400000,56900000,56400000,55900000,55400000,55000000,54500000,54000000,53500000,53000000,52500000,52100000,51600000,51100000,50700000,50200000,49700000,49300000,48800000,48400000,47900000,47500000,47000000,46600000,46200000,45800000,45400000,45000000,44600000 +Tajikistan,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,467000,469000,472000,475000,480000,484000,488000,493000,497000,502000,507000,511000,516000,521000,526000,530000,535000,540000,545000,550000,555000,560000,565000,571000,576000,581000,586000,592000,597000,603000,608000,614000,619000,625000,630000,636000,642000,647000,653000,659000,665000,671000,677000,683000,689000,695000,701000,708000,714000,720000,727000,733000,740000,747000,753000,760000,767000,774000,780000,787000,794000,802000,809000,816000,823000,831000,838000,846000,853000,861000,868000,876000,884000,892000,900000,908000,916000,924000,932000,941000,949000,958000,966000,975000,984000,992000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1160000,1170000,1180000,1190000,1200000,1210000,1220000,1230000,1240000,1250000,1270000,1280000,1290000,1300000,1310000,1330000,1340000,1350000,1360000,1370000,1390000,1400000,1410000,1430000,1440000,1450000,1470000,1480000,1500000,1530000,1580000,1640000,1690000,1750000,1810000,1860000,1920000,1990000,2060000,2130000,2210000,2290000,2370000,2450000,2540000,2630000,2710000,2810000,2900000,2990000,3090000,3180000,3280000,3380000,3480000,3590000,3700000,3820000,3930000,4050000,4160000,4280000,4400000,4530000,4660000,4800000,4950000,5100000,5260000,5420000,5560000,5660000,5720000,5800000,5920000,6040000,6120000,6160000,6190000,6270000,6410000,6540000,6670000,6800000,6930000,7060000,7190000,7320000,7470000,7620000,7780000,7960000,8140000.000000001,8330000,8520000,8730000,8930000,9130000,9340000,9540000,9750000,9950000,10100000,10300000,10500000,10700000,10900000,11100000,11200000,11400000,11600000,11800000,12000000,12200000,12400000,12600000,12800000,13000000,13200000,13400000,13600000,13700000,13900000,14100000,14300000,14500000,14700000,14900000,15000000,15200000,15400000,15500000,15700000,15900000,16000000,16200000,16300000,16500000,16600000.000000002,16800000,16900000,17100000,17200000,17400000,17500000,17700000,17800000,17900000,18100000,18200000,18300000,18400000,18500000,18600000,18700000,18800000,18900000,19000000,19100000,19200000,19300000,19400000,19500000,19500000,19600000,19700000,19800000,19800000,19900000,20000000,20000000,20100000,20100000,20200000,20200000,20300000,20300000,20300000,20400000,20400000 +Turkmenistan,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,367000,368000,369000,371000,374000,377000,381000,384000,388000,391000,395000,399000,402000,406000,410000,414000,417000,421000,425000,429000,433000,437000,441000,445000,449000,453000,457000,461000,466000,470000,474000,479000,483000,487000,492000,496000,501000,505000,510000,515000,519000,524000,529000,534000,539000,544000,549000,554000,559000,564000,569000,574000,579000,585000,590000,595000,601000,606000,612000,617000,623000,629000,634000,640000,646000,652000,658000,664000,670000,676000,682000,689000,695000,701000,708000,714000,721000,727000,734000,740000,747000,754000,761000,768000,775000,782000,789000,796000,804000,811000,818000,826000,833000,841000,849000,856000,864000,872000,880000,888000,896000,904000,913000,921000,930000,938000,947000,955000,964000,973000,982000,991000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1110000,1120000,1130000,1140000,1150000,1160000,1170000,1180000,1190000,1210000,1240000,1260000,1290000,1330000,1360000,1400000,1450000,1500000,1550000,1600000,1660000,1720000,1780000,1840000,1900000,1960000,2020000,2080000,2140000,2200000,2260000,2330000,2390000,2460000,2530000,2590000,2660000,2730000,2790000,2860000,2930000,3010000,3080000,3160000,3250000,3340000,3430000,3530000,3620000,3720000,3820000,3930000,4030000.0000000005,4130000,4230000,4300000,4360000,4430000,4500000,4570000,4640000,4700000,4760000,4820000,4890000,4950000,5020000,5100000,5180000,5270000,5360000,5460000,5560000,5660000,5770000,5870000,5970000,6070000,6160000,6250000,6340000,6430000,6520000,6600000,6680000,6750000,6830000,6900000,6970000,7030000,7100000,7170000,7230000,7300000,7370000,7430000,7500000,7570000,7630000,7700000,7760000,7820000,7890000,7950000,8010000,8060000.000000001,8119999.999999999,8170000,8220000.000000001,8260000,8310000.000000001,8350000,8390000,8430000,8460000,8500000,8530000,8560000,8590000,8620000,8640000,8670000,8690000,8720000,8740000,8760000,8780000,8800000,8820000,8840000,8850000,8870000,8880000,8890000,8910000,8920000,8920000,8930000,8940000,8940000,8950000,8950000,8950000,8950000,8950000,8950000,8950000,8940000,8940000,8930000,8920000,8910000,8910000,8900000,8880000,8870000,8860000,8850000,8830000,8810000 +Timor-Leste,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,137000,138000,138000,139000,141000,143000,145000,147000,149000,151000,153000,155000,157000,159000,161000,163000,165000,167000,169000,172000,174000,176000,179000,181000,183000,186000,188000,191000,193000,196000,198000,201000,204000,206000,209000,211000,214000,216000,219000,222000,224000,227000,230000,233000,235000,238000,241000,244000,247000,250000,253000,256000,259000,262000,266000,269000,272000,275000,279000,282000,285000,288000,291000,293000,295000,297000,298000,300000,301000,303000,304000,306000,308000,310000,312000,314000,316000,318000,320000,323000,325000,327000,329000,332000,334000,336000,338000,341000,343000,345000,347000,349000,351000,353000,355000,357000,358000,360000,362000,363000,365000,368000,372000,377000,382000,389000,396000,403000,409000,417000,424000,429000,433000,434000,434000,432000,430000,428000,426000,425000,423000,421000,419000,418000,417000,416000,415000,415000,414000,413000,412000,413000,415000,418000,423000,427000,432000,437000,443000,449000,455000,462000,469000,476000,483000,491000,499000,507000,516000,525000,535000,544000,554000,564000,574000,584000,592000,600000,610000,619000,628000,635000,642000,649000,655000,662000,671000,682000,694000,708000,723000,740000,758000,773000,784000,795000,807000,819000,831000,843000,855000,867000,878000,893000,910000,927000,946000,969000,995000,1020000,1040000,1070000,1090000,1110000,1140000,1160000,1180000,1210000,1220000,1240000,1260000,1280000,1300000,1320000,1340000,1360000,1380000,1400000,1420000,1440000,1460000,1480000,1500000,1510000,1530000,1550000,1570000,1590000,1600000,1620000,1640000,1650000,1670000,1680000,1700000,1710000,1730000,1740000,1760000,1770000,1780000,1790000,1810000,1820000,1830000,1840000,1850000,1860000,1870000,1880000,1890000,1900000,1910000,1920000,1920000,1930000,1940000,1940000,1950000,1950000,1950000,1960000,1960000,1960000,1960000,1960000,1960000,1960000,1960000,1960000,1960000,1950000,1950000,1950000,1940000,1940000,1930000,1930000,1920000,1920000,1910000,1900000,1900000,1890000,1880000,1870000,1860000,1850000,1840000,1830000,1820000,1810000,1800000 +Tonga,18700,18700,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18600,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18500,18600,18600,18700,18700,18800,18800,18900,18900,19000,19000,19100,19100,19200,19200,19300,19400,19400,19500,19500,19600,19600,19700,19700,19800,19900,19900,20000,20000,20100,20100,20200,20200,20300,20400,20400,20500,20500,20600,20600,20700,20800,20800,20900,20900,21000,21000,21100,21200,21300,21400,21700,21900,22300,22600,23000,23300,23700,24000,24400,24700,25000,25200,25500,25700,26000,26200,26500,26700,27000,27300,27600,28000,28400,28800,29200,29700,30100,30600,31000,31500,32000,32500,33000,33600,34100,34700,35200,35800,36500,37300,38200,39200,40400,41600,42900,44200,45500,46900,48300,49800,51300,52800,54500,56200,58000,59900,61800,63600,65500,67400,69400,71400,73400,75500,77700,79800,81700,83400,85000,86500,87900,89300,90600,92000,93500,94900,95800,96200,96500,96700,96800,96900,97000,97000,97100,97100,97400,97900,98400,98700,99000,99300,99500,99700,100000,100000,101000,101000,102000,103000,103000,104000,104000,105000,106000,106000,107000,107000,107000,107000,108000,108000,107000,107000,106000,106000,105000,105000,105000,105000,106000,107000,108000,109000,110000,111000,111000,112000,113000,114000,115000,116000,117000,118000,119000,120000,121000,122000,123000,124000,124000,125000,126000,127000,128000,128000,129000,130000,131000,131000,132000,132000,133000,133000,134000,134000,135000,135000,136000,136000,137000,137000,137000,138000,138000,138000,138000,139000,139000,139000,139000,139000,140000,140000,140000,140000,140000,140000,140000,139000,139000,139000,139000,139000,138000,138000,138000,137000,137000,136000,136000,135000,135000,134000,133000,133000,132000,131000,131000,130000 +Trinidad and Tobago,20000,21100,22300,23600,24900,26300,27800,29400,31000,32800,34700,36700,38800,41000,43300,45700,48300,51000,53900,56400,58500,60100,61200,61800,62400,63000,63600,64200,64800,65400.00000000001,66000,66700,67300,68000,68600,69300,70000,70600,71300,72000,72700,73400,74100,74800,75500,76300,77000,77700,78500,79400,80600,82000,83600,85400,87300,89200,91200,93200,95200,97300,99500,102000,104000,106000,109000,111000,114000,117000,119000,122000,126000,129000,133000,138000,142000,147000,152000,157000,162000,167000,172000,177000,182000,186000,191000,196000,201000,206000,211000,216000,221000,226000,231000,236000,241000,246000,251000,256000,262000,268000,273000,279000,285000,291000,298000,304000,311000,318000,324000,331000,338000,344000,350000,356000,362000,368000,374000,380000,386000,392000,396000,400000,402000,404000,405000,407000,409000,410000,412000,415000,418000,423000,429000,436000,443000,450000,458000,465000,473000,482000,492000,504000,517000,532000,547000,563000,579000,596000,613000,630000,649000,665000,683000,701000,721000,743000,764000,785000,806000,827000,847000,865000,882000,898000,913000,928000,943000,956000,968000,979000,989000,1000000,1010000,1030000,1040000,1050000,1070000,1080000,1100000,1110000,1130000,1140000,1160000,1170000,1180000,1200000,1220000,1230000,1240000,1260000,1270000,1280000,1290000,1290000,1300000,1310000,1310000,1320000,1320000,1330000,1330000,1340000,1350000,1350000,1360000,1370000,1380000,1380000,1390000,1400000,1410000,1420000,1430000,1440000,1450000,1460000,1470000,1480000,1500000,1520000,1520000,1530000,1530000,1530000,1540000,1540000,1540000,1550000,1550000,1550000,1550000,1550000,1550000,1550000,1550000,1540000,1540000,1540000,1540000,1540000,1530000,1530000,1530000,1520000,1520000,1510000,1510000,1500000,1500000,1490000,1490000,1480000,1470000,1470000,1460000,1450000,1440000,1440000,1430000,1420000,1410000,1400000,1390000,1390000,1380000,1370000,1360000,1350000,1340000,1330000,1320000,1310000,1300000,1290000,1280000,1270000,1260000,1250000,1240000,1230000,1220000,1210000,1200000,1200000,1190000,1180000,1170000,1160000,1150000,1140000,1140000,1130000,1120000,1110000,1100000,1100000,1090000,1080000,1070000,1060000,1060000 +Tunisia,800000,804000,807000,811000,814000,818000,822000,825000,829000,833000,837000,840000,844000,848000,852000,856000,859000,863000,867000,872000,877000,883000,889000,896000,904000,911000,918000,926000,933000,940000,948000,956000,963000,971000,979000,987000,995000,1000000,1010000,1020000,1030000,1040000,1040000,1050000,1060000,1070000,1080000,1090000,1100000,1100000,1110000,1120000,1140000,1150000,1160000,1170000,1180000,1200000,1210000,1220000,1240000,1250000,1260000,1270000,1290000,1300000,1320000,1330000,1340000,1360000,1370000,1390000,1400000,1420000,1430000,1450000,1460000,1480000,1490000,1510000,1520000,1540000,1560000,1570000,1590000,1610000,1620000,1640000,1660000,1670000,1690000,1710000,1730000,1740000,1760000,1780000,1800000,1820000,1830000,1850000,1880000,1910000,1930000,1970000,2000000,2029999.9999999998,2069999.9999999998,2100000,2140000,2170000,2190000,2220000,2230000,2240000,2260000,2270000,2280000,2290000,2310000,2320000,2340000,2360000,2380000,2410000,2430000,2460000,2490000,2520000,2540000,2580000,2610000,2650000,2690000,2740000,2790000,2840000,2890000,2940000,2990000,3040000,3090000,3140000,3190000,3240000,3290000,3340000,3390000,3440000,3490000,3550000,3610000,3670000,3740000,3820000,3890000,3980000,4050000,4090000,4120000,4160000,4200000,4240000,4280000,4330000,4390000,4460000,4550000,4660000,4790000,4920000,5050000,5180000,5320000,5460000,5610000,5770000,5930000,6090000,6250000,6420000,6580000,6740000,6910000,7090000,7280000,7480000,7680000,7870000,8070000,8260000,8440000,8620000,8800000,8980000,9140000,9290000,9430000,9560000,9680000,9790000,9890000,10000000,10100000,10200000,10300000,10400000,10500000,10600000,10700000,10800000,10900000,11000000,11200000,11300000,11400000,11600000,11700000,11800000,11900000,12000000,12200000,12300000,12400000,12500000,12600000,12700000,12800000,12900000,12900000,13000000,13100000,13200000,13200000,13300000,13400000,13400000,13500000,13600000,13600000,13700000,13800000,13800000,13900000,14000000,14000000,14100000,14100000,14200000,14200000,14300000,14300000,14400000,14400000,14400000,14400000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14500000,14400000,14400000,14400000,14400000,14400000,14400000,14300000,14300000,14300000,14300000,14300000,14200000,14200000,14200000,14200000,14100000,14100000,14100000,14000000,14000000,14000000,13900000,13900000,13900000,13800000,13800000,13800000,13700000,13700000,13700000,13600000,13600000,13500000 +Turkey,9760000,9780000,9790000,9810000,9820000,9840000,9850000,9870000,9880000,9900000,9910000,9930000,9940000,9960000,9980000,10000000,10000000,10000000,10100000,10100000,10100000,10100000,10100000,10200000,10200000,10200000,10300000,10300000,10300000,10400000,10400000,10400000,10500000,10500000,10500000,10600000,10600000,10600000,10700000,10700000,10700000,10800000,10800000,10800000,10900000,10900000,10900000,11000000,11000000,11000000,11100000,11100000,11100000,11200000,11200000,11200000,11300000,11300000,11300000,11400000,11400000,11400000,11500000,11500000,11500000,11600000,11600000,11600000,11700000,11700000,11800000,11800000,11900000,11900000,12000000,12100000,12200000,12200000,12300000,12400000,12400000,12500000,12600000,12700000,12700000,12800000,12900000,13000000,13000000,13100000,13200000,13300000,13300000,13400000,13500000,13600000,13700000,13700000,13800000,13900000,14000000,14100000,14100000,14200000,14300000,14400000,14500000,14600000,14600000,14700000,14700000,14600000,14600000,14500000,14300000,14200000,14100000,14000000,13900000,13800000,13800000,13800000,13900000,14000000,14100000,14200000,14300000,14400000,14500000,14600000,14800000,15000000,15200000,15500000,15800000,16100000.000000002,16399999.999999998,16700000,17000000,17300000,17600000,17900000,18200000,18500000,18800000,19100000,19500000,19800000,20100000,20500000,21000000,21500000,22100000,22700000,23300000,23800000,24500000,25200000,26000000,26800000,27500000,28300000,29000000,29800000,30600000,31400000,32200000.000000004,33000000,33900000,34700000,35500000,36400000,37200000,38000000,38900000,39700000,40500000,41400000,42300000,43200000,44100000,45000000,45900000,47000000,48100000,49200000,50200000,51300000,52300000,53300000,54300000,55300000,56300000,57300000,58300000,59300000,60300000,61300000,62200000,63200000,64099999.99999999,65099999.99999999,66000000,66900000.00000001,67800000,68700000,69600000,70500000,71300000,72200000,73200000,74200000,75300000,76600000,78100000,79600000,81000000,82100000,82800000,83500000,84100000,84800000,85300000,85800000,86300000,86700000,87100000,87600000,88000000,88400000,88900000,89300000,89800000,90200000,90700000,91100000,91500000,91900000,92300000,92700000,93100000,93400000,93700000,94100000,94400000,94700000,95000000,95200000,95400000,95600000,95800000,96000000,96100000,96200000,96300000,96300000,96300000,96300000,96200000,96100000,96000000,95900000,95700000,95600000,95400000,95200000,94900000,94700000,94400000,94200000,93900000,93600000,93300000,93000000,92700000,92400000,92100000,91800000,91400000,91100000,90700000,90400000,90000000,89700000,89300000,88900000,88500000,88100000,87700000,87300000,86900000,86500000,86100000,85600000,85200000,84800000,84300000,83900000,83400000,83000000,82500000 +Tuvalu,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2500,2510,2510,2520,2540,2550,2560,2570,2590,2600,2610,2620,2640,2650,2660,2670,2690,2700,2710,2730,2740,2750,2770,2780,2790,2810,2820,2830,2850,2860,2870,2890,2900,2920,2930,2950,2960,2980,2990,3000,3020,3030,3050,3060,3080,3090,3110,3130,3140,3160,3170,3190,3200,3220,3240,3250,3270,3280,3300,3320,3330,3350,3370,3380,3400,3420,3430,3450,3470,3480,3500,3520,3540,3550,3570,3590,3610,3620,3640,3660,3680,3700,3710,3730,3750,3770,3790,3810,3830,3840,3860,3880,3900,3920,3940,3960,3980,4000,4020,4040,4060,4080,4100,4120,4140,4160,4180,4200,4220,4240,4260,4280,4300,4320,4340,4360,4380,4400,4430,4450,4470,4490,4510,4530,4560,4580,4600,4620,4640,4670,4700,4730,4860,4970,5060,5140,5200,5250,5290,5330,5370,5400,5440,5470,5500,5530,5550,5590,5660,5730,5780,5810,5850,5890,5930,6100,6380,6680,6980,7300,7550,7730,7870,7990,8100,8200,8330,8500,8670,8840,9020,9180,9350,9470,9520,9560,9590,9610,9630,9630,9640,9640,9620,9610,9670,9790,9910,10000,10100,10300,10400,10600,10700,10900,10900,10900,10900,10900,10800,10900,11000,11100,11200,11300,11400,11500,11600,11600,11700,11800,11900,11900,12000,12000,12100,12200,12200,12300,12400,12400,12500,12500,12600,12700,12700,12800,12900,12900,13000,13100,13100,13200,13300,13300,13400,13500,13500,13600,13600,13700,13800,13800,13900,13900,14000,14000,14000,14100,14100,14200,14200,14200,14200,14300,14300,14300,14300,14400,14400,14400,14400,14400,14400,14400,14500,14500,14500,14500,14500,14500,14500,14400,14400,14400,14400,14400,14400,14300,14300,14300,14200,14200 +Taiwan,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2000000,2009999.9999999998,2009999.9999999998,2009999.9999999998,2009999.9999999998,2020000,2020000,2020000,2029999.9999999998,2029999.9999999998,2040000,2040000,2049999.9999999998,2049999.9999999998,2060000,2060000,2069999.9999999998,2080000,2080000,2089999.9999999998,2100000,2100000,2110000,2120000,2120000,2130000,2140000,2150000,2150000,2160000,2170000,2170000,2180000,2190000,2190000,2200000,2210000,2210000,2220000,2230000,2230000,2240000,2240000,2250000,2260000,2260000,2270000,2280000,2280000,2290000,2290000,2300000,2310000,2310000,2320000,2330000,2330000,2340000,2350000,2350000,2360000,2370000,2370000,2380000,2390000,2390000,2400000,2410000,2410000,2420000,2430000,2430000,2450000,2460000,2480000,2500000,2520000,2540000,2570000,2600000,2630000,2660000,2700000,2730000,2770000,2810000,2850000,2890000,2930000,2970000,3010000,3050000,3090000,3130000,3180000,3230000,3250000,3320000,3380000,3430000,3460000,3490000,3520000,3560000,3590000,3640000,3700000,3760000,3830000,3900000,3990000,4080000,4170000,4270000,4380000,4490000,4610000,4730000,4860000,4990000,5110000,5240000,5380000,5520000,5670000,5830000,5990000,6160000,6280000,6340000,6350000,6300000,6350000,6590000,7120000,7620000,7930000,8250000,8570000,8900000,9230000,9570000,9910000,10300000,10600000,11000000,11400000,11800000,12200000,12600000,13100000,13500000,13900000,14300000,14600000,15000000,15300000,15600000,15900000,16200000,16600000.000000002,16900000,17200000,17500000,17800000,18100000,18400000,18700000,19000000,19200000,19500000,19800000,20000000,20200000,20400000,20600000,20800000,21000000,21100000,21300000,21500000,21600000,21800000,21900000,22100000,22200000,22300000,22500000,22600000,22700000,22800000,22900000,22900000,23000000,23000000,23100000,23100000,23200000,23300000,23400000,23500000,23600000,23700000,23700000,23800000,23800000,23900000,23900000,23900000,24000000,24000000,24000000,24000000,24000000,24000000,24000000,24000000,24000000,24000000,24000000,23900000,23900000,23800000,23800000,23700000,23600000,23500000,23400000,23300000,23200000,23100000,23000000,22800000,22700000,22600000,22400000,22300000,22200000,22000000,21900000,21700000,21600000,21400000,21300000,21100000,20900000,20800000,20600000,20400000,20300000,20100000,20000000,19800000,19600000,19500000,19300000,19100000,18900000,18800000,18600000,18400000,18300000,18100000,17900000,17800000,17600000,17500000,17300000,17200000,17000000,16900000,16700000,16600000.000000002,16500000,16399999.999999998,16200000,16100000.000000002,16000000,15900000,15800000,15700000,15600000,15500000,15400000,15300000,15200000 +Tanzania,3000000,3000000,3000000,3000000,3000000,3000000,3010000,3010000,3010000,3010000,3010000,3010000,3010000,3010000,3010000,3010000,3020000,3020000,3020000,3030000,3060000,3090000,3140000,3210000,3270000,3340000,3400000,3470000,3540000,3610000,3680000,3760000,3830000,3910000,3990000,4059999.9999999995,4150000.0000000005,4230000,4310000,4400000,4490000,4580000,4670000,4760000,4860000,4950000,5050000,5150000,5260000,5340000,5400000,5440000,5460000,5450000,5440000,5440000,5430000,5420000,5420000,5410000,5410000,5400000,5390000,5390000,5380000,5380000,5370000,5360000,5360000,5350000,5350000,5340000,5330000,5330000,5320000,5320000,5310000,5300000,5300000,5290000,5290000,5300000,5310000,5320000,5330000,5340000,5350000,5360000,5370000,5360000,5350000,5330000,5300000,5260000,5210000,5170000,5130000,5090000,5050000,5010000,4980000,4950000,4920000,4900000,4880000,4860000,4840000,4820000,4800000,4790000,4770000,4770000,4760000,4760000,4760000,4760000,4760000,4760000,4760000,4770000,4800000,4840000,4900000,4980000,5050000,5130000,5200000,5280000,5360000,5440000,5520000,5600000,5680000,5760000,5840000,5920000,6000000,6090000,6170000,6260000,6360000,6470000,6580000,6700000,6820000,6940000,7060000,7190000,7320000,7470000,7630000,7830000,8050000.000000001,8260000,8490000,8730000,8970000,9220000,9490000,9760000,10000000,10300000,10600000,11000000,11300000,11600000,12000000,12300000,12700000,13200000,13600000,14100000,14600000,15100000,15700000,16200000,16800000,17500000,18100000,18700000,19300000,19900000,20500000,21200000,21900000,22600000,23300000,24100000,24800000,25500000,26200000,26900000,27600000,28500000,29600000,30600000,31100000,31800000,32600000,33500000,34500000,35400000,36400000,37300000,38400000,39400000,40600000,41700000,42900000,44000000,45100000,46400000,47800000,49300000,50800000,52500000,54400000,56300000,58100000,59900000,61700000,63600000,65500000,67400000,69400000,71400000,73500000,75500000,77600000,79700000,81900000,84100000,86300000,88500000,90800000,93100000,95400000,97800000,100000000,103000000,105000000,107000000,110000000,112000000,115000000,117000000,120000000,122000000,125000000,127000000,130000000,132000000,135000000,138000000,140000000,143000000,145000000,148000000,151000000,153000000,156000000,158000000,161000000,164000000,166000000,169000000,171000000,174000000,176000000,179000000,181000000,184000000,186000000,189000000,191000000,193000000,196000000,198000000,200000000,203000000,205000000,207000000,210000000,212000000,214000000,216000000,218000000,220000000,222000000,225000000,227000000,229000000,231000000,232000000,234000000,236000000,238000000,240000000,241000000,243000000,245000000 +Uganda,2500000,2480000,2460000,2440000,2410000,2390000,2370000,2350000,2330000,2310000,2290000,2270000,2250000,2230000,2210000,2190000,2180000,2160000,2140000,2130000,2130000,2130000,2150000,2170000,2200000,2230000,2250000,2280000,2300000,2330000,2360000,2380000,2410000,2440000,2470000,2490000,2520000,2550000,2580000,2610000,2640000,2670000,2700000,2730000,2760000,2800000,2830000,2860000,2890000,2920000,2950000,2970000,2990000,3010000,3030000,3040000,3060000,3080000,3100000,3110000,3130000,3150000,3170000,3180000,3200000,3220000,3240000,3260000,3270000,3290000,3310000,3330000,3350000,3380000,3400000,3420000,3440000,3460000,3490000,3510000,3530000,3560000,3580000,3600000,3630000,3650000,3670000,3700000,3720000,3740000,3760000,3770000,3770000,3780000,3780000,3780000,3780000,3780000,3790000,3780000,3770000,3760000,3740000,3720000,3690000,3670000,3640000,3620000,3600000,3580000,3560000,3550000,3550000,3540000,3540000,3540000,3540000,3540000,3530000,3540000,3560000,3590000,3640000,3700000,3760000,3830000,3890000,3960000,4019999.9999999995,4090000,4150000.0000000005,4220000,4280000,4340000,4400000,4460000,4520000,4590000,4650000,4720000,4790000,4870000,4960000,5050000,5140000,5230000,5320000,5420000,5520000,5630000,5750000,5910000,6070000,6240000,6420000,6600000,6790000,6990000,7190000,7400000,7620000,7840000,8070000,8310000.000000001,8560000,8830000,9100000,9390000,9700000,10000000,10300000,10600000,10900000,11100000,11400000,11700000,12000000,12400000,12700000,13000000,13300000,13600000,13900000,14200000,14600000,15000000,15500000,16000000,16500000,17000000,17600000,18200000,18800000,19500000,20100000,20700000,21200000,21900000,22500000,23300000,24000000,24800000,25500000,26400000,27100000,27900000,28800000,29600000,30500000,31400000,32299999.999999996,33299999.999999996,34300000,35300000,36300000,37500000,38700000,40100000,41500000,42900000,44400000,45900000,47200000,48600000,49900000,51300000,52700000,54100000,55500000,56900000,58400000,59800000,61300000,62700000,64200000,65599999.99999999,67099999.99999999,68600000,70100000,71500000,73000000,74500000,76000000,77400000,78900000,80400000,81800000,83300000,84700000,86200000,87600000,89000000,90500000,91900000,93200000,94600000,96000000,97300000,98600000,99900000,101000000,102000000,104000000,105000000,106000000,107000000,108000000,110000000,111000000,112000000,113000000,114000000,115000000,116000000,117000000,118000000,118000000,119000000,120000000,121000000,122000000,122000000,123000000,124000000,125000000,125000000,126000000,127000000,127000000,128000000,128000000,129000000,129000000,130000000,130000000,130000000,131000000,131000000,132000000,132000000,132000000 +Ukraine,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11200000,11300000,11300000,11400000,11500000,11600000,11700000,11800000,12000000,12100000,12200000,12300000,12400000,12500000,12600000,12700000,12900000,13000000,13100000,13200000,13300000,13500000,13600000,13700000,13800000,14000000,14100000,14200000,14400000,14500000,14600000,14800000,14900000,15000000,15200000,15300000,15500000,15600000,15700000,15900000,16000000,16200000,16300000,16500000,16600000.000000002,16800000,17000000,17100000,17300000,17400000,17600000,17800000,17900000,18100000,18300000,18400000,18600000,18800000,19000000,19100000,19300000,19500000,19700000,19900000,20000000,20200000,20400000,20600000,20800000,21000000,21200000,21400000,21600000,21800000,22000000,22200000,22400000,22600000,22800000,23000000,23300000,23500000,23700000,23900000,24100000,24400000,24600000,24800000,25100000,25300000,25500000,25800000,26000000,26300000,26500000,26700000,27000000,27200000,27500000,27800000,28000000,28300000,28500000,28800000,29000000,29300000,29600000,29900000,30100000,30400000,30700000,31000000,31300000,31500000,31800000,32100000,32400000,32700000.000000004,33000000,33299999.999999996,33600000,33900000,34200000,34600000,34900000,35200000,35500000,35800000,36200000,36500000,36900000,37300000,37800000,38300000,38800000,39300000,39800000,40400000,41000000,41600000,42200000,42800000,43400000,43900000,44400000,44900000,45400000,45800000,46200000,46600000,47000000,47300000,47600000,48000000,48300000,48600000,48900000,49100000,49400000,49500000,49700000,50000000,50200000,50400000,50600000,50800000,50900000,51100000,51200000,51400000,51500000,51600000,51700000,51800000,51800000,51500000,51100000,50600000,50200000,49700000,49300000,48900000,48400000,48000000,47600000,47300000,46900000,46600000,46300000,46100000,45900000,45700000,45500000,45400000,45300000,45100000,45000000,44800000,44700000,44400000,44200000,43900000,43500000,39700000,36700000,37900000,38800000,39100000,39000000,38800000,38600000,38300000,38000000,37800000,37500000,37200000,37000000,36700000,36400000,36200000,35900000,35700000,35400000,35100000,34900000,34600000,34300000,34000000,33700000,33500000,33200000.000000004,32900000,32600000,32299999.999999996,32000000,31600000,31300000,31000000,30700000,30400000,30100000,29800000,29500000,29100000,28800000,28500000,28200000,28000000,27700000,27400000,27100000,26800000,26500000,26300000,26000000,25800000,25500000,25200000,25000000,24700000,24500000,24300000,24100000,23800000,23600000,23400000,23200000,23000000,22800000,22600000,22400000,22200000,22000000,21900000,21700000,21500000,21300000,21100000,21000000,20800000,20600000,20400000 +Uruguay,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55300,56000,57000,58400,60100,61900,63700,65600,67500,69500,71600,73700,75900,78100,80400,82800,85300,87800,90400,93100,95800,98700,102000,105000,108000,111000,114000,118000,121000,125000,129000,134000,140000,147000,155000,163000,172000,182000,191000,202000,212000,223000,233000,244000,255000,266000,278000,290000,303000,317000,330000,342000,355000,367000,378000,390000,402000,414000,427000,440000,455000,470000,488000,506000,527000,548000,570000,593000,616000,641000,665000,689000,712000,735000,756000,779000,801000,825000,849000,874000,898000,920000,940000,958000,974000,991000,1010000,1030000,1040000,1060000,1080000,1100000,1130000,1150000,1180000,1210000,1240000,1270000,1300000,1330000,1360000,1390000,1420000,1460000,1490000,1520000,1560000,1590000,1630000,1670000,1700000,1730000,1760000,1790000,1810000,1840000,1860000,1890000,1920000,1940000,1970000,1990000,2020000,2040000,2060000,2089999.9999999998,2110000,2130000,2160000,2180000,2210000,2230000,2260000,2280000,2310000,2340000,2370000,2400000,2430000,2460000,2500000,2530000,2560000,2590000,2620000,2650000,2680000,2710000,2730000,2750000,2770000,2790000,2810000,2820000,2840000,2850000,2870000,2890000,2910000,2930000,2940000,2950000,2970000,2980000,2990000,3010000,3020000,3040000,3060000,3080000,3100000,3120000,3140000,3150000,3170000,3190000,3210000,3230000,3250000,3260000,3280000,3290000,3300000,3310000,3310000,3310000,3320000,3320000,3330000,3340000,3340000,3350000,3360000,3370000,3380000,3390000,3400000,3410000,3420000,3430000,3430000,3430000,3430000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3420000,3410000,3410000,3410000,3400000,3400000,3390000,3390000,3380000,3370000,3360000,3360000,3350000,3340000,3330000,3320000,3300000,3290000,3280000,3270000,3250000,3240000,3230000,3210000,3200000,3180000,3170000,3150000,3130000,3120000,3100000,3080000,3070000,3050000,3030000,3010000,2990000,2980000,2960000,2940000,2920000,2900000,2880000,2850000,2830000,2810000,2790000,2770000,2750000,2720000,2700000,2680000,2660000,2630000,2610000,2590000,2560000,2540000,2520000,2500000,2480000,2450000,2430000,2410000 +USA,6000000,6110000,6230000,6350000,6470000,6590000,6720000,6840000,6970000,7110000,7300000,7500000,7730000,7980000,8240000,8510000,8790000,9070000,9370000,9670000,9970000,10300000,10600000,10900000,11200000,11500000,11800000,12200000,12500000,12900000,13200000,13600000,14000000,14400000,14800000,15200000,15600000,16100000.000000002,16500000,17000000,17500000,18000000,18500000,19100000,19700000,20300000,20900000,21600000,22200000,22900000,23600000,24300000,25000000,25800000,26600000,27400000,28200000,29000000,29900000,30800000,31600000,32400000,33200000.000000004,34000000,34800000,35600000,36400000,37300000,38100000,39000000,39900000,40800000,41700000,42700000,43600000,44600000,45600000,46600000,47700000,48700000,49800000,51000000,52100000,53300000,54500000,55700000,57000000,58200000,59600000,60800000,62100000,63400000,64599999.99999999,65800000,67000000,68200000,69500000,70800000,72100000,73400000,74800000,76200000,77700000,79200000,80700000,82300000,83800000,85400000,87100000,88600000,90200000,91600000,92900000,94200000,95500000,96900000,98200000,99600000,101000000,102000000,104000000,105000000,107000000,109000000,110000000,112000000,113000000,115000000,117000000,118000000,120000000,121000000,122000000,123000000,124000000,124000000,125000000,126000000,127000000,128000000,129000000,131000000,133000000,134000000,136000000,138000000,140000000,142000000,144000000,146000000,148000000,151000000,153000000,155000000,158000000,161000000,164000000,167000000,170000000,173000000,176000000,179000000,182000000,185000000,187000000,190000000,192000000,194000000,196000000,198000000,200000000,203000000,205000000,207000000,209000000,211000000,213000000,215000000,218000000,220000000,223000000,226000000,228000000,230000000,233000000,235000000,238000000,240000000,242000000,245000000,248000000,252000000,255000000,259000000,262000000,266000000,269000000,272000000,276000000,279000000,282000000,285000000,288000000,291000000,294000000,297000000,300000000,303000000,306000000,309000000,311000000,314000000,317000000,319000000,322000000,325000000,327000000,330000000,332000000,334000000,336000000,337000000,338000000,340000000,342000000,344000000,345000000,347000000,349000000,350000000,352000000,354000000,355000000,357000000,359000000,360000000,361000000,363000000,364000000,365000000,367000000,368000000,369000000,370000000,371000000,372000000,373000000,373000000,374000000,375000000,375000000,376000000,377000000,377000000,378000000,378000000,379000000,379000000,380000000,380000000,381000000,381000000,382000000,383000000,383000000,384000000,384000000,385000000,386000000,386000000,387000000,387000000,388000000,388000000,389000000,389000000,390000000,390000000,391000000,391000000,391000000,391000000,392000000,392000000,392000000,392000000,392000000,393000000,393000000,393000000,393000000,393000000,393000000,393000000,393000000,393000000,394000000,394000000,394000000,394000000,394000000 +Uzbekistan,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1920000,1930000,1940000,1950000,1970000,1990000,2009999.9999999998,2029999.9999999998,2049999.9999999998,2060000,2080000,2100000,2120000,2140000,2160000,2180000,2200000,2220000,2240000,2260000,2280000,2300000,2330000,2350000,2370000,2390000,2410000,2430000,2460000,2480000,2500000,2520000,2550000,2570000,2590000,2620000,2640000,2660000,2690000,2710000,2730000,2760000,2780000,2810000,2830000,2860000,2880000,2910000,2930000,2960000,2990000,3010000,3040000,3070000,3090000,3120000,3150000,3180000,3200000,3230000,3260000,3290000,3320000,3350000,3380000,3410000,3440000,3470000,3500000,3530000,3560000,3590000,3630000,3660000,3690000,3720000,3760000,3790000,3820000,3860000,3890000,3930000,3960000,4000000,4030000.0000000005,4070000.0000000005,4099999.9999999995,4139999.9999999995,4179999.9999999995,4210000,4250000,4290000,4330000,4360000,4400000,4440000,4480000,4520000,4560000,4600000,4650000,4690000,4730000,4770000,4820000,4860000,4910000,4950000,5000000,5040000,5090000,5140000,5180000,5230000,5280000,5330000,5380000,5430000,5480000,5530000,5580000,5630000,5680000,5730000,5780000,5840000,5890000,5940000,6000000,6050000,6140000,6250000,6410000,6580000,6750000,6940000,7140000,7360000,7580000,7820000,8090000,8369999.999999999,8690000,9040000,9390000,9760000,10100000,10500000,10900000,11300000,11600000,12000000,12400000,12700000,13100000,13500000,13900000,14300000,14700000,15200000,15600000,15900000,16300000,16700000,17200000,17600000,18100000,18600000,19100000,19600000,20100000,20600000,21100000,21600000,22100000,22600000,23000000,23500000,23900000,24300000,24600000,24900000,25200000,25600000,25900000,26200000,26600000,26900000,27300000,27700000,28200000,28600000,29100000,29500000,30000000,30400000,30900000,31500000,31900000,32400000,33000000,33500000,34100000,34600000,35200000,35700000,36200000,36600000,37100000,37500000,37900000,38300000,38700000,39100000,39500000,39900000,40200000,40600000,41000000,41300000,41700000,42100000,42400000,42800000,43200000,43600000,43900000,44300000,44600000,45000000,45300000,45600000,45900000,46200000,46400000,46700000,47000000,47200000,47400000,47600000,47800000,48000000,48200000,48400000,48500000,48700000,48800000,49000000,49100000,49300000,49400000,49500000,49600000,49800000,49900000,50000000,50100000,50200000,50300000,50400000,50400000,50500000,50600000,50700000,50700000,50800000,50800000,50900000,50900000,50900000,50900000,51000000,51000000,51000000,51000000,51000000,51000000,50900000,50900000,50900000,50800000,50800000 +St. Vincent and the Grenadines,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25800,25900,25900,26000,26200,26300,26400,26600,26700,26800,27000,27100,27300,27400,27500,27700,27800,28000,28100,28200,28400,28500,28700,28800,29000,29100,29300,29400,29600,29700,29900,30000,30200,30300,30500,30600,30800,31000,31100,31300,31500,31700,32000,32299.999999999996,32600,33000,33300,33700,34000,34400,34800,35200,35600,36000,36400,36800,37300,37700,38100,38600,39000,39200,39400,39400,39400,39300,39300,39200,39200,39100,39200,39400,39700,40200,40800,41300,42000,42600,43200,43800,44200,44300,44200,43800,43200,42500,41900,41300,40700,40100,39700,39400,39200,39200,39300,39500,39600,39700,39900,40100,40300,40500,40800,41100,41500,41900,42200,42600,43000,43300,43900,44600,45400,46400,47600,48900,50200,51500,52800,54200,55300,56300,57200,57800,58200,58600,59000,59400,59800,60200,60800,61500,63400,65400.00000000001,67400,69600,71800,74200,76700,79300,82000,84100,85700,87200,88600,90100,91500,93000,94400,95800,97100,98500,99700,101000,102000,103000,104000,105000,105000,106000,107000,107000,108000,109000,110000,110000,111000,111000,112000,112000,112000,112000,113000,113000,114000,114000,114000,114000,114000,114000,114000,114000,114000,113000,113000,113000,112000,111000,111000,110000,110000,109000,109000,108000,107000,107000,106000,106000,106000,105000,105000,105000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,104000,103000,103000,103000,103000,102000,102000,102000,101000,101000,101000,100000,99700,99300,98900,98400,97900,97500,97000,96500,96000,95500,95000,94400,93900,93400,92800,92300,91700,91100,90600,90000,89400,88800,88200,87600,87000,86400,85700,85100,84400,83800,83100,82400,81800,81100,80400,79700,79000,78300,77600,76900,76200,75500,74800,74100,73400,72700 +Venezuela,1000000,978000,957000,936000,916000,896000,876000,857000,838000,820000,808000,795000,785000,776000,767000,759000,751000,742000,734000,731000,732000,738000,749000,765000,782000,798000,815000,833000,851000,871000,893000,918000,946000,977000,1010000,1040000,1070000,1110000,1150000,1180000,1200000,1220000,1240000,1250000,1260000,1270000,1280000,1290000,1300000,1310000,1330000,1340000,1360000,1370000,1390000,1410000,1430000,1440000,1460000,1480000,1500000,1520000,1540000,1560000,1570000,1590000,1610000,1630000,1650000,1680000,1700000,1730000,1760000,1790000,1820000,1850000,1890000,1920000,1960000,1990000,2020000,2060000,2089999.9999999998,2120000,2150000,2180000,2210000,2240000,2270000,2310000,2340000,2370000,2410000,2440000,2480000,2520000,2550000,2590000,2630000,2660000,2700000,2730000,2770000,2800000,2830000,2860000,2890000,2920000,2960000,2990000,3010000,3040000,3070000,3090000,3110000,3140000,3160000,3190000,3210000,3230000,3260000,3280000,3310000,3350000,3380000,3410000,3450000,3480000,3510000,3550000,3590000,3640000,3680000,3730000,3790000,3840000,3890000,3940000,4000000,4070000.0000000005,4150000.0000000005,4240000,4350000,4470000,4600000,4730000,4870000,5000000,5150000,5310000,5490000,5730000,5980000,6230000,6490000,6750000,7020000,7290000,7580000,7870000,8160000,8450000,8750000,9060000,9370000,9690000,10000000,10300000,10700000,11000000,11400000,11700000,12100000,12400000,12800000,13200000,13600000,14000000,14400000,14800000,15200000,15600000,16100000.000000002,16500000,17000000,17400000,17900000,18300000,18800000,19300000,19800000,20200000,20700000,21200000,21600000,22100000,22600000,23000000,23500000,24000000,24400000,24900000,25300000,25800000,26200000,26700000,27100000,27500000,27900000,28300000,28700000,29100000,29500000,29800000,30200000,30500000,30700000,30600000,29800000,29000000,28500000,28200000,28300000,28800000,29400000,29900000,30400000,30900000,31300000,31700000,32000000,32299999.999999996,32600000,32900000,33200000.000000004,33400000,33600000,33900000,34100000,34300000,34500000,34600000,34800000,35000000,35100000,35300000,35400000,35600000,35700000,35800000,35900000,36000000,36200000,36300000,36300000,36400000,36500000,36600000,36700000,36800000,36800000,36900000,37000000,37000000,37100000,37100000,37200000,37200000,37300000,37300000,37300000,37300000,37400000,37400000,37400000,37400000,37400000,37300000,37300000,37300000,37300000,37200000,37200000,37100000,37100000,37000000,37000000,36900000,36800000,36700000,36600000,36500000,36400000,36300000,36200000,36000000,35900000,35800000,35600000,35500000,35400000 +Vietnam,4000000,4099999.9999999995,4200000,4310000,4410000,4530000,4640000,4750000,4870000,4990000,5120000,5250000,5380000,5520000,5650000,5790000,5940000,6090000,6240000,6360000,6440000,6500000,6510000,6490000,6470000,6460000,6440000,6420000,6400000,6380000,6360000,6340000,6320000,6310000,6290000,6270000,6250000,6230000,6210000,6200000,6180000,6160000,6140000,6120000,6110000,6090000,6070000,6050000,6040000,6060000,6110000,6210000,6350000,6530000,6720000,6910000,7100000,7310000,7510000,7730000,7950000,8170000,8410000,8640000,8890000,9140000,9400000,9670000,9940000,10200000,10400000,10500000,10600000,10600000,10600000,10700000,10700000,10700000,10800000,10800000,10800000,10800000,10900000,10900000,10900000,11000000,11000000,11000000,11100000,11100000,11100000,11200000,11200000,11200000,11300000,11300000,11300000,11400000,11400000,11500000,11800000,12200000,12700000,13400000,14100000,14900000,15700000,16500000,17400000,18100000,18600000,18900000,19100000,19000000,18900000,18800000,18700000,18600000,18600000,18500000,18400000,18300000,18200000,18100000,18100000,18000000,17900000,17800000,17800000,17700000,17700000,17800000,17800000,18000000,18100000,18200000,18300000,18500000,18600000,18800000,19100000,19500000,20000000,20600000,21200000,21800000,22500000,23100000,23800000,24500000,25100000,25600000,26200000,26800000,27500000,28300000,29000000,29900000,30800000,31800000,32700000.000000004,33600000,34500000,35500000,36500000,37500000,38400000,39300000,40100000,41000000,41900000,42900000,43900000,44900000,45900000,47000000,48200000,49400000,50700000,51800000,53000000,54300000,55600000,57000000,58400000,59800000,61200000,62600000,64000000,65500000,66900000.00000001,68400000,69800000,71200000,72500000,73800000,74900000,76100000,77100000,78100000,79000000,79800000,80600000,81500000,82300000,83100000,84000000,84800000,85600000,86500000,87400000,88300000,89300000,90300000,91200000,92200000,93100000,94000000,94900000,95800000,96600000,97500000,98200000,98900000,99500000,100000000,101000000,101000000,102000000,102000000,103000000,103000000,104000000,104000000,104000000,105000000,105000000,105000000,105000000,106000000,106000000,106000000,106000000,106000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,107000000,106000000,106000000,106000000,106000000,106000000,105000000,105000000,105000000,105000000,104000000,104000000,104000000,103000000,103000000,103000000,102000000,102000000,101000000,101000000,101000000,100000000,99800000,99400000,99000000,98600000,98200000,97800000,97400000,97000000,96600000,96200000,95700000,95300000,94900000,94500000,94000000,93600000,93200000,92800000,92300000,91900000,91500000,91000000 +Vanuatu,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,27800,28000,28100,28300,28600,28900,29200,29500,29800,30100,30400,30600,30900,31300,31600,31900,32200.000000000004,32500,32800,33100,33500,33800,34100,34500,34800,35100,35500,35800,36200,36500,36900,37300,37600,38000,38300,38700,39100,39400,39800,40200,40600,41000,41400,41800,42200,42600,43000,43400,43800,44200,44600,45000,45500,45900,46300,46800,47200,47700,48100,48600,49000,49500,50000,50500,50900,51400,51900,52400,52900,53400,53900,54400,55000,55500,56000,56500,57100,57600,58200,58700,59300,59800,60400,61000,61600,62100,62700,63300,63900,64500,64900.00000000001,65000,64800,64300,63600,62900,62200,61500,60800,60100,59600,59200,58900,58800,58800,58800,58800,58800,58800,58800,58600,58100,57500,56700,55700,54700,53700,52700,51800,50800,50100,49600,49400,49400,49600,49800,50000,50100,50300,50500,50900,51600,52400,53400,54400,55500,56800,58100,59500,61100,62800,64599.99999999999,66500,68400,70400,72500,74700,76900,79300,81800,84300,87000,89800,92700,95700,98800,102000,105000,109000,112000,115000,118000,121000,124000,127000,130000,133000,136000,140000,144000,147000,151000,155000,159000,163000,167000,171000,175000,179000,183000,187000,192000,197000,202000,207000,212000,218000,223000,228000,234000,240000,245000,251000,257000,264000,270000,276000,283000,290000,297000,304000,312000,319000,327000,335000,342000,350000,358000,366000,374000,383000,391000,400000,408000,417000,426000,435000,444000,453000,463000,472000,482000,491000,501000,510000,520000,530000,540000,549000,559000,569000,579000,588000,598000,608000,618000,627000,637000,647000,656000,666000,676000,686000,695000,705000,715000,724000,734000,744000,753000,763000,772000,782000,791000,800000,810000,819000,828000,837000,846000,855000,864000,873000,881000,890000,898000,907000,915000,923000,931000,939000,947000,955000,962000,970000,977000,985000,992000,999000,1010000,1010000,1020000 +Samoa,47300,47300,47300,47300,47300,47300,47300,47200,47200,47200,47200,47200,47200,47200,47200,47200,47200,47200,47200,47100,47100,47100,47100,47100,47100,47100,47100,47100,47100,47100,47100,47100,47000,47000,47000,47000,47000,47000,47000,47000,47000,47000,47000,47000,46900,46900,46900,46900,46900,46800,46700,46600,46300,46100,45800,45500,45200,45000,44700,44400,44200,43900,43600,43400,43100,42800,42600,42300,42100,41800,41600,41300,41100,40800,40600,40300,40100,39800,39600,39400,39100,38900,38600,38400,38200,38000,37700,37500,37300,37000,36800,36600,36400,36100,35900,35700,35500,35300,35100,35000,35100,35300,35700,36300,36800,37400,37900,38500,39100,39500,39800,39900,39900,39700,39600,39400,39200,39000,38800,39000,39600,40600,42000,43900,45900,48000,50200,52400,54800,57000,58900,60600,62100,63300,64599.99999999999,65800,67100,68500,69800,71200,72500,73900,75300,76700,78100,79600,81100,82600,84200,85900,88000,89900,91900,94000,96000,98000,100000,103000,106000,110000,113000,117000,120000,123000,127000,130000,133000,136000,138000,140000,143000,145000,147000,150000,152000,155000,158000,160000,162000,163000,165000,166000,167000,167000,167000,167000,166000,167000,167000,168000,168000,169000,170000,171000,173000,175000,177000,179000,180000,182000,184000,186000,187000,187000,188000,189000,189000,190000,192000,193000,195000,196000,198000,200000,202000,204000,206000,208000,210000,212000,215000,219000,222000,226000,229000,232000,235000,239000,242000,245000,249000,252000,255000,259000,262000,266000,269000,273000,276000,280000,284000,287000,291000,295000,298000,302000,306000,309000,313000,316000,320000,324000,327000,330000,334000,337000,341000,344000,347000,350000,354000,357000,360000,363000,367000,370000,373000,376000,379000,382000,385000,388000,391000,394000,396000,399000,402000,404000,407000,409000,412000,414000,416000,418000,420000,422000,424000,426000,428000,429000,431000,432000,434000,435000,436000,437000,438000,439000,440000,441000,441000 +Yemen,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2590000,2600000,2600000,2600000,2610000,2610000,2620000,2620000,2630000,2630000,2640000,2640000,2650000,2650000,2660000,2660000,2660000,2670000,2670000,2680000,2680000,2690000,2690000,2700000,2700000,2710000,2710000,2720000,2720000,2730000,2730000,2740000,2740000,2750000,2750000,2760000,2760000,2760000,2770000,2770000,2780000,2780000,2780000,2790000,2790000,2800000,2800000,2810000,2810000,2810000,2820000,2820000,2830000,2830000,2840000,2840000,2840000,2850000,2850000,2860000,2860000,2870000,2870000,2870000,2880000,2880000,2890000,2890000,2900000,2900000,2910000,2910000,2910000,2920000,2920000,2930000,2930000,2940000,2940000,2950000,2950000,2970000,2980000,3010000,3030000,3060000,3090000,3110000,3140000,3170000,3200000,3230000,3250000,3280000,3310000,3340000,3370000,3400000,3440000,3470000,3500000,3530000,3570000,3600000,3630000,3670000,3700000,3740000,3770000,3810000,3840000,3880000,3920000,3950000,3990000,4030000.0000000005,4070000.0000000005,4110000.0000000005,4139999.9999999995,4179999.9999999995,4220000,4260000,4300000,4340000,4380000,4420000,4470000,4510000,4550000,4590000,4650000,4710000,4780000,4860000,4930000,5010000,5090000,5180000,5260000,5350000,5440000,5540000,5650000,5750000,5860000,5970000,6100000,6230000,6370000,6520000,6670000,6840000,7020000,7220000,7420000,7630000,7860000,8090000,8350000,8620000,8900000,9200000,9530000,9870000,10200000,10600000,11000000,11500000,11900000,12400000,12900000,13400000,13900000,14400000,15000000,15600000,16100000.000000002,16600000.000000002,17100000,17600000,18100000,18600000,19100000,19700000,20200000,20700000,21300000,22000000,22600000,23300000,24000000,24700000,25500000,26200000,27000000,27800000,28500000,29300000,30000000,30800000,31500000,32299999.999999996,33000000,33700000,34400000,35200000,36000000,36800000,37600000,38300000,39100000,39900000,40700000,41500000,42300000,43100000,43900000,44600000,45400000,46200000,47000000,47800000,48600000,49300000,50100000,50900000,51600000,52400000,53100000,53900000,54600000,55300000,56000000,56700000,57400000,58000000,58700000,59300000,59900000,60600000,61200000,61700000,62300000,62900000,63400000,63900000,64500000,64900000.00000001,65400000.00000001,65900000.00000001,66400000.00000001,66800000,67200000,67700000,68100000,68400000,68800000,69200000,69500000,69900000,70200000,70500000,70800000,71100000,71400000,71600000,71900000,72100000,72400000,72600000,72800000,73000000,73200000,73300000,73500000,73600000,73700000,73800000,73900000,74000000,74100000,74200000 +South Africa,1450000,1450000,1460000,1460000,1470000,1470000,1480000,1490000,1490000,1500000,1500000,1510000,1510000,1520000,1530000,1540000,1550000,1550000,1560000,1570000,1580000,1600000,1620000,1660000,1690000,1730000,1770000,1810000,1850000,1890000,1930000,1980000,2020000,2069999.9999999998,2110000,2160000,2210000,2260000,2310000,2360000,2410000,2470000,2520000,2580000,2640000,2690000,2750000,2820000,2880000,2940000,2990000,3030000,3070000,3110000,3140000,3170000,3210000,3240000,3280000,3310000,3350000,3390000,3420000,3460000,3500000,3530000,3570000,3610000,3650000,3690000,3730000,3770000,3810000,3850000,3890000,3930000,3980000,4019999.9999999995,4059999.9999999995,4110000.0000000005,4150000.0000000005,4200000,4240000,4290000,4330000,4380000,4430000,4470000,4520000,4570000,4620000,4670000,4720000,4770000,4820000,4880000,4930000,4980000,5030000,5100000,5160000,5240000,5320000,5410000,5510000,5600000,5700000,5790000,5890000,5990000,6090000,6190000,6300000,6400000,6500000,6610000,6710000,6820000,6930000,7040000,7170000,7300000,7450000,7610000,7770000,7930000,8100000,8270000,8440000,8620000,8790000,8970000,9160000,9340000,9530000,9720000,9920000,10100000,10300000,10500000,10700000,10900000,11200000,11400000,11600000,11800000,12000000,12300000,12500000,12800000,13000000,13300000,13600000,13900000,14300000,14600000,14900000,15300000,15700000,16100000.000000002,16500000,17000000,17500000,18000000,18600000,19200000,19800000,20400000,21100000,21700000,22400000,23000000,23700000,24400000,25100000,25800000,26500000,27200000,27900000,28700000,29500000,30200000,31000000,31900000,32799999.999999996,33800000,34900000,36100000,37400000,38700000,39900000,40900000,41800000,42500000,43300000,44000000,44700000,45300000,45900000,46400000,46800000,47200000,47700000,48100000,48600000,49000000,49500000,50000000,50600000,51200000,51800000,52400000,53100000,53900000,54700000,55900000,56400000,56600000,57300000,58100000,58800000,59400000,59900000,60400000,61000000,61700000,62300000,62900000,63500000,64099999.99999999,64700000,65200000,65800000,66300000,66800000,67300000,67800000,68300000,68800000,69300000,69700000,70200000,70600000,71000000,71400000,71800000,72200000,72600000,72900000,73200000,73500000,73800000,74100000,74300000,74600000,74800000,75000000,75200000,75400000,75500000,75700000,75800000,75900000,76000000,76100000,76200000,76300000,76400000,76400000,76500000,76500000,76500000,76600000,76600000,76600000,76600000,76600000,76500000,76500000,76500000,76400000,76400000,76300000,76300000,76200000,76100000,76100000,76000000,75900000,75800000,75700000,75600000,75500000,75400000,75300000,75200000,75100000,75000000,74800000,74700000,74600000 +Zambia,747000,758000,770000,782000,794000,806000,818000,831000,843000,856000,869000,883000,896000,910000,924000,938000,952000,967000,981000,996000,1010000,1030000,1040000,1060000,1070000,1090000,1110000,1120000,1140000,1160000,1180000,1200000,1210000,1230000,1250000,1270000,1290000,1310000,1330000,1350000,1370000,1390000,1410000,1430000,1460000,1480000,1500000,1520000,1550000,1570000,1580000,1590000,1590000,1590000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1600000,1610000,1610000,1610000,1610000,1620000,1620000,1630000,1630000,1630000,1640000,1640000,1640000,1640000,1640000,1640000,1630000,1630000,1630000,1630000,1620000,1620000,1610000,1610000,1600000,1590000,1570000,1560000,1550000,1540000,1530000,1520000,1510000,1510000,1500000,1490000,1480000,1480000,1470000,1460000,1460000,1460000,1460000,1470000,1490000,1510000,1540000,1560000,1580000,1610000,1630000,1650000,1680000,1700000,1730000,1750000,1770000,1800000,1820000,1850000,1880000,1900000,1930000,1970000,2000000,2040000,2069999.9999999998,2110000,2150000,2190000,2230000,2270000,2320000,2380000,2450000,2530000,2600000,2680000,2760000,2840000,2930000,3020000,3120000,3220000,3320000,3430000,3540000,3660000,3780000,3900000,4030000.0000000005,4160000,4280000,4400000,4520000,4650000,4790000,4930000,5080000,5230000,5390000,5550000,5720000,5900000,6090000,6290000,6490000,6690000,6890000,7100000,7290000,7490000,7690000,7880000,8070000,8270000,8470000,8680000,8900000,9130000,9370000,9620000,9890000,10200000,10500000,10800000,11200000,11600000,12000000,12400000,12900000,13300000,13800000,14300000,14700000,15200000,15700000,16200000,16800000,17300000,17800000,18400000,18900000,19500000,20000000,20600000,21100000,21700000,22300000,22900000,23500000,24100000,24700000,25300000,25900000,26500000,27200000,27800000,28400000,29000000,29700000,30300000,31000000,31600000,32299999.999999996,32900000,33600000,34200000,34900000,35500000,36200000,36800000,37500000,38100000,38800000,39400000,40000000,40700000,41300000,42000000,42600000,43200000,43900000,44500000,45100000,45700000,46300000,46900000,47500000,48100000,48700000,49300000,49900000,50500000,51000000,51600000,52100000,52700000,53200000,53800000,54300000,54800000,55300000,55800000,56300000,56800000,57300000,57700000,58200000,58600000,59100000,59500000,59900000,60300000,60700000,61100000,61500000,61900000,62200000,62600000,62900000,63300000,63600000 +Zimbabwe,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1090000,1080000,1080000,1060000,1050000,1030000,1020000,1000000,985000,969000,953000,938000,923000,908000,893000,879000,864000,850000,837000,823000,810000,797000,784000,771000,759000,746000,734000,722000,711000,699000,688000,680000,676000,676000,679000,686000,693000,701000,708000,715000,722000,730000,737000,745000,752000,760000,768000,776000,783000,791000,800000,808000,816000,824000,833000,841000,850000,859000,867000,876000,885000,894000,903000,913000,922000,931000,941000,950000,960000,970000,980000,990000,1000000,1010000,1020000,1030000,1040000,1050000,1060000,1070000,1080000,1100000,1110000,1130000,1140000,1160000,1180000,1200000,1220000,1240000,1260000,1280000,1300000,1330000,1350000,1370000,1390000,1410000,1430000,1450000,1480000,1500000,1530000,1560000,1590000,1620000,1660000,1690000,1730000,1760000,1800000,1840000,1870000,1910000,1950000,1990000,2029999.9999999998,2069999.9999999998,2110000,2160000,2200000,2250000,2290000,2330000,2380000,2430000,2470000,2520000,2570000,2620000,2670000,2730000,2790000,2880000,2970000,3070000,3160000,3260000,3370000,3470000,3580000,3690000,3810000,3930000,4050000,4179999.9999999995,4310000,4450000,4590000,4730000,4890000,5040000,5200000,5360000,5530000,5710000,5900000,6100000,6290000,6450000,6550000,6660000,7050000,7510000,7800000,8109999.999999999,8400000,8690000,8980000,9280000,9570000,9850000,10100000,10400000,10600000,10800000,10900000,11000000,11200000,11400000,11500000,11700000,11800000,11900000,12000000,12100000,12200000,12200000,12300000,12500000,12600000,12700000,12800000,13000000,13300000,13600000,13900000,14200000,14500000,14800000,15100000,15400000,15700000,16000000,16300000,16700000,17000000,17400000,17700000,18100000,18500000,18800000,19200000,19500000,19900000,20300000,20700000,21000000,21400000,21800000,22200000,22500000,22900000,23300000,23600000,24000000,24400000,24700000,25100000,25400000,25800000,26100000,26400000,26800000,27100000,27400000,27700000,28000000,28300000,28600000,28900000,29200000,29500000,29800000,30000000,30300000,30600000,30800000,31100000,31300000,31500000,31800000,32000000,32200000.000000004,32400000,32600000,32799999.999999996,33000000,33200000.000000004,33400000,33600000,33700000,33900000,34000000,34200000,34300000,34400000,34600000,34700000,34800000,34900000,35000000,35100000,35100000,35200000,35300000,35400000,35400000,35500000,35500000,35600000,35600000,35600000 diff --git a/data/class3/get_data.R b/data/class3/get_data.R index b644f4e..ca3168d 100644 --- a/data/class3/get_data.R +++ b/data/class3/get_data.R @@ -6,15 +6,24 @@ library(data.table) convert_num_units <- function(x, units = c("k", "m", "b", "t"), multipliers = c(1e3, 1e6, 1e9, 1e12)){ - has_unit <- str_detect(x, str_c(units, collapse = "|")) - xx <- vector("numeric", length(x)) - xx[!has_unit] <- as.numeric(x[!has_unit]) + n_na <- sum(is.na(x)) + units <- str_to_upper(units) + units_le <- str_c(units, "$") + unit_regex <- regex(str_c(units_le, collapse = "|"), + ignore_case = TRUE) - num <- as.numeric(str_remove(x[has_unit], str_c(units, collapse = "|"))) - ui <- match(str_match(x[has_unit], str_c(units, collapse = "|")), units) + has_unit <- str_detect(x, unit_regex) + no_unit <- which(!has_unit) + has_unit <- which(has_unit) + xx <- rep(NA, length(x)) + xx[no_unit] <- as.numeric(x[no_unit]) + num <- as.numeric(str_remove(x[has_unit], unit_regex)) + unit_matches <- str_match(x[has_unit], unit_regex) + unit_matches <- str_to_upper(unit_matches) + ui <- match(unit_matches, units) xx[has_unit] <- num * multipliers[ui] - if(any(is.na(xx))) warning("NAs introducted in coercion, check units") + if(sum(is.na(xx)) > n_na) warning("NAs introducted in coercion, check units") xx } @@ -26,6 +35,13 @@ gdp_data[2:ncol(gdp_data)] <- lapply(gdp_data[2:ncol(gdp_data)], convert_num_uni gdp_data <- as_tibble(gdp_data) write_csv(gdp_data, "data/class3/income_per_person.csv") +# population per country downloaded from http://gapm.io/dpop + +og_pop_data <- read_csv(here("data/class3/messy_country_pop.csv")) +pop_data <- as.data.frame(og_pop_data) +pop_data[2:ncol(pop_data)] <- lapply(pop_data[2:ncol(pop_data)], convert_num_units) +pop_data <- as_tibble(pop_data) +write_csv(gdp_data, "data/class3/country_population.csv") # ---------- # fly proteomics data