diff --git a/.gitignore b/.gitignore
index 5a03bc3..b1752d1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ out/
.settings
.classpath
.factorypath
+src/main/resources/infoboxes/
\ No newline at end of file
diff --git a/FIELDS_V4.md b/FIELDS_V4.md
index e3f4541..b4e15f7 100644
--- a/FIELDS_V4.md
+++ b/FIELDS_V4.md
@@ -18,6 +18,7 @@ Complete reference for all fields returned by the v4 API (`/v4`). The v4 API res
| `independent` | Boolean | ISO 3166-1 sovereignty status |
| `status` | String | ISO 3166-1 assignment status |
| `unMember` | Boolean | UN member state |
+| `sovereignState` | String | ★ cca3 of the governing sovereign state, or `""` |
| `currencies` | List\ | Official currencies |
| `idd` | Object | International direct dialling info |
| `callingCodes` | List\ | ★ Full international calling codes |
@@ -194,6 +195,19 @@ Complete reference for all fields returned by the v4 API (`/v4`). The v4 API res
---
+#### `sovereignState` ★ New in v4
+
+**Type:** String
+**Description:** The `cca3` code of the sovereign state that governs this territory. Empty string (`""`) for independent countries. Populated only for non-independent territories (where `independent` is `false`).
+
+```json
+"sovereignState": "NLD"
+```
+
+> **Examples:** Aruba → `"NLD"`, Gibraltar → `"GBR"`, Puerto Rico → `"USA"`, Hong Kong → `"CHN"`, Greenland → `"DNK"`.
+
+---
+
### Geography
---
@@ -857,6 +871,7 @@ The following fields are **not present in v3.1** and were introduced in v4:
| `hdi` | Human Development Index score |
| `nationalHoliday` | National/independence day date |
| `anthem` | Name of the national anthem |
+| `sovereignState` | cca3 of the governing sovereign state (`""` for independent) |
### Shape changes from v3.1
diff --git a/src/main/java/com/restcountries/controller/ControllerV4Helper.java b/src/main/java/com/restcountries/controller/ControllerV4Helper.java
index f3f603a..644f67c 100644
--- a/src/main/java/com/restcountries/controller/ControllerV4Helper.java
+++ b/src/main/java/com/restcountries/controller/ControllerV4Helper.java
@@ -98,10 +98,9 @@ public class ControllerV4Helper {
"landlocked",
"borders",
"area",
- "flags",
+ "flag",
"demonyms",
"population",
- "flag",
"maps",
"gini",
"fifa",
@@ -123,6 +122,8 @@ public class ControllerV4Helper {
"nationalHoliday",
"anthem",
"regionalBlocs",
- "callingCodes"
+ "callingCodes",
+ "hdi",
+ "sovereignState"
};
}
diff --git a/src/main/java/com/restcountries/controller/CountryControllerV4.java b/src/main/java/com/restcountries/controller/CountryControllerV4.java
index d20525c..21cec31 100644
--- a/src/main/java/com/restcountries/controller/CountryControllerV4.java
+++ b/src/main/java/com/restcountries/controller/CountryControllerV4.java
@@ -187,6 +187,24 @@ public class CountryControllerV4 extends ControllerV4Helper {
}
}
+ @Get("sovereignstate/{cca3}")
+ @Schema(name = "RestCountries")
+ public Object getBySovereignState(@PathVariable("cca3") String cca3,
+ @QueryParam("fields") Optional fields) {
+ if (isEmpty(cca3) || cca3.length() != 3) {
+ return ControllerHelper.badRequest();
+ }
+ try {
+ var countries = CountryServiceV4.getInstance().getBySovereignState(cca3);
+ if (!countries.isEmpty()) {
+ return ControllerHelper.ok(checkFieldsAndParseCountries(fields, countries));
+ }
+ return ControllerHelper.notFound();
+ } catch (Exception e) {
+ return HttpResponse.serverError(Response.Status.INTERNAL_SERVER_ERROR);
+ }
+ }
+
@Get("independent")
@Schema(name = "RestCountries")
public Object getIndependentCountries(@QueryParam("status") Optional status,
diff --git a/src/main/java/com/restcountries/domain/base/BaseCountry.java b/src/main/java/com/restcountries/domain/base/BaseCountry.java
index 69030f3..3d09a39 100644
--- a/src/main/java/com/restcountries/domain/base/BaseCountry.java
+++ b/src/main/java/com/restcountries/domain/base/BaseCountry.java
@@ -8,6 +8,7 @@ import java.util.Map;
@Serdeable.Serializable
public class BaseCountry extends BaseCountryCore {
+ private String flag;
private Name name;
private Map currencies;
private Map languages;
@@ -16,6 +17,14 @@ public class BaseCountry extends BaseCountryCore {
private Map> demonyms;
private Map gini;
+ public String getFlag() {
+ return flag;
+ }
+
+ public void setFlag(String flag) {
+ this.flag = flag;
+ }
+
public Name getName() {
return name;
}
diff --git a/src/main/java/com/restcountries/domain/base/BaseCountryCore.java b/src/main/java/com/restcountries/domain/base/BaseCountryCore.java
index 0cd690a..83de8ed 100644
--- a/src/main/java/com/restcountries/domain/base/BaseCountryCore.java
+++ b/src/main/java/com/restcountries/domain/base/BaseCountryCore.java
@@ -25,7 +25,6 @@ public abstract class BaseCountryCore {
private List borders;
private Double area;
private List callingCodes;
- private String flag;
private Map maps;
private Integer population;
private String fifa;
@@ -169,14 +168,6 @@ public abstract class BaseCountryCore {
this.callingCodes = callingCodes;
}
- public String getFlag() {
- return flag;
- }
-
- public void setFlag(String flag) {
- this.flag = flag;
- }
-
public Map getMaps() {
return maps;
}
diff --git a/src/main/java/com/restcountries/domain/v3/v31/Flag.java b/src/main/java/com/restcountries/domain/v3/v31/Flag.java
index 48b3220..93e8a31 100644
--- a/src/main/java/com/restcountries/domain/v3/v31/Flag.java
+++ b/src/main/java/com/restcountries/domain/v3/v31/Flag.java
@@ -7,6 +7,7 @@ public class Flag {
private String png;
private String svg;
private String alt;
+ private String emoji;
public String getPng() {
return png;
@@ -31,4 +32,12 @@ public class Flag {
public void setAlt(String alt) {
this.alt = alt;
}
+
+ public String getEmoji() {
+ return emoji;
+ }
+
+ public void setEmoji(String emoji) {
+ this.emoji = emoji;
+ }
}
diff --git a/src/main/java/com/restcountries/domain/v4/Country.java b/src/main/java/com/restcountries/domain/v4/Country.java
index 093ed17..76ea925 100644
--- a/src/main/java/com/restcountries/domain/v4/Country.java
+++ b/src/main/java/com/restcountries/domain/v4/Country.java
@@ -17,7 +17,7 @@ public class Country extends BaseCountryCore {
private List translations;
private List demonyms;
private List gini;
- private Flag flags;
+ private Flag flag;
private Flag coatOfArms;
private String startOfWeek;
private CapitalInformation capitalInfo;
@@ -32,6 +32,7 @@ public class Country extends BaseCountryCore {
private String anthem;
private List regionalBlocs;
private Double hdi;
+ private String sovereignState;
public Name getName() {
return name;
@@ -81,12 +82,12 @@ public class Country extends BaseCountryCore {
this.gini = gini;
}
- public Flag getFlags() {
- return flags;
+ public Flag getFlag() {
+ return flag;
}
- public void setFlags(Flag flags) {
- this.flags = flags;
+ public void setFlag(Flag flag) {
+ this.flag = flag;
}
public Flag getCoatOfArms() {
@@ -200,4 +201,12 @@ public class Country extends BaseCountryCore {
public void setHdi(Double hdi) {
this.hdi = hdi;
}
+
+ public String getSovereignState() {
+ return sovereignState;
+ }
+
+ public void setSovereignState(String sovereignState) {
+ this.sovereignState = sovereignState;
+ }
}
diff --git a/src/main/java/com/restcountries/service/v4/CountryServiceBaseV4.java b/src/main/java/com/restcountries/service/v4/CountryServiceBaseV4.java
index e2ec840..2a198bd 100644
--- a/src/main/java/com/restcountries/service/v4/CountryServiceBaseV4.java
+++ b/src/main/java/com/restcountries/service/v4/CountryServiceBaseV4.java
@@ -174,6 +174,16 @@ public class CountryServiceBaseV4 {
return result;
}
+ protected Set getBySovereignState(String cca3, Set countries) {
+ Set result = new HashSet<>();
+ for (var country : countries) {
+ if (cca3.equalsIgnoreCase(country.getSovereignState())) {
+ result.add(country);
+ }
+ }
+ return result;
+ }
+
protected String normalize(String string) {
return Normalizer.normalize(string, Normalizer.Form.NFD)
.replaceAll("\\p{InCombiningDiacriticalMarks}+", "");
diff --git a/src/main/java/com/restcountries/service/v4/CountryServiceV4.java b/src/main/java/com/restcountries/service/v4/CountryServiceV4.java
index 1d8b39d..04f8f59 100644
--- a/src/main/java/com/restcountries/service/v4/CountryServiceV4.java
+++ b/src/main/java/com/restcountries/service/v4/CountryServiceV4.java
@@ -5,7 +5,6 @@ import com.restcountries.domain.v4.Country;
import java.text.Normalizer;
import java.util.HashSet;
import java.util.Set;
-import java.util.stream.Collectors;
public class CountryServiceV4 extends CountryServiceBaseV4 {
@@ -67,11 +66,18 @@ public class CountryServiceV4 extends CountryServiceBaseV4 {
return super.getByTranslation(translation, countries);
}
+ public Set getBySovereignState(String cca3) {
+ return super.getBySovereignState(cca3, countries);
+ }
+
public Set getIndependent(boolean status) {
- return countries.stream().filter(country -> {
- var independent = Boolean.TRUE.equals(country.getIndependent());
- return independent == status;
- }).collect(Collectors.toSet());
+ Set result = new HashSet<>();
+ for (var country : countries) {
+ if (Boolean.TRUE.equals(country.getIndependent()) == status) {
+ result.add(country);
+ }
+ }
+ return result;
}
@Override
diff --git a/src/main/resources/countriesV4.json b/src/main/resources/countriesV4.json
index 7ef15dd..cf32f77 100644
--- a/src/main/resources/countriesV4.json
+++ b/src/main/resources/countriesV4.json
@@ -210,7 +210,6 @@
"landlocked": false,
"borders": [],
"area": 180,
- "flag": "\ud83c\udde6\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -223,11 +222,6 @@
"female": "Arubaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/aw.svg",
- "png": "https://flagcdn.com/w320/aw.png",
- "alt": "The flag of Aruba is blue, with two narrow, horizontal yellow stripes across the lower portion and a red four-pointed star outlined in white in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/aw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/aw.png"
@@ -301,7 +295,14 @@
},
"nationalHoliday": "2976-03-18",
"anthem": "Aruba Dushi Tera",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "NLD",
+ "flag": {
+ "svg": "https://flagcdn.com/aw.svg",
+ "png": "https://flagcdn.com/w320/aw.png",
+ "alt": "The flag of Aruba is blue, with two narrow, horizontal yellow stripes across the lower portion and a red four-pointed star outlined in white in the canton.",
+ "emoji": "\ud83c\udde6\ud83c\uddfc"
+ }
},
{
"name": {
@@ -533,7 +534,6 @@
"CHN"
],
"area": 652230,
- "flag": "\ud83c\udde6\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -546,11 +546,6 @@
"female": "Afghane"
}
],
- "flags": {
- "svg": "https://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_the_Taliban.svg",
- "png": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_the_Taliban.svg/320px-Flag_of_the_Taliban.svg.png",
- "alt": "The flag of the Islamic Emirate of Afghanistan has a white field with Arabic inscriptions \u2014 the Shahada \u2014 in black across its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/af.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/af.png"
@@ -588,13 +583,13 @@
"religion": [
{
"name": "islam",
- "percentage": 99.9,
- "population": 49950000
+ "population": 49950000,
+ "percentage": 99.9
},
{
"name": "other",
- "percentage": 0.1,
- "population": 50000
+ "population": 50000,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -651,7 +646,14 @@
},
"nationalHoliday": "1919-08-19",
"anthem": "This Is the Home of the Brave",
- "hdi": 0.496
+ "hdi": 0.496,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_the_Taliban.svg",
+ "png": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_the_Taliban.svg/320px-Flag_of_the_Taliban.svg.png",
+ "alt": "The flag of the Islamic Emirate of Afghanistan has a white field with Arabic inscriptions \u2014 the Shahada \u2014 in black across its center.",
+ "emoji": "\ud83c\udde6\ud83c\uddeb"
+ }
},
{
"name": {
@@ -896,7 +898,6 @@
"NAM"
],
"area": 1246700,
- "flag": "\ud83c\udde6\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -909,11 +910,6 @@
"female": "Angolaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ao.svg",
- "png": "https://flagcdn.com/w320/ao.png",
- "alt": "The flag of Angola features two equal horizontal bands of red and black, with a yellow emblem at its centre. This emblem consists of a five-pointed star within the hoist-side facing half of a cogwheel that is crossed on its lower end by a machete."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ao.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ao.png"
@@ -962,18 +958,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 79.1,
- "population": 29069176
+ "population": 29069176,
+ "percentage": 79.1
},
{
"name": "no religion",
- "percentage": 11.5,
- "population": 4226239
+ "population": 4226239,
+ "percentage": 11.5
},
{
"name": "other",
- "percentage": 9.4,
- "population": 3454491
+ "population": 3454491,
+ "percentage": 9.4
}
],
"ethnicity": [
@@ -1026,7 +1022,14 @@
},
"nationalHoliday": null,
"anthem": "Angola Avante",
- "hdi": 0.616
+ "hdi": 0.616,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ao.svg",
+ "png": "https://flagcdn.com/w320/ao.png",
+ "alt": "The flag of Angola features two equal horizontal bands of red and black, with a yellow emblem at its centre. This emblem consists of a five-pointed star within the hoist-side facing half of a cogwheel that is crossed on its lower end by a machete.",
+ "emoji": "\ud83c\udde6\ud83c\uddf4"
+ }
},
{
"name": {
@@ -1228,7 +1231,6 @@
"landlocked": false,
"borders": [],
"area": 91,
- "flag": "\ud83c\udde6\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -1241,11 +1243,6 @@
"female": "Anguillane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ai.svg",
- "png": "https://flagcdn.com/w320/ai.png",
- "alt": "The flag of Anguilla is blue, with the flag of the UK in the canton and the national coat of arms centered in the fly half. The coat of arms depicts three orange dolphins in an interlocking circular design on a white background with a turquoise-blue field below."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ai.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ai.png"
@@ -1326,7 +1323,14 @@
},
"nationalHoliday": "1980-12-16",
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/ai.svg",
+ "png": "https://flagcdn.com/w320/ai.png",
+ "alt": "The flag of Anguilla is blue, with the flag of the UK in the canton and the national coat of arms centered in the fly half. The coat of arms depicts three orange dolphins in an interlocking circular design on a white background with a turquoise-blue field below.",
+ "emoji": "\ud83c\udde6\ud83c\uddee"
+ }
},
{
"name": {
@@ -1531,7 +1535,6 @@
"landlocked": false,
"borders": [],
"area": 1580,
- "flag": "\ud83c\udde6\ud83c\uddfd",
"demonyms": [
{
"lang": "eng",
@@ -1544,11 +1547,6 @@
"female": "\u00c5landaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ax.svg",
- "png": "https://flagcdn.com/w320/ax.png",
- "alt": "The flag of the \u00c5land Islands has a blue field with a large golden-yellow-edged red cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ax.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ax.png"
@@ -1607,7 +1605,14 @@
},
"nationalHoliday": "1920-05-07",
"anthem": "Maamme ",
- "hdi": 0.937
+ "hdi": 0.937,
+ "sovereignState": "FIN",
+ "flag": {
+ "svg": "https://flagcdn.com/ax.svg",
+ "png": "https://flagcdn.com/w320/ax.png",
+ "alt": "The flag of the \u00c5land Islands has a blue field with a large golden-yellow-edged red cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\udde6\ud83c\uddfd"
+ }
},
{
"name": {
@@ -1817,7 +1822,6 @@
"UNK"
],
"area": 28748,
- "flag": "\ud83c\udde6\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -1830,11 +1834,6 @@
"female": "Albanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/al.svg",
- "png": "https://flagcdn.com/w320/al.png",
- "alt": "The flag of Albania features a silhouetted double-headed black eagle at the center of a red field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/al.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/al.png"
@@ -1881,23 +1880,23 @@
"religion": [
{
"name": "islam",
- "percentage": 50.67,
- "population": 1217151
+ "population": 1217151,
+ "percentage": 50.67
},
{
"name": "christianity",
- "percentage": 16.02,
- "population": 384819
+ "population": 384819,
+ "percentage": 16.02
},
{
"name": "irreligion",
- "percentage": 17.37,
- "population": 417247
+ "population": 417247,
+ "percentage": 17.37
},
{
"name": "undeclared",
- "percentage": 15.92,
- "population": 382416
+ "population": 382416,
+ "percentage": 15.92
}
],
"ethnicity": [
@@ -1935,7 +1934,14 @@
},
"nationalHoliday": "2912-11-28",
"anthem": "Himni i Flamurit",
- "hdi": 0.81
+ "hdi": 0.81,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/al.svg",
+ "png": "https://flagcdn.com/w320/al.png",
+ "alt": "The flag of Albania features a silhouetted double-headed black eagle at the center of a red field.",
+ "emoji": "\ud83c\udde6\ud83c\uddf1"
+ }
},
{
"name": {
@@ -2142,7 +2148,6 @@
"ESP"
],
"area": 468,
- "flag": "\ud83c\udde6\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -2155,11 +2160,6 @@
"female": "Andorrane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ad.svg",
- "png": "https://flagcdn.com/w320/ad.png",
- "alt": "The flag of Andorra features three equal vertical bands of blue, yellow and red, with the coat of arms of Andorra centered in the yellow band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ad.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ad.png"
@@ -2196,18 +2196,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 90.8,
- "population": 80758
+ "population": 80758,
+ "percentage": 90.8
},
{
"name": "no religion",
- "percentage": 6.9,
- "population": 6137
+ "population": 6137,
+ "percentage": 6.9
},
{
"name": "others",
- "percentage": 2.3,
- "population": 2046
+ "population": 2046,
+ "percentage": 2.3
}
],
"ethnicity": [
@@ -2237,7 +2237,7 @@
"leaders": [
{
"title": "Co-prince of Andorra",
- "name": "Josep-Lluís Serrano Pentinat"
+ "name": "Josep-Llu\u00eds Serrano Pentinat"
},
{
"title": "Co-prince of Andorra",
@@ -2253,7 +2253,14 @@
},
"nationalHoliday": "1992-03-14",
"anthem": "El gran Carlemany",
- "hdi": 0.913
+ "hdi": 0.913,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ad.svg",
+ "png": "https://flagcdn.com/w320/ad.png",
+ "alt": "The flag of Andorra features three equal vertical bands of blue, yellow and red, with the coat of arms of Andorra centered in the yellow band.",
+ "emoji": "\ud83c\udde6\ud83c\udde9"
+ }
},
{
"name": {
@@ -2461,7 +2468,6 @@
"SAU"
],
"area": 83600,
- "flag": "\ud83c\udde6\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -2474,11 +2480,6 @@
"female": "Emirienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ae.svg",
- "png": "https://flagcdn.com/w320/ae.png",
- "alt": "The flag of United Arab Emirates features a red vertical band on its hoist side that takes up about one-fourth the width of the field and three equal horizontal bands of green, white and black adjoining the vertical band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ae.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ae.png"
@@ -2525,33 +2526,33 @@
"religion": [
{
"name": "islam",
- "percentage": 74.5,
- "population": 8215211
+ "population": 8215211,
+ "percentage": 74.5
},
{
"name": "christianity",
- "percentage": 12.9,
- "population": 1422500
+ "population": 1422500,
+ "percentage": 12.9
},
{
"name": "hinduism",
- "percentage": 6.2,
- "population": 683682
+ "population": 683682,
+ "percentage": 6.2
},
{
"name": "buddhism",
- "percentage": 3.2,
- "population": 352868
+ "population": 352868,
+ "percentage": 3.2
},
{
"name": "agnosticism",
- "percentage": 1.3,
- "population": 143353
+ "population": 143353,
+ "percentage": 1.3
},
{
"name": "other",
- "percentage": 1.9,
- "population": 209515
+ "population": 209515,
+ "percentage": 1.9
}
],
"ethnicity": [
@@ -2605,7 +2606,14 @@
},
"nationalHoliday": "1972-02-10",
"anthem": "Long Live My Country",
- "hdi": 0.94
+ "hdi": 0.94,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ae.svg",
+ "png": "https://flagcdn.com/w320/ae.png",
+ "alt": "The flag of United Arab Emirates features a red vertical band on its hoist side that takes up about one-fourth the width of the field and three equal horizontal bands of green, white and black adjoining the vertical band.",
+ "emoji": "\ud83c\udde6\ud83c\uddea"
+ }
},
{
"name": {
@@ -2826,7 +2834,6 @@
"URY"
],
"area": 2780085,
- "flag": "\ud83c\udde6\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -2839,11 +2846,6 @@
"female": "Argentine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ar.svg",
- "png": "https://flagcdn.com/w320/ar.png",
- "alt": "The flag of Argentina features three equal horizontal bands of light blue, white and light blue. A brown-edged golden sun is centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ar.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ar.png"
@@ -2895,18 +2897,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 78.2,
- "population": 36546773
+ "population": 36546773,
+ "percentage": 78.2
},
{
"name": "no religion",
- "percentage": 20.5,
- "population": 9580676
+ "population": 9580676,
+ "percentage": 20.5
},
{
"name": "other",
- "percentage": 1.3,
- "population": 607555
+ "population": 607555,
+ "percentage": 1.3
}
],
"ethnicity": [],
@@ -2931,7 +2933,14 @@
},
"nationalHoliday": "1816-07-09",
"anthem": "Argentine National Anthem",
- "hdi": 0.865
+ "hdi": 0.865,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ar.svg",
+ "png": "https://flagcdn.com/w320/ar.png",
+ "alt": "The flag of Argentina features three equal horizontal bands of light blue, white and light blue. A brown-edged golden sun is centered in the white band.",
+ "emoji": "\ud83c\udde6\ud83c\uddf7"
+ }
},
{
"name": {
@@ -3141,7 +3150,6 @@
"TUR"
],
"area": 29743,
- "flag": "\ud83c\udde6\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -3154,11 +3162,6 @@
"female": "Arm\u00e9nienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/am.svg",
- "png": "https://flagcdn.com/w320/am.png",
- "alt": "The flag of Armenia is composed of three equal horizontal bands of red, blue and orange."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/am.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/am.png"
@@ -3205,23 +3208,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.8,
- "population": 2982505
+ "population": 2982505,
+ "percentage": 96.8
},
{
"name": "no religion",
- "percentage": 0.6,
- "population": 18487
+ "population": 18487,
+ "percentage": 0.6
},
{
"name": "other",
- "percentage": 0.9,
- "population": 27730
+ "population": 27730,
+ "percentage": 0.9
},
{
"name": "unspecified",
- "percentage": 1.7,
- "population": 52379
+ "population": 52379,
+ "percentage": 1.7
}
],
"ethnicity": [
@@ -3259,7 +3262,14 @@
},
"nationalHoliday": "1918-05-28",
"anthem": "Mer Hayrenik",
- "hdi": 0.811
+ "hdi": 0.811,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/am.svg",
+ "png": "https://flagcdn.com/w320/am.png",
+ "alt": "The flag of Armenia is composed of three equal horizontal bands of red, blue and orange.",
+ "emoji": "\ud83c\udde6\ud83c\uddf2"
+ }
},
{
"name": {
@@ -3475,7 +3485,6 @@
"landlocked": false,
"borders": [],
"area": 199,
- "flag": "\ud83c\udde6\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -3488,11 +3497,6 @@
"female": "Samoane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/as.svg",
- "png": "https://flagcdn.com/w320/as.png",
- "alt": "The flag of American Samoa features a large white triangle edged in red that is based on the fly side and extends to the hoist side and is charged with an eagle, all on a blue field."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -3576,7 +3580,14 @@
},
"nationalHoliday": "1776-07-04",
"anthem": "The Star-Spangled Banner",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/as.svg",
+ "png": "https://flagcdn.com/w320/as.png",
+ "alt": "The flag of American Samoa features a large white triangle edged in red that is based on the fly side and extends to the hoist side and is charged with an eagle, all on a blue field.",
+ "emoji": "\ud83c\udde6\ud83c\uddf8"
+ }
},
{
"name": {
@@ -3752,7 +3763,6 @@
"landlocked": false,
"borders": [],
"area": 14000000,
- "flag": "\ud83c\udde6\ud83c\uddf6",
"demonyms": [
{
"lang": "eng",
@@ -3765,11 +3775,6 @@
"female": "Antarcticaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/aq.svg",
- "png": "https://flagcdn.com/w320/aq.png",
- "alt": "The flag of Antarctica features a plain white map of the country on a blue background."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/aq.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/aq.png"
@@ -3811,7 +3816,13 @@
"density": 0.00036,
"gdp": null,
"nationalHoliday": null,
- "anthem": null
+ "anthem": null,
+ "flag": {
+ "svg": "https://flagcdn.com/aq.svg",
+ "png": "https://flagcdn.com/w320/aq.png",
+ "alt": "The flag of Antarctica features a plain white map of the country on a blue background.",
+ "emoji": "\ud83c\udde6\ud83c\uddf6"
+ }
},
{
"name": {
@@ -4014,7 +4025,6 @@
"landlocked": false,
"borders": [],
"area": 439666,
- "flag": "\ud83c\uddf9\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -4027,11 +4037,6 @@
"female": "Fran\u00e7aise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tf.svg",
- "png": "https://flagcdn.com/w320/tf.png",
- "alt": "The flag of the French Southern and Antarctic Lands is blue and features the French tricolor in the canton, often displayed with a white border. In the lower fly, the letters T.A.A.F. form a monogram in white, which is stylized to resemble an anchor. The monogram is surrounded by five white stars."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tf.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tf.png"
@@ -4091,7 +4096,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "La Marseillaise",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/tf.svg",
+ "png": "https://flagcdn.com/w320/tf.png",
+ "alt": "The flag of the French Southern and Antarctic Lands is blue and features the French tricolor in the canton, often displayed with a white border. In the lower fly, the letters T.A.A.F. form a monogram in white, which is stylized to resemble an anchor. The monogram is surrounded by five white stars.",
+ "emoji": "\ud83c\uddf9\ud83c\uddeb"
+ }
},
{
"name": {
@@ -4293,7 +4305,6 @@
"landlocked": false,
"borders": [],
"area": 440,
- "flag": "\ud83c\udde6\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -4306,11 +4317,6 @@
"female": "Antiguaise et barbudienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ag.svg",
- "png": "https://flagcdn.com/w320/ag.png",
- "alt": "The flag of Antigua and Barbuda has a red field with an inverted isosceles triangle based on the top edge and spanning the height of the field. This triangle has three horizontal bands of black, light blue and white, with the light blue band half the height of the two other bands. The top half of a golden-yellow sun is situated in the lower two-third of the black band to depict a rising sun."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ag.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ag.png"
@@ -4352,28 +4358,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 92.7,
- "population": 98600
+ "population": 98600,
+ "percentage": 92.7
},
{
"name": "rastafari",
- "percentage": 3.6,
- "population": 3829
+ "population": 3829,
+ "percentage": 3.6
},
{
"name": "no religion",
- "percentage": 1.9,
- "population": 2021
+ "population": 2021,
+ "percentage": 1.9
},
{
"name": "bah\u00e1\u02bc\u00ed faith",
- "percentage": 1.1,
- "population": 1170
+ "population": 1170,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 0.7,
- "population": 745
+ "population": 745,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -4427,7 +4433,14 @@
},
"nationalHoliday": "1981-11-01",
"anthem": "Fair Antigua, We Salute Thee",
- "hdi": 0.851
+ "hdi": 0.851,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ag.svg",
+ "png": "https://flagcdn.com/w320/ag.png",
+ "alt": "The flag of Antigua and Barbuda has a red field with an inverted isosceles triangle based on the top edge and spanning the height of the field. This triangle has three horizontal bands of black, light blue and white, with the light blue band half the height of the two other bands. The top half of a golden-yellow sun is situated in the lower two-third of the black band to depict a rising sun.",
+ "emoji": "\ud83c\udde6\ud83c\uddec"
+ }
},
{
"name": {
@@ -4629,7 +4642,6 @@
"landlocked": false,
"borders": [],
"area": 7688287,
- "flag": "\ud83c\udde6\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -4642,11 +4654,6 @@
"female": "Australienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/au.svg",
- "png": "https://flagcdn.com/w320/au.png",
- "alt": "The flag of Australia has a dark blue field. It features the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton, beneath which is a large white seven-pointed star. A representation of the Southern Cross constellation, made up of one small five-pointed and four larger seven-pointed white stars, is situated on the fly side of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/au.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/au.png"
@@ -4694,38 +4701,38 @@
"religion": [
{
"name": "christianity",
- "percentage": 43.9,
- "population": 12222100
+ "population": 12222100,
+ "percentage": 43.9
},
{
"name": "no religion",
- "percentage": 38.9,
- "population": 10830061
+ "population": 10830061,
+ "percentage": 38.9
},
{
"name": "islam",
- "percentage": 3.2,
- "population": 890905
+ "population": 890905,
+ "percentage": 3.2
},
{
"name": "hinduism",
- "percentage": 2.7,
- "population": 751701
+ "population": 751701,
+ "percentage": 2.7
},
{
"name": "buddhism",
- "percentage": 2.4,
- "population": 668179
+ "population": 668179,
+ "percentage": 2.4
},
{
"name": "other",
- "percentage": 1.7,
- "population": 473293
+ "population": 473293,
+ "percentage": 1.7
},
{
"name": "unanswered",
- "percentage": 7.2,
- "population": 2004536
+ "population": 2004536,
+ "percentage": 7.2
}
],
"ethnicity": [],
@@ -4749,7 +4756,14 @@
},
"nationalHoliday": "1788-01-26",
"anthem": "Advance Australia Fair",
- "hdi": 0.958
+ "hdi": 0.958,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/au.svg",
+ "png": "https://flagcdn.com/w320/au.png",
+ "alt": "The flag of Australia has a dark blue field. It features the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton, beneath which is a large white seven-pointed star. A representation of the Southern Cross constellation, made up of one small five-pointed and four larger seven-pointed white stars, is situated on the fly side of the field.",
+ "emoji": "\ud83c\udde6\ud83c\uddfa"
+ }
},
{
"name": {
@@ -4962,7 +4976,6 @@
"CHE"
],
"area": 83879,
- "flag": "\ud83c\udde6\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -4975,11 +4988,6 @@
"female": "Autrichienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/at.svg",
- "png": "https://flagcdn.com/w320/at.png",
- "alt": "The flag of Austria is composed of three equal horizontal bands of red, white and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/at.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/at.png"
@@ -5026,23 +5034,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 68.2,
- "population": 6213074
+ "population": 6213074,
+ "percentage": 68.2
},
{
"name": "no religion",
- "percentage": 22.4,
- "population": 2040658
+ "population": 2040658,
+ "percentage": 22.4
},
{
"name": "islam",
- "percentage": 8.3,
- "population": 756137
+ "population": 756137,
+ "percentage": 8.3
},
{
"name": "other",
- "percentage": 1.1,
- "population": 100211
+ "population": 100211,
+ "percentage": 1.1
}
],
"ethnicity": [
@@ -5075,7 +5083,14 @@
},
"nationalHoliday": "1955-10-26",
"anthem": "Bundeshymne der Republik \u00d6sterreich",
- "hdi": 0.93
+ "hdi": 0.93,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/at.svg",
+ "png": "https://flagcdn.com/w320/at.png",
+ "alt": "The flag of Austria is composed of three equal horizontal bands of red, white and red.",
+ "emoji": "\ud83c\udde6\ud83c\uddf9"
+ }
},
{
"name": {
@@ -5286,7 +5301,6 @@
"TUR"
],
"area": 86600,
- "flag": "\ud83c\udde6\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -5299,11 +5313,6 @@
"female": "Azerba\u00efdjanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/az.svg",
- "png": "https://flagcdn.com/w320/az.png",
- "alt": "The flag of Azerbaijan features three equal horizontal bands of blue, red and green, with a white fly-side facing crescent and eight-pointed star centered in the red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/az.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/az.png"
@@ -5344,8 +5353,8 @@
"religion": [
{
"name": "islam",
- "percentage": 97.3,
- "population": 10073757
+ "population": 10073757,
+ "percentage": 97.3
},
{
"name": "christianity",
@@ -5405,7 +5414,14 @@
},
"nationalHoliday": null,
"anthem": "Az\u0259rbaycan Respublikas\u0131n\u0131n D\u00f6vl\u0259t himni",
- "hdi": 0.789
+ "hdi": 0.789,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/az.svg",
+ "png": "https://flagcdn.com/w320/az.png",
+ "alt": "The flag of Azerbaijan features three equal horizontal bands of blue, red and green, with a white fly-side facing crescent and eight-pointed star centered in the red band.",
+ "emoji": "\ud83c\udde6\ud83c\uddff"
+ }
},
{
"name": {
@@ -5625,7 +5641,6 @@
"TZA"
],
"area": 27834,
- "flag": "\ud83c\udde7\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -5638,11 +5653,6 @@
"female": "Burundaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bi.svg",
- "png": "https://flagcdn.com/w320/bi.png",
- "alt": "The flag of Burundi is divided by a white diagonal cross into four alternating triangular areas of red at the top and bottom, and green on the hoist and fly sides. A white circle, with three green-edged red six-pointed stars arranged to form a triangle, is superimposed at the center of the cross."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bi.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bi.png"
@@ -5695,23 +5705,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 93.4,
- "population": 13217538
+ "population": 13217538,
+ "percentage": 93.4
},
{
"name": "traditional faiths",
- "percentage": 4.3,
- "population": 608516
+ "population": 608516,
+ "percentage": 4.3
},
{
"name": "islam",
- "percentage": 2.1,
- "population": 297182
+ "population": 297182,
+ "percentage": 2.1
},
{
"name": "other",
- "percentage": 0.2,
- "population": 28303
+ "population": 28303,
+ "percentage": 0.2
}
],
"ethnicity": [
@@ -5744,7 +5754,14 @@
},
"nationalHoliday": "1962-07-01",
"anthem": "Burundi Bwacu",
- "hdi": 0.439
+ "hdi": 0.439,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bi.svg",
+ "png": "https://flagcdn.com/w320/bi.png",
+ "alt": "The flag of Burundi is divided by a white diagonal cross into four alternating triangular areas of red at the top and bottom, and green on the hoist and fly sides. A white circle, with three green-edged red six-pointed stars arranged to form a triangle, is superimposed at the center of the cross.",
+ "emoji": "\ud83c\udde7\ud83c\uddee"
+ }
},
{
"name": {
@@ -5981,7 +5998,6 @@
"NLD"
],
"area": 30689,
- "flag": "\ud83c\udde7\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -5994,11 +6010,6 @@
"female": "Belge"
}
],
- "flags": {
- "svg": "https://flagcdn.com/be.svg",
- "png": "https://flagcdn.com/w320/be.png",
- "alt": "The flag of Belgium is composed of three equal vertical bands of black, yellow and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/be.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/be.png"
@@ -6045,23 +6056,23 @@
"religion": [
{
"name": "no religion",
- "percentage": 59.0,
- "population": 6977075
+ "population": 6977075,
+ "percentage": 59.0
},
{
"name": "christianity",
- "percentage": 34.0,
- "population": 4020687
+ "population": 4020687,
+ "percentage": 34.0
},
{
"name": "islam",
- "percentage": 6.0,
- "population": 709533
+ "population": 709533,
+ "percentage": 6.0
},
{
"name": "other",
- "percentage": 1.0,
- "population": 118256
+ "population": 118256,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -6094,7 +6105,14 @@
},
"nationalHoliday": "1830-10-04",
"anthem": "The Braban\u00e7onne",
- "hdi": 0.951
+ "hdi": 0.951,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/be.svg",
+ "png": "https://flagcdn.com/w320/be.png",
+ "alt": "The flag of Belgium is composed of three equal vertical bands of black, yellow and red.",
+ "emoji": "\ud83c\udde7\ud83c\uddea"
+ }
},
{
"name": {
@@ -6303,7 +6321,6 @@
"TGO"
],
"area": 114763,
- "flag": "\ud83c\udde7\ud83c\uddef",
"demonyms": [
{
"lang": "eng",
@@ -6316,11 +6333,6 @@
"female": "B\u00e9ninoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bj.svg",
- "png": "https://flagcdn.com/w320/bj.png",
- "alt": "The flag of Benin features a green vertical band on its hoist side that takes up about two-fifth the width of the field and two equal horizontal bands of yellow and red adjoining the vertical band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bj.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bj.png"
@@ -6373,28 +6385,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 52.2,
- "population": 7179947
+ "population": 7179947,
+ "percentage": 52.2
},
{
"name": "islam",
- "percentage": 24.6,
- "population": 3383653
+ "population": 3383653,
+ "percentage": 24.6
},
{
"name": "traditional faiths",
- "percentage": 17.9,
- "population": 2462089
+ "population": 2462089,
+ "percentage": 17.9
},
{
"name": "no religion",
- "percentage": 5.2,
- "population": 715244
+ "population": 715244,
+ "percentage": 5.2
},
{
"name": "other",
- "percentage": 0.1,
- "population": 13755
+ "population": 13755,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -6455,7 +6467,14 @@
},
"nationalHoliday": "1960-01-08",
"anthem": "L'Aube Nouvelle",
- "hdi": 0.515
+ "hdi": 0.515,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bj.svg",
+ "png": "https://flagcdn.com/w320/bj.png",
+ "alt": "The flag of Benin features a green vertical band on its hoist side that takes up about two-fifth the width of the field and two equal horizontal bands of yellow and red adjoining the vertical band.",
+ "emoji": "\ud83c\udde7\ud83c\uddef"
+ }
},
{
"name": {
@@ -6664,7 +6683,6 @@
"TGO"
],
"area": 274223,
- "flag": "\ud83c\udde7\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -6677,11 +6695,6 @@
"female": "Burkinab\u00e9e"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bf.svg",
- "png": "https://flagcdn.com/w320/bf.png",
- "alt": "The flag of Burkina Faso features two equal horizontal bands of red and green, with a yellow five-pointed star in the center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bf.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bf.png"
@@ -6734,23 +6747,23 @@
"religion": [
{
"name": "islam",
- "percentage": 63.8,
- "population": 14348062
+ "population": 14348062,
+ "percentage": 63.8
},
{
"name": "christianity",
- "percentage": 26.3,
- "population": 5914640
+ "population": 5914640,
+ "percentage": 26.3
},
{
"name": "animism",
- "percentage": 9.0,
- "population": 2024021
+ "population": 2024021,
+ "percentage": 9.0
},
{
"name": "irreligion",
- "percentage": 0.7,
- "population": 157424
+ "population": 157424,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -6811,7 +6824,14 @@
},
"nationalHoliday": "1960-0608",
"anthem": "Ditany\u00e8",
- "hdi": 0.459
+ "hdi": 0.459,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bf.svg",
+ "png": "https://flagcdn.com/w320/bf.png",
+ "alt": "The flag of Burkina Faso features two equal horizontal bands of red and green, with a yellow five-pointed star in the center.",
+ "emoji": "\ud83c\udde7\ud83c\uddeb"
+ }
},
{
"name": {
@@ -7018,7 +7038,6 @@
"IND"
],
"area": 148460,
- "flag": "\ud83c\udde7\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -7031,11 +7050,6 @@
"female": "Bangladaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bd.svg",
- "png": "https://flagcdn.com/w320/bd.png",
- "alt": "The flag of Bangladesh has a dark green field bearing a large red circle that is offset slightly towards the hoist side of center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bd.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bd.png"
@@ -7082,28 +7096,28 @@
"religion": [
{
"name": "islam",
- "percentage": 91.04,
- "population": 158011176
+ "population": 158011176,
+ "percentage": 91.04
},
{
"name": "hinduism",
- "percentage": 7.94,
- "population": 13780852
+ "population": 13780852,
+ "percentage": 7.94
},
{
"name": "buddhism",
- "percentage": 0.6,
- "population": 1041374
+ "population": 1041374,
+ "percentage": 0.6
},
{
"name": "christianity",
- "percentage": 0.3,
- "population": 520687
+ "population": 520687,
+ "percentage": 0.3
},
{
"name": "other",
- "percentage": 0.12,
- "population": 208275
+ "population": 208275,
+ "percentage": 0.12
}
],
"ethnicity": [
@@ -7136,7 +7150,14 @@
},
"nationalHoliday": "1971-03-26",
"anthem": "Amar Sonar Bangla",
- "hdi": 0.685
+ "hdi": 0.685,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bd.svg",
+ "png": "https://flagcdn.com/w320/bd.png",
+ "alt": "The flag of Bangladesh has a dark green field bearing a large red circle that is offset slightly towards the hoist side of center.",
+ "emoji": "\ud83c\udde7\ud83c\udde9"
+ }
},
{
"name": {
@@ -7346,7 +7367,6 @@
"TUR"
],
"area": 110994,
- "flag": "\ud83c\udde7\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -7359,11 +7379,6 @@
"female": "Bulgare"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bg.svg",
- "png": "https://flagcdn.com/w320/bg.png",
- "alt": "The flag of Bulgaria is composed of three equal horizontal bands of white, green and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bg.png"
@@ -7406,28 +7421,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 64.7,
- "population": 4164972
+ "population": 4164972,
+ "percentage": 64.7
},
{
"name": "no religion",
- "percentage": 15.9,
- "population": 1023540
+ "population": 1023540,
+ "percentage": 15.9
},
{
"name": "islam",
- "percentage": 9.8,
- "population": 630861
+ "population": 630861,
+ "percentage": 9.8
},
{
"name": "other",
- "percentage": 0.1,
- "population": 6437
+ "population": 6437,
+ "percentage": 0.1
},
{
"name": "unanswered",
- "percentage": 9.5,
- "population": 611549
+ "population": 611549,
+ "percentage": 9.5
}
],
"ethnicity": [
@@ -7468,7 +7483,14 @@
},
"nationalHoliday": "1878-03-03",
"anthem": "Mila Rodino",
- "hdi": 0.845
+ "hdi": 0.845,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bg.svg",
+ "png": "https://flagcdn.com/w320/bg.png",
+ "alt": "The flag of Bulgaria is composed of three equal horizontal bands of white, green and red.",
+ "emoji": "\ud83c\udde7\ud83c\uddec"
+ }
},
{
"name": {
@@ -7672,7 +7694,6 @@
"landlocked": false,
"borders": [],
"area": 786.8,
- "flag": "\ud83c\udde7\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -7685,11 +7706,6 @@
"female": "Bahre\u00efnienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bh.svg",
- "png": "https://flagcdn.com/w320/bh.png",
- "alt": "The flag of Bahrain has a red field. On the hoist side, it features a white vertical band that spans about one-third the width of the field and is separated from the rest of the field by five adjoining fly-side pointing white isosceles triangles that serve as a serrated line."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bh.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bh.png"
@@ -7731,13 +7747,13 @@
"religion": [
{
"name": "islam",
- "percentage": 74.0,
- "population": 1082816
+ "population": 1082816,
+ "percentage": 74.0
},
{
"name": "non-muslim",
- "percentage": 26.0,
- "population": 380449
+ "population": 380449,
+ "percentage": 26.0
}
],
"ethnicity": [
@@ -7782,7 +7798,14 @@
},
"nationalHoliday": "1971-12-16",
"anthem": "Ba\u1e25raynun\u0101",
- "hdi": 0.899
+ "hdi": 0.899,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bh.svg",
+ "png": "https://flagcdn.com/w320/bh.png",
+ "alt": "The flag of Bahrain has a red field. On the hoist side, it features a white vertical band that spans about one-third the width of the field and is separated from the rest of the field by five adjoining fly-side pointing white isosceles triangles that serve as a serrated line.",
+ "emoji": "\ud83c\udde7\ud83c\udded"
+ }
},
{
"name": {
@@ -7990,7 +8013,6 @@
"landlocked": false,
"borders": [],
"area": 13943,
- "flag": "\ud83c\udde7\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -8003,11 +8025,6 @@
"female": "Bahamienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bs.svg",
- "png": "https://flagcdn.com/w320/bs.png",
- "alt": "The flag of the Bahamas is composed of three equal horizontal bands of aquamarine, yellow and aquamarine, with a black equilateral triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end and spans about one-third the width of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bs.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bs.png"
@@ -8049,23 +8066,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 93.0,
- "population": 383744
+ "population": 383744,
+ "percentage": 93.0
},
{
"name": "no religion",
- "percentage": 4.5,
- "population": 18568
+ "population": 18568,
+ "percentage": 4.5
},
{
"name": "folk religion",
- "percentage": 1.9,
- "population": 7840
+ "population": 7840,
+ "percentage": 1.9
},
{
"name": "other",
- "percentage": 0.6,
- "population": 2476
+ "population": 2476,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -8110,7 +8127,14 @@
},
"nationalHoliday": "1973-07-10",
"anthem": "March On, Bahamaland",
- "hdi": 0.82
+ "hdi": 0.82,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bs.svg",
+ "png": "https://flagcdn.com/w320/bs.png",
+ "alt": "The flag of the Bahamas is composed of three equal horizontal bands of aquamarine, yellow and aquamarine, with a black equilateral triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end and spans about one-third the width of the field.",
+ "emoji": "\ud83c\udde7\ud83c\uddf8"
+ }
},
{
"name": {
@@ -8340,7 +8364,6 @@
"SRB"
],
"area": 51209,
- "flag": "\ud83c\udde7\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -8353,11 +8376,6 @@
"female": "Bosnienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ba.svg",
- "png": "https://flagcdn.com/w320/ba.png",
- "alt": "The flag of Bosnia and Herzegovina has a blue field, at the center of which is a large yellow hoist-side facing right-angled triangle that is based on the top edge and spans the height of the field. Adjacent to the hypotenuse of this triangle are nine adjoining five-pointed white stars with the top and bottom stars cut in half by the edges of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ba.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ba.png"
@@ -8404,18 +8422,18 @@
"religion": [
{
"name": "islam",
- "percentage": 51.3,
- "population": 1489883
+ "population": 1489883,
+ "percentage": 51.3
},
{
"name": "christianity",
- "percentage": 46.1,
- "population": 1338862
+ "population": 1338862,
+ "percentage": 46.1
},
{
"name": "others",
- "percentage": 2.6,
- "population": 75511
+ "population": 75511,
+ "percentage": 2.6
}
],
"ethnicity": [],
@@ -8439,7 +8457,14 @@
},
"nationalHoliday": "1992-03-03",
"anthem": "Dr\u017eavna himna Bosne i Hercegovine",
- "hdi": 0.804
+ "hdi": 0.804,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ba.svg",
+ "png": "https://flagcdn.com/w320/ba.png",
+ "alt": "The flag of Bosnia and Herzegovina has a blue field, at the center of which is a large yellow hoist-side facing right-angled triangle that is based on the top edge and spans the height of the field. Adjacent to the hypotenuse of this triangle are nine adjoining five-pointed white stars with the top and bottom stars cut in half by the edges of the field.",
+ "emoji": "\ud83c\udde7\ud83c\udde6"
+ }
},
{
"name": {
@@ -8644,7 +8669,6 @@
"landlocked": false,
"borders": [],
"area": 21,
- "flag": "\ud83c\udde7\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -8657,11 +8681,6 @@
"female": "Barth\u00e9lom\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bl.svg",
- "png": "https://flagcdn.com/w320/bl.png",
- "alt": "The flag of Saint Barth\u00e9lemy features the national coat of arms centered on a white field. The coat of arms is a shield divided into three horizontal stripes: three gold fleurs-de-lis on blue, above a white Maltese cross on red, over three gold crowns on blue. Below the shield is a banner with \"OUANALAO,\" which is what the indigenous people called the island. On top of the shield is a mural crown."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -8712,7 +8731,14 @@
},
"nationalHoliday": "",
"anthem": "La Marseillaise",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/bl.svg",
+ "png": "https://flagcdn.com/w320/bl.png",
+ "alt": "The flag of Saint Barth\u00e9lemy features the national coat of arms centered on a white field. The coat of arms is a shield divided into three horizontal stripes: three gold fleurs-de-lis on blue, above a white Maltese cross on red, over three gold crowns on blue. Below the shield is a banner with \"OUANALAO,\" which is what the indigenous people called the island. On top of the shield is a mural crown.",
+ "emoji": "\ud83c\udde7\ud83c\uddf1"
+ }
},
{
"name": {
@@ -8922,7 +8948,6 @@
"landlocked": false,
"borders": [],
"area": 394,
- "flag": "\ud83c\uddf8\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -8935,11 +8960,6 @@
"female": "Sainte-H\u00e9l\u00e9noise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sh.svg",
- "png": "https://flagcdn.com/w320/sh.png",
- "alt": "The flag of Saint Helena, Ascension and Tristan da Cunha is blue with the UK flag in the canton and the national coat of arms shield centered on the fly half. The upper third of the shield depicts a white plover, a native bird, on a yellow field. The rest of the shield depicts a rocky coastline and a three-masted sailing ship with sails furled and flying an English flag."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -9002,7 +9022,14 @@
},
"nationalHoliday": "",
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/sh.svg",
+ "png": "https://flagcdn.com/w320/sh.png",
+ "alt": "The flag of Saint Helena, Ascension and Tristan da Cunha is blue with the UK flag in the canton and the national coat of arms shield centered on the fly half. The upper third of the shield depicts a white plover, a native bird, on a yellow field. The rest of the shield depicts a rocky coastline and a three-masted sailing ship with sails furled and flying an English flag.",
+ "emoji": "\ud83c\uddf8\ud83c\udded"
+ }
},
{
"name": {
@@ -9225,7 +9252,6 @@
"UKR"
],
"area": 207600,
- "flag": "\ud83c\udde7\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -9238,11 +9264,6 @@
"female": "Bi\u00e9lorusse"
}
],
- "flags": {
- "svg": "https://flagcdn.com/by.svg",
- "png": "https://flagcdn.com/w320/by.png",
- "alt": "The flag of Belarus features a vertical band, with a white and red ornamental pattern, spanning about one-fifth the width of the field on the hoist side. Adjoining the vertical band are two horizontal bands of red and green, with the red band twice the height of the green band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/by.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/by.png"
@@ -9285,18 +9306,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 91.0,
- "population": 8289445
+ "population": 8289445,
+ "percentage": 91.0
},
{
"name": "no religion",
- "percentage": 7.8,
- "population": 710524
+ "population": 710524,
+ "percentage": 7.8
},
{
"name": "other",
- "percentage": 1.2,
- "population": 109311
+ "population": 109311,
+ "percentage": 1.2
}
],
"ethnicity": [
@@ -9341,7 +9362,14 @@
},
"nationalHoliday": "1991-12-26",
"anthem": "Gosudarstvennyy gimn Respubliki Belarus",
- "hdi": 0.824
+ "hdi": 0.824,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/by.svg",
+ "png": "https://flagcdn.com/w320/by.png",
+ "alt": "The flag of Belarus features a vertical band, with a white and red ornamental pattern, spanning about one-fifth the width of the field on the hoist side. Adjoining the vertical band are two horizontal bands of red and green, with the red band twice the height of the green band.",
+ "emoji": "\ud83c\udde7\ud83c\uddfe"
+ }
},
{
"name": {
@@ -9568,7 +9596,6 @@
"MEX"
],
"area": 22966,
- "flag": "\ud83c\udde7\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -9581,11 +9608,6 @@
"female": "B\u00e9lizienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bz.svg",
- "png": "https://flagcdn.com/w320/bz.png",
- "alt": "The flag of Belize has a royal blue field with a thin red horizontal band at the top and bottom of the field and the national coat of arms in the center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bz.png"
@@ -9643,18 +9665,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 61.9,
- "population": 246042
+ "population": 246042,
+ "percentage": 61.9
},
{
"name": "no religion",
- "percentage": 31.8,
- "population": 126400
+ "population": 126400,
+ "percentage": 31.8
},
{
"name": "other",
- "percentage": 6.3,
- "population": 25041
+ "population": 25041,
+ "percentage": 6.3
}
],
"ethnicity": [
@@ -9723,7 +9745,14 @@
},
"nationalHoliday": "1973-09-21",
"anthem": "Land of the Free",
- "hdi": 0.721
+ "hdi": 0.721,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bz.svg",
+ "png": "https://flagcdn.com/w320/bz.png",
+ "alt": "The flag of Belize has a royal blue field with a thin red horizontal band at the top and bottom of the field and the national coat of arms in the center.",
+ "emoji": "\ud83c\udde7\ud83c\uddff"
+ }
},
{
"name": {
@@ -9928,7 +9957,6 @@
"landlocked": false,
"borders": [],
"area": 53.2,
- "flag": "\ud83c\udde7\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -9941,11 +9969,6 @@
"female": "Bermudienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bm.svg",
- "png": "https://flagcdn.com/w320/bm.png",
- "alt": "The flag of Bermuda is red, with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms is a white shield with a red lion on a green field, holding a scrolled shield showing the sinking of a ship."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bm.png"
@@ -10017,7 +10040,14 @@
},
"nationalHoliday": "",
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/bm.svg",
+ "png": "https://flagcdn.com/w320/bm.png",
+ "alt": "The flag of Bermuda is red, with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms is a white shield with a red lion on a green field, holding a scrolled shield showing the sinking of a ship.",
+ "emoji": "\ud83c\udde7\ud83c\uddf2"
+ }
},
{
"name": {
@@ -10266,7 +10296,6 @@
"PER"
],
"area": 1098581,
- "flag": "\ud83c\udde7\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -10279,11 +10308,6 @@
"female": "Bolivienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bo.svg",
- "png": "https://flagcdn.com/w320/bo.png",
- "alt": "The flag of Bolivia is composed of three equal horizontal bands of red, yellow and green, with the national coat of arms centered in the yellow band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bo.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bo.png"
@@ -10335,18 +10359,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 92.8,
- "population": 10547029
+ "population": 10547029,
+ "percentage": 92.8
},
{
"name": "no religion",
- "percentage": 6.5,
- "population": 738747
+ "population": 738747,
+ "percentage": 6.5
},
{
"name": "other",
- "percentage": 0.7,
- "population": 79557
+ "population": 79557,
+ "percentage": 0.7
}
],
"ethnicity": [],
@@ -10370,7 +10394,14 @@
},
"nationalHoliday": "1825-08-16",
"anthem": "Himno Nacional de Bolivia",
- "hdi": 0.733
+ "hdi": 0.733,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bo.svg",
+ "png": "https://flagcdn.com/w320/bo.png",
+ "alt": "The flag of Bolivia is composed of three equal horizontal bands of red, yellow and green, with the national coat of arms centered in the yellow band.",
+ "emoji": "\ud83c\udde7\ud83c\uddf4"
+ }
},
{
"name": {
@@ -10590,7 +10621,6 @@
"landlocked": false,
"borders": [],
"area": 322,
- "flag": "\ud83c\udde7\ud83c\uddf6",
"demonyms": [
{
"lang": "eng",
@@ -10603,11 +10633,6 @@
"female": "N\u00e9erlandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bq.svg",
- "png": "https://flagcdn.com/w320/bq.png",
- "alt": "The flag of the Caribbean Netherlands features a large blue triangle at the lower fly-side corner, spanning half the flag, and a smaller yellow triangle at the opposite corner, separated by a white strip containing a black compass surrounding a red six-pointed star."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bq.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bq.png"
@@ -10658,7 +10683,14 @@
},
"nationalHoliday": "",
"anthem": "Wilhelmus",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "NLD",
+ "flag": {
+ "svg": "https://flagcdn.com/bq.svg",
+ "png": "https://flagcdn.com/w320/bq.png",
+ "alt": "The flag of the Caribbean Netherlands features a large blue triangle at the lower fly-side corner, spanning half the flag, and a smaller yellow triangle at the opposite corner, separated by a white strip containing a black compass surrounding a red six-pointed star.",
+ "emoji": "\ud83c\udde7\ud83c\uddf6"
+ }
},
{
"name": {
@@ -10874,7 +10906,6 @@
"VEN"
],
"area": 8515767,
- "flag": "\ud83c\udde7\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -10887,11 +10918,6 @@
"female": "Br\u00e9silienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/br.svg",
- "png": "https://flagcdn.com/w320/br.png",
- "alt": "The flag of Brazil has a green field with a large yellow rhombus in the center. Within the rhombus is a dark blue globe with twenty-seven small five-pointed white stars depicting a starry sky and a thin white convex horizontal band inscribed with the national motto 'Ordem e Progresso' across its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/br.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/br.png"
@@ -10946,33 +10972,33 @@
"religion": [
{
"name": "christianity",
- "percentage": 83.6,
- "population": 178419987
+ "population": 178419987,
+ "percentage": 83.6
},
{
"name": "no religion",
- "percentage": 9.28,
- "population": 19805472
+ "population": 19805472,
+ "percentage": 9.28
},
{
"name": "spiritism",
- "percentage": 1.84,
- "population": 3926947
+ "population": 3926947,
+ "percentage": 1.84
},
{
"name": "afro-brazilian religions",
- "percentage": 1.05,
- "population": 2240921
+ "population": 2240921,
+ "percentage": 1.05
},
{
"name": "other",
- "percentage": 4.07,
- "population": 8686236
+ "population": 8686236,
+ "percentage": 4.07
},
{
"name": "not stated",
- "percentage": 0.17,
- "population": 362816
+ "population": 362816,
+ "percentage": 0.17
}
],
"ethnicity": [
@@ -11017,7 +11043,14 @@
},
"nationalHoliday": "1822-09-07",
"anthem": "Hino Nacional Brasileiro",
- "hdi": 0.786
+ "hdi": 0.786,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/br.svg",
+ "png": "https://flagcdn.com/w320/br.png",
+ "alt": "The flag of Brazil has a green field with a large yellow rhombus in the center. Within the rhombus is a dark blue globe with twenty-seven small five-pointed white stars depicting a starry sky and a thin white convex horizontal band inscribed with the national motto 'Ordem e Progresso' across its center.",
+ "emoji": "\ud83c\udde7\ud83c\uddf7"
+ }
},
{
"name": {
@@ -11219,7 +11252,6 @@
"landlocked": false,
"borders": [],
"area": 439,
- "flag": "\ud83c\udde7\ud83c\udde7",
"demonyms": [
{
"lang": "eng",
@@ -11232,11 +11264,6 @@
"female": "Barbadienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bb.svg",
- "png": "https://flagcdn.com/w320/bb.png",
- "alt": "The flag of Barbados is composed of three equal vertical bands of ultramarine, gold and ultramarine. The head of a black trident is centered in the gold band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bb.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bb.png"
@@ -11283,28 +11310,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 75.6,
- "population": 213190
+ "population": 213190,
+ "percentage": 75.6
},
{
"name": "no religion",
- "percentage": 20.6,
- "population": 58092
+ "population": 58092,
+ "percentage": 20.6
},
{
"name": "bah\u00e1\u02bc\u00ed faith",
- "percentage": 2.0,
- "population": 5640
+ "population": 5640,
+ "percentage": 2.0
},
{
"name": "hinduism",
- "percentage": 1.1,
- "population": 3102
+ "population": 3102,
+ "percentage": 1.1
},
{
"name": "others",
- "percentage": 0.7,
- "population": 1974
+ "population": 1974,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -11349,7 +11376,14 @@
},
"nationalHoliday": "1966-11-30",
"anthem": "National Anthem of Barbados",
- "hdi": 0.811
+ "hdi": 0.811,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bb.svg",
+ "png": "https://flagcdn.com/w320/bb.png",
+ "alt": "The flag of Barbados is composed of three equal vertical bands of ultramarine, gold and ultramarine. The head of a black trident is centered in the gold band.",
+ "emoji": "\ud83c\udde7\ud83c\udde7"
+ }
},
{
"name": {
@@ -11561,7 +11595,6 @@
"MYS"
],
"area": 5765,
- "flag": "\ud83c\udde7\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -11574,11 +11607,6 @@
"female": "Brun\u00e9ienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bn.svg",
- "png": "https://flagcdn.com/w320/bn.png",
- "alt": "The flag of Brunei has a yellow field with two adjoining diagonal bands of white and black that extend from the upper hoist side of the field to the lower fly side. The red emblem of Brunei is centered on the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bn.png"
@@ -11616,23 +11644,23 @@
"religion": [
{
"name": "sunni islam",
- "percentage": 80.7,
- "population": 376245
+ "population": 376245,
+ "percentage": 80.7
},
{
"name": "christianity",
- "percentage": 10.7,
- "population": 49886
+ "population": 49886,
+ "percentage": 10.7
},
{
"name": "buddhism",
- "percentage": 7.8,
- "population": 36366
+ "population": 36366,
+ "percentage": 7.8
},
{
"name": "indigenous beliefs",
- "percentage": 0.8,
- "population": 3730
+ "population": 3730,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -11655,7 +11683,8 @@
{
"title": "Sultan of Brunei",
"name": "Hassanal Bolkiah"
- },{
+ },
+ {
"title": "Prime Minister of Brunei",
"name": "Hassanal Bolkiah"
},
@@ -11676,7 +11705,14 @@
},
"nationalHoliday": "1984-02-23",
"anthem": "Allah Peliharakan Sultan",
- "hdi": 0.837
+ "hdi": 0.837,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bn.svg",
+ "png": "https://flagcdn.com/w320/bn.png",
+ "alt": "The flag of Brunei has a yellow field with two adjoining diagonal bands of white and black that extend from the upper hoist side of the field to the lower fly side. The red emblem of Brunei is centered on the field.",
+ "emoji": "\ud83c\udde7\ud83c\uddf3"
+ }
},
{
"name": {
@@ -11887,7 +11923,6 @@
"IND"
],
"area": 38394,
- "flag": "\ud83c\udde7\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -11900,11 +11935,6 @@
"female": "Bhoutanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bt.svg",
- "png": "https://flagcdn.com/w320/bt.png",
- "alt": "The flag of Bhutan is divided diagonally, from the lower hoist-side corner to the upper fly-side corner, into an upper yellow and a lower orange triangle. A fly-side facing white dragon holding four jewels in its claws is situated along the boundary of the two triangles."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bt.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bt.png"
@@ -11951,23 +11981,23 @@
"religion": [
{
"name": "buddhism",
- "percentage": 74.7,
- "population": 580782
+ "population": 580782,
+ "percentage": 74.7
},
{
"name": "hinduism",
- "percentage": 22.6,
- "population": 175712
+ "population": 175712,
+ "percentage": 22.6
},
{
"name": "bon",
- "percentage": 1.9,
- "population": 14772
+ "population": 14772,
+ "percentage": 1.9
},
{
"name": "others",
- "percentage": 0.8,
- "population": 6220
+ "population": 6220,
+ "percentage": 0.8
}
],
"ethnicity": [],
@@ -11991,7 +12021,14 @@
},
"nationalHoliday": "1907-12-17",
"anthem": "Druk Tsenden",
- "hdi": 0.698
+ "hdi": 0.698,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bt.svg",
+ "png": "https://flagcdn.com/w320/bt.png",
+ "alt": "The flag of Bhutan is divided diagonally, from the lower hoist-side corner to the upper fly-side corner, into an upper yellow and a lower orange triangle. A fly-side facing white dragon holding four jewels in its claws is situated along the boundary of the two triangles.",
+ "emoji": "\ud83c\udde7\ud83c\uddf9"
+ }
},
{
"name": {
@@ -12184,7 +12221,6 @@
"landlocked": false,
"borders": [],
"area": 49,
- "flag": "\ud83c\udde7\ud83c\uddfb",
"demonyms": [
{
"lang": "eng",
@@ -12197,11 +12233,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/bv.svg",
- "png": "https://flagcdn.com/w320/bv.png",
- "alt": "The flag of Bouvet Island has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -12249,7 +12280,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "NOR",
+ "flag": {
+ "svg": "https://flagcdn.com/bv.svg",
+ "png": "https://flagcdn.com/w320/bv.png",
+ "alt": "The flag of Bouvet Island has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\udde7\ud83c\uddfb"
+ }
},
{
"name": {
@@ -12469,7 +12507,6 @@
"ZWE"
],
"area": 581730,
- "flag": "\ud83c\udde7\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -12482,11 +12519,6 @@
"female": "Botswanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/bw.svg",
- "png": "https://flagcdn.com/w320/bw.png",
- "alt": "The flag of Botswana has a light blue field with a white-edged black horizontal band across its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/bw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/bw.png"
@@ -12539,28 +12571,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 79.1,
- "population": 1866451
+ "population": 1866451,
+ "percentage": 79.1
},
{
"name": "no religion",
- "percentage": 15.2,
- "population": 358661
+ "population": 358661,
+ "percentage": 15.2
},
{
"name": "badimo",
- "percentage": 4.1,
- "population": 96744
+ "population": 96744,
+ "percentage": 4.1
},
{
"name": "bah\u00e1\u02bc\u00ed fatih",
- "percentage": 1.4,
- "population": 33035
+ "population": 33035,
+ "percentage": 1.4
},
{
"name": "unspecified",
- "percentage": 0.3,
- "population": 7079
+ "population": 7079,
+ "percentage": 0.3
}
],
"ethnicity": [
@@ -12601,7 +12633,14 @@
},
"nationalHoliday": "1966-09-30",
"anthem": "Fatshe leno la rona",
- "hdi": 0.731
+ "hdi": 0.731,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/bw.svg",
+ "png": "https://flagcdn.com/w320/bw.png",
+ "alt": "The flag of Botswana has a light blue field with a white-edged black horizontal band across its center.",
+ "emoji": "\ud83c\udde7\ud83c\uddfc"
+ }
},
{
"name": {
@@ -12823,7 +12862,6 @@
"SDN"
],
"area": 622984,
- "flag": "\ud83c\udde8\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -12836,11 +12874,6 @@
"female": "Centrafricaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cf.svg",
- "png": "https://flagcdn.com/w320/cf.png",
- "alt": "The flag of Central African Republic is composed of four equal horizontal bands of blue, white, green and yellow intersected at the center by a vertical red band of equal size as the horizontal bands. A yellow five-pointed star is situated on the hoist side of the blue band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cf.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cf.png"
@@ -12893,23 +12926,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 73.2,
- "population": 4136501
+ "population": 4136501,
+ "percentage": 73.2
},
{
"name": "islam",
- "percentage": 13.9,
- "population": 785483
+ "population": 785483,
+ "percentage": 13.9
},
{
"name": "traditional faiths",
- "percentage": 12.0,
- "population": 678115
+ "population": 678115,
+ "percentage": 12.0
},
{
"name": "other",
- "percentage": 0.9,
- "population": 50859
+ "population": 50859,
+ "percentage": 0.9
}
],
"ethnicity": [],
@@ -12933,7 +12966,14 @@
},
"nationalHoliday": "1958-12-01",
"anthem": "La Renaissance",
- "hdi": 0.414
+ "hdi": 0.414,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cf.svg",
+ "png": "https://flagcdn.com/w320/cf.png",
+ "alt": "The flag of Central African Republic is composed of four equal horizontal bands of blue, white, green and yellow intersected at the center by a vertical red band of equal size as the horizontal bands. A yellow five-pointed star is situated on the hoist side of the blue band.",
+ "emoji": "\ud83c\udde8\ud83c\uddeb"
+ }
},
{
"name": {
@@ -13148,7 +13188,6 @@
"USA"
],
"area": 9984670,
- "flag": "\ud83c\udde8\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -13161,11 +13200,6 @@
"female": "Canadienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ca.svg",
- "png": "https://flagcdn.com/w320/ca.png",
- "alt": "The flag of Canada is composed of a red vertical band on the hoist and fly sides and a central white square that is twice the width of the vertical bands. A large eleven-pointed red maple leaf is centered in the white square."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ca.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ca.png"
@@ -13243,7 +13277,14 @@
},
"nationalHoliday": "1867-07-01",
"anthem": "O Canada",
- "hdi": 0.939
+ "hdi": 0.939,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ca.svg",
+ "png": "https://flagcdn.com/w320/ca.png",
+ "alt": "The flag of Canada is composed of a red vertical band on the hoist and fly sides and a central white square that is twice the width of the vertical bands. A large eleven-pointed red maple leaf is centered in the white square.",
+ "emoji": "\ud83c\udde8\ud83c\udde6"
+ }
},
{
"name": {
@@ -13447,7 +13488,6 @@
"landlocked": false,
"borders": [],
"area": 14,
- "flag": "\ud83c\udde8\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -13460,11 +13500,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/cc.svg",
- "png": "https://flagcdn.com/w320/cc.png",
- "alt": "The flag of the Cocos (Keeling) Islands consists of a green field with a palm tree on a gold disc in the canton, a gold crescent moon in the center of the flag, and a gold southern cross in the fly side."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -13515,7 +13550,14 @@
},
"nationalHoliday": "",
"anthem": "Onward our island",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "AUS",
+ "flag": {
+ "svg": "https://flagcdn.com/cc.svg",
+ "png": "https://flagcdn.com/w320/cc.png",
+ "alt": "The flag of the Cocos (Keeling) Islands consists of a green field with a palm tree on a gold disc in the canton, a gold crescent moon in the center of the flag, and a gold southern cross in the fly side.",
+ "emoji": "\ud83c\udde8\ud83c\udde8"
+ }
},
{
"name": {
@@ -13761,7 +13803,6 @@
"DEU"
],
"area": 41291,
- "flag": "\ud83c\udde8\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -13774,11 +13815,6 @@
"female": "Suisse"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ch.svg",
- "png": "https://flagcdn.com/w320/ch.png",
- "alt": "The flag of Switzerland is square shaped. It features a white Swiss cross centered on a red field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ch.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ch.png"
@@ -13825,28 +13861,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 54.7,
- "population": 4956147
+ "population": 4956147,
+ "percentage": 54.7
},
{
"name": "no religion",
- "percentage": 36.8,
- "population": 3334300
+ "population": 3334300,
+ "percentage": 36.8
},
{
"name": "islam",
- "percentage": 6.0,
- "population": 543636
+ "population": 543636,
+ "percentage": 6.0
},
{
"name": "other religions",
- "percentage": 1.5,
- "population": 135909
+ "population": 135909,
+ "percentage": 1.5
},
{
"name": "unanswered",
- "percentage": 0.9,
- "population": 81545
+ "population": 81545,
+ "percentage": 0.9
}
],
"ethnicity": [],
@@ -13874,7 +13910,14 @@
},
"nationalHoliday": "1291-08-01",
"anthem": "Swiss Psalm",
- "hdi": 0.97
+ "hdi": 0.97,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ch.svg",
+ "png": "https://flagcdn.com/w320/ch.png",
+ "alt": "The flag of Switzerland is square shaped. It features a white Swiss cross centered on a red field.",
+ "emoji": "\ud83c\udde8\ud83c\udded"
+ }
},
{
"name": {
@@ -14082,7 +14125,6 @@
"PER"
],
"area": 756102,
- "flag": "\ud83c\udde8\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -14095,11 +14137,6 @@
"female": "Chilienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cl.svg",
- "png": "https://flagcdn.com/w320/cl.png",
- "alt": "The flag of Chile is composed of two equal horizontal bands of white and red, with a blue square of the same height as the white band superimposed in the canton. A white five-pointed star is centered in the blue square."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cl.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cl.png"
@@ -14155,18 +14192,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 70.0,
- "population": 13740712
+ "population": 13740712,
+ "percentage": 70.0
},
{
"name": "no religion",
- "percentage": 26.0,
- "population": 5103693
+ "population": 5103693,
+ "percentage": 26.0
},
{
"name": "other",
- "percentage": 4.0,
- "population": 785184
+ "population": 785184,
+ "percentage": 4.0
}
],
"ethnicity": [],
@@ -14190,7 +14227,14 @@
},
"nationalHoliday": "1810-02-12",
"anthem": "Himno Nacional de Chile",
- "hdi": 0.878
+ "hdi": 0.878,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cl.svg",
+ "png": "https://flagcdn.com/w320/cl.png",
+ "alt": "The flag of Chile is composed of two equal horizontal bands of white and red, with a blue square of the same height as the white band superimposed in the canton. A white five-pointed star is centered in the blue square.",
+ "emoji": "\ud83c\udde8\ud83c\uddf1"
+ }
},
{
"name": {
@@ -14414,7 +14458,6 @@
"VNM"
],
"area": 9706961,
- "flag": "\ud83c\udde8\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -14427,11 +14470,6 @@
"female": "Chinoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cn.svg",
- "png": "https://flagcdn.com/w320/cn.png",
- "alt": "The flag of China has a red field. In the canton are five yellow five-pointed stars \u2014 a large star and four smaller stars arranged in a vertical arc on the fly side of the large star."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cn.png"
@@ -14532,7 +14570,14 @@
},
"nationalHoliday": "1949-10-01",
"anthem": "March of the Volunteers",
- "hdi": 0.797
+ "hdi": 0.797,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cn.svg",
+ "png": "https://flagcdn.com/w320/cn.png",
+ "alt": "The flag of China has a red field. In the canton are five yellow five-pointed stars \u2014 a large star and four smaller stars arranged in a vertical arc on the fly side of the large star.",
+ "emoji": "\ud83c\udde8\ud83c\uddf3"
+ }
},
{
"name": {
@@ -14744,7 +14789,6 @@
"MLI"
],
"area": 322462,
- "flag": "\ud83c\udde8\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -14757,11 +14801,6 @@
"female": "Ivoirienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ci.svg",
- "png": "https://flagcdn.com/w320/ci.png",
- "alt": "The flag of Ivory Coast is composed of three equal vertical bands of orange, white and green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ci.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ci.png"
@@ -14814,33 +14853,33 @@
"religion": [
{
"name": "islam",
- "percentage": 42.5,
- "population": 13387500
+ "population": 13387500,
+ "percentage": 42.5
},
{
"name": "christianity",
- "percentage": 39.8,
- "population": 12537000
+ "population": 12537000,
+ "percentage": 39.8
},
{
"name": "no religion",
- "percentage": 12.6,
- "population": 3969000
+ "population": 3969000,
+ "percentage": 12.6
},
{
"name": "traditional faiths",
- "percentage": 2.2,
- "population": 693000
+ "population": 693000,
+ "percentage": 2.2
},
{
"name": "unanswered",
- "percentage": 2.2,
- "population": 693000
+ "population": 693000,
+ "percentage": 2.2
},
{
"name": "other religions",
- "percentage": 0.7,
- "population": 220500
+ "population": 220500,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -14877,7 +14916,14 @@
},
"nationalHoliday": "1960-08-07",
"anthem": "L'Abidjanaise",
- "hdi": 0.582
+ "hdi": 0.582,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ci.svg",
+ "png": "https://flagcdn.com/w320/ci.png",
+ "alt": "The flag of Ivory Coast is composed of three equal vertical bands of orange, white and green.",
+ "emoji": "\ud83c\udde8\ud83c\uddee"
+ }
},
{
"name": {
@@ -15099,7 +15145,6 @@
"NGA"
],
"area": 475442,
- "flag": "\ud83c\udde8\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -15112,11 +15157,6 @@
"female": "Camerounaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cm.svg",
- "png": "https://flagcdn.com/w320/cm.png",
- "alt": "The flag of Cameroon is composed of three equal vertical bands of green, red and yellow, with a yellow five-pointed star in the center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cm.png"
@@ -15165,28 +15205,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 66.3,
- "population": 20544925
+ "population": 20544925,
+ "percentage": 66.3
},
{
"name": "islam",
- "percentage": 30.6,
- "population": 9482273
+ "population": 9482273,
+ "percentage": 30.6
},
{
"name": "traditional faiths",
- "percentage": 1.3,
- "population": 402842
+ "population": 402842,
+ "percentage": 1.3
},
{
"name": "no religion",
- "percentage": 1.1,
- "population": 340866
+ "population": 340866,
+ "percentage": 1.1
},
{
"name": "others",
- "percentage": 0.7,
- "population": 216915
+ "population": 216915,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -15255,7 +15295,14 @@
},
"nationalHoliday": "1972-05-20",
"anthem": "Chant de Ralliement",
- "hdi": 0.588
+ "hdi": 0.588,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cm.svg",
+ "png": "https://flagcdn.com/w320/cm.png",
+ "alt": "The flag of Cameroon is composed of three equal vertical bands of green, red and yellow, with a yellow five-pointed star in the center.",
+ "emoji": "\ud83c\udde8\ud83c\uddf2"
+ }
},
{
"name": {
@@ -15515,7 +15562,6 @@
"ZMB"
],
"area": 2344858,
- "flag": "\ud83c\udde8\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -15528,11 +15574,6 @@
"female": "Congolaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cd.svg",
- "png": "https://flagcdn.com/w320/cd.png",
- "alt": "The flag of the Democratic Republic of the Congo has a sky-blue field with a yellow-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. A large five-pointed yellow star is situated above the diagonal band on the upper hoist side of the field."
- },
"coatOfArms": {
"svg": "",
"png": ""
@@ -15582,23 +15623,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 95.4,
- "population": 109126305
+ "population": 109126305,
+ "percentage": 95.4
},
{
"name": "traditional faiths",
- "percentage": 2.6,
- "population": 2974092
+ "population": 2974092,
+ "percentage": 2.6
},
{
"name": "islam",
- "percentage": 1.5,
- "population": 1715822
+ "population": 1715822,
+ "percentage": 1.5
},
{
"name": "others",
- "percentage": 0.5,
- "population": 571941
+ "population": 571941,
+ "percentage": 0.5
}
],
"ethnicity": [],
@@ -15623,7 +15664,14 @@
},
"nationalHoliday": null,
"anthem": "Debout Congolais",
- "hdi": 0.522
+ "hdi": 0.522,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cd.svg",
+ "png": "https://flagcdn.com/w320/cd.png",
+ "alt": "The flag of the Democratic Republic of the Congo has a sky-blue field with a yellow-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. A large five-pointed yellow star is situated above the diagonal band on the upper hoist side of the field.",
+ "emoji": "\ud83c\udde8\ud83c\udde9"
+ }
},
{
"name": {
@@ -15855,7 +15903,6 @@
"GAB"
],
"area": 342000,
- "flag": "\ud83c\udde8\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -15868,11 +15915,6 @@
"female": "Congolaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cg.svg",
- "png": "https://flagcdn.com/w320/cg.png",
- "alt": "The flag of the Republic of the Congo features a yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cd.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cd.png"
@@ -15921,28 +15963,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 87.1,
- "population": 5425271
+ "population": 5425271,
+ "percentage": 87.1
},
{
"name": "no religion",
- "percentage": 8.0,
- "population": 498303
+ "population": 498303,
+ "percentage": 8.0
},
{
"name": "traditional faiths",
- "percentage": 2.7,
- "population": 168177
+ "population": 168177,
+ "percentage": 2.7
},
{
"name": "islam",
- "percentage": 1.2,
- "population": 74745
+ "population": 74745,
+ "percentage": 1.2
},
{
"name": "others",
- "percentage": 1.0,
- "population": 62288
+ "population": 62288,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -15988,7 +16030,14 @@
},
"nationalHoliday": null,
"anthem": "La Congolaise",
- "hdi": 0.649
+ "hdi": 0.649,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cg.svg",
+ "png": "https://flagcdn.com/w320/cg.png",
+ "alt": "The flag of the Republic of the Congo features a yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively.",
+ "emoji": "\ud83c\udde8\ud83c\uddec"
+ }
},
{
"name": {
@@ -16207,7 +16256,6 @@
"landlocked": false,
"borders": [],
"area": 236,
- "flag": "\ud83c\udde8\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -16220,11 +16268,6 @@
"female": "Cookienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ck.svg",
- "png": "https://flagcdn.com/w320/ck.png",
- "alt": "The flag of the Cook Islands is blue with the UK flag in the canton and a large circle of 15 white five-pointed stars centered in the fly."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ck.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ck.png"
@@ -16289,7 +16332,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Te Atua Mou E",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ck.svg",
+ "png": "https://flagcdn.com/w320/ck.png",
+ "alt": "The flag of the Cook Islands is blue with the UK flag in the canton and a large circle of 15 white five-pointed stars centered in the fly.",
+ "emoji": "\ud83c\udde8\ud83c\uddf0"
+ }
},
{
"name": {
@@ -16499,7 +16549,6 @@
"VEN"
],
"area": 1141748,
- "flag": "\ud83c\udde8\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -16512,11 +16561,6 @@
"female": "Colombienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/co.svg",
- "png": "https://flagcdn.com/w320/co.png",
- "alt": "The flag of Colombia is composed of three horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/co.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/co.png"
@@ -16571,23 +16615,23 @@
"religion": [
{
"name": "catholicism",
- "percentage": 70.0,
- "population": 36887166
+ "population": 36887166,
+ "percentage": 70.0
},
{
"name": "christian",
- "percentage": 17.0,
- "population": 8958312
+ "population": 8958312,
+ "percentage": 17.0
},
{
"name": "no religion",
- "percentage": 11.0,
- "population": 5796555
+ "population": 5796555,
+ "percentage": 11.0
},
{
"name": "other",
- "percentage": 1.9,
- "population": 1001223
+ "population": 1001223,
+ "percentage": 1.9
}
],
"ethnicity": [
@@ -16633,7 +16677,14 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of Colombia",
- "hdi": 0.788
+ "hdi": 0.788,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/co.svg",
+ "png": "https://flagcdn.com/w320/co.png",
+ "alt": "The flag of Colombia is composed of three horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands.",
+ "emoji": "\ud83c\udde8\ud83c\uddf4"
+ }
},
{
"name": {
@@ -16861,7 +16912,6 @@
"landlocked": false,
"borders": [],
"area": 1862,
- "flag": "\ud83c\uddf0\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -16874,11 +16924,6 @@
"female": "Comorienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/km.svg",
- "png": "https://flagcdn.com/w320/km.png",
- "alt": "The flag of Comoros is composed of four equal horizontal bands of yellow, white, red and blue, with a green isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a fly-side facing white crescent and four five-pointed white stars arranged in a vertical line along the opening of the crescent."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/km.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/km.png"
@@ -16969,7 +17014,14 @@
},
"nationalHoliday": null,
"anthem": "Udzima wa ya Masiwa",
- "hdi": 0.603
+ "hdi": 0.603,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/km.svg",
+ "png": "https://flagcdn.com/w320/km.png",
+ "alt": "The flag of Comoros is composed of four equal horizontal bands of yellow, white, red and blue, with a green isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a fly-side facing white crescent and four five-pointed white stars arranged in a vertical line along the opening of the crescent.",
+ "emoji": "\ud83c\uddf0\ud83c\uddf2"
+ }
},
{
"name": {
@@ -17173,7 +17225,6 @@
"landlocked": false,
"borders": [],
"area": 4033,
- "flag": "\ud83c\udde8\ud83c\uddfb",
"demonyms": [
{
"lang": "eng",
@@ -17186,11 +17237,6 @@
"female": "Cap-verdienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cv.svg",
- "png": "https://flagcdn.com/w320/cv.png",
- "alt": "The flag of Cape Verde is composed of five horizontal bands of blue, white, red, white and blue in the ratio of 6:1:1:1:3. A ring of ten five-pointed yellow stars is centered at three-eighth of the height from the bottom edge and three-eighth of the width from the hoist end of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cv.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cv.png"
@@ -17239,23 +17285,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 81.7,
- "population": 454242
+ "population": 454242,
+ "percentage": 81.7
},
{
"name": "no religion",
- "percentage": 15.6,
- "population": 86734
+ "population": 86734,
+ "percentage": 15.6
},
{
"name": "islam",
- "percentage": 1.3,
- "population": 7228
+ "population": 7228,
+ "percentage": 1.3
},
{
"name": "others",
- "percentage": 1.2,
- "population": 6672
+ "population": 6672,
+ "percentage": 1.2
}
],
"ethnicity": [],
@@ -17280,7 +17326,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "C\u00e2ntico da Liberdade",
- "hdi": 0.668
+ "hdi": 0.668,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cv.svg",
+ "png": "https://flagcdn.com/w320/cv.png",
+ "alt": "The flag of Cape Verde is composed of five horizontal bands of blue, white, red, white and blue in the ratio of 6:1:1:1:3. A ring of ten five-pointed yellow stars is centered at three-eighth of the height from the bottom edge and three-eighth of the width from the hoist end of the field.",
+ "emoji": "\ud83c\udde8\ud83c\uddfb"
+ }
},
{
"name": {
@@ -17487,7 +17540,6 @@
"PAN"
],
"area": 51100,
- "flag": "\ud83c\udde8\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -17500,11 +17552,6 @@
"female": "Costaricaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cr.svg",
- "png": "https://flagcdn.com/w320/cr.png",
- "alt": "The flag of Costa Rica is composed of five horizontal bands of blue, white, red, white and blue. The central red band is twice the height of the other four bands. The national coat of arms is placed in a white elliptical disk toward the hoist side of the red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cr.png"
@@ -17549,18 +17596,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 72.6,
- "population": 3822807
+ "population": 3822807,
+ "percentage": 72.6
},
{
"name": "no religion",
- "percentage": 27.0,
- "population": 1421705
+ "population": 1421705,
+ "percentage": 27.0
},
{
"name": "others",
- "percentage": 0.4,
- "population": 21062
+ "population": 21062,
+ "percentage": 0.4
}
],
"ethnicity": [
@@ -17606,7 +17653,14 @@
},
"nationalHoliday": null,
"anthem": "Noble patria, tu hermosa bandera",
- "hdi": 0.833
+ "hdi": 0.833,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cr.svg",
+ "png": "https://flagcdn.com/w320/cr.png",
+ "alt": "The flag of Costa Rica is composed of five horizontal bands of blue, white, red, white and blue. The central red band is twice the height of the other four bands. The national coat of arms is placed in a white elliptical disk toward the hoist side of the red band.",
+ "emoji": "\ud83c\udde8\ud83c\uddf7"
+ }
},
{
"name": {
@@ -17815,7 +17869,6 @@
"landlocked": false,
"borders": [],
"area": 109884,
- "flag": "\ud83c\udde8\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -17828,11 +17881,6 @@
"female": "Cubaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cu.svg",
- "png": "https://flagcdn.com/w320/cu.png",
- "alt": "The flag of Cuba is composed of five equal horizontal bands of blue alternating with white and a red equilateral triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a white five-pointed star at its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cu.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cu.png"
@@ -17864,23 +17912,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 58.9,
- "population": 5741576
+ "population": 5741576,
+ "percentage": 58.9
},
{
"name": "no religion",
- "percentage": 23.2,
- "population": 2261538
+ "population": 2261538,
+ "percentage": 23.2
},
{
"name": "folk religion",
- "percentage": 17.6,
- "population": 1715649
+ "population": 1715649,
+ "percentage": 17.6
},
{
"name": "other",
- "percentage": 0.3,
- "population": 29244
+ "population": 29244,
+ "percentage": 0.3
}
],
"ethnicity": [
@@ -17914,7 +17962,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "El Himno de Bayamo",
- "hdi": 0.762
+ "hdi": 0.762,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cu.svg",
+ "png": "https://flagcdn.com/w320/cu.png",
+ "alt": "The flag of Cuba is composed of five equal horizontal bands of blue alternating with white and a red equilateral triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a white five-pointed star at its center.",
+ "emoji": "\ud83c\udde8\ud83c\uddfa"
+ }
},
{
"name": {
@@ -18133,7 +18188,6 @@
"landlocked": false,
"borders": [],
"area": 444,
- "flag": "\ud83c\udde8\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -18146,11 +18200,6 @@
"female": "Curacienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cw.svg",
- "png": "https://flagcdn.com/w320/cw.png",
- "alt": "The flag of Cura\u00e7ao shows a blue field, on which a horizontal yellow band below the center divides the flag. Two five-pointed white stars, the smaller above and to the left of the larger, appear in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cw.png"
@@ -18182,38 +18231,38 @@
"religion": [
{
"name": "christianity",
- "percentage": 90.0,
- "population": 137564
+ "population": 137564,
+ "percentage": 90.0
},
{
"name": "no religion",
- "percentage": 6.0,
- "population": 9171
+ "population": 9171,
+ "percentage": 6.0
},
{
"name": "hinduism",
- "percentage": 2.0,
- "population": 3057
+ "population": 3057,
+ "percentage": 2.0
},
{
"name": "islam",
- "percentage": 0.5,
- "population": 764
+ "population": 764,
+ "percentage": 0.5
},
{
"name": "judaism",
- "percentage": 0.2,
- "population": 306
+ "population": 306,
+ "percentage": 0.2
},
{
"name": "other",
- "percentage": 0.8,
- "population": 1223
+ "population": 1223,
+ "percentage": 0.8
},
{
"name": "not stated",
- "percentage": 0.6,
- "population": 917
+ "population": 917,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -18275,7 +18324,14 @@
},
"nationalHoliday": null,
"anthem": "Himno di K\u00f2rsou",
- "hdi": 0.811
+ "hdi": 0.811,
+ "sovereignState": "NLD",
+ "flag": {
+ "svg": "https://flagcdn.com/cw.svg",
+ "png": "https://flagcdn.com/w320/cw.png",
+ "alt": "The flag of Cura\u00e7ao shows a blue field, on which a horizontal yellow band below the center divides the flag. Two five-pointed white stars, the smaller above and to the left of the larger, appear in the canton.",
+ "emoji": "\ud83c\udde8\ud83c\uddfc"
+ }
},
{
"name": {
@@ -18478,7 +18534,6 @@
"landlocked": false,
"borders": [],
"area": 135,
- "flag": "\ud83c\udde8\ud83c\uddfd",
"demonyms": [
{
"lang": "eng",
@@ -18491,11 +18546,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/cx.svg",
- "png": "https://flagcdn.com/w320/cx.png",
- "alt": "The flag of Christmas Island is divided diagonally from upper hoist side to lower fly side. The upper triangle is green with a yellow image of a Golden Bosun Bird. The lower triangle is blue with the Southern Cross constellation. A centered yellow disk displays a green map of the country."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cx.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cx.png"
@@ -18564,7 +18614,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "AUS",
+ "flag": {
+ "svg": "https://flagcdn.com/cx.svg",
+ "png": "https://flagcdn.com/w320/cx.png",
+ "alt": "The flag of Christmas Island is divided diagonally from upper hoist side to lower fly side. The upper triangle is green with a yellow image of a Golden Bosun Bird. The lower triangle is blue with the Southern Cross constellation. A centered yellow disk displays a green map of the country.",
+ "emoji": "\ud83c\udde8\ud83c\uddfd"
+ }
},
{
"name": {
@@ -18766,7 +18823,6 @@
"landlocked": false,
"borders": [],
"area": 264,
- "flag": "\ud83c\uddf0\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -18779,11 +18835,6 @@
"female": "Ca\u00efmanienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ky.svg",
- "png": "https://flagcdn.com/w320/ky.png",
- "alt": "The flag of the Cayman Islands is composed of a blue field with the UK flag in the canton and the national coat of arms centered on the fly half. The coat of arms includes a crest with a pineapple and a turtle above a shield bearing a golden lion. Below are three green stars over white and blue wavy lines. A scroll below the shield bears the motto \"HE HATH FOUNDED IT UPON THE SEAS.\""
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ky.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ky.png"
@@ -18815,38 +18866,38 @@
"religion": [
{
"name": "christianity",
- "percentage": 67.0,
- "population": 59518
+ "population": 59518,
+ "percentage": 67.0
},
{
"name": "no religion",
- "percentage": 27.0,
- "population": 23985
+ "population": 23985,
+ "percentage": 27.0
},
{
"name": "hinduism",
- "percentage": 2.4,
- "population": 2132
+ "population": 2132,
+ "percentage": 2.4
},
{
"name": "islam",
- "percentage": 0.4,
- "population": 355
+ "population": 355,
+ "percentage": 0.4
},
{
"name": "rastafari",
- "percentage": 0.3,
- "population": 266
+ "population": 266,
+ "percentage": 0.3
},
{
"name": "judaism",
- "percentage": 0.2,
- "population": 178
+ "population": 178,
+ "percentage": 0.2
},
{
"name": "not specified",
- "percentage": 2.8,
- "population": 2487
+ "population": 2487,
+ "percentage": 2.8
}
],
"ethnicity": [
@@ -18920,7 +18971,14 @@
},
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/ky.svg",
+ "png": "https://flagcdn.com/w320/ky.png",
+ "alt": "The flag of the Cayman Islands is composed of a blue field with the UK flag in the canton and the national coat of arms centered on the fly half. The coat of arms includes a crest with a pineapple and a turtle above a shield bearing a golden lion. Below are three green stars over white and blue wavy lines. A scroll below the shield bears the motto \"HE HATH FOUNDED IT UPON THE SEAS.\"",
+ "emoji": "\ud83c\uddf0\ud83c\uddfe"
+ }
},
{
"name": {
@@ -19138,7 +19196,6 @@
"landlocked": false,
"borders": [],
"area": 9251,
- "flag": "\ud83c\udde8\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -19151,11 +19208,6 @@
"female": "Chypriote"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cy.svg",
- "png": "https://flagcdn.com/w320/cy.png",
- "alt": "The flag of Cyprus has a white field, at the center of which is a copper-colored silhouette of the Island of Cyprus above two green olive branches crossed at the stem."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cy.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cy.png"
@@ -19198,23 +19250,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 72.3,
- "population": 972418
+ "population": 972418,
+ "percentage": 72.3
},
{
"name": "islam",
- "percentage": 25.0,
- "population": 336244
+ "population": 336244,
+ "percentage": 25.0
},
{
"name": "no religion",
- "percentage": 1.9,
- "population": 25555
+ "population": 25555,
+ "percentage": 1.9
},
{
"name": "other",
- "percentage": 0.8,
- "population": 10760
+ "population": 10760,
+ "percentage": 0.8
}
],
"ethnicity": [],
@@ -19239,7 +19291,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Hymn to Liberty",
- "hdi": 0.913
+ "hdi": 0.913,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cy.svg",
+ "png": "https://flagcdn.com/w320/cy.png",
+ "alt": "The flag of Cyprus has a white field, at the center of which is a copper-colored silhouette of the Island of Cyprus above two green olive branches crossed at the stem.",
+ "emoji": "\ud83c\udde8\ud83c\uddfe"
+ }
},
{
"name": {
@@ -19459,7 +19518,6 @@
"SVK"
],
"area": 78865,
- "flag": "\ud83c\udde8\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -19472,11 +19530,6 @@
"female": "Tch\u00e8que"
}
],
- "flags": {
- "svg": "https://flagcdn.com/cz.svg",
- "png": "https://flagcdn.com/w320/cz.png",
- "alt": "The flag of Czechia is composed of two equal horizontal bands of white and red, with a blue isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end and spans about two-fifth the width of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/cz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/cz.png"
@@ -19519,23 +19572,23 @@
"religion": [
{
"name": "no religion",
- "percentage": 56.9,
- "population": 6202416
+ "population": 6202416,
+ "percentage": 56.9
},
{
"name": "christianity",
- "percentage": 11.7,
- "population": 1275365
+ "population": 1275365,
+ "percentage": 11.7
},
{
"name": "other",
- "percentage": 1.2,
- "population": 130807
+ "population": 130807,
+ "percentage": 1.2
},
{
"name": "unanswered",
- "percentage": 30.1,
- "population": 3281067
+ "population": 3281067,
+ "percentage": 30.1
}
],
"ethnicity": [
@@ -19585,7 +19638,14 @@
},
"nationalHoliday": "International Workers' Day",
"anthem": "Kde domov m\u016fj",
- "hdi": 0.915
+ "hdi": 0.915,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/cz.svg",
+ "png": "https://flagcdn.com/w320/cz.png",
+ "alt": "The flag of Czechia is composed of two equal horizontal bands of white and red, with a blue isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end and spans about two-fifth the width of the field.",
+ "emoji": "\ud83c\udde8\ud83c\uddff"
+ }
},
{
"name": {
@@ -19799,7 +19859,6 @@
"CHE"
],
"area": 357114,
- "flag": "\ud83c\udde9\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -19812,11 +19871,6 @@
"female": "Allemande"
}
],
- "flags": {
- "svg": "https://flagcdn.com/de.svg",
- "png": "https://flagcdn.com/w320/de.png",
- "alt": "The flag of Germany is composed of three equal horizontal bands of black, red and gold."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/de.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/de.png"
@@ -19879,7 +19933,14 @@
},
"nationalHoliday": "German Unity Day",
"anthem": "national anthem of Germany",
- "hdi": 0.959
+ "hdi": 0.959,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/de.svg",
+ "png": "https://flagcdn.com/w320/de.png",
+ "alt": "The flag of Germany is composed of three equal horizontal bands of black, red and gold.",
+ "emoji": "\ud83c\udde9\ud83c\uddea"
+ }
},
{
"name": {
@@ -20102,7 +20163,6 @@
"SOM"
],
"area": 23200,
- "flag": "\ud83c\udde9\ud83c\uddef",
"demonyms": [
{
"lang": "eng",
@@ -20115,11 +20175,6 @@
"female": "Djiboutienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/dj.svg",
- "png": "https://flagcdn.com/w320/dj.png",
- "alt": "The flag of Djibouti is composed of two equal horizontal bands of light blue and light green, with a white isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a red five-pointed star at its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/dj.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/dj.png"
@@ -20177,13 +20232,13 @@
"religion": [
{
"name": "islam",
- "percentage": 94.0,
- "population": 1083767
+ "population": 1083767,
+ "percentage": 94.0
},
{
"name": "christianity",
- "percentage": 6.0,
- "population": 69177
+ "population": 69177,
+ "percentage": 6.0
}
],
"ethnicity": [
@@ -20221,7 +20276,14 @@
},
"nationalHoliday": null,
"anthem": "Djibouti",
- "hdi": 0.513
+ "hdi": 0.513,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/dj.svg",
+ "png": "https://flagcdn.com/w320/dj.png",
+ "alt": "The flag of Djibouti is composed of two equal horizontal bands of light blue and light green, with a white isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a red five-pointed star at its center.",
+ "emoji": "\ud83c\udde9\ud83c\uddef"
+ }
},
{
"name": {
@@ -20426,7 +20488,6 @@
"landlocked": false,
"borders": [],
"area": 751,
- "flag": "\ud83c\udde9\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -20439,11 +20500,6 @@
"female": "Dominiquaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/dm.svg",
- "png": "https://flagcdn.com/w320/dm.png",
- "alt": "The flag of Dominica has a green field with a large centered tricolor cross. The vertical and horizontal parts of the cross each comprise three bands of yellow, black and white. A red circle, bearing a hoist-side facing purple Sisserou parrot standing on a twig and encircled by ten five-pointed yellow-edged green stars, is superimposed at the center of the cross."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/dm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/dm.png"
@@ -20475,23 +20531,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 94.4,
- "population": 70475
+ "population": 70475,
+ "percentage": 94.4
},
{
"name": "folk religions",
- "percentage": 3.0,
- "population": 2240
+ "population": 2240,
+ "percentage": 3.0
},
{
"name": "other",
- "percentage": 1.7,
- "population": 1269
+ "population": 1269,
+ "percentage": 1.7
},
{
"name": "none",
- "percentage": 0.9,
- "population": 672
+ "population": 672,
+ "percentage": 0.9
}
],
"ethnicity": [
@@ -20537,7 +20593,14 @@
},
"nationalHoliday": null,
"anthem": "Isle of Beauty, Isle of Splendour",
- "hdi": 0.761
+ "hdi": 0.761,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/dm.svg",
+ "png": "https://flagcdn.com/w320/dm.png",
+ "alt": "The flag of Dominica has a green field with a large centered tricolor cross. The vertical and horizontal parts of the cross each comprise three bands of yellow, black and white. A red circle, bearing a hoist-side facing purple Sisserou parrot standing on a twig and encircled by ten five-pointed yellow-edged green stars, is superimposed at the center of the cross.",
+ "emoji": "\ud83c\udde9\ud83c\uddf2"
+ }
},
{
"name": {
@@ -20744,7 +20807,6 @@
"DEU"
],
"area": 43094,
- "flag": "\ud83c\udde9\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -20757,11 +20819,6 @@
"female": "Danoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/dk.svg",
- "png": "https://flagcdn.com/w320/dk.png",
- "alt": "The flag of Denmark has a red field with a large white cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/dk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/dk.png"
@@ -20808,18 +20865,18 @@
"religion": [
{
"name": "lutheranism",
- "percentage": 71.4,
- "population": 4284720
+ "population": 4284720,
+ "percentage": 71.4
},
{
"name": "islam",
- "percentage": 4.3,
- "population": 258043
+ "population": 258043,
+ "percentage": 4.3
},
{
"name": "other",
- "percentage": 24.3,
- "population": 1458245
+ "population": 1458245,
+ "percentage": 24.3
}
],
"ethnicity": [
@@ -20853,7 +20910,14 @@
},
"nationalHoliday": "Constitution Day",
"anthem": "Der er et yndigt land",
- "hdi": 4.0
+ "hdi": 4.0,
+ "sovereignState": "DNK",
+ "flag": {
+ "svg": "https://flagcdn.com/dk.svg",
+ "png": "https://flagcdn.com/w320/dk.png",
+ "alt": "The flag of Denmark has a red field with a large white cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\udde9\ud83c\uddf0"
+ }
},
{
"name": {
@@ -21059,7 +21123,6 @@
"HTI"
],
"area": 48671,
- "flag": "\ud83c\udde9\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -21072,11 +21135,6 @@
"female": "Dominicaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/do.svg",
- "png": "https://flagcdn.com/w320/do.png",
- "alt": "The flag of the Dominican Republic is divided into four rectangles by a centered white cross that extends to the edges of the field and bears the national coat of arms in its center. The upper hoist-side and lower fly-side rectangles are blue and the lower hoist-side and upper fly-side rectangles are red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/do.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/do.png"
@@ -21130,23 +21188,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 74.6,
- "population": 8602985
+ "population": 8602985,
+ "percentage": 74.6
},
{
"name": "no religion",
- "percentage": 22.0,
- "population": 2537073
+ "population": 2537073,
+ "percentage": 22.0
},
{
"name": "other",
- "percentage": 1.4,
- "population": 161450
+ "population": 161450,
+ "percentage": 1.4
},
{
"name": "unspecified",
- "percentage": 2.0,
- "population": 230643
+ "population": 230643,
+ "percentage": 2.0
}
],
"ethnicity": [
@@ -21196,7 +21254,14 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of the Dominican Republic",
- "hdi": 0.776
+ "hdi": 0.776,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/do.svg",
+ "png": "https://flagcdn.com/w320/do.png",
+ "alt": "The flag of the Dominican Republic is divided into four rectangles by a centered white cross that extends to the edges of the field and bears the national coat of arms in its center. The upper hoist-side and lower fly-side rectangles are blue and the lower hoist-side and upper fly-side rectangles are red.",
+ "emoji": "\ud83c\udde9\ud83c\uddf4"
+ }
},
{
"name": {
@@ -21409,7 +21474,6 @@
"MAR"
],
"area": 2381741,
- "flag": "\ud83c\udde9\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -21422,11 +21486,6 @@
"female": "Alg\u00e9rienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/dz.svg",
- "png": "https://flagcdn.com/w320/dz.png",
- "alt": "The flag of Algeria features two equal vertical bands of green and white. A five-pointed red star within a fly-side facing red crescent is centered over the two-color boundary."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/dz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/dz.png"
@@ -21484,8 +21543,8 @@
"religion": [
{
"name": "sunni islam",
- "percentage": 99.0,
- "population": 46926000
+ "population": 46926000,
+ "percentage": 99.0
}
],
"ethnicity": [],
@@ -21510,7 +21569,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Kassaman",
- "hdi": 0.763
+ "hdi": 0.763,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/dz.svg",
+ "png": "https://flagcdn.com/w320/dz.png",
+ "alt": "The flag of Algeria features two equal vertical bands of green and white. A five-pointed red star within a fly-side facing red crescent is centered over the two-color boundary.",
+ "emoji": "\ud83c\udde9\ud83c\uddff"
+ }
},
{
"name": {
@@ -21717,7 +21783,6 @@
"PER"
],
"area": 276841,
- "flag": "\ud83c\uddea\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -21730,11 +21795,6 @@
"female": "\u00c9quatorienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ec.svg",
- "png": "https://flagcdn.com/w320/ec.png",
- "alt": "The flag of Ecuador is composed of the horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands. The Ecuadorian coat of arms is superimposed in the center of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ec.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ec.png"
@@ -21783,18 +21843,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 89.3,
- "population": 15612610
+ "population": 15612610,
+ "percentage": 89.3
},
{
"name": "no religion",
- "percentage": 8.9,
- "population": 1556016
+ "population": 1556016,
+ "percentage": 8.9
},
{
"name": "other",
- "percentage": 2.0,
- "population": 349667
+ "population": 349667,
+ "percentage": 2.0
}
],
"ethnicity": [
@@ -21844,7 +21904,14 @@
},
"nationalHoliday": null,
"anthem": "Salve, Oh Patria",
- "hdi": 0.777
+ "hdi": 0.777,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ec.svg",
+ "png": "https://flagcdn.com/w320/ec.png",
+ "alt": "The flag of Ecuador is composed of the horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands. The Ecuadorian coat of arms is superimposed in the center of the field.",
+ "emoji": "\ud83c\uddea\ud83c\udde8"
+ }
},
{
"name": {
@@ -22053,7 +22120,6 @@
"SDN"
],
"area": 1002450,
- "flag": "\ud83c\uddea\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -22066,11 +22132,6 @@
"female": "\u00c9gyptienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/eg.svg",
- "png": "https://flagcdn.com/w320/eg.png",
- "alt": "The flag of Egypt is composed of three equal horizontal bands of red, white and black, with Egypt's national emblem \u2014 a hoist-side facing gold eagle of Saladin \u2014 centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/eg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/eg.png"
@@ -22148,7 +22209,14 @@
},
"nationalHoliday": null,
"anthem": "Bilady, Bilady, Bilady",
- "hdi": 0.754
+ "hdi": 0.754,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/eg.svg",
+ "png": "https://flagcdn.com/w320/eg.png",
+ "alt": "The flag of Egypt is composed of three equal horizontal bands of red, white and black, with Egypt's national emblem \u2014 a hoist-side facing gold eagle of Saladin \u2014 centered in the white band.",
+ "emoji": "\ud83c\uddea\ud83c\uddec"
+ }
},
{
"name": {
@@ -22381,7 +22449,6 @@
"SDN"
],
"area": 117600,
- "flag": "\ud83c\uddea\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -22394,11 +22461,6 @@
"female": "\u00c9rythr\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/er.svg",
- "png": "https://flagcdn.com/w320/er.png",
- "alt": "The flag of Eritrea comprises three triangles \u2014 a large red isosceles triangle with its base spanning the hoist end and its apex at the midpoint on the fly end, and a green and blue right-angled triangle above and beneath the red triangle. On the hoist side of the red triangle is a golden vertical olive branch encircled by a golden olive wreath."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/er.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/er.png"
@@ -22491,7 +22553,14 @@
"gdp": null,
"nationalHoliday": "Independence Day",
"anthem": "Ertra, Ertra, Ertra",
- "hdi": 0.503
+ "hdi": 0.503,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/er.svg",
+ "png": "https://flagcdn.com/w320/er.png",
+ "alt": "The flag of Eritrea comprises three triangles \u2014 a large red isosceles triangle with its base spanning the hoist end and its apex at the midpoint on the fly end, and a green and blue right-angled triangle above and beneath the red triangle. On the hoist side of the red triangle is a golden vertical olive branch encircled by a golden olive wreath.",
+ "emoji": "\ud83c\uddea\ud83c\uddf7"
+ }
},
{
"name": {
@@ -22731,7 +22800,6 @@
"MAR"
],
"area": 266000,
- "flag": "\ud83c\uddea\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -22744,11 +22812,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/eh.svg",
- "png": "https://flagcdn.com/w320/eh.png",
- "alt": "The flag of Western Sahara has three equal horizontal stripes of black, white, and green overlaid by a red triangle issuing from the hoist. Centered in the white band is a red fly-facing crescent surrounding a red five-pointed star."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -22799,7 +22862,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/eh.svg",
+ "png": "https://flagcdn.com/w320/eh.png",
+ "alt": "The flag of Western Sahara has three equal horizontal stripes of black, white, and green overlaid by a red triangle issuing from the hoist. Centered in the white band is a red fly-facing crescent surrounding a red five-pointed star.",
+ "emoji": "\ud83c\uddea\ud83c\udded"
+ }
},
{
"name": {
@@ -23027,7 +23097,6 @@
"MAR"
],
"area": 505992,
- "flag": "\ud83c\uddea\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -23040,11 +23109,6 @@
"female": "Espagnole"
}
],
- "flags": {
- "svg": "https://flagcdn.com/es.svg",
- "png": "https://flagcdn.com/w320/es.png",
- "alt": "The flag of Spain is composed of three horizontal bands of red, yellow and red, with the yellow band twice the height of the red bands. In the yellow band is the national coat of arms offset slightly towards the hoist side of center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/es.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/es.png"
@@ -23088,33 +23152,33 @@
"religion": [
{
"name": "roman catholicism",
- "percentage": 58.6,
- "population": 29048445
+ "population": 29048445,
+ "percentage": 58.6
},
{
"name": "atheist",
- "percentage": 13.3,
- "population": 6592906
+ "population": 6592906,
+ "percentage": 13.3
},
{
"name": "indifferent or irreligious",
- "percentage": 11.7,
- "population": 5799775
+ "population": 5799775,
+ "percentage": 11.7
},
{
"name": "agnostic",
- "percentage": 11.1,
- "population": 5502350
+ "population": 5502350,
+ "percentage": 11.1
},
{
"name": "other religion",
- "percentage": 3.6,
- "population": 1784546
+ "population": 1784546,
+ "percentage": 3.6
},
{
"name": "unanswered",
- "percentage": 1.7,
- "population": 842702
+ "population": 842702,
+ "percentage": 1.7
}
],
"ethnicity": [],
@@ -23139,7 +23203,14 @@
},
"nationalHoliday": "Spanish National Day",
"anthem": "Marcha Real",
- "hdi": 0.918
+ "hdi": 0.918,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/es.svg",
+ "png": "https://flagcdn.com/w320/es.png",
+ "alt": "The flag of Spain is composed of three horizontal bands of red, yellow and red, with the yellow band twice the height of the red bands. In the yellow band is the national coat of arms offset slightly towards the hoist side of center.",
+ "emoji": "\ud83c\uddea\ud83c\uddf8"
+ }
},
{
"name": {
@@ -23347,7 +23418,6 @@
"RUS"
],
"area": 45227,
- "flag": "\ud83c\uddea\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -23360,11 +23430,6 @@
"female": "Estonienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ee.svg",
- "png": "https://flagcdn.com/w320/ee.png",
- "alt": "The flag of Estonia is composed of three equal horizontal bands of blue, black and white."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ee.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ee.png"
@@ -23407,23 +23472,23 @@
"religion": [
{
"name": "irreligion",
- "percentage": 58.4,
- "population": 795965
+ "population": 795965,
+ "percentage": 58.4
},
{
"name": "christianity",
- "percentage": 26.7,
- "population": 363909
+ "population": 363909,
+ "percentage": 26.7
},
{
"name": "undeclared",
- "percentage": 12.7,
- "population": 173095
+ "population": 173095,
+ "percentage": 12.7
},
{
"name": "other",
- "percentage": 2.1,
- "population": 28622
+ "population": 28622,
+ "percentage": 2.1
}
],
"ethnicity": [
@@ -23469,7 +23534,14 @@
},
"nationalHoliday": null,
"anthem": "Mu isamaa, mu \u00f5nn ja r\u00f5\u00f5m",
- "hdi": 0.905
+ "hdi": 0.905,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ee.svg",
+ "png": "https://flagcdn.com/w320/ee.png",
+ "alt": "The flag of Estonia is composed of three equal horizontal bands of blue, black and white.",
+ "emoji": "\ud83c\uddea\ud83c\uddea"
+ }
},
{
"name": {
@@ -23681,7 +23753,6 @@
"SDN"
],
"area": 1104300,
- "flag": "\ud83c\uddea\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -23694,11 +23765,6 @@
"female": "\u00c9thiopienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/et.svg",
- "png": "https://flagcdn.com/w320/et.png",
- "alt": "The flag of Ethiopia is composed of three equal horizontal bands of green, yellow and red, with the national emblem superimposed at the center of the field. The national emblem comprises a light blue circle bearing a golden-yellow pentagram with single yellow rays emanating from the angles between the points of the pentagram."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/et.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/et.png"
@@ -23747,23 +23813,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 67.3,
- "population": 91191500
+ "population": 91191500,
+ "percentage": 67.3
},
{
"name": "islam",
- "percentage": 31.3,
- "population": 42411500
+ "population": 42411500,
+ "percentage": 31.3
},
{
"name": "traditional faiths",
- "percentage": 0.6,
- "population": 813000
+ "population": 813000,
+ "percentage": 0.6
},
{
"name": "others",
- "percentage": 0.8,
- "population": 1084000
+ "population": 1084000,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -23833,7 +23899,14 @@
},
"nationalHoliday": null,
"anthem": "March Forward, Dear Mother Ethiopia",
- "hdi": 0.492
+ "hdi": 0.492,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/et.svg",
+ "png": "https://flagcdn.com/w320/et.png",
+ "alt": "The flag of Ethiopia is composed of three equal horizontal bands of green, yellow and red, with the national emblem superimposed at the center of the field. The national emblem comprises a light blue circle bearing a golden-yellow pentagram with single yellow rays emanating from the angles between the points of the pentagram.",
+ "emoji": "\ud83c\uddea\ud83c\uddf9"
+ }
},
{
"name": {
@@ -24054,7 +24127,6 @@
"RUS"
],
"area": 338455,
- "flag": "\ud83c\uddeb\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -24067,11 +24139,6 @@
"female": "Finlandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/fi.svg",
- "png": "https://flagcdn.com/w320/fi.png",
- "alt": "The flag of Finland has a white field with a large blue cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/fi.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/fi.png"
@@ -24114,18 +24181,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 64.2,
- "population": 3600476
+ "population": 3600476,
+ "percentage": 64.2
},
{
"name": "no religion",
- "percentage": 34.9,
- "population": 1957268
+ "population": 1957268,
+ "percentage": 34.9
},
{
"name": "other",
- "percentage": 2.0,
- "population": 112164
+ "population": 112164,
+ "percentage": 2.0
}
],
"ethnicity": [
@@ -24159,7 +24226,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Maamme",
- "hdi": 0.948
+ "hdi": 0.948,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/fi.svg",
+ "png": "https://flagcdn.com/w320/fi.png",
+ "alt": "The flag of Finland has a white field with a large blue cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\uddeb\ud83c\uddee"
+ }
},
{
"name": {
@@ -24387,7 +24461,6 @@
"landlocked": false,
"borders": [],
"area": 18272,
- "flag": "\ud83c\uddeb\ud83c\uddef",
"demonyms": [
{
"lang": "eng",
@@ -24400,11 +24473,6 @@
"female": "Fidjienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/fj.svg",
- "png": "https://flagcdn.com/w320/fj.png",
- "alt": "The flag of Fiji has a light blue field. It features the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton and the shield of the national coat of arms centered in the fly half."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/fj.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/fj.png"
@@ -24441,23 +24509,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 64.4,
- "population": 596522
+ "population": 596522,
+ "percentage": 64.4
},
{
"name": "hinduism",
- "percentage": 27.9,
- "population": 258431
+ "population": 258431,
+ "percentage": 27.9
},
{
"name": "islam",
- "percentage": 6.3,
- "population": 58355
+ "population": 58355,
+ "percentage": 6.3
},
{
"name": "others",
- "percentage": 1.4,
- "population": 12968
+ "population": 12968,
+ "percentage": 1.4
}
],
"ethnicity": [
@@ -24499,7 +24567,14 @@
},
"nationalHoliday": null,
"anthem": "God Bless Fiji",
- "hdi": 0.731
+ "hdi": 0.731,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/fj.svg",
+ "png": "https://flagcdn.com/w320/fj.png",
+ "alt": "The flag of Fiji has a light blue field. It features the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton and the shield of the national coat of arms centered in the fly half.",
+ "emoji": "\ud83c\uddeb\ud83c\uddef"
+ }
},
{
"name": {
@@ -24703,7 +24778,6 @@
"landlocked": false,
"borders": [],
"area": 12173,
- "flag": "\ud83c\uddeb\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -24716,11 +24790,6 @@
"female": "Malouinne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/fk.svg",
- "png": "https://flagcdn.com/w320/fk.png",
- "alt": "The flag of the Falkland Islands is blue with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms has a white ram above a ship, with a scroll at the bottom bearing the motto \"DESIRE THE RIGHT.\""
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/fk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/fk.png"
@@ -24779,7 +24848,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/fk.svg",
+ "png": "https://flagcdn.com/w320/fk.png",
+ "alt": "The flag of the Falkland Islands is blue with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms has a white ram above a ship, with a scroll at the bottom bearing the motto \"DESIRE THE RIGHT.\"",
+ "emoji": "\ud83c\uddeb\ud83c\uddf0"
+ }
},
{
"name": {
@@ -24992,7 +25068,6 @@
"CHE"
],
"area": 543908,
- "flag": "\ud83c\uddeb\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -25005,11 +25080,6 @@
"female": "Fran\u00e7aise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/fr.svg",
- "png": "https://flagcdn.com/w320/fr.png",
- "alt": "The flag of France is composed of three equal vertical bands of blue, white and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/fr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/fr.png"
@@ -25065,23 +25135,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 50.0,
- "population": 34540998
+ "population": 34540998,
+ "percentage": 50.0
},
{
"name": "irreligion",
- "percentage": 33.0,
- "population": 22797059
+ "population": 22797059,
+ "percentage": 33.0
},
{
"name": "islam",
- "percentage": 4.0,
- "population": 2763280
+ "population": 2763280,
+ "percentage": 4.0
},
{
"name": "other religions",
- "percentage": 4.0,
- "population": 2763280
+ "population": 2763280,
+ "percentage": 4.0
}
],
"ethnicity": [],
@@ -25106,7 +25176,14 @@
},
"nationalHoliday": "Bastille Day",
"anthem": "La Marseillaise",
- "hdi": 0.92
+ "hdi": 0.92,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/fr.svg",
+ "png": "https://flagcdn.com/w320/fr.png",
+ "alt": "The flag of France is composed of three equal vertical bands of blue, white and red.",
+ "emoji": "\ud83c\uddeb\ud83c\uddf7"
+ }
},
{
"name": {
@@ -25326,7 +25403,6 @@
"landlocked": false,
"borders": [],
"area": 1393,
- "flag": "\ud83c\uddeb\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -25339,11 +25415,6 @@
"female": "F\u00e9ro\u00efenne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/fo.svg",
- "png": "https://flagcdn.com/w320/fo.png",
- "alt": "The flag of the Faroe Islands is white with a red cross outlined in blue extending to the edges of the flag. The vertical part of the cross is shifted toward the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/fo.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/fo.png"
@@ -25391,7 +25462,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "DNK",
+ "flag": {
+ "svg": "https://flagcdn.com/fo.svg",
+ "png": "https://flagcdn.com/w320/fo.png",
+ "alt": "The flag of the Faroe Islands is white with a red cross outlined in blue extending to the edges of the flag. The vertical part of the cross is shifted toward the hoist side.",
+ "emoji": "\ud83c\uddeb\ud83c\uddf4"
+ }
},
{
"name": {
@@ -25595,7 +25673,6 @@
"landlocked": false,
"borders": [],
"area": 702,
- "flag": "\ud83c\uddeb\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -25608,11 +25685,6 @@
"female": "Micron\u00e9sienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/fm.svg",
- "png": "https://flagcdn.com/w320/fm.png",
- "alt": "The flag of Micronesia has a light blue field, at the center of which are four five-pointed white stars arranged in the shape of a diamond."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/fm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/fm.png"
@@ -25650,18 +25722,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 95.3,
- "population": 99558
+ "population": 99558,
+ "percentage": 95.3
},
{
"name": "folk religion",
- "percentage": 4.1,
- "population": 4283
+ "population": 4283,
+ "percentage": 4.1
},
{
"name": "none",
- "percentage": 0.6,
- "population": 627
+ "population": 627,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -25723,7 +25795,14 @@
},
"nationalHoliday": null,
"anthem": "Patriots of Micronesia",
- "hdi": 0.634
+ "hdi": 0.634,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/fm.svg",
+ "png": "https://flagcdn.com/w320/fm.png",
+ "alt": "The flag of Micronesia has a light blue field, at the center of which are four five-pointed white stars arranged in the shape of a diamond.",
+ "emoji": "\ud83c\uddeb\ud83c\uddf2"
+ }
},
{
"name": {
@@ -25931,7 +26010,6 @@
"GNQ"
],
"area": 267668,
- "flag": "\ud83c\uddec\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -25944,11 +26022,6 @@
"female": "Gabonaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ga.svg",
- "png": "https://flagcdn.com/w320/ga.png",
- "alt": "The flag of Gabon is composed of three equal horizontal bands of green, yellow and blue."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ga.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ga.png"
@@ -25997,28 +26070,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 80.2,
- "population": 1922689
+ "population": 1922689,
+ "percentage": 80.2
},
{
"name": "islam",
- "percentage": 10.8,
- "population": 258916
+ "population": 258916,
+ "percentage": 10.8
},
{
"name": "no religion",
- "percentage": 7.0,
- "population": 167816
+ "population": 167816,
+ "percentage": 7.0
},
{
"name": "traditional faiths",
- "percentage": 1.1,
- "population": 26371
+ "population": 26371,
+ "percentage": 1.1
},
{
"name": "others",
- "percentage": 0.9,
- "population": 21576
+ "population": 21576,
+ "percentage": 0.9
}
],
"ethnicity": [],
@@ -26043,7 +26116,14 @@
},
"nationalHoliday": null,
"anthem": "La Concorde",
- "hdi": 0.733
+ "hdi": 0.733,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ga.svg",
+ "png": "https://flagcdn.com/w320/ga.png",
+ "alt": "The flag of Gabon is composed of three equal horizontal bands of green, yellow and blue.",
+ "emoji": "\ud83c\uddec\ud83c\udde6"
+ }
},
{
"name": {
@@ -26249,7 +26329,6 @@
"IRL"
],
"area": 244376,
- "flag": "\ud83c\uddec\ud83c\udde7",
"demonyms": [
{
"lang": "eng",
@@ -26262,11 +26341,6 @@
"female": "Britannique"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gb.svg",
- "png": "https://flagcdn.com/w320/gb.png",
- "alt": "The flag of the United Kingdom \u2014 the Union Jack \u2014 has a blue field. It features the white-edged red cross of Saint George superimposed on the diagonal red cross of Saint Patrick which is superimposed on the diagonal white cross of Saint Andrew."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gb.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gb.png"
@@ -26311,48 +26385,48 @@
"religion": [
{
"name": "christianity",
- "percentage": 46.5,
- "population": 31306855
+ "population": 31306855,
+ "percentage": 46.5
},
{
"name": "no religion",
- "percentage": 37.8,
- "population": 25449443
+ "population": 25449443,
+ "percentage": 37.8
},
{
"name": "islam",
- "percentage": 6.0,
- "population": 4039594
+ "population": 4039594,
+ "percentage": 6.0
},
{
"name": "hinduism",
- "percentage": 1.6,
- "population": 1077225
+ "population": 1077225,
+ "percentage": 1.6
},
{
"name": "sikhism",
- "percentage": 0.8,
- "population": 538613
+ "population": 538613,
+ "percentage": 0.8
},
{
"name": "buddhism",
- "percentage": 0.4,
- "population": 269306
+ "population": 269306,
+ "percentage": 0.4
},
{
"name": "judaism",
- "percentage": 0.4,
- "population": 269306
+ "population": 269306,
+ "percentage": 0.4
},
{
"name": "other",
- "percentage": 0.6,
- "population": 403959
+ "population": 403959,
+ "percentage": 0.6
},
{
"name": "not stated",
- "percentage": 5.9,
- "population": 3972268
+ "population": 3972268,
+ "percentage": 5.9
}
],
"ethnicity": [
@@ -26398,7 +26472,14 @@
},
"nationalHoliday": "International Workers' Day",
"anthem": "God Save the King",
- "hdi": 0.946
+ "hdi": 0.946,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gb.svg",
+ "png": "https://flagcdn.com/w320/gb.png",
+ "alt": "The flag of the United Kingdom \u2014 the Union Jack \u2014 has a blue field. It features the white-edged red cross of Saint George superimposed on the diagonal red cross of Saint Patrick which is superimposed on the diagonal white cross of Saint Andrew.",
+ "emoji": "\ud83c\uddec\ud83c\udde7"
+ }
},
{
"name": {
@@ -26606,7 +26687,6 @@
"TUR"
],
"area": 69700,
- "flag": "\ud83c\uddec\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -26619,11 +26699,6 @@
"female": "G\u00e9orgienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ge.svg",
- "png": "https://flagcdn.com/w320/ge.png",
- "alt": "The flag of Georgia has a white field with a large centered red cross that extends to the edges and divides the field into four quarters. A small red Bolnur-Katskhuri cross is centered in each quarter."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ge.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ge.png"
@@ -26660,18 +26735,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 87.3,
- "population": 3245028
+ "population": 3245028,
+ "percentage": 87.3
},
{
"name": "islam",
- "percentage": 10.7,
- "population": 397730
+ "population": 397730,
+ "percentage": 10.7
},
{
"name": "other",
- "percentage": 2.0,
- "population": 74342
+ "population": 74342,
+ "percentage": 2.0
}
],
"ethnicity": [
@@ -26717,7 +26792,14 @@
},
"nationalHoliday": "Day of National Unity of Georgia",
"anthem": "Tavisupleba",
- "hdi": 0.844
+ "hdi": 0.844,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ge.svg",
+ "png": "https://flagcdn.com/w320/ge.png",
+ "alt": "The flag of Georgia has a white field with a large centered red cross that extends to the edges and divides the field into four quarters. A small red Bolnur-Katskhuri cross is centered in each quarter.",
+ "emoji": "\ud83c\uddec\ud83c\uddea"
+ }
},
{
"name": {
@@ -26948,7 +27030,6 @@
"landlocked": false,
"borders": [],
"area": 78,
- "flag": "\ud83c\uddec\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -26961,11 +27042,6 @@
"female": "Guernesiaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gg.svg",
- "png": "https://flagcdn.com/w320/gg.png",
- "alt": "The flag of Guernsey is white with a red cross extending to the edges. Superimposed on it is a gold equal-armed cross capped with serifs."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gg.png"
@@ -27022,7 +27098,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/gg.svg",
+ "png": "https://flagcdn.com/w320/gg.png",
+ "alt": "The flag of Guernsey is white with a red cross extending to the edges. Superimposed on it is a gold equal-armed cross capped with serifs.",
+ "emoji": "\ud83c\uddec\ud83c\uddec"
+ }
},
{
"name": {
@@ -27228,7 +27311,6 @@
"TGO"
],
"area": 238533,
- "flag": "\ud83c\uddec\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -27241,11 +27323,6 @@
"female": "Ghan\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gh.svg",
- "png": "https://flagcdn.com/w320/gh.png",
- "alt": "The flag of Ghana is composed of three equal horizontal bands of red, gold and green, with a five-pointed black star centered in the gold band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gh.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gh.png"
@@ -27294,28 +27371,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 71.3,
- "population": 24983129
+ "population": 24983129,
+ "percentage": 71.3
},
{
"name": "islam",
- "percentage": 19.9,
- "population": 6972851
+ "population": 6972851,
+ "percentage": 19.9
},
{
"name": "traditional faiths",
- "percentage": 3.2,
- "population": 1121262
+ "population": 1121262,
+ "percentage": 3.2
},
{
"name": "irreligion",
- "percentage": 1.1,
- "population": 385434
+ "population": 385434,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 4.5,
- "population": 1576775
+ "population": 1576775,
+ "percentage": 4.5
}
],
"ethnicity": [
@@ -27377,7 +27454,14 @@
},
"nationalHoliday": null,
"anthem": "God Bless Our Homeland Ghana",
- "hdi": 0.628
+ "hdi": 0.628,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gh.svg",
+ "png": "https://flagcdn.com/w320/gh.png",
+ "alt": "The flag of Ghana is composed of three equal horizontal bands of red, gold and green, with a five-pointed black star centered in the gold band.",
+ "emoji": "\ud83c\uddec\ud83c\udded"
+ }
},
{
"name": {
@@ -27581,7 +27665,6 @@
"ESP"
],
"area": 6,
- "flag": "\ud83c\uddec\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -27594,11 +27677,6 @@
"female": "Gibraltarienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gi.svg",
- "png": "https://flagcdn.com/w320/gi.png",
- "alt": "The flag of Gibraltar has two horizontal bands of white (double-width) and red, with a three-towered red castle in the center of the white band. A gold key hangs from the castle gate and is centered in the red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gi.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gi.png"
@@ -27652,7 +27730,14 @@
"gdp": null,
"nationalHoliday": "Gibraltar National Day",
"anthem": "God Save the King",
- "hdi": 3.0
+ "hdi": 3.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/gi.svg",
+ "png": "https://flagcdn.com/w320/gi.png",
+ "alt": "The flag of Gibraltar has two horizontal bands of white (double-width) and red, with a three-towered red castle in the center of the white band. A gold key hangs from the castle gate and is centered in the red band.",
+ "emoji": "\ud83c\uddec\ud83c\uddee"
+ }
},
{
"name": {
@@ -27863,7 +27948,6 @@
"SLE"
],
"area": 245857,
- "flag": "\ud83c\uddec\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -27876,11 +27960,6 @@
"female": "Guin\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gn.svg",
- "png": "https://flagcdn.com/w320/gn.png",
- "alt": "The flag of Guinea is composed of three equal vertical bands of red, yellow and green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gn.png"
@@ -27929,23 +28008,23 @@
"religion": [
{
"name": "islam",
- "percentage": 85.2,
- "population": 11916225
+ "population": 11916225,
+ "percentage": 85.2
},
{
"name": "christianity",
- "percentage": 13.4,
- "population": 1874148
+ "population": 1874148,
+ "percentage": 13.4
},
{
"name": "animism",
- "percentage": 0.2,
- "population": 27972
+ "population": 27972,
+ "percentage": 0.2
},
{
"name": "none",
- "percentage": 1.2,
- "population": 167834
+ "population": 167834,
+ "percentage": 1.2
}
],
"ethnicity": [
@@ -27999,7 +28078,14 @@
},
"nationalHoliday": null,
"anthem": "Libert\u00e9",
- "hdi": 0.5
+ "hdi": 0.5,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gn.svg",
+ "png": "https://flagcdn.com/w320/gn.png",
+ "alt": "The flag of Guinea is composed of three equal vertical bands of red, yellow and green.",
+ "emoji": "\ud83c\uddec\ud83c\uddf3"
+ }
},
{
"name": {
@@ -28202,7 +28288,6 @@
"landlocked": false,
"borders": [],
"area": 1628,
- "flag": "\ud83c\uddec\ud83c\uddf5",
"demonyms": [
{
"lang": "eng",
@@ -28215,11 +28300,6 @@
"female": "Guadeloup\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gp.svg",
- "png": "https://flagcdn.com/w320/gp.png",
- "alt": "The flag of Guadeloupe has a black field with a 30-rayed yellow sun in front of a green sugarcane, as well as a blue stripe with three yellow fleurs-de-lis on the top."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gp.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gp.png"
@@ -28267,7 +28347,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/gp.svg",
+ "png": "https://flagcdn.com/w320/gp.png",
+ "alt": "The flag of Guadeloupe has a black field with a 30-rayed yellow sun in front of a green sugarcane, as well as a blue stripe with three yellow fleurs-de-lis on the top.",
+ "emoji": "\ud83c\uddec\ud83c\uddf5"
+ }
},
{
"name": {
@@ -28472,7 +28559,6 @@
"SEN"
],
"area": 10689,
- "flag": "\ud83c\uddec\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -28485,11 +28571,6 @@
"female": "Gambienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gm.svg",
- "png": "https://flagcdn.com/w320/gm.png",
- "alt": "The flag of Gambia is composed of three equal horizontal bands of red, blue with white top and bottom edges, and green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gm.png"
@@ -28538,18 +28619,18 @@
"religion": [
{
"name": "islam",
- "percentage": 95.7,
- "population": 2526400
+ "population": 2526400,
+ "percentage": 95.7
},
{
"name": "christianity",
- "percentage": 4.2,
- "population": 110876
+ "population": 110876,
+ "percentage": 4.2
},
{
"name": "others",
- "percentage": 0.1,
- "population": 2640
+ "population": 2640,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -28603,7 +28684,14 @@
},
"nationalHoliday": null,
"anthem": "For The Gambia Our Homeland",
- "hdi": 0.524
+ "hdi": 0.524,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gm.svg",
+ "png": "https://flagcdn.com/w320/gm.png",
+ "alt": "The flag of Gambia is composed of three equal horizontal bands of red, blue with white top and bottom edges, and green.",
+ "emoji": "\ud83c\uddec\ud83c\uddf2"
+ }
},
{
"name": {
@@ -28821,7 +28909,6 @@
"SEN"
],
"area": 36125,
- "flag": "\ud83c\uddec\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -28834,11 +28921,6 @@
"female": "Bissau-Guin\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gw.svg",
- "png": "https://flagcdn.com/w320/gw.png",
- "alt": "The flag of Guinea-Bissau features a red vertical band on its hoist side that takes up about two-fifth the width of the field, and two equal horizontal bands of yellow and green adjoining the vertical band. A five-pointed black star is centered in the vertical band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gw.png"
@@ -28887,28 +28969,28 @@
"religion": [
{
"name": "islam",
- "percentage": 46.1,
- "population": 958880
+ "population": 958880,
+ "percentage": 46.1
},
{
"name": "traditional",
- "percentage": 30.6,
- "population": 636480
+ "population": 636480,
+ "percentage": 30.6
},
{
"name": "christianity",
- "percentage": 18.9,
- "population": 393120
+ "population": 393120,
+ "percentage": 18.9
},
{
"name": "no religion",
- "percentage": 3.0,
- "population": 62400
+ "population": 62400,
+ "percentage": 3.0
},
{
"name": "others",
- "percentage": 1.0,
- "population": 20800
+ "population": 20800,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -28958,7 +29040,14 @@
},
"nationalHoliday": null,
"anthem": "Esta \u00e9 a Nossa P\u00e1tria bem Amada",
- "hdi": 0.514
+ "hdi": 0.514,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gw.svg",
+ "png": "https://flagcdn.com/w320/gw.png",
+ "alt": "The flag of Guinea-Bissau features a red vertical band on its hoist side that takes up about two-fifth the width of the field, and two equal horizontal bands of yellow and green adjoining the vertical band. A five-pointed black star is centered in the vertical band.",
+ "emoji": "\ud83c\uddec\ud83c\uddfc"
+ }
},
{
"name": {
@@ -29189,7 +29278,6 @@
"GAB"
],
"area": 28051,
- "flag": "\ud83c\uddec\ud83c\uddf6",
"demonyms": [
{
"lang": "eng",
@@ -29202,11 +29290,6 @@
"female": "\u00c9quato-guin\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gq.svg",
- "png": "https://flagcdn.com/w320/gq.png",
- "alt": "The flag of Equatorial Guinea is composed of three equal horizontal bands of green, white and red with the national coat of arms centered in the white band and an isosceles triangle superimposed on the hoist side of the field. The triangle is light blue, has its base on the hoist end and spans about one-fifth the width of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gq.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gq.png"
@@ -29250,28 +29333,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 88.7,
- "population": 1592905
+ "population": 1592905,
+ "percentage": 88.7
},
{
"name": "no religion",
- "percentage": 5.0,
- "population": 89792
+ "population": 89792,
+ "percentage": 5.0
},
{
"name": "islam",
- "percentage": 4.0,
- "population": 71833
+ "population": 71833,
+ "percentage": 4.0
},
{
"name": "traditional faiths",
- "percentage": 1.7,
- "population": 30529
+ "population": 30529,
+ "percentage": 1.7
},
{
"name": "other",
- "percentage": 0.6,
- "population": 10775
+ "population": 10775,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -29321,7 +29404,14 @@
},
"nationalHoliday": null,
"anthem": "Caminemos pisando las sendas de nuestra inmensa felicidad",
- "hdi": 0.674
+ "hdi": 0.674,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gq.svg",
+ "png": "https://flagcdn.com/w320/gq.png",
+ "alt": "The flag of Equatorial Guinea is composed of three equal horizontal bands of green, white and red with the national coat of arms centered in the white band and an isosceles triangle superimposed on the hoist side of the field. The triangle is light blue, has its base on the hoist end and spans about one-fifth the width of the field.",
+ "emoji": "\ud83c\uddec\ud83c\uddf6"
+ }
},
{
"name": {
@@ -29531,7 +29621,6 @@
"MKD"
],
"area": 131990,
- "flag": "\ud83c\uddec\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -29544,11 +29633,6 @@
"female": "Grecque"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gr.svg",
- "png": "https://flagcdn.com/w320/gr.png",
- "alt": "The flag of Greece is composed of nine equal horizontal bands of blue alternating with white. A blue square bearing a white cross is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gr.png"
@@ -29591,23 +29675,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 93.0,
- "population": 9646272
+ "population": 9646272,
+ "percentage": 93.0
},
{
"name": "no religion",
- "percentage": 4.0,
- "population": 414893
+ "population": 414893,
+ "percentage": 4.0
},
{
"name": "islam",
- "percentage": 2.0,
- "population": 207447
+ "population": 207447,
+ "percentage": 2.0
},
{
"name": "others",
- "percentage": 1.0,
- "population": 103723
+ "population": 103723,
+ "percentage": 1.0
}
],
"ethnicity": [],
@@ -29632,7 +29716,14 @@
},
"nationalHoliday": "International Workers' Day",
"anthem": "Hymn to Liberty",
- "hdi": 0.908
+ "hdi": 0.908,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gr.svg",
+ "png": "https://flagcdn.com/w320/gr.png",
+ "alt": "The flag of Greece is composed of nine equal horizontal bands of blue alternating with white. A blue square bearing a white cross is superimposed in the canton.",
+ "emoji": "\ud83c\uddec\ud83c\uddf7"
+ }
},
{
"name": {
@@ -29834,7 +29925,6 @@
"landlocked": false,
"borders": [],
"area": 344,
- "flag": "\ud83c\uddec\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -29847,11 +29937,6 @@
"female": "Grenadienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gd.svg",
- "png": "https://flagcdn.com/w320/gd.png",
- "alt": "The flag of Grenada features a large central rectangular area surrounded by a red border, with three five-pointed yellow stars centered on the top and bottom borders. The central rectangle is divided diagonally into four alternating triangular areas of yellow at the top and bottom and green on the hoist and fly sides, and a five-pointed yellow star on a red circle is superimposed at its center. A symbolic nutmeg pod is situated on the green hoist-side triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gd.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gd.png"
@@ -29893,28 +29978,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.6,
- "population": 110724
+ "population": 110724,
+ "percentage": 96.6
},
{
"name": "hinduism",
- "percentage": 1.3,
- "population": 1490
+ "population": 1490,
+ "percentage": 1.3
},
{
"name": "no religion",
- "percentage": 1.0,
- "population": 1146
+ "population": 1146,
+ "percentage": 1.0
},
{
"name": "rastafari",
- "percentage": 0.7,
- "population": 802
+ "population": 802,
+ "percentage": 0.7
},
{
"name": "other",
- "percentage": 0.4,
- "population": 458
+ "population": 458,
+ "percentage": 0.4
}
],
"ethnicity": [
@@ -29960,7 +30045,14 @@
},
"nationalHoliday": null,
"anthem": "Hail Grenada",
- "hdi": 0.791
+ "hdi": 0.791,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gd.svg",
+ "png": "https://flagcdn.com/w320/gd.png",
+ "alt": "The flag of Grenada features a large central rectangular area surrounded by a red border, with three five-pointed yellow stars centered on the top and bottom borders. The central rectangle is divided diagonally into four alternating triangular areas of yellow at the top and bottom and green on the hoist and fly sides, and a five-pointed yellow star on a red circle is superimposed at its center. A symbolic nutmeg pod is situated on the green hoist-side triangle.",
+ "emoji": "\ud83c\uddec\ud83c\udde9"
+ }
},
{
"name": {
@@ -30163,7 +30255,6 @@
"landlocked": false,
"borders": [],
"area": 2166086,
- "flag": "\ud83c\uddec\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -30176,11 +30267,6 @@
"female": "Groenlandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gl.svg",
- "png": "https://flagcdn.com/w320/gl.png",
- "alt": "The flag of Greenland has two equal horizontal bands of white and red, with a large disk slightly to the hoist side of center. The top half of the disk is red, and the bottom half is white."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gl.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gl.png"
@@ -30215,18 +30301,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.1,
- "population": 54615
+ "population": 54615,
+ "percentage": 96.1
},
{
"name": "no religion",
- "percentage": 2.5,
- "population": 1421
+ "population": 1421,
+ "percentage": 2.5
},
{
"name": "other",
- "percentage": 1.4,
- "population": 796
+ "population": 796,
+ "percentage": 1.4
}
],
"ethnicity": [
@@ -30268,7 +30354,14 @@
},
"nationalHoliday": null,
"anthem": "Nuna asiilasooq",
- "hdi": 0.852
+ "hdi": 0.852,
+ "sovereignState": "DNK",
+ "flag": {
+ "svg": "https://flagcdn.com/gl.svg",
+ "png": "https://flagcdn.com/w320/gl.png",
+ "alt": "The flag of Greenland has two equal horizontal bands of white and red, with a large disk slightly to the hoist side of center. The top half of the disk is red, and the bottom half is white.",
+ "emoji": "\ud83c\uddec\ud83c\uddf1"
+ }
},
{
"name": {
@@ -30475,7 +30568,6 @@
"MEX"
],
"area": 108889,
- "flag": "\ud83c\uddec\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -30488,11 +30580,6 @@
"female": "Guat\u00e9malt\u00e8que"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gt.svg",
- "png": "https://flagcdn.com/w320/gt.png",
- "alt": "The flag of Guatemala is composed of three equal vertical bands of light blue, white and light blue, with the national coat of arms centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gt.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gt.png"
@@ -30537,18 +30624,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 88.1,
- "population": 16082845
+ "population": 16082845,
+ "percentage": 88.1
},
{
"name": "no religion",
- "percentage": 11.0,
- "population": 2008074
+ "population": 2008074,
+ "percentage": 11.0
},
{
"name": "other",
- "percentage": 0.9,
- "population": 164297
+ "population": 164297,
+ "percentage": 0.9
}
],
"ethnicity": [
@@ -30598,7 +30685,14 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of Guatemala",
- "hdi": 0.662
+ "hdi": 0.662,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gt.svg",
+ "png": "https://flagcdn.com/w320/gt.png",
+ "alt": "The flag of Guatemala is composed of three equal vertical bands of light blue, white and light blue, with the national coat of arms centered in the white band.",
+ "emoji": "\ud83c\uddec\ud83c\uddf9"
+ }
},
{
"name": {
@@ -30805,7 +30899,6 @@
"SUR"
],
"area": 83534,
- "flag": "\ud83c\uddec\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -30818,11 +30911,6 @@
"female": "Guyanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gf.svg",
- "png": "https://flagcdn.com/w320/gf.png",
- "alt": "The flag of French Guiana divides diagonally with green in the upper fly and yellow in the lower hoist and bears a red five-pointed star in the center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gf.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gf.png"
@@ -30886,7 +30974,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/gf.svg",
+ "png": "https://flagcdn.com/w320/gf.png",
+ "alt": "The flag of French Guiana divides diagonally with green in the upper fly and yellow in the lower hoist and bears a red five-pointed star in the center.",
+ "emoji": "\ud83c\uddec\ud83c\uddeb"
+ }
},
{
"name": {
@@ -31111,7 +31206,6 @@
"landlocked": false,
"borders": [],
"area": 549,
- "flag": "\ud83c\uddec\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -31124,11 +31218,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/gu.svg",
- "png": "https://flagcdn.com/w320/gu.png",
- "alt": "The flag of Guam is dark blue with a narrow red border on all four sides. Centered is a red-bordered, pointed, vertical ellipse containing a beach scene, a proa (outrigger canoe with sail), and a palm tree. The country's name in red is centered in the ellipse."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gu.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gu.png"
@@ -31160,28 +31249,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 94.1,
- "population": 144760
+ "population": 144760,
+ "percentage": 94.1
},
{
"name": "no religion",
- "percentage": 1.7,
- "population": 2615
+ "population": 2615,
+ "percentage": 1.7
},
{
"name": "folk religions",
- "percentage": 1.5,
- "population": 2308
+ "population": 2308,
+ "percentage": 1.5
},
{
"name": "buddhism",
- "percentage": 1.1,
- "population": 1692
+ "population": 1692,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 1.6,
- "population": 2461
+ "population": 2461,
+ "percentage": 1.6
}
],
"ethnicity": [
@@ -31223,7 +31312,14 @@
},
"nationalHoliday": null,
"anthem": "Stand Ye Guamanians",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "USA",
+ "flag": {
+ "svg": "https://flagcdn.com/gu.svg",
+ "png": "https://flagcdn.com/w320/gu.png",
+ "alt": "The flag of Guam is dark blue with a narrow red border on all four sides. Centered is a red-bordered, pointed, vertical ellipse containing a beach scene, a proa (outrigger canoe with sail), and a palm tree. The country's name in red is centered in the ellipse.",
+ "emoji": "\ud83c\uddec\ud83c\uddfa"
+ }
},
{
"name": {
@@ -31430,7 +31526,6 @@
"VEN"
],
"area": 214969,
- "flag": "\ud83c\uddec\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -31443,11 +31538,6 @@
"female": "Guyanienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/gy.svg",
- "png": "https://flagcdn.com/w320/gy.png",
- "alt": "The flag of Guyana has a green field with two isosceles triangles which share a common base on the hoist end. The smaller black-edged red triangle spanning half the width of the field is superimposed on the larger white-edged yellow triangle which spans the full width of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/gy.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/gy.png"
@@ -31504,28 +31594,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 55.5,
- "population": 527797
+ "population": 527797,
+ "percentage": 55.5
},
{
"name": "hinduism",
- "percentage": 31.0,
- "population": 294806
+ "population": 294806,
+ "percentage": 31.0
},
{
"name": "islam",
- "percentage": 9.5,
- "population": 90344
+ "population": 90344,
+ "percentage": 9.5
},
{
"name": "no religion",
- "percentage": 4.2,
- "population": 39941
+ "population": 39941,
+ "percentage": 4.2
},
{
"name": "others",
- "percentage": 3.3,
- "population": 31383
+ "population": 31383,
+ "percentage": 3.3
}
],
"ethnicity": [
@@ -31579,7 +31669,14 @@
},
"nationalHoliday": null,
"anthem": "National anthem of Guyana",
- "hdi": 0.776
+ "hdi": 0.776,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/gy.svg",
+ "png": "https://flagcdn.com/w320/gy.png",
+ "alt": "The flag of Guyana has a green field with two isosceles triangles which share a common base on the hoist end. The smaller black-edged red triangle spanning half the width of the field is superimposed on the larger white-edged yellow triangle which spans the full width of the field.",
+ "emoji": "\ud83c\uddec\ud83c\uddfe"
+ }
},
{
"name": {
@@ -31790,7 +31887,6 @@
"CHN"
],
"area": 1104,
- "flag": "\ud83c\udded\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -31803,11 +31899,6 @@
"female": "Hongkongaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/hk.svg",
- "png": "https://flagcdn.com/w320/hk.png",
- "alt": "The flag of Hong Kong is red with a stylized, five-petal, white Bauhinia flower in the center. Each petal has a small, five-pointed red star."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/hk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/hk.png"
@@ -31888,7 +31979,14 @@
},
"nationalHoliday": "National Day of the People's Republic of China",
"anthem": "March of the Volunteers",
- "hdi": 8.0
+ "hdi": 8.0,
+ "sovereignState": "CHN",
+ "flag": {
+ "svg": "https://flagcdn.com/hk.svg",
+ "png": "https://flagcdn.com/w320/hk.png",
+ "alt": "The flag of Hong Kong is red with a stylized, five-petal, white Bauhinia flower in the center. Each petal has a small, five-pointed red star.",
+ "emoji": "\ud83c\udded\ud83c\uddf0"
+ }
},
{
"name": {
@@ -32079,7 +32177,6 @@
"landlocked": false,
"borders": [],
"area": 412,
- "flag": "\ud83c\udded\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -32092,11 +32189,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/hm.svg",
- "png": "https://flagcdn.com/w320/hm.png",
- "alt": "The flag of Heard Island and McDonald Islands has a dark blue field. It features the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton, beneath which is a large white seven-pointed star. A representation of the Southern Cross constellation, made up of one small five-pointed and four larger seven-pointed white stars, is situated on the fly side of the field."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -32135,7 +32227,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/hm.svg",
+ "png": "https://flagcdn.com/w320/hm.png",
+ "alt": "The flag of Heard Island and McDonald Islands has a dark blue field. It features the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton, beneath which is a large white seven-pointed star. A representation of the Southern Cross constellation, made up of one small five-pointed and four larger seven-pointed white stars, is situated on the fly side of the field.",
+ "emoji": "\ud83c\udded\ud83c\uddf2"
+ }
},
{
"name": {
@@ -32343,7 +32442,6 @@
"NIC"
],
"area": 112492,
- "flag": "\ud83c\udded\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -32356,11 +32454,6 @@
"female": "Hondurienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/hn.svg",
- "png": "https://flagcdn.com/w320/hn.png",
- "alt": "The flag of Honduras is composed of three equal horizontal bands of turquoise, white and turquoise, with five small five-pointed turquoise stars arranged in a quincuncial pattern at the center of the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/hn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/hn.png"
@@ -32454,7 +32547,14 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of Honduras",
- "hdi": 0.645
+ "hdi": 0.645,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/hn.svg",
+ "png": "https://flagcdn.com/w320/hn.png",
+ "alt": "The flag of Honduras is composed of three equal horizontal bands of turquoise, white and turquoise, with five small five-pointed turquoise stars arranged in a quincuncial pattern at the center of the white band.",
+ "emoji": "\ud83c\udded\ud83c\uddf3"
+ }
},
{
"name": {
@@ -32665,7 +32765,6 @@
"SVN"
],
"area": 56594,
- "flag": "\ud83c\udded\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -32678,11 +32777,6 @@
"female": "Croate"
}
],
- "flags": {
- "svg": "https://flagcdn.com/hr.svg",
- "png": "https://flagcdn.com/w320/hr.png",
- "alt": "The flag of Croatia is composed of three equal horizontal bands of red, white and blue, with the coat of arms of Croatia superimposed in the center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/hr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/hr.png"
@@ -32725,28 +32819,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 87.4,
- "population": 3379088
+ "population": 3379088,
+ "percentage": 87.4
},
{
"name": "no religion",
- "percentage": 6.4,
- "population": 247439
+ "population": 247439,
+ "percentage": 6.4
},
{
"name": "islam",
- "percentage": 1.3,
- "population": 50261
+ "population": 50261,
+ "percentage": 1.3
},
{
"name": "other",
- "percentage": 1.9,
- "population": 73458
+ "population": 73458,
+ "percentage": 1.9
},
{
"name": "undeclared",
- "percentage": 3.9,
- "population": 150783
+ "population": 150783,
+ "percentage": 3.9
}
],
"ethnicity": [
@@ -32784,7 +32878,14 @@
},
"nationalHoliday": null,
"anthem": "Lijepa na\u0161a domovino",
- "hdi": 0.889
+ "hdi": 0.889,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/hr.svg",
+ "png": "https://flagcdn.com/w320/hr.png",
+ "alt": "The flag of Croatia is composed of three equal horizontal bands of red, white and blue, with the coat of arms of Croatia superimposed in the center.",
+ "emoji": "\ud83c\udded\ud83c\uddf7"
+ }
},
{
"name": {
@@ -33002,7 +33103,6 @@
"DOM"
],
"area": 27750,
- "flag": "\ud83c\udded\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -33015,11 +33115,6 @@
"female": "Ha\u00eftienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ht.svg",
- "png": "https://flagcdn.com/w320/ht.png",
- "alt": "The flag of Haiti is composed of two equal horizontal bands of blue and red. A white square bearing the national coat of arms is superimposed at the center of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ht.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ht.png"
@@ -33066,23 +33161,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 87.0,
- "population": 9979127
+ "population": 9979127,
+ "percentage": 87.0
},
{
"name": "no religion",
- "percentage": 10.7,
- "population": 1227318
+ "population": 1227318,
+ "percentage": 10.7
},
{
"name": "haitian vodou",
- "percentage": 2.1,
- "population": 240875
+ "population": 240875,
+ "percentage": 2.1
},
{
"name": "other",
- "percentage": 0.2,
- "population": 22941
+ "population": 22941,
+ "percentage": 0.2
}
],
"ethnicity": [
@@ -33116,7 +33211,14 @@
},
"nationalHoliday": null,
"anthem": "La Dessalinienne",
- "hdi": 0.554
+ "hdi": 0.554,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ht.svg",
+ "png": "https://flagcdn.com/w320/ht.png",
+ "alt": "The flag of Haiti is composed of two equal horizontal bands of blue and red. A white square bearing the national coat of arms is superimposed at the center of the field.",
+ "emoji": "\ud83c\udded\ud83c\uddf9"
+ }
},
{
"name": {
@@ -33326,7 +33428,6 @@
"UKR"
],
"area": 93028,
- "flag": "\ud83c\udded\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -33339,11 +33440,6 @@
"female": "Hongroise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/hu.svg",
- "png": "https://flagcdn.com/w320/hu.png",
- "alt": "The flag of Hungary is composed of three equal horizontal bands of red, white and green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/hu.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/hu.png"
@@ -33386,23 +33482,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 42.5,
- "population": 4073466
+ "population": 4073466,
+ "percentage": 42.5
},
{
"name": "no answer",
- "percentage": 40.1,
- "population": 3843435
+ "population": 3843435,
+ "percentage": 40.1
},
{
"name": "irreligion",
- "percentage": 16.1,
- "population": 1543125
+ "population": 1543125,
+ "percentage": 16.1
},
{
"name": "others",
- "percentage": 1.3,
- "population": 124600
+ "population": 124600,
+ "percentage": 1.3
}
],
"ethnicity": [
@@ -33444,7 +33540,14 @@
},
"nationalHoliday": "Saint Stephen's Day",
"anthem": "Himnusz",
- "hdi": 0.87
+ "hdi": 0.87,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/hu.svg",
+ "png": "https://flagcdn.com/w320/hu.png",
+ "alt": "The flag of Hungary is composed of three equal horizontal bands of red, white and green.",
+ "emoji": "\ud83c\udded\ud83c\uddfa"
+ }
},
{
"name": {
@@ -33652,7 +33755,6 @@
"PNG"
],
"area": 1904569,
- "flag": "\ud83c\uddee\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -33665,11 +33767,6 @@
"female": "Indon\u00e9sienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/id.svg",
- "png": "https://flagcdn.com/w320/id.png",
- "alt": "The flag of Indonesia is composed of two equal horizontal bands of red and white."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/id.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/id.png"
@@ -33714,23 +33811,23 @@
"religion": [
{
"name": "islam",
- "percentage": 87.1,
- "population": 247746179
+ "population": 247746179,
+ "percentage": 87.1
},
{
"name": "christianity",
- "percentage": 10.45,
- "population": 29723853
+ "population": 29723853,
+ "percentage": 10.45
},
{
"name": "hinduism",
- "percentage": 1.7,
- "population": 4835459
+ "population": 4835459,
+ "percentage": 1.7
},
{
"name": "buddhism",
- "percentage": 0.8,
- "population": 2275510
+ "population": 2275510,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -33780,7 +33877,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Indonesia Raya",
- "hdi": 113.0
+ "hdi": 113.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/id.svg",
+ "png": "https://flagcdn.com/w320/id.png",
+ "alt": "The flag of Indonesia is composed of two equal horizontal bands of red and white.",
+ "emoji": "\ud83c\uddee\ud83c\udde9"
+ }
},
{
"name": {
@@ -34001,7 +34105,6 @@
"landlocked": false,
"borders": [],
"area": 572,
- "flag": "\ud83c\uddee\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -34014,11 +34117,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/im.svg",
- "png": "https://flagcdn.com/w320/im.png",
- "alt": "The flag of the Isle of Man is red with an emblem comprising three legs (triskelion) in the center. The three legs are joined at the thigh and bent at the knee."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/im.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/im.png"
@@ -34056,38 +34154,38 @@
"religion": [
{
"name": "christianity",
- "percentage": 54.7,
- "population": 46238
+ "population": 46238,
+ "percentage": 54.7
},
{
"name": "no religion",
- "percentage": 43.8,
- "population": 37024
+ "population": 37024,
+ "percentage": 43.8
},
{
"name": "islam",
- "percentage": 0.5,
- "population": 423
+ "population": 423,
+ "percentage": 0.5
},
{
"name": "buddhism",
- "percentage": 0.5,
- "population": 423
+ "population": 423,
+ "percentage": 0.5
},
{
"name": "hinduism",
- "percentage": 0.3,
- "population": 254
+ "population": 254,
+ "percentage": 0.3
},
{
"name": "judaism",
- "percentage": 0.1,
- "population": 85
+ "population": 85,
+ "percentage": 0.1
},
{
"name": "other",
- "percentage": 0.2,
- "population": 169
+ "population": 169,
+ "percentage": 0.2
}
],
"ethnicity": [
@@ -34129,7 +34227,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 15.0
+ "hdi": 15.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/im.svg",
+ "png": "https://flagcdn.com/w320/im.png",
+ "alt": "The flag of the Isle of Man is red with an emblem comprising three legs (triskelion) in the center. The three legs are joined at the thigh and bent at the knee.",
+ "emoji": "\ud83c\uddee\ud83c\uddf2"
+ }
},
{
"name": {
@@ -34364,7 +34469,6 @@
"PAK"
],
"area": 3287263,
- "flag": "\ud83c\uddee\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -34377,11 +34481,6 @@
"female": "Indienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/in.svg",
- "png": "https://flagcdn.com/w320/in.png",
- "alt": "The flag of India is composed of three equal horizontal bands of saffron, white and green. A navy blue wheel with twenty-four spokes \u2014 the Ashoka Chakra \u2014 is centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/in.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/in.png"
@@ -34424,43 +34523,43 @@
"religion": [
{
"name": "hinduism",
- "percentage": 79.8,
- "population": 1140044875
+ "population": 1140044875,
+ "percentage": 79.8
},
{
"name": "islam",
- "percentage": 14.2,
- "population": 202865128
+ "population": 202865128,
+ "percentage": 14.2
},
{
"name": "christianity",
- "percentage": 2.3,
- "population": 32858436
+ "population": 32858436,
+ "percentage": 2.3
},
{
"name": "sikhism",
- "percentage": 1.7,
- "population": 24286670
+ "population": 24286670,
+ "percentage": 1.7
},
{
"name": "buddhism",
- "percentage": 0.7,
- "population": 10000394
+ "population": 10000394,
+ "percentage": 0.7
},
{
"name": "jainism",
- "percentage": 0.4,
- "population": 5714511
+ "population": 5714511,
+ "percentage": 0.4
},
{
"name": "unaffiliated",
- "percentage": 0.23,
- "population": 3285844
+ "population": 3285844,
+ "percentage": 0.23
},
{
"name": "other",
- "percentage": 0.65,
- "population": 9286080
+ "population": 9286080,
+ "percentage": 0.65
}
],
"ethnicity": [],
@@ -34485,7 +34584,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Jana Gana Mana",
- "hdi": 0.685
+ "hdi": 0.685,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/in.svg",
+ "png": "https://flagcdn.com/w320/in.png",
+ "alt": "The flag of India is composed of three equal horizontal bands of saffron, white and green. A navy blue wheel with twenty-four spokes \u2014 the Ashoka Chakra \u2014 is centered in the white band.",
+ "emoji": "\ud83c\uddee\ud83c\uddf3"
+ }
},
{
"name": {
@@ -34687,7 +34793,6 @@
"landlocked": false,
"borders": [],
"area": 60,
- "flag": "\ud83c\uddee\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -34700,11 +34805,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/io.svg",
- "png": "https://flagcdn.com/w320/io.png",
- "alt": "The flag of the British Indian Ocean Territory is white with six blue, wavy, horizontal stripes. The UK flag is in the canton. The striped section has a palm tree and yellow crown centered in the fly half."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -34755,7 +34855,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/io.svg",
+ "png": "https://flagcdn.com/w320/io.png",
+ "alt": "The flag of the British Indian Ocean Territory is white with six blue, wavy, horizontal stripes. The UK flag is in the canton. The striped section has a palm tree and yellow crown centered in the fly half.",
+ "emoji": "\ud83c\uddee\ud83c\uddf4"
+ }
},
{
"name": {
@@ -34973,7 +35080,6 @@
"GBR"
],
"area": 70273,
- "flag": "\ud83c\uddee\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -34986,11 +35092,6 @@
"female": "Irlandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ie.svg",
- "png": "https://flagcdn.com/w320/ie.png",
- "alt": "The flag of Ireland is composed of three equal vertical bands of green, white and orange."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ie.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ie.png"
@@ -35033,23 +35134,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 75.7,
- "population": 4132160
+ "population": 4132160,
+ "percentage": 75.7
},
{
"name": "no religion",
- "percentage": 14.5,
- "population": 791497
+ "population": 791497,
+ "percentage": 14.5
},
{
"name": "other",
- "percentage": 3.1,
- "population": 169217
+ "population": 169217,
+ "percentage": 3.1
},
{
"name": "not stated",
- "percentage": 6.7,
- "population": 365726
+ "population": 365726,
+ "percentage": 6.7
}
],
"ethnicity": [
@@ -35099,7 +35200,14 @@
},
"nationalHoliday": null,
"anthem": "Amhr\u00e1n na bhFiann",
- "hdi": 0.949
+ "hdi": 0.949,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ie.svg",
+ "png": "https://flagcdn.com/w320/ie.png",
+ "alt": "The flag of Ireland is composed of three equal vertical bands of green, white and orange.",
+ "emoji": "\ud83c\uddee\ud83c\uddea"
+ }
},
{
"name": {
@@ -35308,7 +35416,6 @@
"TKM"
],
"area": 1648195,
- "flag": "\ud83c\uddee\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -35321,11 +35428,6 @@
"female": "Iranienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ir.svg",
- "png": "https://flagcdn.com/w320/ir.png",
- "alt": "The flag of Iran is composed of three equal horizontal bands of green, white and red. A red emblem of Iran is centered in the white band and Arabic inscriptions in white span the bottom edge of the green band and the top edge of the red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ir.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ir.png"
@@ -35382,7 +35484,14 @@
},
"nationalHoliday": "Novruz",
"anthem": "National Anthem of the Islamic Republic of Iran",
- "hdi": 0.799
+ "hdi": 0.799,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ir.svg",
+ "png": "https://flagcdn.com/w320/ir.png",
+ "alt": "The flag of Iran is composed of three equal horizontal bands of green, white and red. A red emblem of Iran is centered in the white band and Arabic inscriptions in white span the bottom edge of the green band and the top edge of the red band.",
+ "emoji": "\ud83c\uddee\ud83c\uddf7"
+ }
},
{
"name": {
@@ -35615,7 +35724,6 @@
"TUR"
],
"area": 438317,
- "flag": "\ud83c\uddee\ud83c\uddf6",
"demonyms": [
{
"lang": "eng",
@@ -35628,11 +35736,6 @@
"female": "Irakienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/iq.svg",
- "png": "https://flagcdn.com/w320/iq.png",
- "alt": "The flag of Iraq is composed of three equal horizontal bands of red, white and black. In the central white band are Arabic inscriptions in green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/iq.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/iq.png"
@@ -35679,13 +35782,13 @@
"religion": [
{
"name": "islam",
- "percentage": 95.0,
- "population": 36360887
+ "population": 36360887,
+ "percentage": 95.0
},
{
"name": "christianity",
- "percentage": 10.0,
- "population": 3827462
+ "population": 3827462,
+ "percentage": 10.0
}
],
"ethnicity": [
@@ -35723,7 +35826,14 @@
},
"nationalHoliday": null,
"anthem": "Mawtini",
- "hdi": 0.712
+ "hdi": 0.712,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/iq.svg",
+ "png": "https://flagcdn.com/w320/iq.png",
+ "alt": "The flag of Iraq is composed of three equal horizontal bands of red, white and black. In the central white band are Arabic inscriptions in green.",
+ "emoji": "\ud83c\uddee\ud83c\uddf6"
+ }
},
{
"name": {
@@ -35928,7 +36038,6 @@
"landlocked": false,
"borders": [],
"area": 103000,
- "flag": "\ud83c\uddee\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -35941,11 +36050,6 @@
"female": "Islandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/is.svg",
- "png": "https://flagcdn.com/w320/is.png",
- "alt": "The flag of Iceland has a blue field with a large white-edged red cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/is.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/is.png"
@@ -35988,23 +36092,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 72.4,
- "population": 263724
+ "population": 263724,
+ "percentage": 72.4
},
{
"name": "no religion",
- "percentage": 25.2,
- "population": 91794
+ "population": 91794,
+ "percentage": 25.2
},
{
"name": "\u00e1satr\u00faarf\u00e9lagi\u00f0",
- "percentage": 1.5,
- "population": 5464
+ "population": 5464,
+ "percentage": 1.5
},
{
"name": "other",
- "percentage": 0.9,
- "population": 3278
+ "population": 3278,
+ "percentage": 0.9
}
],
"ethnicity": [
@@ -36046,7 +36150,14 @@
},
"nationalHoliday": "Icelandic National Day",
"anthem": "Lofs\u00f6ngur",
- "hdi": 0.972
+ "hdi": 0.972,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/is.svg",
+ "png": "https://flagcdn.com/w320/is.png",
+ "alt": "The flag of Iceland has a blue field with a large white-edged red cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\uddee\ud83c\uddf8"
+ }
},
{
"name": {
@@ -36262,7 +36373,6 @@
"SYR"
],
"area": 21937,
- "flag": "\ud83c\uddee\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -36275,11 +36385,6 @@
"female": "Isra\u00e9lienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/il.svg",
- "png": "https://flagcdn.com/w320/il.png",
- "alt": "The flag of Israel has a white field with a blue hexagram \u2014 the Magen David \u2014 centered between two equal horizontal blue bands situated near the top and bottom edges of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/il.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/il.png"
@@ -36336,7 +36441,14 @@
},
"nationalHoliday": "Yom HaShoah",
"anthem": "Hatikvah",
- "hdi": 0.919
+ "hdi": 0.919,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/il.svg",
+ "png": "https://flagcdn.com/w320/il.png",
+ "alt": "The flag of Israel has a white field with a blue hexagram \u2014 the Magen David \u2014 centered between two equal horizontal blue bands situated near the top and bottom edges of the field.",
+ "emoji": "\ud83c\uddee\ud83c\uddf1"
+ }
},
{
"name": {
@@ -36553,7 +36665,6 @@
"VAT"
],
"area": 301336,
- "flag": "\ud83c\uddee\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -36566,11 +36677,6 @@
"female": "Italienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/it.svg",
- "png": "https://flagcdn.com/w320/it.png",
- "alt": "The flag of Italy is composed of three equal vertical bands of green, white and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/it.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/it.png"
@@ -36613,18 +36719,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 84.0,
- "population": 49489071
+ "population": 49489071,
+ "percentage": 84.0
},
{
"name": "irreligion",
- "percentage": 12.0,
- "population": 7069867
+ "population": 7069867,
+ "percentage": 12.0
},
{
"name": "other",
- "percentage": 4.0,
- "population": 2356622
+ "population": 2356622,
+ "percentage": 4.0
}
],
"ethnicity": [],
@@ -36649,7 +36755,14 @@
},
"nationalHoliday": "Anniversary of the liberation of Italy",
"anthem": "Il Canto degli Italiani",
- "hdi": 0.915
+ "hdi": 0.915,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/it.svg",
+ "png": "https://flagcdn.com/w320/it.png",
+ "alt": "The flag of Italy is composed of three equal vertical bands of green, white and red.",
+ "emoji": "\ud83c\uddee\ud83c\uddf9"
+ }
},
{
"name": {
@@ -36863,7 +36976,6 @@
"landlocked": false,
"borders": [],
"area": 10991,
- "flag": "\ud83c\uddef\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -36876,11 +36988,6 @@
"female": "Jama\u00efcaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/jm.svg",
- "png": "https://flagcdn.com/w320/jm.png",
- "alt": "The flag of Jamaica is divided by a gold diagonal cross into four alternating triangular areas of green at the top and bottom, and black on the hoist and fly sides."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/jm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/jm.png"
@@ -36927,28 +37034,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 68.9,
- "population": 1946365
+ "population": 1946365,
+ "percentage": 68.9
},
{
"name": "no religion",
- "percentage": 21.3,
- "population": 601706
+ "population": 601706,
+ "percentage": 21.3
},
{
"name": "rastafari",
- "percentage": 1.1,
- "population": 31074
+ "population": 31074,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 6.5,
- "population": 183619
+ "population": 183619,
+ "percentage": 6.5
},
{
"name": "unanswered",
- "percentage": 2.3,
- "population": 64973
+ "population": 64973,
+ "percentage": 2.3
}
],
"ethnicity": [
@@ -36998,7 +37105,14 @@
},
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.72
+ "hdi": 0.72,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/jm.svg",
+ "png": "https://flagcdn.com/w320/jm.png",
+ "alt": "The flag of Jamaica is divided by a gold diagonal cross into four alternating triangular areas of green at the top and bottom, and black on the hoist and fly sides.",
+ "emoji": "\ud83c\uddef\ud83c\uddf2"
+ }
},
{
"name": {
@@ -37230,7 +37344,6 @@
"landlocked": false,
"borders": [],
"area": 116,
- "flag": "\ud83c\uddef\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -37243,11 +37356,6 @@
"female": "Jersiaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/je.svg",
- "png": "https://flagcdn.com/w320/je.png",
- "alt": "The flag of Jersey is white with a diagonal red cross extending to the corners of the flag. A red shield with three lions in yellow is in the upper quadrant, with a yellow crown above."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/je.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/je.png"
@@ -37279,18 +37387,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 52.3,
- "population": 54009
+ "population": 54009,
+ "percentage": 52.3
},
{
"name": "no religion",
- "percentage": 39.0,
- "population": 40274
+ "population": 40274,
+ "percentage": 39.0
},
{
"name": "other religion",
- "percentage": 3.0,
- "population": 3098
+ "population": 3098,
+ "percentage": 3.0
}
],
"ethnicity": [
@@ -37328,7 +37436,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.985
+ "hdi": 0.985,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/je.svg",
+ "png": "https://flagcdn.com/w320/je.png",
+ "alt": "The flag of Jersey is white with a diagonal red cross extending to the corners of the flag. A red shield with three lions in yellow is in the upper quadrant, with a yellow crown above.",
+ "emoji": "\ud83c\uddef\ud83c\uddea"
+ }
},
{
"name": {
@@ -37539,7 +37654,6 @@
"SYR"
],
"area": 89342,
- "flag": "\ud83c\uddef\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -37552,11 +37666,6 @@
"female": "Jordanienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/jo.svg",
- "png": "https://flagcdn.com/w320/jo.png",
- "alt": "The flag of Jordan is composed of three equal horizontal bands of black, white and green, with a red isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about half the width of the field and bears a small seven-pointed white star at its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/jo.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/jo.png"
@@ -37603,18 +37712,18 @@
"religion": [
{
"name": "islam",
- "percentage": 95.0,
- "population": 10910565
+ "population": 10910565,
+ "percentage": 95.0
},
{
"name": "christianity",
- "percentage": 3.0,
- "population": 344544
+ "population": 344544,
+ "percentage": 3.0
},
{
"name": "druze",
- "percentage": 1.0,
- "population": 114848
+ "population": 114848,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -37652,7 +37761,14 @@
},
"nationalHoliday": null,
"anthem": "The Royal Anthem of Jordan",
- "hdi": 0.754
+ "hdi": 0.754,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/jo.svg",
+ "png": "https://flagcdn.com/w320/jo.png",
+ "alt": "The flag of Jordan is composed of three equal horizontal bands of black, white and green, with a red isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about half the width of the field and bears a small seven-pointed white star at its center.",
+ "emoji": "\ud83c\uddef\ud83c\uddf4"
+ }
},
{
"name": {
@@ -37857,7 +37973,6 @@
"landlocked": false,
"borders": [],
"area": 377930,
- "flag": "\ud83c\uddef\ud83c\uddf5",
"demonyms": [
{
"lang": "eng",
@@ -37870,11 +37985,6 @@
"female": "Japonaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/jp.svg",
- "png": "https://flagcdn.com/w320/jp.png",
- "alt": "The flag of Japan features a crimson-red circle at the center of a white field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/jp.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/jp.png"
@@ -37931,7 +38041,14 @@
},
"nationalHoliday": "Constitution Memorial Day",
"anthem": "Kimigayo",
- "hdi": 0.925
+ "hdi": 0.925,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/jp.svg",
+ "png": "https://flagcdn.com/w320/jp.png",
+ "alt": "The flag of Japan features a crimson-red circle at the center of a white field.",
+ "emoji": "\ud83c\uddef\ud83c\uddf5"
+ }
},
{
"name": {
@@ -38159,7 +38276,6 @@
"UZB"
],
"area": 2724900,
- "flag": "\ud83c\uddf0\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -38172,11 +38288,6 @@
"female": "Kazakhstanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kz.svg",
- "png": "https://flagcdn.com/w320/kz.png",
- "alt": "The flag of Kazakhstan has a turquoise field, at the center of which is a gold sun with thirty-two rays above a soaring golden steppe eagle. A thin vertical band displays a national ornamental pattern \u2014 koshkar-muiz \u2014 in gold near the hoist end."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kz.png"
@@ -38221,28 +38332,28 @@
"religion": [
{
"name": "islam",
- "percentage": 69.3,
- "population": 14203711
+ "population": 14203711,
+ "percentage": 69.3
},
{
"name": "christianity",
- "percentage": 17.2,
- "population": 3525308
+ "population": 3525308,
+ "percentage": 17.2
},
{
"name": "no religion",
- "percentage": 2.3,
- "population": 471407
+ "population": 471407,
+ "percentage": 2.3
},
{
"name": "other",
- "percentage": 0.2,
- "population": 40992
+ "population": 40992,
+ "percentage": 0.2
},
{
"name": "unanswered",
- "percentage": 11.0,
- "population": 2254557
+ "population": 2254557,
+ "percentage": 11.0
}
],
"ethnicity": [
@@ -38300,7 +38411,14 @@
},
"nationalHoliday": null,
"anthem": "Men\u0131\u00f1 Qazaqstanym",
- "hdi": 0.837
+ "hdi": 0.837,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kz.svg",
+ "png": "https://flagcdn.com/w320/kz.png",
+ "alt": "The flag of Kazakhstan has a turquoise field, at the center of which is a gold sun with thirty-two rays above a soaring golden steppe eagle. A thin vertical band displays a national ornamental pattern \u2014 koshkar-muiz \u2014 in gold near the hoist end.",
+ "emoji": "\ud83c\uddf0\ud83c\uddff"
+ }
},
{
"name": {
@@ -38521,7 +38639,6 @@
"UGA"
],
"area": 580367,
- "flag": "\ud83c\uddf0\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -38534,11 +38651,6 @@
"female": "K\u00e9nyane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ke.svg",
- "png": "https://flagcdn.com/w320/ke.png",
- "alt": "The flag of Kenya is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. An emblem comprising a red, black and white Maasai shield covering two crossed white spears is superimposed at the center of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ke.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ke.png"
@@ -38587,28 +38699,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 85.5,
- "population": 45597986
+ "population": 45597986,
+ "percentage": 85.5
},
{
"name": "islam",
- "percentage": 10.9,
- "population": 5813077
+ "population": 5813077,
+ "percentage": 10.9
},
{
"name": "no religion",
- "percentage": 1.5,
- "population": 799965
+ "population": 799965,
+ "percentage": 1.5
},
{
"name": "traditional faiths",
- "percentage": 0.7,
- "population": 373317
+ "population": 373317,
+ "percentage": 0.7
},
{
"name": "others",
- "percentage": 1.3,
- "population": 693303
+ "population": 693303,
+ "percentage": 1.3
}
],
"ethnicity": [
@@ -38674,7 +38786,14 @@
},
"nationalHoliday": null,
"anthem": "Ee Mungu Nguvu Yetu",
- "hdi": 0.628
+ "hdi": 0.628,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ke.svg",
+ "png": "https://flagcdn.com/w320/ke.png",
+ "alt": "The flag of Kenya is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. An emblem comprising a red, black and white Maasai shield covering two crossed white spears is superimposed at the center of the field.",
+ "emoji": "\ud83c\uddf0\ud83c\uddea"
+ }
},
{
"name": {
@@ -38896,7 +39015,6 @@
"UZB"
],
"area": 199951,
- "flag": "\ud83c\uddf0\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -38909,11 +39027,6 @@
"female": "Kirghize"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kg.svg",
- "png": "https://flagcdn.com/w320/kg.png",
- "alt": "The flag of Kyrgyzstan features a yellow sun with forty rays at the center of a red field. At the center of the sun is a stylized depiction of a tunduk."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kg.png"
@@ -38956,18 +39069,18 @@
"religion": [
{
"name": "islam",
- "percentage": 91.0,
- "population": 6643000
+ "population": 6643000,
+ "percentage": 91.0
},
{
"name": "christianity",
- "percentage": 8.0,
- "population": 584000
+ "population": 584000,
+ "percentage": 8.0
},
{
"name": "others",
- "percentage": 1.0,
- "population": 73000
+ "population": 73000,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -39017,7 +39130,14 @@
},
"nationalHoliday": null,
"anthem": "State Anthem of the Kyrgyz Republic",
- "hdi": 0.72
+ "hdi": 0.72,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kg.svg",
+ "png": "https://flagcdn.com/w320/kg.png",
+ "alt": "The flag of Kyrgyzstan features a yellow sun with forty rays at the center of a red field. At the center of the sun is a stylized depiction of a tunduk.",
+ "emoji": "\ud83c\uddf0\ud83c\uddec"
+ }
},
{
"name": {
@@ -39229,7 +39349,6 @@
"VNM"
],
"area": 181035,
- "flag": "\ud83c\uddf0\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -39242,11 +39361,6 @@
"female": "Cambodgienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kh.svg",
- "png": "https://flagcdn.com/w320/kh.png",
- "alt": "The flag of Cambodia features three horizontal bands of blue, red and blue, with a white depiction of the temple complex, Angkor Wat centered in the red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kh.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kh.png"
@@ -39284,23 +39398,23 @@
"religion": [
{
"name": "buddhism",
- "percentage": 96.5,
- "population": 17021443
+ "population": 17021443,
+ "percentage": 96.5
},
{
"name": "islam",
- "percentage": 2.6,
- "population": 458609
+ "population": 458609,
+ "percentage": 2.6
},
{
"name": "christianity",
- "percentage": 0.3,
- "population": 52916
+ "population": 52916,
+ "percentage": 0.3
},
{
"name": "other",
- "percentage": 0.5,
- "population": 88194
+ "population": 88194,
+ "percentage": 0.5
}
],
"ethnicity": [
@@ -39342,7 +39456,14 @@
},
"nationalHoliday": null,
"anthem": "Nokor Reach",
- "hdi": 0.606
+ "hdi": 0.606,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kh.svg",
+ "png": "https://flagcdn.com/w320/kh.png",
+ "alt": "The flag of Cambodia features three horizontal bands of blue, red and blue, with a white depiction of the temple complex, Angkor Wat centered in the red band.",
+ "emoji": "\ud83c\uddf0\ud83c\udded"
+ }
},
{
"name": {
@@ -39562,7 +39683,6 @@
"landlocked": false,
"borders": [],
"area": 811,
- "flag": "\ud83c\uddf0\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -39575,11 +39695,6 @@
"female": "Kiribatienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ki.svg",
- "png": "https://flagcdn.com/w320/ki.png",
- "alt": "The flag of Kiribati is divided into two halves. While the upper half has a red field, at the center of which is a yellow frigate bird flying over the top half of a rising yellow sun with seventeen visible rays, the lower half is composed of six horizontal wavy bands of white alternating with blue to depict the ocean."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ki.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ki.png"
@@ -39618,18 +39733,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.2,
- "population": 112116
+ "population": 112116,
+ "percentage": 96.2
},
{
"name": "bah\u00e1'\u00ed faith",
- "percentage": 2.1,
- "population": 2447
+ "population": 2447,
+ "percentage": 2.1
},
{
"name": "other",
- "percentage": 1.7,
- "population": 1981
+ "population": 1981,
+ "percentage": 1.7
}
],
"ethnicity": [
@@ -39663,7 +39778,14 @@
},
"nationalHoliday": null,
"anthem": "Kunan Kiribati",
- "hdi": 0.644
+ "hdi": 0.644,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ki.svg",
+ "png": "https://flagcdn.com/w320/ki.png",
+ "alt": "The flag of Kiribati is divided into two halves. While the upper half has a red field, at the center of which is a yellow frigate bird flying over the top half of a rising yellow sun with seventeen visible rays, the lower half is composed of six horizontal wavy bands of white alternating with blue to depict the ocean.",
+ "emoji": "\ud83c\uddf0\ud83c\uddee"
+ }
},
{
"name": {
@@ -39866,7 +39988,6 @@
"landlocked": false,
"borders": [],
"area": 261,
- "flag": "\ud83c\uddf0\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -39879,11 +40000,6 @@
"female": "Kittitienne-et-nevicienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kn.svg",
- "png": "https://flagcdn.com/w320/kn.png",
- "alt": "The flag of Saint Kitts and Nevis features two large five-pointed white stars within a yellow-edged black diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kn.png"
@@ -39925,23 +40041,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 94.6,
- "population": 44388
+ "population": 44388,
+ "percentage": 94.6
},
{
"name": "no religion",
- "percentage": 2.6,
- "population": 1220
+ "population": 1220,
+ "percentage": 2.6
},
{
"name": "hinduism",
- "percentage": 1.5,
- "population": 704
+ "population": 704,
+ "percentage": 1.5
},
{
"name": "other",
- "percentage": 1.3,
- "population": 610
+ "population": 610,
+ "percentage": 1.3
}
],
"ethnicity": [
@@ -39991,7 +40107,14 @@
},
"nationalHoliday": null,
"anthem": "O Land of Beauty!",
- "hdi": 0.84
+ "hdi": 0.84,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kn.svg",
+ "png": "https://flagcdn.com/w320/kn.png",
+ "alt": "The flag of Saint Kitts and Nevis features two large five-pointed white stars within a yellow-edged black diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and red triangle respectively.",
+ "emoji": "\ud83c\uddf0\ud83c\uddf3"
+ }
},
{
"name": {
@@ -40200,7 +40323,6 @@
"PRK"
],
"area": 100210,
- "flag": "\ud83c\uddf0\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -40213,11 +40335,6 @@
"female": "Sud-cor\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kr.svg",
- "png": "https://flagcdn.com/w320/kr.png",
- "alt": "The flag of South Korea has a white field, at the center of which is a red and blue Taegeuk circle surrounded by four black trigrams, one in each corner."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kr.png"
@@ -40254,23 +40371,23 @@
"religion": [
{
"name": "no religion",
- "percentage": 51.0,
- "population": 26561717
+ "population": 26561717,
+ "percentage": 51.0
},
{
"name": "christianity",
- "percentage": 31.0,
- "population": 16145358
+ "population": 16145358,
+ "percentage": 31.0
},
{
"name": "buddhism",
- "percentage": 17.0,
- "population": 8853906
+ "population": 8853906,
+ "percentage": 17.0
},
{
"name": "others",
- "percentage": 2.0,
- "population": 1041636
+ "population": 1041636,
+ "percentage": 2.0
}
],
"ethnicity": [
@@ -40304,7 +40421,14 @@
},
"nationalHoliday": "Gaecheonjeol",
"anthem": "Aegukga",
- "hdi": 0.937
+ "hdi": 0.937,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kr.svg",
+ "png": "https://flagcdn.com/w320/kr.png",
+ "alt": "The flag of South Korea has a white field, at the center of which is a red and blue Taegeuk circle surrounded by four black trigrams, one in each corner.",
+ "emoji": "\ud83c\uddf0\ud83c\uddf7"
+ }
},
{
"name": {
@@ -40516,7 +40640,6 @@
"SRB"
],
"area": 10908,
- "flag": "\ud83c\uddfd\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -40529,11 +40652,6 @@
"female": "Kosovare"
}
],
- "flags": {
- "svg": "https://flagcdn.com/xk.svg",
- "png": "https://flagcdn.com/w320/xk.png",
- "alt": "The flag of Kosovo has a dark blue field with a gold-colored silhouette of the country in the center, with six five-pointed white stars in a slight arc over it."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/xk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/xk.png"
@@ -40576,28 +40694,28 @@
"religion": [
{
"name": "islam",
- "percentage": 93.5,
- "population": 1483526
+ "population": 1483526,
+ "percentage": 93.5
},
{
"name": "christianity",
- "percentage": 4.1,
- "population": 65053
+ "population": 65053,
+ "percentage": 4.1
},
{
"name": "no religion",
- "percentage": 0.5,
- "population": 7933
+ "population": 7933,
+ "percentage": 0.5
},
{
"name": "others",
- "percentage": 0.5,
- "population": 7933
+ "population": 7933,
+ "percentage": 0.5
},
{
"name": "undeclared",
- "percentage": 1.5,
- "population": 23800
+ "population": 23800,
+ "percentage": 1.5
}
],
"ethnicity": [
@@ -40647,7 +40765,14 @@
},
"nationalHoliday": null,
"anthem": "Europe",
- "hdi": 0.762
+ "hdi": 0.762,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/xk.svg",
+ "png": "https://flagcdn.com/w320/xk.png",
+ "alt": "The flag of Kosovo has a dark blue field with a gold-colored silhouette of the country in the center, with six five-pointed white stars in a slight arc over it.",
+ "emoji": "\ud83c\uddfd\ud83c\uddf0"
+ }
},
{
"name": {
@@ -40854,7 +40979,6 @@
"SAU"
],
"area": 17818,
- "flag": "\ud83c\uddf0\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -40867,11 +40991,6 @@
"female": "Kowe\u00eftienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kw.svg",
- "png": "https://flagcdn.com/w320/kw.png",
- "alt": "The flag of Kuwait is composed of three equal horizontal bands of green, white and red, with a black trapezium superimposed on the hoist side of the field. This trapezium has its base on the hoist end and spans about one-fourth the width of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kw.png"
@@ -40913,18 +41032,18 @@
"religion": [
{
"name": "islam",
- "percentage": 74.6,
- "population": 3719344
+ "population": 3719344,
+ "percentage": 74.6
},
{
"name": "christianity",
- "percentage": 18.2,
- "population": 907400
+ "population": 907400,
+ "percentage": 18.2
},
{
"name": "other",
- "percentage": 7.2,
- "population": 358972
+ "population": 358972,
+ "percentage": 7.2
}
],
"ethnicity": [
@@ -40966,7 +41085,14 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of Kuwait",
- "hdi": 0.852
+ "hdi": 0.852,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kw.svg",
+ "png": "https://flagcdn.com/w320/kw.png",
+ "alt": "The flag of Kuwait is composed of three equal horizontal bands of green, white and red, with a black trapezium superimposed on the hoist side of the field. This trapezium has its base on the hoist end and spans about one-fourth the width of the field.",
+ "emoji": "\ud83c\uddf0\ud83c\uddfc"
+ }
},
{
"name": {
@@ -41177,7 +41303,6 @@
"VNM"
],
"area": 236800,
- "flag": "\ud83c\uddf1\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -41190,11 +41315,6 @@
"female": "Laotienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/la.svg",
- "png": "https://flagcdn.com/w320/la.png",
- "alt": "The flag of Laos is composed of three horizontal bands of red, blue and red. The blue band is twice the height of the red bands and bears a white circle at its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/la.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/la.png"
@@ -41237,23 +41357,23 @@
"religion": [
{
"name": "buddhism",
- "percentage": 66.0,
- "population": 5249347
+ "population": 5249347,
+ "percentage": 66.0
},
{
"name": "tai folk religion",
- "percentage": 30.7,
- "population": 2441742
+ "population": 2441742,
+ "percentage": 30.7
},
{
"name": "christianity",
- "percentage": 1.5,
- "population": 119303
+ "population": 119303,
+ "percentage": 1.5
},
{
"name": "other",
- "percentage": 1.8,
- "population": 143164
+ "population": 143164,
+ "percentage": 1.8
}
],
"ethnicity": [
@@ -41319,7 +41439,14 @@
},
"nationalHoliday": null,
"anthem": "Pheng Xat Lao",
- "hdi": 0.617
+ "hdi": 0.617,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/la.svg",
+ "png": "https://flagcdn.com/w320/la.png",
+ "alt": "The flag of Laos is composed of three horizontal bands of red, blue and red. The blue band is twice the height of the red bands and bears a white circle at its center.",
+ "emoji": "\ud83c\uddf1\ud83c\udde6"
+ }
},
{
"name": {
@@ -41537,7 +41664,6 @@
"SYR"
],
"area": 10452,
- "flag": "\ud83c\uddf1\ud83c\udde7",
"demonyms": [
{
"lang": "eng",
@@ -41550,11 +41676,6 @@
"female": "Libanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lb.svg",
- "png": "https://flagcdn.com/w320/lb.png",
- "alt": "The flag of Lebanon is composed of three horizontal bands of red, white and red. The white band is twice the height of the red bands and bears a green Lebanese Cedar tree at its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lb.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lb.png"
@@ -41601,23 +41722,23 @@
"religion": [
{
"name": "islam",
- "percentage": 53.31,
- "population": 2859805
+ "population": 2859805,
+ "percentage": 53.31
},
{
"name": "christianity",
- "percentage": 41.4,
- "population": 2220896
+ "population": 2220896,
+ "percentage": 41.4
},
{
"name": "druze",
- "percentage": 5.21,
- "population": 279490
+ "population": 279490,
+ "percentage": 5.21
},
{
"name": "no religion",
- "percentage": 0.08,
- "population": 4292
+ "population": 4292,
+ "percentage": 0.08
}
],
"ethnicity": [
@@ -41655,7 +41776,14 @@
},
"nationalHoliday": null,
"anthem": "Lebanese national anthem",
- "hdi": 0.752
+ "hdi": 0.752,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lb.svg",
+ "png": "https://flagcdn.com/w320/lb.png",
+ "alt": "The flag of Lebanon is composed of three horizontal bands of red, white and red. The white band is twice the height of the red bands and bears a green Lebanese Cedar tree at its center.",
+ "emoji": "\ud83c\uddf1\ud83c\udde7"
+ }
},
{
"name": {
@@ -41862,7 +41990,6 @@
"SLE"
],
"area": 111369,
- "flag": "\ud83c\uddf1\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -41875,11 +42002,6 @@
"female": "Lib\u00e9rienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lr.svg",
- "png": "https://flagcdn.com/w320/lr.png",
- "alt": "The flag of Liberia is composed of eleven equal horizontal bands of red alternating with white. A blue square bearing a five-pointed white star is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lr.png"
@@ -41928,23 +42050,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 85.1,
- "population": 4627099
+ "population": 4627099,
+ "percentage": 85.1
},
{
"name": "islam",
- "percentage": 12.2,
- "population": 663344
+ "population": 663344,
+ "percentage": 12.2
},
{
"name": "no religion",
- "percentage": 1.4,
- "population": 76121
+ "population": 76121,
+ "percentage": 1.4
},
{
"name": "other",
- "percentage": 1.3,
- "population": 70684
+ "population": 70684,
+ "percentage": 1.3
}
],
"ethnicity": [],
@@ -41969,7 +42091,14 @@
},
"nationalHoliday": null,
"anthem": "All Hail, Liberia, Hail!",
- "hdi": 0.51
+ "hdi": 0.51,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lr.svg",
+ "png": "https://flagcdn.com/w320/lr.png",
+ "alt": "The flag of Liberia is composed of eleven equal horizontal bands of red alternating with white. A blue square bearing a five-pointed white star is superimposed in the canton.",
+ "emoji": "\ud83c\uddf1\ud83c\uddf7"
+ }
},
{
"name": {
@@ -42180,7 +42309,6 @@
"TUN"
],
"area": 1759540,
- "flag": "\ud83c\uddf1\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -42193,11 +42321,6 @@
"female": "Libyenne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ly.svg",
- "png": "https://flagcdn.com/w320/ly.png",
- "alt": "The flag of Libya is composed of three horizontal bands of red, black and green, with the black band twice the height of the other two bands. At the center of the black band is a fly-side facing white crescent and a five-pointed white star placed just outside the crescent opening."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ly.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ly.png"
@@ -42250,18 +42373,18 @@
"religion": [
{
"name": "islam",
- "percentage": 96.6,
- "population": 7110980
+ "population": 7110980,
+ "percentage": 96.6
},
{
"name": "christianity",
- "percentage": 2.7,
- "population": 198754
+ "population": 198754,
+ "percentage": 2.7
},
{
"name": "others",
- "percentage": 0.7,
- "population": 51529
+ "population": 51529,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -42299,7 +42422,14 @@
},
"nationalHoliday": null,
"anthem": "Libya, Libya, Libya",
- "hdi": 0.721
+ "hdi": 0.721,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ly.svg",
+ "png": "https://flagcdn.com/w320/ly.png",
+ "alt": "The flag of Libya is composed of three horizontal bands of red, black and green, with the black band twice the height of the other two bands. At the center of the black band is a fly-side facing white crescent and a five-pointed white star placed just outside the crescent opening.",
+ "emoji": "\ud83c\uddf1\ud83c\uddfe"
+ }
},
{
"name": {
@@ -42501,7 +42631,6 @@
"landlocked": false,
"borders": [],
"area": 616,
- "flag": "\ud83c\uddf1\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -42514,11 +42643,6 @@
"female": "Saint-Lucienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lc.svg",
- "png": "https://flagcdn.com/w320/lc.png",
- "alt": "The flag of Saint Lucia has a light blue field, at the center of which are two triangles which share a common base \u2014 a small golden-yellow isosceles triangle superimposed on a large white-edged black isosceles triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lc.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lc.png"
@@ -42565,28 +42689,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 77.4,
- "population": 142493
+ "population": 142493,
+ "percentage": 77.4
},
{
"name": "no religion",
- "percentage": 14.4,
- "population": 26510
+ "population": 26510,
+ "percentage": 14.4
},
{
"name": "rastafari",
- "percentage": 1.4,
- "population": 2577
+ "population": 2577,
+ "percentage": 1.4
},
{
"name": "other",
- "percentage": 2.7,
- "population": 4971
+ "population": 4971,
+ "percentage": 2.7
},
{
"name": "not stated",
- "percentage": 4.1,
- "population": 7548
+ "population": 7548,
+ "percentage": 4.1
}
],
"ethnicity": [
@@ -42632,7 +42756,14 @@
},
"nationalHoliday": null,
"anthem": "Sons and Daughters of Saint Lucia",
- "hdi": 0.748
+ "hdi": 0.748,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lc.svg",
+ "png": "https://flagcdn.com/w320/lc.png",
+ "alt": "The flag of Saint Lucia has a light blue field, at the center of which are two triangles which share a common base \u2014 a small golden-yellow isosceles triangle superimposed on a large white-edged black isosceles triangle.",
+ "emoji": "\ud83c\uddf1\ud83c\udde8"
+ }
},
{
"name": {
@@ -42839,7 +42970,6 @@
"CHE"
],
"area": 160,
- "flag": "\ud83c\uddf1\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -42852,11 +42982,6 @@
"female": "Liechtensteinoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/li.svg",
- "png": "https://flagcdn.com/w320/li.png",
- "alt": "The flag of Liechtenstein is composed of two equal horizontal bands of blue and red, with a golden-yellow crown on the hoist side of the blue band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/li.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/li.png"
@@ -42894,23 +43019,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 79.4,
- "population": 32738
+ "population": 32738,
+ "percentage": 79.4
},
{
"name": "no religion",
- "percentage": 9.6,
- "population": 3958
+ "population": 3958,
+ "percentage": 9.6
},
{
"name": "islam",
- "percentage": 6.0,
- "population": 2474
+ "population": 2474,
+ "percentage": 6.0
},
{
"name": "other",
- "percentage": 5.0,
- "population": 2062
+ "population": 2062,
+ "percentage": 5.0
}
],
"ethnicity": [],
@@ -42935,7 +43060,14 @@
},
"nationalHoliday": null,
"anthem": "Oben am jungen Rhein",
- "hdi": 0.938
+ "hdi": 0.938,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/li.svg",
+ "png": "https://flagcdn.com/w320/li.png",
+ "alt": "The flag of Liechtenstein is composed of two equal horizontal bands of blue and red, with a golden-yellow crown on the hoist side of the blue band.",
+ "emoji": "\ud83c\uddf1\ud83c\uddee"
+ }
},
{
"name": {
@@ -43152,7 +43284,6 @@
"landlocked": false,
"borders": [],
"area": 65610,
- "flag": "\ud83c\uddf1\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -43165,11 +43296,6 @@
"female": "Sri-lankaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lk.svg",
- "png": "https://flagcdn.com/w320/lk.png",
- "alt": "The flag of Sri Lanka features two large adjacent but separate rectangular areas, centered on a golden-yellow field. The smaller hoist-side rectangle is divided into two equal vertical bands of teal and orange, and the larger fly-side rectangle is maroon with a centered golden-yellow lion holding a Kastane sword in its right fore-paw and four golden-yellow Bo leaves, one in each corner."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lk.png"
@@ -43212,28 +43338,28 @@
"religion": [
{
"name": "buddhism",
- "percentage": 69.8,
- "population": 16263400
+ "population": 16263400,
+ "percentage": 69.8
},
{
"name": "hinduism",
- "percentage": 12.6,
- "population": 2935800
+ "population": 2935800,
+ "percentage": 12.6
},
{
"name": "islam",
- "percentage": 10.7,
- "population": 2493100
+ "population": 2493100,
+ "percentage": 10.7
},
{
"name": "christianity",
- "percentage": 6.9,
- "population": 1607700
+ "population": 1607700,
+ "percentage": 6.9
},
{
"name": "other/none",
- "percentage": 0.1,
- "population": 23300
+ "population": 23300,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -43279,7 +43405,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Sri Lanka Matha",
- "hdi": 0.776
+ "hdi": 0.776,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lk.svg",
+ "png": "https://flagcdn.com/w320/lk.png",
+ "alt": "The flag of Sri Lanka features two large adjacent but separate rectangular areas, centered on a golden-yellow field. The smaller hoist-side rectangle is divided into two equal vertical bands of teal and orange, and the larger fly-side rectangle is maroon with a centered golden-yellow lion holding a Kastane sword in its right fore-paw and four golden-yellow Bo leaves, one in each corner.",
+ "emoji": "\ud83c\uddf1\ud83c\uddf0"
+ }
},
{
"name": {
@@ -43501,7 +43634,6 @@
"ZAF"
],
"area": 30355,
- "flag": "\ud83c\uddf1\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -43514,11 +43646,6 @@
"female": "L\u00e9sothienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ls.svg",
- "png": "https://flagcdn.com/w320/ls.png",
- "alt": "The flag of Lesotho is composed of three horizontal bands of blue, white and green in the ratio of 3:4:3. A black mokorotlo \u2014 a Basotho hat \u2014 is centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ls.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ls.png"
@@ -43567,23 +43694,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 92.1,
- "population": 2036005
+ "population": 2036005,
+ "percentage": 92.1
},
{
"name": "traditional faiths",
- "percentage": 6.6,
- "population": 145903
+ "population": 145903,
+ "percentage": 6.6
},
{
"name": "no religion",
- "percentage": 1.0,
- "population": 22106
+ "population": 22106,
+ "percentage": 1.0
},
{
"name": "others",
- "percentage": 0.3,
- "population": 6632
+ "population": 6632,
+ "percentage": 0.3
}
],
"ethnicity": [
@@ -43617,7 +43744,14 @@
},
"nationalHoliday": null,
"anthem": "Lesotho Fatse La Bontata Rona",
- "hdi": 0.55
+ "hdi": 0.55,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ls.svg",
+ "png": "https://flagcdn.com/w320/ls.png",
+ "alt": "The flag of Lesotho is composed of three horizontal bands of blue, white and green in the ratio of 3:4:3. A black mokorotlo \u2014 a Basotho hat \u2014 is centered in the white band.",
+ "emoji": "\ud83c\uddf1\ud83c\uddf8"
+ }
},
{
"name": {
@@ -43826,7 +43960,6 @@
"RUS"
],
"area": 65300,
- "flag": "\ud83c\uddf1\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -43839,11 +43972,6 @@
"female": "Lituanienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lt.svg",
- "png": "https://flagcdn.com/w320/lt.png",
- "alt": "The flag of Lithuania is composed of three equal horizontal bands of yellow, green and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lt.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lt.png"
@@ -43886,23 +44014,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 79.4,
- "population": 2300559
+ "population": 2300559,
+ "percentage": 79.4
},
{
"name": "no religion",
- "percentage": 6.1,
- "population": 176743
+ "population": 176743,
+ "percentage": 6.1
},
{
"name": "others",
- "percentage": 0.8,
- "population": 23179
+ "population": 23179,
+ "percentage": 0.8
},
{
"name": "no answer",
- "percentage": 13.7,
- "population": 396948
+ "population": 396948,
+ "percentage": 13.7
}
],
"ethnicity": [
@@ -43952,7 +44080,14 @@
},
"nationalHoliday": null,
"anthem": "Tauti\u0161ka giesm\u0117",
- "hdi": 39.0
+ "hdi": 39.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lt.svg",
+ "png": "https://flagcdn.com/w320/lt.png",
+ "alt": "The flag of Lithuania is composed of three equal horizontal bands of yellow, green and red.",
+ "emoji": "\ud83c\uddf1\ud83c\uddf9"
+ }
},
{
"name": {
@@ -44184,7 +44319,6 @@
"DEU"
],
"area": 2586,
- "flag": "\ud83c\uddf1\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -44197,11 +44331,6 @@
"female": "Luxembourgeoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lu.svg",
- "png": "https://flagcdn.com/w320/lu.png",
- "alt": "The flag of Luxembourg is composed of three equal horizontal bands of red, white and light blue."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lu.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lu.png"
@@ -44244,18 +44373,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 53.0,
- "population": 366202
+ "population": 366202,
+ "percentage": 53.0
},
{
"name": "no religion",
- "percentage": 38.0,
- "population": 262560
+ "population": 262560,
+ "percentage": 38.0
},
{
"name": "other",
- "percentage": 9.0,
- "population": 62185
+ "population": 62185,
+ "percentage": 9.0
}
],
"ethnicity": [],
@@ -44280,7 +44409,14 @@
},
"nationalHoliday": null,
"anthem": "Ons Heemecht",
- "hdi": 0.922
+ "hdi": 0.922,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lu.svg",
+ "png": "https://flagcdn.com/w320/lu.png",
+ "alt": "The flag of Luxembourg is composed of three equal horizontal bands of red, white and light blue.",
+ "emoji": "\ud83c\uddf1\ud83c\uddfa"
+ }
},
{
"name": {
@@ -44489,7 +44625,6 @@
"RUS"
],
"area": 64559,
- "flag": "\ud83c\uddf1\ud83c\uddfb",
"demonyms": [
{
"lang": "eng",
@@ -44502,11 +44637,6 @@
"female": "Lettone"
}
],
- "flags": {
- "svg": "https://flagcdn.com/lv.svg",
- "png": "https://flagcdn.com/w320/lv.png",
- "alt": "The flag of Latvia has a carmine-red field with a thin white horizontal band across the middle of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/lv.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/lv.png"
@@ -44549,18 +44679,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 64.0,
- "population": 1179025
+ "population": 1179025,
+ "percentage": 64.0
},
{
"name": "no religion",
- "percentage": 35.0,
- "population": 644779
+ "population": 644779,
+ "percentage": 35.0
},
{
"name": "others",
- "percentage": 1.0,
- "population": 18422
+ "population": 18422,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -44614,7 +44744,14 @@
},
"nationalHoliday": null,
"anthem": "Dievs, sv\u0113t\u012b Latviju!",
- "hdi": 0.889
+ "hdi": 0.889,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/lv.svg",
+ "png": "https://flagcdn.com/w320/lv.png",
+ "alt": "The flag of Latvia has a carmine-red field with a thin white horizontal band across the middle of the field.",
+ "emoji": "\ud83c\uddf1\ud83c\uddfb"
+ }
},
{
"name": {
@@ -44824,7 +44961,6 @@
"CHN"
],
"area": 30,
- "flag": "\ud83c\uddf2\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -44837,11 +44973,6 @@
"female": "Macanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mo.svg",
- "png": "https://flagcdn.com/w320/mo.png",
- "alt": "The flag of Macau is green with a lotus flower above a stylized bridge and water in white, under an arc of five five-pointed gold stars."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mo.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mo.png"
@@ -44914,7 +45045,14 @@
},
"nationalHoliday": "National Day of the People's Republic of China",
"anthem": "March of the Volunteers",
- "hdi": 0.934
+ "hdi": 0.934,
+ "sovereignState": "CHN",
+ "flag": {
+ "svg": "https://flagcdn.com/mo.svg",
+ "png": "https://flagcdn.com/w320/mo.png",
+ "alt": "The flag of Macau is green with a lotus flower above a stylized bridge and water in white, under an arc of five five-pointed gold stars.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf4"
+ }
},
{
"name": {
@@ -45122,7 +45260,6 @@
"SXM"
],
"area": 53,
- "flag": "\ud83c\uddf2\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -45135,11 +45272,6 @@
"female": "Saint-Martinoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mf.svg",
- "png": "https://flagcdn.com/w320/mf.png",
- "alt": "The flag of Saint Martin is composed of three equal vertical bands of blue, white and red."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -45187,7 +45319,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/mf.svg",
+ "png": "https://flagcdn.com/w320/mf.png",
+ "alt": "The flag of Saint Martin is composed of three equal vertical bands of blue, white and red.",
+ "emoji": "\ud83c\uddf2\ud83c\uddeb"
+ }
},
{
"name": {
@@ -45407,7 +45546,6 @@
"ESP"
],
"area": 446550,
- "flag": "\ud83c\uddf2\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -45420,11 +45558,6 @@
"female": "Marocaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ma.svg",
- "png": "https://flagcdn.com/w320/ma.png",
- "alt": "The flag of Morocco features a green pentagram \u2014 a five-pointed linear star \u2014 centered on a red field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ma.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ma.png"
@@ -45482,13 +45615,13 @@
"religion": [
{
"name": "islam",
- "percentage": 99.68,
- "population": 37373205
+ "population": 37373205,
+ "percentage": 99.68
},
{
"name": "others",
- "percentage": 0.3,
- "population": 112480
+ "population": 112480,
+ "percentage": 0.3
}
],
"ethnicity": [],
@@ -45513,7 +45646,14 @@
},
"nationalHoliday": "Revolution of the King and the People",
"anthem": "Cherifian Anthem",
- "hdi": 0.71
+ "hdi": 0.71,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ma.svg",
+ "png": "https://flagcdn.com/w320/ma.png",
+ "alt": "The flag of Morocco features a green pentagram \u2014 a five-pointed linear star \u2014 centered on a red field.",
+ "emoji": "\ud83c\uddf2\ud83c\udde6"
+ }
},
{
"name": {
@@ -45719,7 +45859,6 @@
"FRA"
],
"area": 2.02,
- "flag": "\ud83c\uddf2\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -45732,11 +45871,6 @@
"female": "Mon\u00e9gasque"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mc.svg",
- "png": "https://flagcdn.com/w320/mc.png",
- "alt": "The flag of Monaco is composed of two equal horizontal bands of red and white."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mc.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mc.png"
@@ -45768,28 +45902,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 86.0,
- "population": 33044
+ "population": 33044,
+ "percentage": 86.0
},
{
"name": "no religion",
- "percentage": 11.7,
- "population": 4495
+ "population": 4495,
+ "percentage": 11.7
},
{
"name": "judaism",
- "percentage": 1.7,
- "population": 653
+ "population": 653,
+ "percentage": 1.7
},
{
"name": "islam",
- "percentage": 0.4,
- "population": 154
+ "population": 154,
+ "percentage": 0.4
},
{
"name": "other",
- "percentage": 0.2,
- "population": 77
+ "population": 77,
+ "percentage": 0.2
}
],
"ethnicity": [],
@@ -45814,7 +45948,14 @@
},
"nationalHoliday": null,
"anthem": "Hymne mon\u00e9gasque",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mc.svg",
+ "png": "https://flagcdn.com/w320/mc.png",
+ "alt": "The flag of Monaco is composed of two equal horizontal bands of red and white.",
+ "emoji": "\ud83c\uddf2\ud83c\udde8"
+ }
},
{
"name": {
@@ -46022,7 +46163,6 @@
"UKR"
],
"area": 33847,
- "flag": "\ud83c\uddf2\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -46035,11 +46175,6 @@
"female": "Moldave"
}
],
- "flags": {
- "svg": "https://flagcdn.com/md.svg",
- "png": "https://flagcdn.com/w320/md.png",
- "alt": "The flag of Moldova is composed of three equal vertical bands of blue, yellow and red, with the national coat of arms centered in the yellow band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/md.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/md.png"
@@ -46082,23 +46217,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 97.4,
- "population": 2319411
+ "population": 2319411,
+ "percentage": 97.4
},
{
"name": "other",
- "percentage": 0.3,
- "population": 7144
+ "population": 7144,
+ "percentage": 0.3
},
{
"name": "no religion",
- "percentage": 1.5,
- "population": 35720
+ "population": 35720,
+ "percentage": 1.5
},
{
"name": "unanswered",
- "percentage": 0.8,
- "population": 19051
+ "population": 19051,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -46152,7 +46287,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Limba noastr\u0103",
- "hdi": 0.785
+ "hdi": 0.785,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/md.svg",
+ "png": "https://flagcdn.com/w320/md.png",
+ "alt": "The flag of Moldova is composed of three equal vertical bands of blue, yellow and red, with the national coat of arms centered in the yellow band.",
+ "emoji": "\ud83c\uddf2\ud83c\udde9"
+ }
},
{
"name": {
@@ -46368,7 +46510,6 @@
"landlocked": false,
"borders": [],
"area": 587041,
- "flag": "\ud83c\uddf2\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -46381,11 +46522,6 @@
"female": "Malgache"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mg.svg",
- "png": "https://flagcdn.com/w320/mg.png",
- "alt": "The flag of Madagascar features a white vertical band on the hoist side that takes up about one-third the width of the field, and two equal horizontal bands of red and green adjoining the vertical band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mg.png"
@@ -46434,28 +46570,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 84.7,
- "population": 27074318
+ "population": 27074318,
+ "percentage": 84.7
},
{
"name": "no religion",
- "percentage": 7.3,
- "population": 2333442
+ "population": 2333442,
+ "percentage": 7.3
},
{
"name": "traditional faiths",
- "percentage": 4.7,
- "population": 1502353
+ "population": 1502353,
+ "percentage": 4.7
},
{
"name": "islam",
- "percentage": 3.1,
- "population": 990914
+ "population": 990914,
+ "percentage": 3.1
},
{
"name": "others",
- "percentage": 0.3,
- "population": 95895
+ "population": 95895,
+ "percentage": 0.3
}
],
"ethnicity": [
@@ -46513,7 +46649,14 @@
},
"nationalHoliday": null,
"anthem": "Ry Tanindrazanay malala \u00f4!",
- "hdi": 0.487
+ "hdi": 0.487,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mg.svg",
+ "png": "https://flagcdn.com/w320/mg.png",
+ "alt": "The flag of Madagascar features a white vertical band on the hoist side that takes up about one-third the width of the field, and two equal horizontal bands of red and green adjoining the vertical band.",
+ "emoji": "\ud83c\uddf2\ud83c\uddec"
+ }
},
{
"name": {
@@ -46718,7 +46861,6 @@
"landlocked": false,
"borders": [],
"area": 300,
- "flag": "\ud83c\uddf2\ud83c\uddfb",
"demonyms": [
{
"lang": "eng",
@@ -46731,11 +46873,6 @@
"female": "Maldivienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mv.svg",
- "png": "https://flagcdn.com/w320/mv.png",
- "alt": "The flag of Maldives has a red field, at the center of which is a large green rectangle bearing a fly-side facing white crescent."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mv.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mv.png"
@@ -46798,7 +46935,14 @@
},
"nationalHoliday": null,
"anthem": "Gaumiii salaaam",
- "hdi": 0.766
+ "hdi": 0.766,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mv.svg",
+ "png": "https://flagcdn.com/w320/mv.png",
+ "alt": "The flag of Maldives has a red field, at the center of which is a large green rectangle bearing a fly-side facing white crescent.",
+ "emoji": "\ud83c\uddf2\ud83c\uddfb"
+ }
},
{
"name": {
@@ -47007,7 +47151,6 @@
"USA"
],
"area": 1964375,
- "flag": "\ud83c\uddf2\ud83c\uddfd",
"demonyms": [
{
"lang": "eng",
@@ -47020,11 +47163,6 @@
"female": "Mexicaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mx.svg",
- "png": "https://flagcdn.com/w320/mx.png",
- "alt": "The flag of Mexico is composed of three equal vertical bands of green, white and red, with the national coat of arms centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mx.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mx.png"
@@ -47079,23 +47217,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 88.9,
- "population": 117300794
+ "population": 117300794,
+ "percentage": 88.9
},
{
"name": "irreligion",
- "percentage": 8.1,
- "population": 10687699
+ "population": 10687699,
+ "percentage": 8.1
},
{
"name": "other religion",
- "percentage": 2.4,
- "population": 3166726
+ "population": 3166726,
+ "percentage": 2.4
},
{
"name": "prefer not to say",
- "percentage": 0.5,
- "population": 659734
+ "population": 659734,
+ "percentage": 0.5
}
],
"ethnicity": [],
@@ -47120,7 +47258,14 @@
},
"nationalHoliday": null,
"anthem": "Himno Nacional Mexicano",
- "hdi": 0.789
+ "hdi": 0.789,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mx.svg",
+ "png": "https://flagcdn.com/w320/mx.png",
+ "alt": "The flag of Mexico is composed of three equal vertical bands of green, white and red, with the national coat of arms centered in the white band.",
+ "emoji": "\ud83c\uddf2\ud83c\uddfd"
+ }
},
{
"name": {
@@ -47335,7 +47480,6 @@
"landlocked": false,
"borders": [],
"area": 181,
- "flag": "\ud83c\uddf2\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -47348,11 +47492,6 @@
"female": "Marshallaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mh.svg",
- "png": "https://flagcdn.com/w320/mh.png",
- "alt": "The flag of Marshall Islands has a blue field with two broadening adjacent diagonal bands of orange and white that extend from the lower hoist-side corner to the upper fly-side corner of the field. A large white star with twenty-four rays \u2014 four large rays at the cardinal points and twenty smaller rays \u2014 is situated in the upper hoist-side corner above the diagonal bands."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mh.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mh.png"
@@ -47384,18 +47523,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.2,
- "population": 51108
+ "population": 51108,
+ "percentage": 96.2
},
{
"name": "no religion",
- "percentage": 1.1,
- "population": 584
+ "population": 584,
+ "percentage": 1.1
},
{
"name": "others",
- "percentage": 2.7,
- "population": 1434
+ "population": 1434,
+ "percentage": 2.7
}
],
"ethnicity": [
@@ -47429,7 +47568,14 @@
},
"nationalHoliday": null,
"anthem": "Forever Marshall Islands",
- "hdi": 0.733
+ "hdi": 0.733,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mh.svg",
+ "png": "https://flagcdn.com/w320/mh.png",
+ "alt": "The flag of Marshall Islands has a blue field with two broadening adjacent diagonal bands of orange and white that extend from the lower hoist-side corner to the upper fly-side corner of the field. A large white star with twenty-four rays \u2014 four large rays at the cardinal points and twenty smaller rays \u2014 is situated in the upper hoist-side corner above the diagonal bands.",
+ "emoji": "\ud83c\uddf2\ud83c\udded"
+ }
},
{
"name": {
@@ -47641,7 +47787,6 @@
"SRB"
],
"area": 25713,
- "flag": "\ud83c\uddf2\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -47654,11 +47799,6 @@
"female": "Mac\u00e9donienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mk.svg",
- "png": "https://flagcdn.com/w320/mk.png",
- "alt": "The flag of North Macedonia has a red field, at the center of which is a golden-yellow sun with eight broadening rays that extend to the edges of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mk.png"
@@ -47701,28 +47841,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 60.4,
- "population": 1109375
+ "population": 1109375,
+ "percentage": 60.4
},
{
"name": "islam",
- "percentage": 32.2,
- "population": 591422
+ "population": 591422,
+ "percentage": 32.2
},
{
"name": "no religion",
- "percentage": 0.1,
- "population": 1837
+ "population": 1837,
+ "percentage": 0.1
},
{
"name": "other",
- "percentage": 0.1,
- "population": 1837
+ "population": 1837,
+ "percentage": 0.1
},
{
"name": "data taken from administrative sources",
- "percentage": 7.2,
- "population": 132243
+ "population": 132243,
+ "percentage": 7.2
}
],
"ethnicity": [
@@ -47784,7 +47924,14 @@
},
"nationalHoliday": null,
"anthem": "Denes nad Makedonija",
- "hdi": 0.815
+ "hdi": 0.815,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mk.svg",
+ "png": "https://flagcdn.com/w320/mk.png",
+ "alt": "The flag of North Macedonia has a red field, at the center of which is a golden-yellow sun with eight broadening rays that extend to the edges of the field.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf0"
+ }
},
{
"name": {
@@ -47996,7 +48143,6 @@
"SEN"
],
"area": 1240192,
- "flag": "\ud83c\uddf2\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -48009,11 +48155,6 @@
"female": "Malienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ml.svg",
- "png": "https://flagcdn.com/w320/ml.png",
- "alt": "The flag of Mali is composed of three equal vertical bands of green, yellow and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ml.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ml.png"
@@ -48062,8 +48203,8 @@
"religion": [
{
"name": "other",
- "percentage": 5.0,
- "population": 1099530
+ "population": 1099530,
+ "percentage": 5.0
}
],
"ethnicity": [
@@ -48129,7 +48270,14 @@
},
"nationalHoliday": "Mali Independence Day",
"anthem": "Pour l'Afrique et pour toi",
- "hdi": 0.419
+ "hdi": 0.419,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ml.svg",
+ "png": "https://flagcdn.com/w320/ml.png",
+ "alt": "The flag of Mali is composed of three equal vertical bands of green, yellow and red.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf1"
+ }
},
{
"name": {
@@ -48344,7 +48492,6 @@
"landlocked": false,
"borders": [],
"area": 316,
- "flag": "\ud83c\uddf2\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -48357,11 +48504,6 @@
"female": "Maltaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mt.svg",
- "png": "https://flagcdn.com/w320/mt.png",
- "alt": "The flag of Malta is composed of two equal vertical bands of white and red. A representation of the George cross edged in red is situated on the upper hoist-side corner of the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mt.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mt.png"
@@ -48404,28 +48546,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 88.5,
- "population": 489594
+ "population": 489594,
+ "percentage": 88.5
},
{
"name": "no religion",
- "percentage": 5.1,
- "population": 28214
+ "population": 28214,
+ "percentage": 5.1
},
{
"name": "islam",
- "percentage": 3.9,
- "population": 21575
+ "population": 21575,
+ "percentage": 3.9
},
{
"name": "hinduism",
- "percentage": 1.4,
- "population": 7745
+ "population": 7745,
+ "percentage": 1.4
},
{
"name": "other",
- "percentage": 1.1,
- "population": 6085
+ "population": 6085,
+ "percentage": 1.1
}
],
"ethnicity": [
@@ -48459,7 +48601,14 @@
},
"nationalHoliday": null,
"anthem": "L-Innu Malti",
- "hdi": 0.924
+ "hdi": 0.924,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mt.svg",
+ "png": "https://flagcdn.com/w320/mt.png",
+ "alt": "The flag of Malta is composed of two equal vertical bands of white and red. A representation of the George cross edged in red is situated on the upper hoist-side corner of the white band.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf9"
+ }
},
{
"name": {
@@ -48670,7 +48819,6 @@
"THA"
],
"area": 676578,
- "flag": "\ud83c\uddf2\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -48683,11 +48831,6 @@
"female": "Birmane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mm.svg",
- "png": "https://flagcdn.com/w320/mm.png",
- "alt": "The flag of Myanmar is composed of three equal horizontal bands of yellow, green and red, with a large five-pointed white star superimposed at the center of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mm.png"
@@ -48730,38 +48873,38 @@
"religion": [
{
"name": "buddhism",
- "percentage": 87.9,
- "population": 49022034
+ "population": 49022034,
+ "percentage": 87.9
},
{
"name": "christianity",
- "percentage": 6.2,
- "population": 3457754
+ "population": 3457754,
+ "percentage": 6.2
},
{
"name": "islam",
- "percentage": 4.3,
- "population": 2398120
+ "population": 2398120,
+ "percentage": 4.3
},
{
"name": "animism",
- "percentage": 0.8,
- "population": 446162
+ "population": 446162,
+ "percentage": 0.8
},
{
"name": "hinduism",
- "percentage": 0.5,
- "population": 278851
+ "population": 278851,
+ "percentage": 0.5
},
{
"name": "no religion",
- "percentage": 0.1,
- "population": 55770
+ "population": 55770,
+ "percentage": 0.1
},
{
"name": "other",
- "percentage": 0.2,
- "population": 111540
+ "population": 111540,
+ "percentage": 0.2
}
],
"ethnicity": [
@@ -48819,7 +48962,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Kaba Ma Kyei",
- "hdi": 0.609
+ "hdi": 0.609,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mm.svg",
+ "png": "https://flagcdn.com/w320/mm.png",
+ "alt": "The flag of Myanmar is composed of three equal horizontal bands of yellow, green and red, with a large five-pointed white star superimposed at the center of the field.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf2"
+ }
},
{
"name": {
@@ -49028,7 +49178,6 @@
"SRB"
],
"area": 13812,
- "flag": "\ud83c\uddf2\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -49041,11 +49190,6 @@
"female": "Mont\u00e9n\u00e9grine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/me.svg",
- "png": "https://flagcdn.com/w320/me.png",
- "alt": "The flag of Montenegro features a large red central rectangular area surrounded by a golden-yellow border. The coat of arms of Montenegro is centered in the red rectangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/me.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/me.png"
@@ -49088,28 +49232,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 74.9,
- "population": 466872
+ "population": 466872,
+ "percentage": 74.9
},
{
"name": "islam",
- "percentage": 19.9,
- "population": 124042
+ "population": 124042,
+ "percentage": 19.9
},
{
"name": "no religion",
- "percentage": 2.7,
- "population": 16830
+ "population": 16830,
+ "percentage": 2.7
},
{
"name": "other",
- "percentage": 0.3,
- "population": 1870
+ "population": 1870,
+ "percentage": 0.3
},
{
"name": "not stated",
- "percentage": 2.2,
- "population": 13713
+ "population": 13713,
+ "percentage": 2.2
}
],
"ethnicity": [
@@ -49159,7 +49303,14 @@
},
"nationalHoliday": null,
"anthem": "Oj, svijetla majska zoro",
- "hdi": 0.862
+ "hdi": 0.862,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/me.svg",
+ "png": "https://flagcdn.com/w320/me.png",
+ "alt": "The flag of Montenegro features a large red central rectangular area surrounded by a golden-yellow border. The coat of arms of Montenegro is centered in the red rectangle.",
+ "emoji": "\ud83c\uddf2\ud83c\uddea"
+ }
},
{
"name": {
@@ -49364,7 +49515,6 @@
"RUS"
],
"area": 1564110,
- "flag": "\ud83c\uddf2\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -49377,11 +49527,6 @@
"female": "Mongole"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mn.svg",
- "png": "https://flagcdn.com/w320/mn.png",
- "alt": "The flag of Mongolia is composed of three equal vertical bands of red, blue and red, with the national emblem \u2014 the Soyombo \u2014 in gold centered in the hoist-side red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mn.png"
@@ -49419,33 +49564,33 @@
"religion": [
{
"name": "buddhism",
- "percentage": 51.7,
- "population": 1811951
+ "population": 1811951,
+ "percentage": 51.7
},
{
"name": "no religion",
- "percentage": 40.6,
- "population": 1422925
+ "population": 1422925,
+ "percentage": 40.6
},
{
"name": "islam",
- "percentage": 3.2,
- "population": 112152
+ "population": 112152,
+ "percentage": 3.2
},
{
"name": "shamanism",
- "percentage": 2.5,
- "population": 87619
+ "population": 87619,
+ "percentage": 2.5
},
{
"name": "christianity",
- "percentage": 1.3,
- "population": 45562
+ "population": 45562,
+ "percentage": 1.3
},
{
"name": "other",
- "percentage": 0.7,
- "population": 24533
+ "population": 24533,
+ "percentage": 0.7
}
],
"ethnicity": [
@@ -49483,7 +49628,14 @@
},
"nationalHoliday": null,
"anthem": "National anthem of Mongolia",
- "hdi": 0.747
+ "hdi": 0.747,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mn.svg",
+ "png": "https://flagcdn.com/w320/mn.png",
+ "alt": "The flag of Mongolia is composed of three equal vertical bands of red, blue and red, with the national emblem \u2014 the Soyombo \u2014 in gold centered in the hoist-side red band.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf3"
+ }
},
{
"name": {
@@ -49709,7 +49861,6 @@
"landlocked": false,
"borders": [],
"area": 464,
- "flag": "\ud83c\uddf2\ud83c\uddf5",
"demonyms": [
{
"lang": "eng",
@@ -49722,11 +49873,6 @@
"female": "Am\u00e9ricaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mp.svg",
- "png": "https://flagcdn.com/w320/mp.png",
- "alt": "The flag of the Northern Mariana Islands is blue with a five-pointed white star on a gray latte stone (a traditional foundation stone) in the center, surrounded by a head lei (wreath)."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -49758,33 +49904,33 @@
"religion": [
{
"name": "christianity",
- "percentage": 81.3,
- "population": 45243
+ "population": 45243,
+ "percentage": 81.3
},
{
"name": "buddhism",
- "percentage": 10.6,
- "population": 5899
+ "population": 5899,
+ "percentage": 10.6
},
{
"name": "folk religion",
- "percentage": 5.3,
- "population": 2949
+ "population": 2949,
+ "percentage": 5.3
},
{
"name": "no religion",
- "percentage": 1.0,
- "population": 556
+ "population": 556,
+ "percentage": 1.0
},
{
"name": "islam",
- "percentage": 0.7,
- "population": 390
+ "population": 390,
+ "percentage": 0.7
},
{
"name": "other",
- "percentage": 1.1,
- "population": 612
+ "population": 612,
+ "percentage": 1.1
}
],
"ethnicity": [
@@ -49838,7 +49984,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Gi Talo Gi Halom Tasi",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mp.svg",
+ "png": "https://flagcdn.com/w320/mp.png",
+ "alt": "The flag of the Northern Mariana Islands is blue with a five-pointed white star on a gray latte stone (a traditional foundation stone) in the center, surrounded by a head lei (wreath).",
+ "emoji": "\ud83c\uddf2\ud83c\uddf5"
+ }
},
{
"name": {
@@ -50049,7 +50202,6 @@
"ZWE"
],
"area": 801590,
- "flag": "\ud83c\uddf2\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -50062,11 +50214,6 @@
"female": "Mozambicaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mz.svg",
- "png": "https://flagcdn.com/w320/mz.png",
- "alt": "The flag of Mozambique is composed of three equal horizontal bands of teal, black with white top and bottom edges, and yellow. A red isosceles triangle spanning about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end. This triangle bears a crossed rifle and hoe in black superimposed on an open white book which is superimposed on a five-pointed yellow star."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mz.png"
@@ -50115,28 +50262,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 62.0,
- "population": 21626224
+ "population": 21626224,
+ "percentage": 62.0
},
{
"name": "islam",
- "percentage": 19.1,
- "population": 6662272
+ "population": 6662272,
+ "percentage": 19.1
},
{
"name": "no religion",
- "percentage": 13.5,
- "population": 4708936
+ "population": 4708936,
+ "percentage": 13.5
},
{
"name": "traditional faith",
- "percentage": 4.3,
- "population": 1499883
+ "population": 1499883,
+ "percentage": 4.3
},
{
"name": "unknown",
- "percentage": 1.2,
- "population": 418572
+ "population": 418572,
+ "percentage": 1.2
}
],
"ethnicity": [
@@ -50178,7 +50325,14 @@
},
"nationalHoliday": null,
"anthem": "P\u00e1tria Amada",
- "hdi": 0.493
+ "hdi": 0.493,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mz.svg",
+ "png": "https://flagcdn.com/w320/mz.png",
+ "alt": "The flag of Mozambique is composed of three equal horizontal bands of teal, black with white top and bottom edges, and yellow. A red isosceles triangle spanning about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end. This triangle bears a crossed rifle and hoe in black superimposed on an open white book which is superimposed on a five-pointed yellow star.",
+ "emoji": "\ud83c\uddf2\ud83c\uddff"
+ }
},
{
"name": {
@@ -50387,7 +50541,6 @@
"ESH"
],
"area": 1030700,
- "flag": "\ud83c\uddf2\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -50400,11 +50553,6 @@
"female": "Mauritanienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mr.svg",
- "png": "https://flagcdn.com/w320/mr.png",
- "alt": "The flag of Mauritania has a green field with a thin red horizontal band at the top and bottom of the field. At the center of the field is a five-pointed yellow star above an upward facing yellow crescent."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mr.png"
@@ -50495,7 +50643,14 @@
},
"nationalHoliday": null,
"anthem": "National anthem of Mauritania",
- "hdi": 0.563
+ "hdi": 0.563,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mr.svg",
+ "png": "https://flagcdn.com/w320/mr.png",
+ "alt": "The flag of Mauritania has a green field with a thin red horizontal band at the top and bottom of the field. At the center of the field is a five-pointed yellow star above an upward facing yellow crescent.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf7"
+ }
},
{
"name": {
@@ -50697,7 +50852,6 @@
"landlocked": false,
"borders": [],
"area": 102,
- "flag": "\ud83c\uddf2\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -50710,11 +50864,6 @@
"female": "Montserratienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ms.svg",
- "png": "https://flagcdn.com/w320/ms.png",
- "alt": "The flag of Montserrat is blue with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms shows a woman in a green dress standing beside a yellow harp and embracing a large dark cross with her right arm."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ms.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ms.png"
@@ -50760,7 +50909,7 @@
"leaders": [
{
"title": "Monarchy of the United Kingdom",
- "name": "Charles III"
+ "name": ""
},
{
"title": "Governor of Montserrat",
@@ -50772,7 +50921,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/ms.svg",
+ "png": "https://flagcdn.com/w320/ms.png",
+ "alt": "The flag of Montserrat is blue with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms shows a woman in a green dress standing beside a yellow harp and embracing a large dark cross with her right arm.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf8"
+ }
},
{
"name": {
@@ -50974,7 +51130,6 @@
"landlocked": false,
"borders": [],
"area": 1128,
- "flag": "\ud83c\uddf2\ud83c\uddf6",
"demonyms": [
{
"lang": "eng",
@@ -50987,11 +51142,6 @@
"female": "Martiniquaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mq.svg",
- "png": "https://flagcdn.com/w320/mq.png",
- "alt": "The flag of Martinique consists of a red triangle at the hoist, with two horizontal bands, the upper green and the lower black."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mq.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mq.png"
@@ -51035,7 +51185,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "La Marseillaise",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/mq.svg",
+ "png": "https://flagcdn.com/w320/mq.png",
+ "alt": "The flag of Martinique consists of a red triangle at the hoist, with two horizontal bands, the upper green and the lower black.",
+ "emoji": "\ud83c\uddf2\ud83c\uddf6"
+ }
},
{
"name": {
@@ -51261,7 +51418,6 @@
"landlocked": false,
"borders": [],
"area": 2040,
- "flag": "\ud83c\uddf2\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -51274,11 +51430,6 @@
"female": "Mauricienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mu.svg",
- "png": "https://flagcdn.com/w320/mu.png",
- "alt": "The flag of Mauritius is composed of four equal horizontal bands of red, blue, yellow and green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mu.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mu.png"
@@ -51327,23 +51478,23 @@
"religion": [
{
"name": "hinduism",
- "percentage": 47.9,
- "population": 605750
+ "population": 605750,
+ "percentage": 47.9
},
{
"name": "christianity",
- "percentage": 32.3,
- "population": 408470
+ "population": 408470,
+ "percentage": 32.3
},
{
"name": "islam",
- "percentage": 18.2,
- "population": 230160
+ "population": 230160,
+ "percentage": 18.2
},
{
"name": "others",
- "percentage": 1.6,
- "population": 20234
+ "population": 20234,
+ "percentage": 1.6
}
],
"ethnicity": [
@@ -51385,7 +51536,14 @@
},
"nationalHoliday": null,
"anthem": "Motherland",
- "hdi": 0.806
+ "hdi": 0.806,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mu.svg",
+ "png": "https://flagcdn.com/w320/mu.png",
+ "alt": "The flag of Mauritius is composed of four equal horizontal bands of red, blue, yellow and green.",
+ "emoji": "\ud83c\uddf2\ud83c\uddfa"
+ }
},
{
"name": {
@@ -51603,7 +51761,6 @@
"ZMB"
],
"area": 118484,
- "flag": "\ud83c\uddf2\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -51616,11 +51773,6 @@
"female": "Malawienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/mw.svg",
- "png": "https://flagcdn.com/w320/mw.png",
- "alt": "The flag of Malawi is composed of three equal horizontal bands of black, red and green. The top half of a red sun with thirty-one visible rays is centered in the black band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/mw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/mw.png"
@@ -51669,28 +51821,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 82.3,
- "population": 17481087
+ "population": 17481087,
+ "percentage": 82.3
},
{
"name": "islam",
- "percentage": 13.8,
- "population": 2931215
+ "population": 2931215,
+ "percentage": 13.8
},
{
"name": "none",
- "percentage": 2.1,
- "population": 446054
+ "population": 446054,
+ "percentage": 2.1
},
{
"name": "traditional faiths",
- "percentage": 1.2,
- "population": 254888
+ "population": 254888,
+ "percentage": 1.2
},
{
"name": "other",
- "percentage": 0.6,
- "population": 127444
+ "population": 127444,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -51764,7 +51916,14 @@
},
"nationalHoliday": null,
"anthem": "Mulungu dalitsa Mala\u0175i",
- "hdi": 0.517
+ "hdi": 0.517,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/mw.svg",
+ "png": "https://flagcdn.com/w320/mw.png",
+ "alt": "The flag of Malawi is composed of three equal horizontal bands of black, red and green. The top half of a red sun with thirty-one visible rays is centered in the black band.",
+ "emoji": "\ud83c\uddf2\ud83c\uddfc"
+ }
},
{
"name": {
@@ -51981,7 +52140,6 @@
"THA"
],
"area": 330803,
- "flag": "\ud83c\uddf2\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -51994,11 +52152,6 @@
"female": "Malaisienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/my.svg",
- "png": "https://flagcdn.com/w320/my.png",
- "alt": "The flag of Malaysia is composed of fourteen equal horizontal bands of red alternating with white. A blue rectangle, bearing a fly-side facing yellow crescent and a fourteen-pointed yellow star placed just outside the crescent opening, is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/my.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/my.png"
@@ -52041,33 +52194,33 @@
"religion": [
{
"name": "islam",
- "percentage": 63.5,
- "population": 21948654
+ "population": 21948654,
+ "percentage": 63.5
},
{
"name": "buddhism",
- "percentage": 18.7,
- "population": 6463619
+ "population": 6463619,
+ "percentage": 18.7
},
{
"name": "christianity",
- "percentage": 9.1,
- "population": 3145398
+ "population": 3145398,
+ "percentage": 9.1
},
{
"name": "hinduism",
- "percentage": 6.1,
- "population": 2108453
+ "population": 2108453,
+ "percentage": 6.1
},
{
"name": "other",
- "percentage": 0.9,
- "population": 311083
+ "population": 311083,
+ "percentage": 0.9
},
{
"name": "unknown",
- "percentage": 1.8,
- "population": 622167
+ "population": 622167,
+ "percentage": 1.8
}
],
"ethnicity": [
@@ -52105,7 +52258,14 @@
},
"nationalHoliday": "Hari Merdeka",
"anthem": "Negaraku",
- "hdi": 0.819
+ "hdi": 0.819,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/my.svg",
+ "png": "https://flagcdn.com/w320/my.png",
+ "alt": "The flag of Malaysia is composed of fourteen equal horizontal bands of red alternating with white. A blue rectangle, bearing a fly-side facing yellow crescent and a fourteen-pointed yellow star placed just outside the crescent opening, is superimposed in the canton.",
+ "emoji": "\ud83c\uddf2\ud83c\uddfe"
+ }
},
{
"name": {
@@ -52309,7 +52469,6 @@
"landlocked": false,
"borders": [],
"area": 374,
- "flag": "\ud83c\uddfe\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -52322,11 +52481,6 @@
"female": "Mahoraise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/yt.svg",
- "png": "https://flagcdn.com/w320/yt.png",
- "alt": "The flag of Mayotte bears a white field with the national coat of arms in the center and the country's name in red above it. The coat of arms consists of a shield supported by two seahorses and the national motto in a banner below it. The shield has a white fringe and bears a blue field with an upwards-facing white crescent on the top half and a red field with two yellow ylang-ylang flowers on the bottom half."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -52377,7 +52531,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/yt.svg",
+ "png": "https://flagcdn.com/w320/yt.png",
+ "alt": "The flag of Mayotte bears a white field with the national coat of arms in the center and the country's name in red above it. The coat of arms consists of a shield supported by two seahorses and the national motto in a banner below it. The shield has a white fringe and bears a blue field with an upwards-facing white crescent on the top half and a red field with two yellow ylang-ylang flowers on the bottom half.",
+ "emoji": "\ud83c\uddfe\ud83c\uddf9"
+ }
},
{
"name": {
@@ -52679,7 +52840,6 @@
"ZMB"
],
"area": 825615,
- "flag": "\ud83c\uddf3\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -52692,11 +52852,6 @@
"female": "Namibienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/na.svg",
- "png": "https://flagcdn.com/w320/na.png",
- "alt": "The flag of Namibia features a white-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. A gold sun with twelve triangular rays is situated on the hoist side of the upper triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/na.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/na.png"
@@ -52745,18 +52900,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 87.9,
- "population": 2227205
+ "population": 2227205,
+ "percentage": 87.9
},
{
"name": "other",
- "percentage": 10.5,
- "population": 266048
+ "population": 266048,
+ "percentage": 10.5
},
{
"name": "no religion",
- "percentage": 1.6,
- "population": 40541
+ "population": 40541,
+ "percentage": 1.6
}
],
"ethnicity": [
@@ -52798,7 +52953,14 @@
},
"nationalHoliday": null,
"anthem": "Namibia, Land of the Brave",
- "hdi": 0.665
+ "hdi": 0.665,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/na.svg",
+ "png": "https://flagcdn.com/w320/na.png",
+ "alt": "The flag of Namibia features a white-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. A gold sun with twelve triangular rays is situated on the hoist side of the upper triangle.",
+ "emoji": "\ud83c\uddf3\ud83c\udde6"
+ }
},
{
"name": {
@@ -53000,7 +53162,6 @@
"landlocked": false,
"borders": [],
"area": 18575,
- "flag": "\ud83c\uddf3\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -53013,11 +53174,6 @@
"female": "N\u00e9o-Cal\u00e9donienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/nc.svg",
- "png": "https://flagcdn.com/w320/nc.png",
- "alt": "The flag of New Caledonia has three equal horizontal bands of blue, red, and green. A large yellow disk shifted slightly to the hoist side displays a black symbol of a native rooftop adornment."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/nc.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/nc.png"
@@ -53069,7 +53225,14 @@
},
"nationalHoliday": null,
"anthem": "Soyons unis, devenons fr\u00e8res",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/nc.svg",
+ "png": "https://flagcdn.com/w320/nc.png",
+ "alt": "The flag of New Caledonia has three equal horizontal bands of blue, red, and green. A large yellow disk shifted slightly to the hoist side displays a black symbol of a native rooftop adornment.",
+ "emoji": "\ud83c\uddf3\ud83c\udde8"
+ }
},
{
"name": {
@@ -53280,7 +53443,6 @@
"NGA"
],
"area": 1267000,
- "flag": "\ud83c\uddf3\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -53293,11 +53455,6 @@
"female": "Nig\u00e9rienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ne.svg",
- "png": "https://flagcdn.com/w320/ne.png",
- "alt": "The flag of Niger features three equal horizontal bands of orange, white and green, with an orange circle centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ne.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ne.png"
@@ -53346,23 +53503,23 @@
"religion": [
{
"name": "islam",
- "percentage": 99.3,
- "population": 26158385
+ "population": 26158385,
+ "percentage": 99.3
},
{
"name": "christianity",
- "percentage": 0.3,
- "population": 79028
+ "population": 79028,
+ "percentage": 0.3
},
{
"name": "animism",
- "percentage": 0.2,
- "population": 52686
+ "population": 52686,
+ "percentage": 0.2
},
{
"name": "irreligion",
- "percentage": 0.1,
- "population": 26343
+ "population": 26343,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -53424,7 +53581,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "L'Honneur de la Patrie",
- "hdi": 0.419
+ "hdi": 0.419,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ne.svg",
+ "png": "https://flagcdn.com/w320/ne.png",
+ "alt": "The flag of Niger features three equal horizontal bands of orange, white and green, with an orange circle centered in the white band.",
+ "emoji": "\ud83c\uddf3\ud83c\uddea"
+ }
},
{
"name": {
@@ -53639,7 +53803,6 @@
"landlocked": false,
"borders": [],
"area": 36,
- "flag": "\ud83c\uddf3\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -53652,11 +53815,6 @@
"female": "Norfolkaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/nf.svg",
- "png": "https://flagcdn.com/w320/nf.png",
- "alt": "The flag of Norfolk Island has three vertical bands of green, white, and green, with a large green native pine tree centered in the white band."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -53688,23 +53846,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 56.0,
- "population": 1225
+ "population": 1225,
+ "percentage": 56.0
},
{
"name": "irreligion",
- "percentage": 35.7,
- "population": 781
+ "population": 781,
+ "percentage": 35.7
},
{
"name": "hinduism",
- "percentage": 0.2,
- "population": 4
+ "population": 4,
+ "percentage": 0.2
},
{
"name": "buddhism",
- "percentage": 0.1,
- "population": 2
+ "population": 2,
+ "percentage": 0.1
}
],
"ethnicity": [],
@@ -53725,7 +53883,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "AUS",
+ "flag": {
+ "svg": "https://flagcdn.com/nf.svg",
+ "png": "https://flagcdn.com/w320/nf.png",
+ "alt": "The flag of Norfolk Island has three vertical bands of green, white, and green, with a large green native pine tree centered in the white band.",
+ "emoji": "\ud83c\uddf3\ud83c\uddeb"
+ }
},
{
"name": {
@@ -53935,7 +54100,6 @@
"NER"
],
"area": 923768,
- "flag": "\ud83c\uddf3\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -53948,11 +54112,6 @@
"female": "Nig\u00e9riane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ng.svg",
- "png": "https://flagcdn.com/w320/ng.png",
- "alt": "The flag of Nigeria is composed of three equal vertical bands of green, white and green."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ng.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ng.png"
@@ -54001,18 +54160,18 @@
"religion": [
{
"name": "islam",
- "percentage": 53.5,
- "population": 126659715
+ "population": 126659715,
+ "percentage": 53.5
},
{
"name": "christianity",
- "percentage": 45.9,
- "population": 108666933
+ "population": 108666933,
+ "percentage": 45.9
},
{
"name": "other",
- "percentage": 0.6,
- "population": 1420483
+ "population": 1420483,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -54074,7 +54233,14 @@
},
"nationalHoliday": null,
"anthem": "Nigeria, We Hail Thee",
- "hdi": 0.56
+ "hdi": 0.56,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ng.svg",
+ "png": "https://flagcdn.com/w320/ng.png",
+ "alt": "The flag of Nigeria is composed of three equal vertical bands of green, white and green.",
+ "emoji": "\ud83c\uddf3\ud83c\uddec"
+ }
},
{
"name": {
@@ -54281,7 +54447,6 @@
"HND"
],
"area": 130373,
- "flag": "\ud83c\uddf3\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -54294,11 +54459,6 @@
"female": "Nicaraguayenne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ni.svg",
- "png": "https://flagcdn.com/w320/ni.png",
- "alt": "The flag of Nicaragua is composed of three equal horizontal bands of blue, white and blue, with the national coat of arms centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ni.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ni.png"
@@ -54343,18 +54503,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 84.4,
- "population": 5635344
+ "population": 5635344,
+ "percentage": 84.4
},
{
"name": "no religion",
- "percentage": 14.7,
- "population": 981511
+ "population": 981511,
+ "percentage": 14.7
},
{
"name": "other",
- "percentage": 0.9,
- "population": 60093
+ "population": 60093,
+ "percentage": 0.9
}
],
"ethnicity": [
@@ -54381,7 +54541,8 @@
{
"title": "President of Nicaragua",
"name": "Daniel Ortega"
- },{
+ },
+ {
"title": "President of Nicaragua",
"name": "Rosario Murillo"
},
@@ -54399,7 +54560,14 @@
},
"nationalHoliday": null,
"anthem": "Salve a ti",
- "hdi": 0.706
+ "hdi": 0.706,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ni.svg",
+ "png": "https://flagcdn.com/w320/ni.png",
+ "alt": "The flag of Nicaragua is composed of three equal horizontal bands of blue, white and blue, with the national coat of arms centered in the white band.",
+ "emoji": "\ud83c\uddf3\ud83c\uddee"
+ }
},
{
"name": {
@@ -54612,7 +54780,6 @@
"landlocked": false,
"borders": [],
"area": 260,
- "flag": "\ud83c\uddf3\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -54625,11 +54792,6 @@
"female": "Niu\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/nu.svg",
- "png": "https://flagcdn.com/w320/nu.png",
- "alt": "The flag of Niue is yellow with the UK flag in the canton. The UK flag has five yellow five-pointed stars, with a large star on a blue disk in the center and smaller stars on each arm of the red cross."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -54690,7 +54852,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Ko e Iki he Lagi",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/nu.svg",
+ "png": "https://flagcdn.com/w320/nu.png",
+ "alt": "The flag of Niue is yellow with the UK flag in the canton. The UK flag has five yellow five-pointed stars, with a large star on a blue disk in the center and smaller stars on each arm of the red cross.",
+ "emoji": "\ud83c\uddf3\ud83c\uddfa"
+ }
},
{
"name": {
@@ -54898,7 +55067,6 @@
"DEU"
],
"area": 41865,
- "flag": "\ud83c\uddf3\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -54911,11 +55079,6 @@
"female": "N\u00e9erlandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/nl.svg",
- "png": "https://flagcdn.com/w320/nl.png",
- "alt": "The flag of the Netherlands is composed of three equal horizontal bands of red, white and blue."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/nl.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/nl.png"
@@ -54958,23 +55121,23 @@
"religion": [
{
"name": "no religion",
- "percentage": 56.0,
- "population": 9576400
+ "population": 9576400,
+ "percentage": 56.0
},
{
"name": "christianity",
- "percentage": 31.0,
- "population": 5301222
+ "population": 5301222,
+ "percentage": 31.0
},
{
"name": "islam",
- "percentage": 6.0,
- "population": 1026043
+ "population": 1026043,
+ "percentage": 6.0
},
{
"name": "other",
- "percentage": 7.0,
- "population": 1197050
+ "population": 1197050,
+ "percentage": 7.0
}
],
"ethnicity": [
@@ -55032,7 +55195,14 @@
},
"nationalHoliday": null,
"anthem": "Wilhelmus",
- "hdi": 8.0
+ "hdi": 8.0,
+ "sovereignState": "NLD",
+ "flag": {
+ "svg": "https://flagcdn.com/nl.svg",
+ "png": "https://flagcdn.com/w320/nl.png",
+ "alt": "The flag of the Netherlands is composed of three equal horizontal bands of red, white and blue.",
+ "emoji": "\ud83c\uddf3\ud83c\uddf1"
+ }
},
{
"name": {
@@ -55265,7 +55435,6 @@
"RUS"
],
"area": 386224,
- "flag": "\ud83c\uddf3\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -55278,11 +55447,6 @@
"female": "Norv\u00e9gienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/no.svg",
- "png": "https://flagcdn.com/w320/no.png",
- "alt": "The flag of Norway has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/no.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/no.png"
@@ -55325,23 +55489,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 68.5,
- "population": 3836719
+ "population": 3836719,
+ "percentage": 68.5
},
{
"name": "no religion",
- "percentage": 27.3,
- "population": 1529086
+ "population": 1529086,
+ "percentage": 27.3
},
{
"name": "islam",
- "percentage": 3.4,
- "population": 190436
+ "population": 190436,
+ "percentage": 3.4
},
{
"name": "other",
- "percentage": 0.8,
- "population": 44808
+ "population": 44808,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -55375,7 +55539,14 @@
},
"nationalHoliday": "Constitution Day",
"anthem": "Ja, vi elsker dette landet",
- "hdi": 0.97
+ "hdi": 0.97,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/no.svg",
+ "png": "https://flagcdn.com/w320/no.png",
+ "alt": "The flag of Norway has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\uddf3\ud83c\uddf4"
+ }
},
{
"name": {
@@ -55582,7 +55753,6 @@
"IND"
],
"area": 147181,
- "flag": "\ud83c\uddf3\ud83c\uddf5",
"demonyms": [
{
"lang": "eng",
@@ -55595,11 +55765,6 @@
"female": "N\u00e9palaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/np.svg",
- "png": "https://flagcdn.com/w320/np.png",
- "alt": "The flag of Nepal is the world's only non-quadrilateral flag of a sovereign country. It takes the shape of two adjoining right-angled triangles and has a crimson red field with deep blue edges. Within the smaller upper triangle is an emblem of the upper half of a white sun resting on an upward facing white crescent. The lower triangle bears a white sun with twelve rays."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/np.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/np.png"
@@ -55642,33 +55807,33 @@
"religion": [
{
"name": "hinduism",
- "percentage": 81.0,
- "population": 25209133
+ "population": 25209133,
+ "percentage": 81.0
},
{
"name": "buddhism",
- "percentage": 8.0,
- "population": 2489791
+ "population": 2489791,
+ "percentage": 8.0
},
{
"name": "islam",
- "percentage": 5.0,
- "population": 1556119
+ "population": 1556119,
+ "percentage": 5.0
},
{
"name": "kirat",
- "percentage": 3.0,
- "population": 933672
+ "population": 933672,
+ "percentage": 3.0
},
{
"name": "christianity",
- "percentage": 2.0,
- "population": 622448
+ "population": 622448,
+ "percentage": 2.0
},
{
"name": "other",
- "percentage": 1.0,
- "population": 311224
+ "population": 311224,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -55714,7 +55879,14 @@
},
"nationalHoliday": "Republic Day",
"anthem": "Sayaun Thunga Phulka",
- "hdi": 0.622
+ "hdi": 0.622,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/np.svg",
+ "png": "https://flagcdn.com/w320/np.png",
+ "alt": "The flag of Nepal is the world's only non-quadrilateral flag of a sovereign country. It takes the shape of two adjoining right-angled triangles and has a crimson red field with deep blue edges. Within the smaller upper triangle is an emblem of the upper half of a white sun resting on an upward facing white crescent. The lower triangle bears a white sun with twelve rays.",
+ "emoji": "\ud83c\uddf3\ud83c\uddf5"
+ }
},
{
"name": {
@@ -55931,7 +56103,6 @@
"landlocked": false,
"borders": [],
"area": 21,
- "flag": "\ud83c\uddf3\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -55944,11 +56115,6 @@
"female": "Nauruane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/nr.svg",
- "png": "https://flagcdn.com/w320/nr.png",
- "alt": "The flag of Nauru has a dark blue field with a thin yellow horizontal band across the center and a large white twelve-pointed star beneath the horizontal band on the hoist side of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/nr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/nr.png"
@@ -56005,7 +56171,14 @@
},
"nationalHoliday": null,
"anthem": "Nauru Bwiema",
- "hdi": 0.703
+ "hdi": 0.703,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/nr.svg",
+ "png": "https://flagcdn.com/w320/nr.png",
+ "alt": "The flag of Nauru has a dark blue field with a thin yellow horizontal band across the center and a large white twelve-pointed star beneath the horizontal band on the hoist side of the field.",
+ "emoji": "\ud83c\uddf3\ud83c\uddf7"
+ }
},
{
"name": {
@@ -56230,7 +56403,6 @@
"landlocked": false,
"borders": [],
"area": 268838,
- "flag": "\ud83c\uddf3\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -56243,11 +56415,6 @@
"female": "Neo-Z\u00e9landaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/nz.svg",
- "png": "https://flagcdn.com/w320/nz.png",
- "alt": "The flag of New Zealand has a dark blue field with the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton and a representation of the Southern Cross constellation, made up of four five-pointed white-edged red stars, on the fly side of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/nz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/nz.png"
@@ -56283,28 +56450,28 @@
"religion": [
{
"name": "no religion",
- "percentage": 51.6,
- "population": 2738825
+ "population": 2738825,
+ "percentage": 51.6
},
{
"name": "christianity",
- "percentage": 32.3,
- "population": 1714419
+ "population": 1714419,
+ "percentage": 32.3
},
{
"name": "hinduism",
- "percentage": 2.9,
- "population": 153926
+ "population": 153926,
+ "percentage": 2.9
},
{
"name": "other",
- "percentage": 6.3,
- "population": 334391
+ "population": 334391,
+ "percentage": 6.3
},
{
"name": "undeclared",
- "percentage": 6.9,
- "population": 366238
+ "population": 366238,
+ "percentage": 6.9
}
],
"ethnicity": [
@@ -56354,7 +56521,14 @@
},
"nationalHoliday": null,
"anthem": "God Defend New Zealand",
- "hdi": 0.938
+ "hdi": 0.938,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/nz.svg",
+ "png": "https://flagcdn.com/w320/nz.png",
+ "alt": "The flag of New Zealand has a dark blue field with the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton and a representation of the Southern Cross constellation, made up of four five-pointed white-edged red stars, on the fly side of the field.",
+ "emoji": "\ud83c\uddf3\ud83c\uddff"
+ }
},
{
"name": {
@@ -56562,7 +56736,6 @@
"YEM"
],
"area": 309500,
- "flag": "\ud83c\uddf4\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -56575,11 +56748,6 @@
"female": "Omanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/om.svg",
- "png": "https://flagcdn.com/w320/om.png",
- "alt": "The flag of Oman features a red vertical band on the hoist side that takes up about one-fourth the width of the field, and three equal horizontal bands of white, red and green adjoining the vertical band. At the top of the vertical band is the white emblem of Oman."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/om.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/om.png"
@@ -56621,23 +56789,23 @@
"religion": [
{
"name": "islam",
- "percentage": 95.0,
- "population": 5219956
+ "population": 5219956,
+ "percentage": 95.0
},
{
"name": "hinduism",
- "percentage": 1.67,
- "population": 91761
+ "population": 91761,
+ "percentage": 1.67
},
{
"name": "christianity",
- "percentage": 1.67,
- "population": 91761
+ "population": 91761,
+ "percentage": 1.67
},
{
"name": "others",
- "percentage": 1.66,
- "population": 91212
+ "population": 91212,
+ "percentage": 1.66
}
],
"ethnicity": [],
@@ -56662,7 +56830,14 @@
},
"nationalHoliday": null,
"anthem": "Nashid as-Salaam as-Sultani",
- "hdi": 0.858
+ "hdi": 0.858,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/om.svg",
+ "png": "https://flagcdn.com/w320/om.png",
+ "alt": "The flag of Oman features a red vertical band on the hoist side that takes up about one-fourth the width of the field, and three equal horizontal bands of white, red and green adjoining the vertical band. At the top of the vertical band is the white emblem of Oman.",
+ "emoji": "\ud83c\uddf4\ud83c\uddf2"
+ }
},
{
"name": {
@@ -56883,7 +57058,6 @@
"IRN"
],
"area": 796095,
- "flag": "\ud83c\uddf5\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -56896,11 +57070,6 @@
"female": "Pakistanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pk.svg",
- "png": "https://flagcdn.com/w320/pk.png",
- "alt": "The flag of Pakistan is composed of a white vertical band on its hoist side that takes up about one-fourth the width of the field and a dark green rectangular area that spans the rest of the field. A white fly-side facing crescent and five-pointed star are centered in the dark green area."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pk.png"
@@ -56943,23 +57112,23 @@
"religion": [
{
"name": "islam",
- "percentage": 96.3,
- "population": 215494073
+ "population": 215494073,
+ "percentage": 96.3
},
{
"name": "hinduism",
- "percentage": 2.2,
- "population": 4923021
+ "population": 4923021,
+ "percentage": 2.2
},
{
"name": "christianity",
- "percentage": 1.4,
- "population": 3132832
+ "population": 3132832,
+ "percentage": 1.4
},
{
"name": "other",
- "percentage": 0.1,
- "population": 223774
+ "population": 223774,
+ "percentage": 0.1
}
],
"ethnicity": [],
@@ -56984,7 +57153,14 @@
},
"nationalHoliday": null,
"anthem": "Qaumi Taranah",
- "hdi": 0.544
+ "hdi": 0.544,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pk.svg",
+ "png": "https://flagcdn.com/w320/pk.png",
+ "alt": "The flag of Pakistan is composed of a white vertical band on its hoist side that takes up about one-fourth the width of the field and a dark green rectangular area that spans the rest of the field. A white fly-side facing crescent and five-pointed star are centered in the dark green area.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf0"
+ }
},
{
"name": {
@@ -57196,7 +57372,6 @@
"CRI"
],
"area": 75417,
- "flag": "\ud83c\uddf5\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -57209,11 +57384,6 @@
"female": "Panam\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pa.svg",
- "png": "https://flagcdn.com/w320/pa.png",
- "alt": "The flag of Panama is composed of four equal rectangular areas \u2014 a white rectangular area with a blue five-pointed star at its center, a red rectangular area, a white rectangular area with a red five-pointed star at its center, and a blue rectangular area \u2014 in the upper hoist side, upper fly side, lower fly side and lower hoist side respectively."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pa.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pa.png"
@@ -57258,18 +57428,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 91.5,
- "population": 3969058
+ "population": 3969058,
+ "percentage": 91.5
},
{
"name": "no religion",
- "percentage": 7.6,
- "population": 329670
+ "population": 329670,
+ "percentage": 7.6
},
{
"name": "other",
- "percentage": 0.9,
- "population": 39040
+ "population": 39040,
+ "percentage": 0.9
}
],
"ethnicity": [
@@ -57315,7 +57485,14 @@
},
"nationalHoliday": null,
"anthem": "National anthem of Panama",
- "hdi": 0.839
+ "hdi": 0.839,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pa.svg",
+ "png": "https://flagcdn.com/w320/pa.png",
+ "alt": "The flag of Panama is composed of four equal rectangular areas \u2014 a white rectangular area with a blue five-pointed star at its center, a red rectangular area, a white rectangular area with a red five-pointed star at its center, and a blue rectangular area \u2014 in the upper hoist side, upper fly side, lower fly side and lower hoist side respectively.",
+ "emoji": "\ud83c\uddf5\ud83c\udde6"
+ }
},
{
"name": {
@@ -57519,7 +57696,6 @@
"landlocked": false,
"borders": [],
"area": 47,
- "flag": "\ud83c\uddf5\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -57532,11 +57708,6 @@
"female": "Pitcairnaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pn.svg",
- "png": "https://flagcdn.com/w320/pn.png",
- "alt": "The flag of the Pitcairn Islands is blue with the UK flag in the canton and the national coat of arms centered on the fly half. The coat of arms has a light-blue shield with a green field which features a yellow anchor with a Bible over it. A wheelbarrow is on the crest, with a flowering twig of miro, a local plant."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -57584,7 +57755,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Come Ye Blessed",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/pn.svg",
+ "png": "https://flagcdn.com/w320/pn.png",
+ "alt": "The flag of the Pitcairn Islands is blue with the UK flag in the canton and the national coat of arms centered on the fly half. The coat of arms has a light-blue shield with a green field which features a yellow anchor with a Bible over it. A wheelbarrow is on the crest, with a flowering twig of miro, a local plant.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf3"
+ }
},
{
"name": {
@@ -57816,7 +57994,6 @@
"ECU"
],
"area": 1285216,
- "flag": "\ud83c\uddf5\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -57829,11 +58006,6 @@
"female": "P\u00e9ruvienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pe.svg",
- "png": "https://flagcdn.com/w320/pe.png",
- "alt": "The flag of Peru is composed of three equal vertical bands of red, white and red, with the national emblem centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pe.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pe.png"
@@ -57888,18 +58060,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 94.5,
- "population": 32463320
+ "population": 32463320,
+ "percentage": 94.5
},
{
"name": "no religion",
- "percentage": 5.1,
- "population": 1751989
+ "population": 1751989,
+ "percentage": 5.1
},
{
"name": "other",
- "percentage": 0.4,
- "population": 137411
+ "population": 137411,
+ "percentage": 0.4
}
],
"ethnicity": [
@@ -57953,7 +58125,14 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of Peru",
- "hdi": 0.794
+ "hdi": 0.794,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pe.svg",
+ "png": "https://flagcdn.com/w320/pe.png",
+ "alt": "The flag of Peru is composed of three equal vertical bands of red, white and red, with the national emblem centered in the white band.",
+ "emoji": "\ud83c\uddf5\ud83c\uddea"
+ }
},
{
"name": {
@@ -58168,7 +58347,6 @@
"landlocked": false,
"borders": [],
"area": 342353,
- "flag": "\ud83c\uddf5\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -58181,11 +58359,6 @@
"female": "Philippine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ph.svg",
- "png": "https://flagcdn.com/w320/ph.png",
- "alt": "The flag of Philippines is composed of two equal horizontal bands of blue and red, with a white equilateral triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a central golden-yellow sun with eight rays and a five-pointed golden-yellow star at each vertex."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ph.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ph.png"
@@ -58228,18 +58401,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 85.3,
- "population": 96158250
+ "population": 96158250,
+ "percentage": 85.3
},
{
"name": "islam",
- "percentage": 6.4,
- "population": 7214687
+ "population": 7214687,
+ "percentage": 6.4
},
{
"name": "other",
- "percentage": 8.2,
- "population": 9243818
+ "population": 9243818,
+ "percentage": 8.2
}
],
"ethnicity": [
@@ -58293,7 +58466,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "Lupang Hinirang",
- "hdi": 0.72
+ "hdi": 0.72,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ph.svg",
+ "png": "https://flagcdn.com/w320/ph.png",
+ "alt": "The flag of Philippines is composed of two equal horizontal bands of blue and red, with a white equilateral triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a central golden-yellow sun with eight rays and a five-pointed golden-yellow star at each vertex.",
+ "emoji": "\ud83c\uddf5\ud83c\udded"
+ }
},
{
"name": {
@@ -58508,7 +58688,6 @@
"landlocked": false,
"borders": [],
"area": 459,
- "flag": "\ud83c\uddf5\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -58521,11 +58700,6 @@
"female": "Paluane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pw.svg",
- "png": "https://flagcdn.com/w320/pw.png",
- "alt": "The flag of Palau has a light blue field with a large golden-yellow circle that is offset slightly towards the hoist side of center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pw.png"
@@ -58557,28 +58731,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 78.7,
- "population": 13901
+ "population": 13901,
+ "percentage": 78.7
},
{
"name": "no religion",
- "percentage": 10.1,
- "population": 1784
+ "population": 1784,
+ "percentage": 10.1
},
{
"name": "modekngei",
- "percentage": 5.1,
- "population": 901
+ "population": 901,
+ "percentage": 5.1
},
{
"name": "islam",
- "percentage": 4.9,
- "population": 865
+ "population": 865,
+ "percentage": 4.9
},
{
"name": "other",
- "percentage": 1.2,
- "population": 212
+ "population": 212,
+ "percentage": 1.2
}
],
"ethnicity": [
@@ -58624,7 +58798,14 @@
},
"nationalHoliday": null,
"anthem": "Belau rekid",
- "hdi": 0.786
+ "hdi": 0.786,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pw.svg",
+ "png": "https://flagcdn.com/w320/pw.png",
+ "alt": "The flag of Palau has a light blue field with a large golden-yellow circle that is offset slightly towards the hoist side of center.",
+ "emoji": "\ud83c\uddf5\ud83c\uddfc"
+ }
},
{
"name": {
@@ -58852,7 +59033,6 @@
"IDN"
],
"area": 462840,
- "flag": "\ud83c\uddf5\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -58865,11 +59045,6 @@
"female": "Papouasienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pg.svg",
- "png": "https://flagcdn.com/w320/pg.png",
- "alt": "The flag of Papua New Guinea is divided diagonally, from the upper hoist-side corner to the lower fly-side corner, into a lower black and an upper red triangle. On the hoist side of the lower black triangle is a representation of the Southern Cross constellation made up of one small and four larger five-pointed white stars. A golden Raggiana bird-of-paradise is situated on the fly side of the upper red triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pg.png"
@@ -58906,18 +59081,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 95.5,
- "population": 11251389
+ "population": 11251389,
+ "percentage": 95.5
},
{
"name": "unspecified",
- "percentage": 3.1,
- "population": 365228
+ "population": 365228,
+ "percentage": 3.1
},
{
"name": "other",
- "percentage": 1.4,
- "population": 164942
+ "population": 164942,
+ "percentage": 1.4
}
],
"ethnicity": [],
@@ -58942,7 +59117,14 @@
},
"nationalHoliday": null,
"anthem": "O Arise, All You Sons",
- "hdi": 0.576
+ "hdi": 0.576,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pg.svg",
+ "png": "https://flagcdn.com/w320/pg.png",
+ "alt": "The flag of Papua New Guinea is divided diagonally, from the upper hoist-side corner to the lower fly-side corner, into a lower black and an upper red triangle. On the hoist side of the lower black triangle is a representation of the Southern Cross constellation made up of one small and four larger five-pointed white stars. A golden Raggiana bird-of-paradise is situated on the fly side of the upper red triangle.",
+ "emoji": "\ud83c\uddf5\ud83c\uddec"
+ }
},
{
"name": {
@@ -59154,7 +59336,6 @@
"UKR"
],
"area": 312679,
- "flag": "\ud83c\uddf5\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -59167,11 +59348,6 @@
"female": "Polonaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pl.svg",
- "png": "https://flagcdn.com/w320/pl.png",
- "alt": "The flag of Poland is composed of two equal horizontal bands of white and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pl.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pl.png"
@@ -59214,23 +59390,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 72.4,
- "population": 27195663
+ "population": 27195663,
+ "percentage": 72.4
},
{
"name": "no religion",
- "percentage": 6.9,
- "population": 2591852
+ "population": 2591852,
+ "percentage": 6.9
},
{
"name": "other",
- "percentage": 0.1,
- "population": 37563
+ "population": 37563,
+ "percentage": 0.1
},
{
"name": "unanswered",
- "percentage": 20.6,
- "population": 7737993
+ "population": 7737993,
+ "percentage": 20.6
}
],
"ethnicity": [
@@ -59264,7 +59440,14 @@
},
"nationalHoliday": "Armed Forces Day",
"anthem": "Poland Is Not Yet Lost",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pl.svg",
+ "png": "https://flagcdn.com/w320/pl.png",
+ "alt": "The flag of Poland is composed of two equal horizontal bands of white and red.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf1"
+ }
},
{
"name": {
@@ -59480,7 +59663,6 @@
"landlocked": false,
"borders": [],
"area": 8870,
- "flag": "\ud83c\uddf5\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -59493,11 +59675,6 @@
"female": "Portoricaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pr.svg",
- "png": "https://flagcdn.com/w320/pr.png",
- "alt": "The flag of Puerto Rico has five equal horizontal bands of red alternating with white. A blue isosceles triangle based on the hoist side has a large five-pointed white star in the center."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -59586,7 +59763,14 @@
},
"nationalHoliday": null,
"anthem": "La Borinque\u00f1a",
- "hdi": 47.0
+ "hdi": 47.0,
+ "sovereignState": "USA",
+ "flag": {
+ "svg": "https://flagcdn.com/pr.svg",
+ "png": "https://flagcdn.com/w320/pr.png",
+ "alt": "The flag of Puerto Rico has five equal horizontal bands of red alternating with white. A blue isosceles triangle based on the hoist side has a large five-pointed white star in the center.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf7"
+ }
},
{
"name": {
@@ -59799,7 +59983,6 @@
"RUS"
],
"area": 120538,
- "flag": "\ud83c\uddf0\ud83c\uddf5",
"demonyms": [
{
"lang": "eng",
@@ -59812,11 +59995,6 @@
"female": "Nord-cor\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/kp.svg",
- "png": "https://flagcdn.com/w320/kp.png",
- "alt": "The flag of North Korea is composed of three horizontal bands \u2014 a large central white-edged red band, and a blue band above and beneath the red band. On the hoist side of the red band is a red five-pointed star within a white circle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/kp.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/kp.png"
@@ -59848,33 +60026,33 @@
"religion": [
{
"name": "no religion",
- "percentage": 73.0,
- "population": 19198026
+ "population": 19198026,
+ "percentage": 73.0
},
{
"name": "atheist state",
- "percentage": 58.0,
- "population": 15253226
+ "population": 15253226,
+ "percentage": 58.0
},
{
"name": "chondoism",
- "percentage": 13.0,
- "population": 3418827
+ "population": 3418827,
+ "percentage": 13.0
},
{
"name": "shamanism",
- "percentage": 12.0,
- "population": 3155840
+ "population": 3155840,
+ "percentage": 12.0
},
{
"name": "buddhism",
- "percentage": 1.5,
- "population": 394480
+ "population": 394480,
+ "percentage": 1.5
},
{
"name": "christianity",
- "percentage": 0.5,
- "population": 131493
+ "population": 131493,
+ "percentage": 0.5
}
],
"ethnicity": [],
@@ -59895,7 +60073,14 @@
"gdp": null,
"nationalHoliday": "Day of the Foundation of the Republic",
"anthem": "Aegukka",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/kp.svg",
+ "png": "https://flagcdn.com/w320/kp.png",
+ "alt": "The flag of North Korea is composed of three horizontal bands \u2014 a large central white-edged red band, and a blue band above and beneath the red band. On the hoist side of the red band is a red five-pointed star within a white circle.",
+ "emoji": "\ud83c\uddf0\ud83c\uddf5"
+ }
},
{
"name": {
@@ -60102,7 +60287,6 @@
"ESP"
],
"area": 92090,
- "flag": "\ud83c\uddf5\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -60115,11 +60299,6 @@
"female": "Portugaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pt.svg",
- "png": "https://flagcdn.com/w320/pt.png",
- "alt": "The flag of Portugal is composed of two vertical bands of green and red in the ratio of 2:3, with the coat of arms of Portugal centered over the two-color boundary."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pt.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pt.png"
@@ -60163,18 +60342,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 84.8,
- "population": 9115690
+ "population": 9115690,
+ "percentage": 84.8
},
{
"name": "no religion",
- "percentage": 14.1,
- "population": 1515699
+ "population": 1515699,
+ "percentage": 14.1
},
{
"name": "other",
- "percentage": 1.1,
- "population": 118246
+ "population": 118246,
+ "percentage": 1.1
}
],
"ethnicity": [],
@@ -60199,7 +60378,14 @@
},
"nationalHoliday": "Portugal Day",
"anthem": "A Portuguesa",
- "hdi": 0.89
+ "hdi": 0.89,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/pt.svg",
+ "png": "https://flagcdn.com/w320/pt.png",
+ "alt": "The flag of Portugal is composed of two vertical bands of green and red in the ratio of 2:3, with the coat of arms of Portugal centered over the two-color boundary.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf9"
+ }
},
{
"name": {
@@ -60419,7 +60605,6 @@
"BRA"
],
"area": 406752,
- "flag": "\ud83c\uddf5\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -60432,11 +60617,6 @@
"female": "Paraguayenne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/py.svg",
- "png": "https://flagcdn.com/w320/py.png",
- "alt": "The flag of Paraguay features three equal horizontal bands of red, white and blue, with an emblem centered in the white band. On the obverse side of the flag depicted, this emblem is the national coat of arms."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/py.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/py.png"
@@ -60484,18 +60664,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 95.5,
- "population": 6125014
+ "population": 6125014,
+ "percentage": 95.5
},
{
"name": "no religion",
- "percentage": 4.1,
- "population": 262959
+ "population": 262959,
+ "percentage": 4.1
},
{
"name": "other",
- "percentage": 0.4,
- "population": 25655
+ "population": 25655,
+ "percentage": 0.4
}
],
"ethnicity": [],
@@ -60520,7 +60700,14 @@
},
"nationalHoliday": null,
"anthem": "national anthem of Paraguay",
- "hdi": 0.756
+ "hdi": 0.756,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/py.svg",
+ "png": "https://flagcdn.com/w320/py.png",
+ "alt": "The flag of Paraguay features three equal horizontal bands of red, white and blue, with an emblem centered in the white band. On the obverse side of the flag depicted, this emblem is the national coat of arms.",
+ "emoji": "\ud83c\uddf5\ud83c\uddfe"
+ }
},
{
"name": {
@@ -60741,7 +60928,6 @@
"JOR"
],
"area": 6220,
- "flag": "\ud83c\uddf5\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -60754,11 +60940,6 @@
"female": "Palestinienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ps.svg",
- "png": "https://flagcdn.com/w320/ps.png",
- "alt": "The flag of Palestine has three equal horizontal stripes of black, white, and green overlaid by a red triangle issuing from the hoist."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ps.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ps.png"
@@ -60805,28 +60986,28 @@
"religion": [
{
"name": "islam",
- "percentage": 80.73,
- "population": 4426789
+ "population": 4426789,
+ "percentage": 80.73
},
{
"name": "judaism",
- "percentage": 13.07,
- "population": 716687
+ "population": 716687,
+ "percentage": 13.07
},
{
"name": "christianity",
- "percentage": 0.88,
- "population": 48254
+ "population": 48254,
+ "percentage": 0.88
},
{
"name": "baha'i faith",
- "percentage": 0.05,
- "population": 2742
+ "population": 2742,
+ "percentage": 0.05
},
{
"name": "irreligion",
- "percentage": 5.27,
- "population": 288978
+ "population": 288978,
+ "percentage": 5.27
}
],
"ethnicity": [
@@ -60860,7 +61041,14 @@
},
"nationalHoliday": "International Workers' Day",
"anthem": "Fida'i",
- "hdi": 0.674
+ "hdi": 0.674,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ps.svg",
+ "png": "https://flagcdn.com/w320/ps.png",
+ "alt": "The flag of Palestine has three equal horizontal stripes of black, white, and green overlaid by a red triangle issuing from the hoist.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf8"
+ }
},
{
"name": {
@@ -61065,7 +61253,6 @@
"landlocked": false,
"borders": [],
"area": 4167,
- "flag": "\ud83c\uddf5\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -61078,11 +61265,6 @@
"female": "Polyn\u00e9sienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pf.svg",
- "png": "https://flagcdn.com/w320/pf.png",
- "alt": "The flag of French Polynesia has two red horizontal bands flanking a wide white band in a 1:2:1 ratio. Centered on the white band is a disk with a blue-and-white wave pattern depicting the sea on the lower half and a gold-and-white ray pattern depicting the sun on the upper half. A canoe on the disk has a crew of five."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/pf.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/pf.png"
@@ -61145,7 +61327,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/pf.svg",
+ "png": "https://flagcdn.com/w320/pf.png",
+ "alt": "The flag of French Polynesia has two red horizontal bands flanking a wide white band in a 1:2:1 ratio. Centered on the white band is a disk with a blue-and-white wave pattern depicting the sea on the lower half and a gold-and-white ray pattern depicting the sun on the upper half. A canoe on the disk has a crew of five.",
+ "emoji": "\ud83c\uddf5\ud83c\uddeb"
+ }
},
{
"name": {
@@ -61352,7 +61541,6 @@
"SAU"
],
"area": 11586,
- "flag": "\ud83c\uddf6\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -61365,11 +61553,6 @@
"female": "Qatarienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/qa.svg",
- "png": "https://flagcdn.com/w320/qa.png",
- "alt": "The flag of Qatar has a maroon field, on the hoist side of which is a white vertical band that spans about one-third the width of the field and is separated from the rest of the field by nine adjoining fly-side pointing white isosceles triangles that serve as a serrated line."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/qa.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/qa.png"
@@ -61411,28 +61594,28 @@
"religion": [
{
"name": "islam",
- "percentage": 65.5,
- "population": 2078331
+ "population": 2078331,
+ "percentage": 65.5
},
{
"name": "hinduism",
- "percentage": 15.1,
- "population": 479127
+ "population": 479127,
+ "percentage": 15.1
},
{
"name": "christianity",
- "percentage": 14.2,
- "population": 450569
+ "population": 450569,
+ "percentage": 14.2
},
{
"name": "buddhism",
- "percentage": 3.3,
- "population": 104710
+ "population": 104710,
+ "percentage": 3.3
},
{
"name": "other",
- "percentage": 1.9,
- "population": 60287
+ "population": 60287,
+ "percentage": 1.9
}
],
"ethnicity": [
@@ -61470,7 +61653,14 @@
},
"nationalHoliday": null,
"anthem": "As Salam al Amiri",
- "hdi": 0.886
+ "hdi": 0.886,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/qa.svg",
+ "png": "https://flagcdn.com/w320/qa.png",
+ "alt": "The flag of Qatar has a maroon field, on the hoist side of which is a white vertical band that spans about one-third the width of the field and is separated from the rest of the field by nine adjoining fly-side pointing white isosceles triangles that serve as a serrated line.",
+ "emoji": "\ud83c\uddf6\ud83c\udde6"
+ }
},
{
"name": {
@@ -61673,7 +61863,6 @@
"landlocked": false,
"borders": [],
"area": 2511,
- "flag": "\ud83c\uddf7\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -61686,11 +61875,6 @@
"female": "R\u00e9unionnaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/re.svg",
- "png": "https://flagcdn.com/w320/re.png",
- "alt": "The flag of R\u00e9union has a blue field, with a red triangle spanning the bottom and extending to the center, as well as five yellow beams emanating from the center, spread equally apart."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -61750,7 +61934,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/re.svg",
+ "png": "https://flagcdn.com/w320/re.png",
+ "alt": "The flag of R\u00e9union has a blue field, with a red triangle spanning the bottom and extending to the center, as well as five yellow beams emanating from the center, spread equally apart.",
+ "emoji": "\ud83c\uddf7\ud83c\uddea"
+ }
},
{
"name": {
@@ -61961,7 +62152,6 @@
"UKR"
],
"area": 238391,
- "flag": "\ud83c\uddf7\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -61974,11 +62164,6 @@
"female": "Roumaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ro.svg",
- "png": "https://flagcdn.com/w320/ro.png",
- "alt": "The flag of Romania is composed of three equal vertical bands of navy blue, yellow and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ro.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ro.png"
@@ -62021,23 +62206,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 84.7,
- "population": 16129549
+ "population": 16129549,
+ "percentage": 84.7
},
{
"name": "no religion",
- "percentage": 0.8,
- "population": 152345
+ "population": 152345,
+ "percentage": 0.8
},
{
"name": "other",
- "percentage": 0.4,
- "population": 76173
+ "population": 76173,
+ "percentage": 0.4
},
{
"name": "unanswered",
- "percentage": 13.9,
- "population": 2646998
+ "population": 2646998,
+ "percentage": 13.9
}
],
"ethnicity": [
@@ -62079,7 +62264,14 @@
},
"nationalHoliday": null,
"anthem": "De\u0219teapt\u0103-te, rom\u00e2ne!",
- "hdi": 0.845
+ "hdi": 0.845,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ro.svg",
+ "png": "https://flagcdn.com/w320/ro.png",
+ "alt": "The flag of Romania is composed of three equal vertical bands of navy blue, yellow and red.",
+ "emoji": "\ud83c\uddf7\ud83c\uddf4"
+ }
},
{
"name": {
@@ -62305,7 +62497,6 @@
"UKR"
],
"area": 17098246,
- "flag": "\ud83c\uddf7\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -62318,11 +62509,6 @@
"female": "Russe"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ru.svg",
- "png": "https://flagcdn.com/w320/ru.png",
- "alt": "The flag of Russia is composed of three equal horizontal bands of white, blue and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ru.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ru.png"
@@ -62418,7 +62604,14 @@
},
"nationalHoliday": "Russia Day",
"anthem": "State Anthem of the Russian Federation",
- "hdi": 0.832
+ "hdi": 0.832,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ru.svg",
+ "png": "https://flagcdn.com/w320/ru.png",
+ "alt": "The flag of Russia is composed of three equal horizontal bands of white, blue and red.",
+ "emoji": "\ud83c\uddf7\ud83c\uddfa"
+ }
},
{
"name": {
@@ -62650,7 +62843,6 @@
"UGA"
],
"area": 26338,
- "flag": "\ud83c\uddf7\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -62663,11 +62855,6 @@
"female": "Rwandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/rw.svg",
- "png": "https://flagcdn.com/w320/rw.png",
- "alt": "The flag of Rwanda is composed of three horizontal bands of light blue, yellow and green. The light blue band is twice the height of the other two bands and bears a yellow sun with twenty-four rays on its fly side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/rw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/rw.png"
@@ -62716,23 +62903,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 93.8,
- "population": 13230461
+ "population": 13230461,
+ "percentage": 93.8
},
{
"name": "no religion",
- "percentage": 3.0,
- "population": 423149
+ "population": 423149,
+ "percentage": 3.0
},
{
"name": "islam",
- "percentage": 2.2,
- "population": 310309
+ "population": 310309,
+ "percentage": 2.2
},
{
"name": "other",
- "percentage": 1.0,
- "population": 141050
+ "population": 141050,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -62762,7 +62949,14 @@
},
"nationalHoliday": "National Heroes' Day",
"anthem": "Rwanda Nziza",
- "hdi": 0.578
+ "hdi": 0.578,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/rw.svg",
+ "png": "https://flagcdn.com/w320/rw.png",
+ "alt": "The flag of Rwanda is composed of three horizontal bands of light blue, yellow and green. The light blue band is twice the height of the other two bands and bears a yellow sun with twenty-four rays on its fly side.",
+ "emoji": "\ud83c\uddf7\ud83c\uddfc"
+ }
},
{
"name": {
@@ -62976,7 +63170,6 @@
"YEM"
],
"area": 2149690,
- "flag": "\ud83c\uddf8\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -62989,11 +63182,6 @@
"female": "Saoudienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sa.svg",
- "png": "https://flagcdn.com/w320/sa.png",
- "alt": "The flag of Saudi Arabia has a green field, at the center of which is an Arabic inscription \u2014 the Shahada \u2014 in white above a white horizontal sabre with its tip pointed to the hoist side of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sa.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sa.png"
@@ -63055,7 +63243,14 @@
},
"nationalHoliday": "Saudi National Day",
"anthem": "Chant of the Saudi Nation",
- "hdi": 0.9
+ "hdi": 0.9,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sa.svg",
+ "png": "https://flagcdn.com/w320/sa.png",
+ "alt": "The flag of Saudi Arabia has a green field, at the center of which is an Arabic inscription \u2014 the Shahada \u2014 in white above a white horizontal sabre with its tip pointed to the hoist side of the field.",
+ "emoji": "\ud83c\uddf8\ud83c\udde6"
+ }
},
{
"name": {
@@ -63278,7 +63473,6 @@
"SSD"
],
"area": 1886068,
- "flag": "\ud83c\uddf8\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -63291,11 +63485,6 @@
"female": "Soudanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sd.svg",
- "png": "https://flagcdn.com/w320/sd.png",
- "alt": "The flag of Sudan is composed of three equal horizontal bands of red, white and black, with a green isosceles triangle superimposed on the hoist side. The green triangle spans about two-fifth the width of the field with its base on the hoist end."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sd.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sd.png"
@@ -63353,13 +63542,13 @@
"religion": [
{
"name": "sunni islam",
- "percentage": 97.0,
- "population": 50214414
+ "population": 50214414,
+ "percentage": 97.0
},
{
"name": "christianity",
- "percentage": 3.0,
- "population": 1553023
+ "population": 1553023,
+ "percentage": 3.0
}
],
"ethnicity": [
@@ -63413,7 +63602,14 @@
},
"nationalHoliday": null,
"anthem": "Nahnu Jund Allah Jund Al-watan",
- "hdi": 0.511
+ "hdi": 0.511,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sd.svg",
+ "png": "https://flagcdn.com/w320/sd.png",
+ "alt": "The flag of Sudan is composed of three equal horizontal bands of red, white and black, with a green isosceles triangle superimposed on the hoist side. The green triangle spans about two-fifth the width of the field with its base on the hoist end.",
+ "emoji": "\ud83c\uddf8\ud83c\udde9"
+ }
},
{
"name": {
@@ -63623,7 +63819,6 @@
"MRT"
],
"area": 196722,
- "flag": "\ud83c\uddf8\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -63636,11 +63831,6 @@
"female": "S\u00e9n\u00e9galaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sn.svg",
- "png": "https://flagcdn.com/w320/sn.png",
- "alt": "The flag of Senegal is composed of three equal vertical bands of green, golden-yellow and red, with a five-pointed green star centered in the golden-yellow band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sn.png"
@@ -63689,18 +63879,18 @@
"religion": [
{
"name": "islam",
- "percentage": 97.2,
- "population": 18319788
+ "population": 18319788,
+ "percentage": 97.2
},
{
"name": "christianity",
- "percentage": 2.7,
- "population": 508883
+ "population": 508883,
+ "percentage": 2.7
},
{
"name": "other",
- "percentage": 0.1,
- "population": 18848
+ "population": 18848,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -63754,7 +63944,14 @@
},
"nationalHoliday": null,
"anthem": "Le Lion rouge",
- "hdi": 0.53
+ "hdi": 0.53,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sn.svg",
+ "png": "https://flagcdn.com/w320/sn.png",
+ "alt": "The flag of Senegal is composed of three equal vertical bands of green, golden-yellow and red, with a five-pointed green star centered in the golden-yellow band.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf3"
+ }
},
{
"name": {
@@ -63989,7 +64186,6 @@
"landlocked": false,
"borders": [],
"area": 710,
- "flag": "\ud83c\uddf8\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -64002,11 +64198,6 @@
"female": "Singapourienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sg.svg",
- "png": "https://flagcdn.com/w320/sg.png",
- "alt": "The flag of Singapore is composed of two equal horizontal bands of red and white. On the hoist side of the red band is a fly-side facing white crescent which partially encloses five small five-pointed white stars arranged in the shape of a pentagon."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sg.png"
@@ -64044,38 +64235,38 @@
"religion": [
{
"name": "buddhism",
- "percentage": 31.1,
- "population": 1900272
+ "population": 1900272,
+ "percentage": 31.1
},
{
"name": "no religion",
- "percentage": 20.0,
- "population": 1222040
+ "population": 1222040,
+ "percentage": 20.0
},
{
"name": "christianity",
- "percentage": 18.9,
- "population": 1154828
+ "population": 1154828,
+ "percentage": 18.9
},
{
"name": "islam",
- "percentage": 15.6,
- "population": 953191
+ "population": 953191,
+ "percentage": 15.6
},
{
"name": "taoism",
- "percentage": 8.8,
- "population": 537698
+ "population": 537698,
+ "percentage": 8.8
},
{
"name": "hinduism",
- "percentage": 5.0,
- "population": 305510
+ "population": 305510,
+ "percentage": 5.0
},
{
"name": "other",
- "percentage": 0.6,
- "population": 36661
+ "population": 36661,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -64117,7 +64308,14 @@
},
"nationalHoliday": "National Day",
"anthem": "Onward Singapore",
- "hdi": 0.946
+ "hdi": 0.946,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sg.svg",
+ "png": "https://flagcdn.com/w320/sg.png",
+ "alt": "The flag of Singapore is composed of two equal horizontal bands of red and white. On the hoist side of the red band is a fly-side facing white crescent which partially encloses five small five-pointed white stars arranged in the shape of a pentagon.",
+ "emoji": "\ud83c\uddf8\ud83c\uddec"
+ }
},
{
"name": {
@@ -64320,7 +64518,6 @@
"landlocked": false,
"borders": [],
"area": 3903,
- "flag": "\ud83c\uddec\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -64333,11 +64530,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/gs.svg",
- "png": "https://flagcdn.com/w320/gs.png",
- "alt": "The flag of South Georgia is blue with the UK flag in the canton. The national coat of arms is centered on the fly half and has a green shield with a golden lion holding a torch. A fur seal is to the left of the shield and a Macaroni penguin to the right. A reindeer appears above the crest, and below the shield on a scroll is the Latin motto \"LEO TERRAM PROPRIAM PROTEGAT\" (Let the Lion Protect its Own Land)."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -64396,7 +64588,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/gs.svg",
+ "png": "https://flagcdn.com/w320/gs.png",
+ "alt": "The flag of South Georgia is blue with the UK flag in the canton. The national coat of arms is centered on the fly half and has a green shield with a golden lion holding a torch. A fur seal is to the left of the shield and a Macaroni penguin to the right. A reindeer appears above the crest, and below the shield on a scroll is the Latin motto \"LEO TERRAM PROPRIAM PROTEGAT\" (Let the Lion Protect its Own Land).",
+ "emoji": "\ud83c\uddec\ud83c\uddf8"
+ }
},
{
"name": {
@@ -64599,7 +64798,6 @@
"landlocked": false,
"borders": [],
"area": 61399,
- "flag": "\ud83c\uddf8\ud83c\uddef",
"demonyms": [
{
"lang": "eng",
@@ -64612,11 +64810,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/sj.svg",
- "png": "https://flagcdn.com/w320/sj.png",
- "alt": "The flag of Svalbard and Jan Mayen has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -64655,7 +64848,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sj.svg",
+ "png": "https://flagcdn.com/w320/sj.png",
+ "alt": "The flag of Svalbard and Jan Mayen has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\uddf8\ud83c\uddef"
+ }
},
{
"name": {
@@ -64857,7 +65057,6 @@
"landlocked": false,
"borders": [],
"area": 28896,
- "flag": "\ud83c\uddf8\ud83c\udde7",
"demonyms": [
{
"lang": "eng",
@@ -64870,11 +65069,6 @@
"female": "Salomonienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sb.svg",
- "png": "https://flagcdn.com/w320/sb.png",
- "alt": "The flag of Solomon Islands features a thin yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. Five white five-pointed stars arranged in an X shape are situated on the hoist side of the upper blue triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sb.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sb.png"
@@ -64911,18 +65105,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 97.4,
- "population": 807307
+ "population": 807307,
+ "percentage": 97.4
},
{
"name": "folk religion",
- "percentage": 1.2,
- "population": 9946
+ "population": 9946,
+ "percentage": 1.2
},
{
"name": "others",
- "percentage": 1.4,
- "population": 11604
+ "population": 11604,
+ "percentage": 1.4
}
],
"ethnicity": [
@@ -64964,7 +65158,14 @@
},
"nationalHoliday": null,
"anthem": "God Save Our Solomon Islands",
- "hdi": 0.584
+ "hdi": 0.584,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sb.svg",
+ "png": "https://flagcdn.com/w320/sb.png",
+ "alt": "The flag of Solomon Islands features a thin yellow diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. Five white five-pointed stars arranged in an X shape are situated on the hoist side of the upper blue triangle.",
+ "emoji": "\ud83c\uddf8\ud83c\udde7"
+ }
},
{
"name": {
@@ -65170,7 +65371,6 @@
"LBR"
],
"area": 71740,
- "flag": "\ud83c\uddf8\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -65183,11 +65383,6 @@
"female": "Sierra-leonaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sl.svg",
- "png": "https://flagcdn.com/w320/sl.png",
- "alt": "The flag of Sierra Leone is composed of three equal horizontal bands of green, white and blue."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sl.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sl.png"
@@ -65236,18 +65431,18 @@
"religion": [
{
"name": "islam",
- "percentage": 78.0,
- "population": 6599199
+ "population": 6599199,
+ "percentage": 78.0
},
{
"name": "christianity",
- "percentage": 21.0,
- "population": 1776708
+ "population": 1776708,
+ "percentage": 21.0
},
{
"name": "other",
- "percentage": 1.0,
- "population": 84605
+ "population": 84605,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -65317,7 +65512,14 @@
},
"nationalHoliday": null,
"anthem": "High We Exalt Thee, Realm of the Free",
- "hdi": 0.467
+ "hdi": 0.467,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sl.svg",
+ "png": "https://flagcdn.com/w320/sl.png",
+ "alt": "The flag of Sierra Leone is composed of three equal horizontal bands of green, white and blue.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf1"
+ }
},
{
"name": {
@@ -65524,7 +65726,6 @@
"HND"
],
"area": 21041,
- "flag": "\ud83c\uddf8\ud83c\uddfb",
"demonyms": [
{
"lang": "eng",
@@ -65537,11 +65738,6 @@
"female": "Salvadorienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sv.svg",
- "png": "https://flagcdn.com/w320/sv.png",
- "alt": "The flag of El Salvador is composed of three equal horizontal bands of cobalt blue, white and cobalt blue, with the national coat of arms centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sv.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sv.png"
@@ -65586,18 +65782,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 81.5,
- "population": 4914430
+ "population": 4914430,
+ "percentage": 81.5
},
{
"name": "no religion",
- "percentage": 17.0,
- "population": 1025096
+ "population": 1025096,
+ "percentage": 17.0
},
{
"name": "other",
- "percentage": 1.5,
- "population": 90450
+ "population": 90450,
+ "percentage": 1.5
}
],
"ethnicity": [
@@ -65643,7 +65839,14 @@
},
"nationalHoliday": null,
"anthem": "National anthem of El Salvador",
- "hdi": 0.678
+ "hdi": 0.678,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sv.svg",
+ "png": "https://flagcdn.com/w320/sv.png",
+ "alt": "The flag of El Salvador is composed of three equal horizontal bands of cobalt blue, white and cobalt blue, with the national coat of arms centered in the white band.",
+ "emoji": "\ud83c\uddf8\ud83c\uddfb"
+ }
},
{
"name": {
@@ -65849,7 +66052,6 @@
"ITA"
],
"area": 61,
- "flag": "\ud83c\uddf8\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -65862,11 +66064,6 @@
"female": "Saint-Marinaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sm.svg",
- "png": "https://flagcdn.com/w320/sm.png",
- "alt": "The flag of San Marino is composed of two equal horizontal bands of white and light blue, with the national coat of arms superimposed in the center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sm.png"
@@ -65898,33 +66095,33 @@
"religion": [
{
"name": "catholicism",
- "percentage": 90.3,
- "population": 30821
+ "population": 30821,
+ "percentage": 90.3
},
{
"name": "no religion",
- "percentage": 7.5,
- "population": 2560
+ "population": 2560,
+ "percentage": 7.5
},
{
"name": "christian denominations",
- "percentage": 1.1,
- "population": 375
+ "population": 375,
+ "percentage": 1.1
},
{
"name": "judaism",
- "percentage": 0.1,
- "population": 34
+ "population": 34,
+ "percentage": 0.1
},
{
"name": "islam",
- "percentage": 0.46,
- "population": 157
+ "population": 157,
+ "percentage": 0.46
},
{
"name": "other",
- "percentage": 0.34,
- "population": 116
+ "population": 116,
+ "percentage": 0.34
}
],
"ethnicity": [],
@@ -65934,7 +66131,8 @@
{
"title": "Captain Regent",
"name": "Matteo Rossi"
- },{
+ },
+ {
"title": "Captain Regent",
"name": "Lorenzo Bugli"
},
@@ -65952,7 +66150,14 @@
},
"nationalHoliday": "Ferragosto",
"anthem": "Q336291",
- "hdi": 0.915
+ "hdi": 0.915,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sm.svg",
+ "png": "https://flagcdn.com/w320/sm.png",
+ "alt": "The flag of San Marino is composed of two equal horizontal bands of white and light blue, with the national coat of arms superimposed in the center.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf2"
+ }
},
{
"name": {
@@ -66173,7 +66378,6 @@
"KEN"
],
"area": 637657,
- "flag": "\ud83c\uddf8\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -66186,11 +66390,6 @@
"female": "Somalienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/so.svg",
- "png": "https://flagcdn.com/w320/so.png",
- "alt": "The flag of Somalia features a large five-pointed white star centered on a light blue field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/so.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/so.png"
@@ -66277,7 +66476,14 @@
},
"nationalHoliday": "Republic Day",
"anthem": "Qolobaa Calankeed",
- "hdi": 0.404
+ "hdi": 0.404,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/so.svg",
+ "png": "https://flagcdn.com/w320/so.png",
+ "alt": "The flag of Somalia features a large five-pointed white star centered on a light blue field.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf4"
+ }
},
{
"name": {
@@ -66480,7 +66686,6 @@
"landlocked": false,
"borders": [],
"area": 242,
- "flag": "\ud83c\uddf5\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -66493,11 +66698,6 @@
"female": "Saint-Pierraise, Miquelonaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/pm.svg",
- "png": "https://flagcdn.com/w320/pm.png",
- "alt": "The flag of Saint Pierre and Miquelon features a yellow three-masted sailing ship facing the hoist side riding on a blue background with wavy white lines. A black-over-white wavy line divides the ship from the white wavy lines. On the hoist side, a vertical band is divided into three heraldic arms: the top is red with a green diagonal cross extending to the corners and overlaid with a white cross, the middle is white with an ermine pattern, and the bottom is red with two yellow lions outlined in black."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -66545,7 +66745,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/pm.svg",
+ "png": "https://flagcdn.com/w320/pm.png",
+ "alt": "The flag of Saint Pierre and Miquelon features a yellow three-masted sailing ship facing the hoist side riding on a blue background with wavy white lines. A black-over-white wavy line divides the ship from the white wavy lines. On the hoist side, a vertical band is divided into three heraldic arms: the top is red with a green diagonal cross extending to the corners and overlaid with a white cross, the middle is white with an ermine pattern, and the bottom is red with two yellow lions outlined in black.",
+ "emoji": "\ud83c\uddf5\ud83c\uddf2"
+ }
},
{
"name": {
@@ -66761,7 +66968,6 @@
"ROU"
],
"area": 77589,
- "flag": "\ud83c\uddf7\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -66774,11 +66980,6 @@
"female": "Serbe"
}
],
- "flags": {
- "svg": "https://flagcdn.com/rs.svg",
- "png": "https://flagcdn.com/w320/rs.png",
- "alt": "The flag of Serbia is composed of three equal horizontal bands of red, blue and white. The coat of arms of Serbia is superimposed at the center of the field slightly towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/rs.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/rs.png"
@@ -66821,23 +67022,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 86.6,
- "population": 5687700
+ "population": 5687700,
+ "percentage": 86.6
},
{
"name": "islam",
- "percentage": 4.2,
- "population": 275847
+ "population": 275847,
+ "percentage": 4.2
},
{
"name": "no religion",
- "percentage": 1.1,
- "population": 72246
+ "population": 72246,
+ "percentage": 1.1
},
{
"name": "undeclared/unknown",
- "percentage": 7.9,
- "population": 518855
+ "population": 518855,
+ "percentage": 7.9
}
],
"ethnicity": [
@@ -66887,7 +67088,14 @@
},
"nationalHoliday": "International Workers' Day",
"anthem": "Bo\u017ee pravde",
- "hdi": 0.833
+ "hdi": 0.833,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/rs.svg",
+ "png": "https://flagcdn.com/w320/rs.png",
+ "alt": "The flag of Serbia is composed of three equal horizontal bands of red, blue and white. The coat of arms of Serbia is superimposed at the center of the field slightly towards the hoist side.",
+ "emoji": "\ud83c\uddf7\ud83c\uddf8"
+ }
},
{
"name": {
@@ -67096,7 +67304,6 @@
"UGA"
],
"area": 619745,
- "flag": "\ud83c\uddf8\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -67109,11 +67316,6 @@
"female": "Sud-Soudanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ss.svg",
- "png": "https://flagcdn.com/w320/ss.png",
- "alt": "The flag of South Sudan is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. A blue equilateral triangle which spans about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end of the field. At the center of this triangle is a five-pointed yellow star."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ss.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ss.png"
@@ -67162,23 +67364,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 60.5,
- "population": 7685747
+ "population": 7685747,
+ "percentage": 60.5
},
{
"name": "traditional faiths",
- "percentage": 32.9,
- "population": 4179522
+ "population": 4179522,
+ "percentage": 32.9
},
{
"name": "islam",
- "percentage": 6.2,
- "population": 787630
+ "population": 787630,
+ "percentage": 6.2
},
{
"name": "others",
- "percentage": 0.4,
- "population": 50815
+ "population": 50815,
+ "percentage": 0.4
}
],
"ethnicity": [],
@@ -67199,7 +67401,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "South Sudan Oyee!",
- "hdi": 0.388
+ "hdi": 0.388,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ss.svg",
+ "png": "https://flagcdn.com/w320/ss.png",
+ "alt": "The flag of South Sudan is composed of three equal horizontal bands of black, red with white top and bottom edges, and green. A blue equilateral triangle which spans about two-fifth the width of the field is superimposed on the hoist side with its base on the hoist end of the field. At the center of this triangle is a five-pointed yellow star.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf8"
+ }
},
{
"name": {
@@ -67404,7 +67613,6 @@
"landlocked": false,
"borders": [],
"area": 964,
- "flag": "\ud83c\uddf8\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -67417,11 +67625,6 @@
"female": "Santom\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/st.svg",
- "png": "https://flagcdn.com/w320/st.png",
- "alt": "The flag of S\u00e3o Tom\u00e9 and Pr\u00edncipe has three horizontal bands of green, yellow (double-width), and green, with two black five-pointed stars in the center of the yellow band and a red isosceles triangle based on the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/st.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/st.png"
@@ -67470,23 +67673,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 81.1,
- "population": 178722
+ "population": 178722,
+ "percentage": 81.1
},
{
"name": "no religion",
- "percentage": 13.2,
- "population": 29089
+ "population": 29089,
+ "percentage": 13.2
},
{
"name": "folk religion",
- "percentage": 3.1,
- "population": 6832
+ "population": 6832,
+ "percentage": 3.1
},
{
"name": "others",
- "percentage": 2.4,
- "population": 5289
+ "population": 5289,
+ "percentage": 2.4
}
],
"ethnicity": [],
@@ -67511,7 +67714,14 @@
},
"nationalHoliday": null,
"anthem": "Independ\u00eancia total",
- "hdi": 0.637
+ "hdi": 0.637,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/st.svg",
+ "png": "https://flagcdn.com/w320/st.png",
+ "alt": "The flag of S\u00e3o Tom\u00e9 and Pr\u00edncipe has three horizontal bands of green, yellow (double-width), and green, with two black five-pointed stars in the center of the yellow band and a red isosceles triangle based on the hoist side.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf9"
+ }
},
{
"name": {
@@ -67721,7 +67931,6 @@
"GUY"
],
"area": 163820,
- "flag": "\ud83c\uddf8\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -67734,11 +67943,6 @@
"female": "Surinamaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sr.svg",
- "png": "https://flagcdn.com/w320/sr.png",
- "alt": "The flag of Suriname is composed of five horizontal bands of green, white, red, white and green in the ratio of 2:1:4:1:2. A large five-pointed yellow star is centered in the red band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sr.png"
@@ -67795,53 +67999,53 @@
"religion": [
{
"name": "christianity",
- "percentage": 48.4,
- "population": 306197
+ "population": 306197,
+ "percentage": 48.4
},
{
"name": "hinduism",
- "percentage": 22.3,
- "population": 141078
+ "population": 141078,
+ "percentage": 22.3
},
{
"name": "islam",
- "percentage": 13.9,
- "population": 87937
+ "population": 87937,
+ "percentage": 13.9
},
{
"name": "winti",
- "percentage": 1.8,
- "population": 11387
+ "population": 11387,
+ "percentage": 1.8
},
{
"name": "kejaw\u00e8n",
- "percentage": 0.8,
- "population": 5061
+ "population": 5061,
+ "percentage": 0.8
},
{
"name": "judaism",
- "percentage": 0.03,
- "population": 190
+ "population": 190,
+ "percentage": 0.03
},
{
"name": "no religion",
- "percentage": 7.52,
- "population": 47574
+ "population": 47574,
+ "percentage": 7.52
},
{
"name": "not stated",
- "percentage": 2.04,
- "population": 12906
+ "population": 12906,
+ "percentage": 2.04
},
{
"name": "don't know",
- "percentage": 1.11,
- "population": 7022
+ "population": 7022,
+ "percentage": 1.11
},
{
"name": "others",
- "percentage": 0.85,
- "population": 5377
+ "population": 5377,
+ "percentage": 0.85
}
],
"ethnicity": [
@@ -67887,7 +68091,14 @@
},
"nationalHoliday": null,
"anthem": "God zij met ons Suriname",
- "hdi": 0.722
+ "hdi": 0.722,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sr.svg",
+ "png": "https://flagcdn.com/w320/sr.png",
+ "alt": "The flag of Suriname is composed of five horizontal bands of green, white, red, white and green in the ratio of 2:1:4:1:2. A large five-pointed yellow star is centered in the red band.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf7"
+ }
},
{
"name": {
@@ -68097,7 +68308,6 @@
"UKR"
],
"area": 49037,
- "flag": "\ud83c\uddf8\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -68110,11 +68320,6 @@
"female": "Slovaque"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sk.svg",
- "png": "https://flagcdn.com/w320/sk.png",
- "alt": "The flag of Slovakia is composed of three equal horizontal bands of white, blue and red. The coat of arms of Slovakia is superimposed at the center of the field slightly towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sk.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sk.png"
@@ -68157,23 +68362,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 68.8,
- "population": 3724703
+ "population": 3724703,
+ "percentage": 68.8
},
{
"name": "no religion",
- "percentage": 23.8,
- "population": 1288487
+ "population": 1288487,
+ "percentage": 23.8
},
{
"name": "other",
- "percentage": 0.9,
- "population": 48724
+ "population": 48724,
+ "percentage": 0.9
},
{
"name": "unspecified",
- "percentage": 6.5,
- "population": 351898
+ "population": 351898,
+ "percentage": 6.5
}
],
"ethnicity": [
@@ -68215,7 +68420,14 @@
},
"nationalHoliday": "Saint Stephen's Day",
"anthem": "Nad Tatrou sa bl\u00fdska",
- "hdi": 0.88
+ "hdi": 0.88,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sk.svg",
+ "png": "https://flagcdn.com/w320/sk.png",
+ "alt": "The flag of Slovakia is composed of three equal horizontal bands of white, blue and red. The coat of arms of Slovakia is superimposed at the center of the field slightly towards the hoist side.",
+ "emoji": "\ud83c\uddf8\ud83c\uddf0"
+ }
},
{
"name": {
@@ -68424,7 +68636,6 @@
"HUN"
],
"area": 20273,
- "flag": "\ud83c\uddf8\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -68437,11 +68648,6 @@
"female": "Slov\u00e8ne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/si.svg",
- "png": "https://flagcdn.com/w320/si.png",
- "alt": "The flag of Slovenia is composed of three equal horizontal bands of white, blue and red. The national coat of arms is situated in the upper hoist side of the field centered on the boundary between the white and blue bands."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/si.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/si.png"
@@ -68484,18 +68690,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 77.9,
- "population": 1659932
+ "population": 1659932,
+ "percentage": 77.9
},
{
"name": "no religion",
- "percentage": 18.3,
- "population": 389946
+ "population": 389946,
+ "percentage": 18.3
},
{
"name": "other",
- "percentage": 3.9,
- "population": 83103
+ "population": 83103,
+ "percentage": 3.9
}
],
"ethnicity": [],
@@ -68520,7 +68726,14 @@
},
"nationalHoliday": null,
"anthem": "Zdravljica",
- "hdi": 0.931
+ "hdi": 0.931,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/si.svg",
+ "png": "https://flagcdn.com/w320/si.png",
+ "alt": "The flag of Slovenia is composed of three equal horizontal bands of white, blue and red. The national coat of arms is situated in the upper hoist side of the field centered on the boundary between the white and blue bands.",
+ "emoji": "\ud83c\uddf8\ud83c\uddee"
+ }
},
{
"name": {
@@ -68727,7 +68940,6 @@
"NOR"
],
"area": 450295,
- "flag": "\ud83c\uddf8\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -68740,11 +68952,6 @@
"female": "Su\u00e9doise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/se.svg",
- "png": "https://flagcdn.com/w320/se.png",
- "alt": "The flag of Sweden has a blue field with a large golden-yellow cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/se.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/se.png"
@@ -68807,7 +69014,14 @@
},
"nationalHoliday": "National Day of Sweden",
"anthem": "Du gamla, du fria",
- "hdi": 0.959
+ "hdi": 0.959,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/se.svg",
+ "png": "https://flagcdn.com/w320/se.png",
+ "alt": "The flag of Sweden has a blue field with a large golden-yellow cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side.",
+ "emoji": "\ud83c\uddf8\ud83c\uddea"
+ }
},
{
"name": {
@@ -69034,7 +69248,6 @@
"ZAF"
],
"area": 17364,
- "flag": "\ud83c\uddf8\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -69047,11 +69260,6 @@
"female": "Swazie"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sz.svg",
- "png": "https://flagcdn.com/w320/sz.png",
- "alt": "The flag of Eswatini is composed of three horizontal bands \u2014 a large central yellow-edged red band, and a light blue band above and beneath the red band. The red band is three times the height of the blue bands and bears a centered emblem made up of a large black and white Nguni shield covering two spears and a staff decorated with feather tassels, all placed horizontally."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -69100,37 +69308,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 89.3,
- "population": 1103861
+ "population": 1103861,
+ "percentage": 89.3
},
{
"name": "no religion",
- "percentage": 7.4,
- "population": 91473
+ "population": 91473,
+ "percentage": 7.4
},
{
"name": "traditional faiths",
- "percentage": 2.5,
- "population": 30903
+ "population": 30903,
+ "percentage": 2.5
},
{
"name": "others",
- "percentage": 0.8,
- "population": 9889
- }
- ],
- "ethnicity": [
- {
- "name": "swazi",
- "percentage": 84.0
- },
- {
- "name": "zulu",
- "percentage": 10.0
- },
- {
- "name": "others",
- "percentage": 6.0
+ "population": 9889,
+ "percentage": 0.8
}
],
"ethnicity": [],
@@ -69159,7 +69353,14 @@
},
"nationalHoliday": null,
"anthem": "Nkulunkulu Mnikati wetibusiso temaSwati",
- "hdi": 0.695
+ "hdi": 0.695,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sz.svg",
+ "png": "https://flagcdn.com/w320/sz.png",
+ "alt": "The flag of Eswatini is composed of three horizontal bands \u2014 a large central yellow-edged red band, and a light blue band above and beneath the red band. The red band is three times the height of the blue bands and bears a centered emblem made up of a large black and white Nguni shield covering two spears and a staff decorated with feather tassels, all placed horizontally.",
+ "emoji": "\ud83c\uddf8\ud83c\uddff"
+ }
},
{
"name": {
@@ -69386,7 +69587,6 @@
"MAF"
],
"area": 34,
- "flag": "\ud83c\uddf8\ud83c\uddfd",
"demonyms": [
{
"lang": "eng",
@@ -69399,11 +69599,6 @@
"female": "Saint-Martinoise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sx.svg",
- "png": "https://flagcdn.com/w320/sx.png",
- "alt": "The flag of Sint Maarten features two equal horizontal bands of red and blue, with a white isosceles triangle based on the hoist side. The center of the triangle displays the national coat of arms with an orange-bordered blue shield that prominently displays a white courthouse, as well as yellow sage in the upper left and the silhouette of a monument in the upper right. Over the shield is a yellow rising sun and a brown pelican in flight. A yellow scroll below the shield has the Latin motto \"SEMPER PROGREDIENS\" (Always Progressing)."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -69435,28 +69630,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 82.18,
- "population": 48056
+ "population": 48056,
+ "percentage": 82.18
},
{
"name": "no religion",
- "percentage": 7.9,
- "population": 4620
+ "population": 4620,
+ "percentage": 7.9
},
{
"name": "hinduism",
- "percentage": 5.2,
- "population": 3041
+ "population": 3041,
+ "percentage": 5.2
},
{
"name": "not stated",
- "percentage": 2.37,
- "population": 1386
+ "population": 1386,
+ "percentage": 2.37
},
{
"name": "other",
- "percentage": 0.8,
- "population": 468
+ "population": 468,
+ "percentage": 0.8
}
],
"ethnicity": [],
@@ -69481,7 +69676,14 @@
},
"nationalHoliday": null,
"anthem": "O Sweet Saint Martin's Land",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "NLD",
+ "flag": {
+ "svg": "https://flagcdn.com/sx.svg",
+ "png": "https://flagcdn.com/w320/sx.png",
+ "alt": "The flag of Sint Maarten features two equal horizontal bands of red and blue, with a white isosceles triangle based on the hoist side. The center of the triangle displays the national coat of arms with an orange-bordered blue shield that prominently displays a white courthouse, as well as yellow sage in the upper left and the silhouette of a monument in the upper right. Over the shield is a yellow rising sun and a brown pelican in flight. A yellow scroll below the shield has the Latin motto \"SEMPER PROGREDIENS\" (Always Progressing).",
+ "emoji": "\ud83c\uddf8\ud83c\uddfd"
+ }
},
{
"name": {
@@ -69708,7 +69910,6 @@
"landlocked": false,
"borders": [],
"area": 452,
- "flag": "\ud83c\uddf8\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -69721,11 +69922,6 @@
"female": "Seychelloise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sc.svg",
- "png": "https://flagcdn.com/w320/sc.png",
- "alt": "The flag of Seychelles is composed of five broadening oblique bands of blue, yellow, red, white and green, which extend from the hoist side of the bottom edge to the top and fly edges of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sc.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sc.png"
@@ -69774,28 +69970,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 74.9,
- "population": 90895
+ "population": 90895,
+ "percentage": 74.9
},
{
"name": "hinduism",
- "percentage": 5.4,
- "population": 6553
+ "population": 6553,
+ "percentage": 5.4
},
{
"name": "islam",
- "percentage": 2.4,
- "population": 2913
+ "population": 2913,
+ "percentage": 2.4
},
{
"name": "others",
- "percentage": 5.1,
- "population": 6189
+ "population": 6189,
+ "percentage": 5.1
},
{
"name": "unanswered",
- "percentage": 12.2,
- "population": 14805
+ "population": 14805,
+ "percentage": 12.2
}
],
"ethnicity": [
@@ -69829,7 +70025,14 @@
},
"nationalHoliday": null,
"anthem": "Koste Seselwa",
- "hdi": 0.848
+ "hdi": 0.848,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sc.svg",
+ "png": "https://flagcdn.com/w320/sc.png",
+ "alt": "The flag of Seychelles is composed of five broadening oblique bands of blue, yellow, red, white and green, which extend from the hoist side of the bottom edge to the top and fly edges of the field.",
+ "emoji": "\ud83c\uddf8\ud83c\udde8"
+ }
},
{
"name": {
@@ -70040,7 +70243,6 @@
"TUR"
],
"area": 185180,
- "flag": "\ud83c\uddf8\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -70053,11 +70255,6 @@
"female": "Syrienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/sy.svg",
- "png": "https://flagcdn.com/w320/sy.png",
- "alt": "The flag of Syria is composed of three equal horizontal bands of red, white and black. At the center of the white band are two small five-pointed green stars arranged in a horizontal line."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/sy.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/sy.png"
@@ -70104,18 +70301,18 @@
"religion": [
{
"name": "islam",
- "percentage": 94.17,
- "population": 24502762
+ "population": 24502762,
+ "percentage": 94.17
},
{
"name": "christianity",
- "percentage": 3.84,
- "population": 999157
+ "population": 999157,
+ "percentage": 3.84
},
{
"name": "other",
- "percentage": 1.99,
- "population": 517792
+ "population": 517792,
+ "percentage": 1.99
}
],
"ethnicity": [
@@ -70145,7 +70342,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Humat ad-Diyar",
- "hdi": 0.564
+ "hdi": 0.564,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/sy.svg",
+ "png": "https://flagcdn.com/w320/sy.png",
+ "alt": "The flag of Syria is composed of three equal horizontal bands of red, white and black. At the center of the white band are two small five-pointed green stars arranged in a horizontal line.",
+ "emoji": "\ud83c\uddf8\ud83c\uddfe"
+ }
},
{
"name": {
@@ -70347,7 +70551,6 @@
"landlocked": false,
"borders": [],
"area": 948,
- "flag": "\ud83c\uddf9\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -70360,11 +70563,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/tc.svg",
- "png": "https://flagcdn.com/w320/tc.png",
- "alt": "The flag of the Turks and Caicos Islands is blue with the UK flag in the canton and the colonial shield centered on the fly half. The shield is yellow and displays a conch shell, a spiny lobster, and a cactus."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -70413,7 +70611,7 @@
"leaders": [
{
"title": "Monarchy of the United Kingdom",
- "name": "Chales III"
+ "name": ""
},
{
"title": "Governor of the Turks and Caicos Islands",
@@ -70429,7 +70627,14 @@
},
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/tc.svg",
+ "png": "https://flagcdn.com/w320/tc.png",
+ "alt": "The flag of the Turks and Caicos Islands is blue with the UK flag in the canton and the colonial shield centered on the fly half. The shield is yellow and displays a conch shell, a spiny lobster, and a cactus.",
+ "emoji": "\ud83c\uddf9\ud83c\udde8"
+ }
},
{
"name": {
@@ -70652,7 +70857,6 @@
"SDN"
],
"area": 1284000,
- "flag": "\ud83c\uddf9\ud83c\udde9",
"demonyms": [
{
"lang": "eng",
@@ -70665,11 +70869,6 @@
"female": "Tchadienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/td.svg",
- "png": "https://flagcdn.com/w320/td.png",
- "alt": "The flag of Chad is composed of three equal vertical bands of blue, gold and red."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/td.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/td.png"
@@ -70719,28 +70918,28 @@
"religion": [
{
"name": "islam",
- "percentage": 55.1,
- "population": 10520571
+ "population": 10520571,
+ "percentage": 55.1
},
{
"name": "christianity",
- "percentage": 41.1,
- "population": 7847468
+ "population": 7847468,
+ "percentage": 41.1
},
{
"name": "no religion",
- "percentage": 2.4,
- "population": 458246
+ "population": 458246,
+ "percentage": 2.4
},
{
"name": "animism",
- "percentage": 1.3,
- "population": 248217
+ "population": 248217,
+ "percentage": 1.3
},
{
"name": "others",
- "percentage": 0.1,
- "population": 19094
+ "population": 19094,
+ "percentage": 0.1
}
],
"ethnicity": [],
@@ -70765,7 +70964,14 @@
},
"nationalHoliday": null,
"anthem": "La Tchadienne",
- "hdi": 0.416
+ "hdi": 0.416,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/td.svg",
+ "png": "https://flagcdn.com/w320/td.png",
+ "alt": "The flag of Chad is composed of three equal vertical bands of blue, gold and red.",
+ "emoji": "\ud83c\uddf9\ud83c\udde9"
+ }
},
{
"name": {
@@ -70974,7 +71180,6 @@
"GHA"
],
"area": 56785,
- "flag": "\ud83c\uddf9\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -70987,11 +71192,6 @@
"female": "Togolaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tg.svg",
- "png": "https://flagcdn.com/w320/tg.png",
- "alt": "The flag of Togo is composed of five equal horizontal bands of green alternating with yellow. A red square bearing a five-pointed white star is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tg.png"
@@ -71040,28 +71240,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 47.8,
- "population": 4580856
+ "population": 4580856,
+ "percentage": 47.8
},
{
"name": "traditional faiths",
- "percentage": 33.0,
- "population": 3162516
+ "population": 3162516,
+ "percentage": 33.0
},
{
"name": "islam",
- "percentage": 18.4,
- "population": 1763342
+ "population": 1763342,
+ "percentage": 18.4
},
{
"name": "bah\u00e1\u02bc\u00ed faith",
- "percentage": 0.5,
- "population": 47917
+ "population": 47917,
+ "percentage": 0.5
},
{
"name": "others",
- "percentage": 0.3,
- "population": 28750
+ "population": 28750,
+ "percentage": 0.3
}
],
"ethnicity": [
@@ -71115,7 +71315,14 @@
},
"nationalHoliday": null,
"anthem": "Terre de nos a\u00efeux",
- "hdi": 0.571
+ "hdi": 0.571,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tg.svg",
+ "png": "https://flagcdn.com/w320/tg.png",
+ "alt": "The flag of Togo is composed of five equal horizontal bands of green alternating with yellow. A red square bearing a five-pointed white star is superimposed in the canton.",
+ "emoji": "\ud83c\uddf9\ud83c\uddec"
+ }
},
{
"name": {
@@ -71328,7 +71535,6 @@
"MYS"
],
"area": 513120,
- "flag": "\ud83c\uddf9\ud83c\udded",
"demonyms": [
{
"lang": "eng",
@@ -71341,11 +71547,6 @@
"female": "Tha\u00eflandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/th.svg",
- "png": "https://flagcdn.com/w320/th.png",
- "alt": "The flag of Thailand is composed of five horizontal bands of red, white, blue, white and red, with the central blue band twice the height of the other four bands."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/th.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/th.png"
@@ -71388,23 +71589,23 @@
"religion": [
{
"name": "buddhism",
- "percentage": 93.46,
- "population": 61660420
+ "population": 61660420,
+ "percentage": 93.46
},
{
"name": "islam",
- "percentage": 5.37,
- "population": 3542868
+ "population": 3542868,
+ "percentage": 5.37
},
{
"name": "christianity",
- "percentage": 1.13,
- "population": 745520
+ "population": 745520,
+ "percentage": 1.13
},
{
"name": "other",
- "percentage": 0.03,
- "population": 19793
+ "population": 19793,
+ "percentage": 0.03
}
],
"ethnicity": [
@@ -71446,7 +71647,14 @@
},
"nationalHoliday": "National Day of Thailand",
"anthem": "Thai National Anthem",
- "hdi": 0.798
+ "hdi": 0.798,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/th.svg",
+ "png": "https://flagcdn.com/w320/th.png",
+ "alt": "The flag of Thailand is composed of five horizontal bands of red, white, blue, white and red, with the central blue band twice the height of the other four bands.",
+ "emoji": "\ud83c\uddf9\ud83c\udded"
+ }
},
{
"name": {
@@ -71668,7 +71876,6 @@
"UZB"
],
"area": 143100,
- "flag": "\ud83c\uddf9\ud83c\uddef",
"demonyms": [
{
"lang": "eng",
@@ -71681,11 +71888,6 @@
"female": "Tadjike"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tj.svg",
- "png": "https://flagcdn.com/w320/tj.png",
- "alt": "The flag of Tajikistan is composed of three horizontal bands of red, white and green in the ratio of 2:3:2. A golden-yellow crown surmounted by an arc of seven five-pointed golden-yellow stars is centered in the white band."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tj.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tj.png"
@@ -71722,23 +71924,23 @@
"religion": [
{
"name": "islam",
- "percentage": 97.5,
- "population": 10517066
+ "population": 10517066,
+ "percentage": 97.5
},
{
"name": "christianity",
- "percentage": 0.7,
- "population": 75507
+ "population": 75507,
+ "percentage": 0.7
},
{
"name": "irreligion",
- "percentage": 1.7,
- "population": 183374
+ "population": 183374,
+ "percentage": 1.7
},
{
"name": "others",
- "percentage": 0.2,
- "population": 21573
+ "population": 21573,
+ "percentage": 0.2
}
],
"ethnicity": [
@@ -71784,7 +71986,14 @@
},
"nationalHoliday": null,
"anthem": "National anthem of Tajikistan",
- "hdi": 0.691
+ "hdi": 0.691,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tj.svg",
+ "png": "https://flagcdn.com/w320/tj.png",
+ "alt": "The flag of Tajikistan is composed of three horizontal bands of red, white and green in the ratio of 2:3:2. A golden-yellow crown surmounted by an arc of seven five-pointed golden-yellow stars is centered in the white band.",
+ "emoji": "\ud83c\uddf9\ud83c\uddef"
+ }
},
{
"name": {
@@ -72008,7 +72217,6 @@
"landlocked": false,
"borders": [],
"area": 12,
- "flag": "\ud83c\uddf9\ud83c\uddf0",
"demonyms": [
{
"lang": "eng",
@@ -72021,11 +72229,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/tk.svg",
- "png": "https://flagcdn.com/w320/tk.png",
- "alt": "The flag of Tokelau features a yellow stylized canoe on a dark blue field sailing toward the Southern Cross constellation with four white five-pointed stars at the hoist side."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -72073,7 +72276,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "NZL",
+ "flag": {
+ "svg": "https://flagcdn.com/tk.svg",
+ "png": "https://flagcdn.com/w320/tk.png",
+ "alt": "The flag of Tokelau features a yellow stylized canoe on a dark blue field sailing toward the Southern Cross constellation with four white five-pointed stars at the hoist side.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf0"
+ }
},
{
"name": {
@@ -72291,7 +72501,6 @@
"UZB"
],
"area": 488100,
- "flag": "\ud83c\uddf9\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -72304,11 +72513,6 @@
"female": "Turkm\u00e8ne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tm.svg",
- "png": "https://flagcdn.com/w320/tm.png",
- "alt": "The flag of Turkmenistan has a green field. It features a red vertical band, bearing five carpet guls stacked above two crossed olive branches, near the hoist end of the field. Just to the fly side of the vertical band near the top edge of the field is a hoist-side facing white crescent and five small five-pointed white stars placed just outside the crescent opening."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tm.png"
@@ -72345,23 +72549,23 @@
"religion": [
{
"name": "islam",
- "percentage": 95.8,
- "population": 5860980
+ "population": 5860980,
+ "percentage": 95.8
},
{
"name": "no religion",
- "percentage": 3.0,
- "population": 183538
+ "population": 183538,
+ "percentage": 3.0
},
{
"name": "christianity",
- "percentage": 1.1,
- "population": 67297
+ "population": 67297,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 0.1,
- "population": 6118
+ "population": 6118,
+ "percentage": 0.1
}
],
"ethnicity": [
@@ -72403,7 +72607,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "National anthem of Turkmenistan",
- "hdi": 0.764
+ "hdi": 0.764,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tm.svg",
+ "png": "https://flagcdn.com/w320/tm.png",
+ "alt": "The flag of Turkmenistan has a green field. It features a red vertical band, bearing five carpet guls stacked above two crossed olive branches, near the hoist end of the field. Just to the fly side of the vertical band near the top edge of the field is a hoist-side facing white crescent and five small five-pointed white stars placed just outside the crescent opening.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf2"
+ }
},
{
"name": {
@@ -72624,7 +72835,6 @@
"IDN"
],
"area": 14874,
- "flag": "\ud83c\uddf9\ud83c\uddf1",
"demonyms": [
{
"lang": "eng",
@@ -72637,11 +72847,6 @@
"female": "Est-timoraise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tl.svg",
- "png": "https://flagcdn.com/w320/tl.png",
- "alt": "The flag of Timor-Leste has a red field with two isosceles triangles which share a common base on the hoist end. The smaller black triangle, which bears a five-pointed white star at its center and spans one-third the width of the field, is superimposed on the larger yellow triangle that extends to the center of the field."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -72678,18 +72883,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 99.53,
- "population": 1348295
+ "population": 1348295,
+ "percentage": 99.53
},
{
"name": "islam",
- "percentage": 0.24,
- "population": 3251
+ "population": 3251,
+ "percentage": 0.24
},
{
"name": "other",
- "percentage": 0.23,
- "population": 3116
+ "population": 3116,
+ "percentage": 0.23
}
],
"ethnicity": [],
@@ -72714,7 +72919,14 @@
},
"nationalHoliday": null,
"anthem": "P\u00e1tria",
- "hdi": 0.634
+ "hdi": 0.634,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tl.svg",
+ "png": "https://flagcdn.com/w320/tl.png",
+ "alt": "The flag of Timor-Leste has a red field with two isosceles triangles which share a common base on the hoist end. The smaller black triangle, which bears a five-pointed white star at its center and spans one-third the width of the field, is superimposed on the larger yellow triangle that extends to the center of the field.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf1"
+ }
},
{
"name": {
@@ -72927,7 +73139,6 @@
"landlocked": false,
"borders": [],
"area": 747,
- "flag": "\ud83c\uddf9\ud83c\uddf4",
"demonyms": [
{
"lang": "eng",
@@ -72940,11 +73151,6 @@
"female": "Tonguienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/to.svg",
- "png": "https://flagcdn.com/w320/to.png",
- "alt": "The flag of Tonga has a red field. A white rectangle bearing a red Greek cross is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/to.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/to.png"
@@ -72981,23 +73187,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.9,
- "population": 104671
+ "population": 104671,
+ "percentage": 96.9
},
{
"name": "no religion",
- "percentage": 0.5,
- "population": 540
+ "population": 540,
+ "percentage": 0.5
},
{
"name": "unspecified",
- "percentage": 0.1,
- "population": 108
+ "population": 108,
+ "percentage": 0.1
},
{
"name": "others",
- "percentage": 2.4,
- "population": 2592
+ "population": 2592,
+ "percentage": 2.4
}
],
"ethnicity": [
@@ -73031,7 +73237,14 @@
},
"nationalHoliday": null,
"anthem": "Ko e fasi 'o e tu'i 'o e 'Otu Tonga",
- "hdi": 0.739
+ "hdi": 0.739,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/to.svg",
+ "png": "https://flagcdn.com/w320/to.png",
+ "alt": "The flag of Tonga has a red field. A white rectangle bearing a red Greek cross is superimposed in the canton.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf4"
+ }
},
{
"name": {
@@ -73234,7 +73447,6 @@
"landlocked": false,
"borders": [],
"area": 5130,
- "flag": "\ud83c\uddf9\ud83c\uddf9",
"demonyms": [
{
"lang": "eng",
@@ -73247,11 +73459,6 @@
"female": "Trinidadienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tt.svg",
- "png": "https://flagcdn.com/w320/tt.png",
- "alt": "The flag of Trinidad and Tobago has a red field with a white-edged black diagonal band that extends from the upper hoist-side corner to the lower fly-side corner of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tt.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tt.png"
@@ -73298,28 +73505,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 55.2,
- "population": 835054
+ "population": 835054,
+ "percentage": 55.2
},
{
"name": "hinduism",
- "percentage": 18.2,
- "population": 275326
+ "population": 275326,
+ "percentage": 18.2
},
{
"name": "islam",
- "percentage": 5.0,
- "population": 75639
+ "population": 75639,
+ "percentage": 5.0
},
{
"name": "other",
- "percentage": 8.3,
- "population": 125561
+ "population": 125561,
+ "percentage": 8.3
},
{
"name": "irreligion",
- "percentage": 13.3,
- "population": 201200
+ "population": 201200,
+ "percentage": 13.3
}
],
"ethnicity": [
@@ -73365,7 +73572,14 @@
},
"nationalHoliday": null,
"anthem": "Forged from the Love of Liberty",
- "hdi": 0.807
+ "hdi": 0.807,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tt.svg",
+ "png": "https://flagcdn.com/w320/tt.png",
+ "alt": "The flag of Trinidad and Tobago has a red field with a white-edged black diagonal band that extends from the upper hoist-side corner to the lower fly-side corner of the field.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf9"
+ }
},
{
"name": {
@@ -73572,7 +73786,6 @@
"LBY"
],
"area": 163610,
- "flag": "\ud83c\uddf9\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -73585,11 +73798,6 @@
"female": "Tunisienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tn.svg",
- "png": "https://flagcdn.com/w320/tn.png",
- "alt": "The flag of Tunisia has a red field. A white circle bearing a five-pointed red star within a fly-side facing red crescent is situated at the center of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tn.png"
@@ -73647,13 +73855,13 @@
"religion": [
{
"name": "sunni islam",
- "percentage": 99.0,
- "population": 11449552
+ "population": 11449552,
+ "percentage": 99.0
},
{
"name": "others",
- "percentage": 1.0,
- "population": 115652
+ "population": 115652,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -73691,7 +73899,14 @@
},
"nationalHoliday": "National Women's Day",
"anthem": "Humat Al Hima",
- "hdi": 0.746
+ "hdi": 0.746,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tn.svg",
+ "png": "https://flagcdn.com/w320/tn.png",
+ "alt": "The flag of Tunisia has a red field. A white circle bearing a five-pointed red star within a fly-side facing red crescent is situated at the center of the field.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf3"
+ }
},
{
"name": {
@@ -73906,7 +74121,6 @@
"SYR"
],
"area": 783562,
- "flag": "\ud83c\uddf9\ud83c\uddf7",
"demonyms": [
{
"lang": "eng",
@@ -73919,11 +74133,6 @@
"female": "Turque"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tr.svg",
- "png": "https://flagcdn.com/w320/tr.png",
- "alt": "The flag of Turkey has a red field bearing a large fly-side facing white crescent and a smaller five-pointed white star placed just outside the crescent opening. The white crescent and star are offset slightly towards the hoist side of center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tr.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tr.png"
@@ -73980,7 +74189,14 @@
},
"nationalHoliday": "Democracy and National Unity Day",
"anthem": "\u0130stikl\u00e2l Mar\u015f\u0131",
- "hdi": 0.853
+ "hdi": 0.853,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tr.svg",
+ "png": "https://flagcdn.com/w320/tr.png",
+ "alt": "The flag of Turkey has a red field bearing a large fly-side facing white crescent and a smaller five-pointed white star placed just outside the crescent opening. The white crescent and star are offset slightly towards the hoist side of center.",
+ "emoji": "\ud83c\uddf9\ud83c\uddf7"
+ }
},
{
"name": {
@@ -74198,7 +74414,6 @@
"landlocked": false,
"borders": [],
"area": 26,
- "flag": "\ud83c\uddf9\ud83c\uddfb",
"demonyms": [
{
"lang": "eng",
@@ -74211,11 +74426,6 @@
"female": "Tuvaluane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tv.svg",
- "png": "https://flagcdn.com/w320/tv.png",
- "alt": "The flag of Tuvalu has a light blue field with the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton. A representation of the country's nine Islands using nine five-pointed yellow stars is situated in the fly half of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tv.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tv.png"
@@ -74252,18 +74462,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 96.0,
- "population": 10217
+ "population": 10217,
+ "percentage": 96.0
},
{
"name": "other religions or not stated",
- "percentage": 3.0,
- "population": 319
+ "population": 319,
+ "percentage": 3.0
},
{
"name": "bah\u00e1\u02bc\u00ed faith",
- "percentage": 1.0,
- "population": 106
+ "population": 106,
+ "percentage": 1.0
}
],
"ethnicity": [
@@ -74297,7 +74507,14 @@
},
"nationalHoliday": null,
"anthem": "Tuvalu mo te Atua",
- "hdi": 0.689
+ "hdi": 0.689,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tv.svg",
+ "png": "https://flagcdn.com/w320/tv.png",
+ "alt": "The flag of Tuvalu has a light blue field with the flag of the United Kingdom \u2014 the Union Jack \u2014 in the canton. A representation of the country's nine Islands using nine five-pointed yellow stars is situated in the fly half of the field.",
+ "emoji": "\ud83c\uddf9\ud83c\uddfb"
+ }
},
{
"name": {
@@ -74501,7 +74718,6 @@
"landlocked": false,
"borders": [],
"area": 36197,
- "flag": "\ud83c\uddf9\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -74514,11 +74730,6 @@
"female": "Ta\u00efwanaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tw.svg",
- "png": "https://flagcdn.com/w320/tw.png",
- "alt": "The flag of Taiwan has a red field with a dark blue rectangle in the canton, bearing a white sun with 12 triangular rays."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tw.png"
@@ -74550,28 +74761,28 @@
"religion": [
{
"name": "buddhism",
- "percentage": 28.0,
- "population": 6523757
+ "population": 6523757,
+ "percentage": 28.0
},
{
"name": "no religion",
- "percentage": 27.0,
- "population": 6290766
+ "population": 6290766,
+ "percentage": 27.0
},
{
"name": "taoism",
- "percentage": 24.0,
- "population": 5591792
+ "population": 5591792,
+ "percentage": 24.0
},
{
"name": "christianity",
- "percentage": 7.0,
- "population": 1630939
+ "population": 1630939,
+ "percentage": 7.0
},
{
"name": "others",
- "percentage": 13.0,
- "population": 3028887
+ "population": 3028887,
+ "percentage": 13.0
}
],
"ethnicity": [
@@ -74605,7 +74816,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "National Anthem of the Republic of China",
- "hdi": 0.934
+ "hdi": 0.934,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tw.svg",
+ "png": "https://flagcdn.com/w320/tw.png",
+ "alt": "The flag of Taiwan has a red field with a dark blue rectangle in the canton, bearing a white sun with 12 triangular rays.",
+ "emoji": "\ud83c\uddf9\ud83c\uddfc"
+ }
},
{
"name": {
@@ -74830,7 +75048,6 @@
"ZMB"
],
"area": 947303,
- "flag": "\ud83c\uddf9\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -74843,11 +75060,6 @@
"female": "Tanzanienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/tz.svg",
- "png": "https://flagcdn.com/w320/tz.png",
- "alt": "The flag of Tanzania features a yellow-edged black diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and light blue triangle respectively."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/tz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/tz.png"
@@ -74896,28 +75108,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 63.1,
- "population": 42568598
+ "population": 42568598,
+ "percentage": 63.1
},
{
"name": "islam",
- "percentage": 34.1,
- "population": 23004583
+ "population": 23004583,
+ "percentage": 34.1
},
{
"name": "no religion",
- "percentage": 1.5,
- "population": 1011932
+ "population": 1011932,
+ "percentage": 1.5
},
{
"name": "traditional faiths",
- "percentage": 1.2,
- "population": 809545
+ "population": 809545,
+ "percentage": 1.2
},
{
"name": "others",
- "percentage": 0.1,
- "population": 67462
+ "population": 67462,
+ "percentage": 0.1
}
],
"ethnicity": [],
@@ -74942,7 +75154,14 @@
},
"nationalHoliday": null,
"anthem": "Mungu ibariki Afrika",
- "hdi": 0.555
+ "hdi": 0.555,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/tz.svg",
+ "png": "https://flagcdn.com/w320/tz.png",
+ "alt": "The flag of Tanzania features a yellow-edged black diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a green and light blue triangle respectively.",
+ "emoji": "\ud83c\uddf9\ud83c\uddff"
+ }
},
{
"name": {
@@ -75163,7 +75382,6 @@
"TZA"
],
"area": 241550,
- "flag": "\ud83c\uddfa\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -75176,11 +75394,6 @@
"female": "Ougandaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ug.svg",
- "png": "https://flagcdn.com/w320/ug.png",
- "alt": "The flag of Uganda is composed of six equal horizontal bands of black, yellow, red, black, yellow and red. A white circle bearing a hoist-side facing grey red-crested crane is superimposed in the center of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ug.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ug.png"
@@ -75229,28 +75442,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 81.7,
- "population": 38499925
+ "population": 38499925,
+ "percentage": 81.7
},
{
"name": "islam",
- "percentage": 13.2,
- "population": 6220306
+ "population": 6220306,
+ "percentage": 13.2
},
{
"name": "unclassified",
- "percentage": 3.3,
- "population": 1555077
+ "population": 1555077,
+ "percentage": 3.3
},
{
"name": "others",
- "percentage": 1.6,
- "population": 753976
+ "population": 753976,
+ "percentage": 1.6
},
{
"name": "no religion",
- "percentage": 0.2,
- "population": 94247
+ "population": 94247,
+ "percentage": 0.2
}
],
"ethnicity": [
@@ -75316,7 +75529,14 @@
},
"nationalHoliday": null,
"anthem": "Oh Uganda, Land of Beauty",
- "hdi": 0.582
+ "hdi": 0.582,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ug.svg",
+ "png": "https://flagcdn.com/w320/ug.png",
+ "alt": "The flag of Uganda is composed of six equal horizontal bands of black, yellow, red, black, yellow and red. A white circle bearing a hoist-side facing grey red-crested crane is superimposed in the center of the field.",
+ "emoji": "\ud83c\uddfa\ud83c\uddec"
+ }
},
{
"name": {
@@ -75528,7 +75748,6 @@
"SVK"
],
"area": 603550,
- "flag": "\ud83c\uddfa\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -75541,11 +75760,6 @@
"female": "Ukrainienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ua.svg",
- "png": "https://flagcdn.com/w320/ua.png",
- "alt": "The flag of Ukraine is composed of two equal horizontal bands of blue and yellow."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ua.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ua.png"
@@ -75582,18 +75796,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 87.3,
- "population": 28688526
+ "population": 28688526,
+ "percentage": 87.3
},
{
"name": "no religion",
- "percentage": 11.0,
- "population": 3614820
+ "population": 3614820,
+ "percentage": 11.0
},
{
"name": "other",
- "percentage": 0.8,
- "population": 262896
+ "population": 262896,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -75631,7 +75845,14 @@
},
"nationalHoliday": "Independence Day of Ukraine",
"anthem": "Shche ne vmerla Ukrainy i slava, i volia",
- "hdi": 0.779
+ "hdi": 0.779,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ua.svg",
+ "png": "https://flagcdn.com/w320/ua.png",
+ "alt": "The flag of Ukraine is composed of two equal horizontal bands of blue and yellow.",
+ "emoji": "\ud83c\uddfa\ud83c\udde6"
+ }
},
{
"name": {
@@ -75830,7 +76051,6 @@
"landlocked": false,
"borders": [],
"area": 34.2,
- "flag": "\ud83c\uddfa\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -75843,11 +76063,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/um.svg",
- "png": "https://flagcdn.com/w320/um.png",
- "alt": "The flag of the United States Minor Outlying Islands is composed of thirteen equal horizontal bands of red alternating with white. A blue rectangle, bearing fifty small five-pointed white stars arranged in nine rows where rows of six stars alternate with rows of five stars, is superimposed in the canton."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -75897,7 +76112,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/um.svg",
+ "png": "https://flagcdn.com/w320/um.png",
+ "alt": "The flag of the United States Minor Outlying Islands is composed of thirteen equal horizontal bands of red alternating with white. A blue rectangle, bearing fifty small five-pointed white stars arranged in nine rows where rows of six stars alternate with rows of five stars, is superimposed in the canton.",
+ "emoji": "\ud83c\uddfa\ud83c\uddf2"
+ }
},
{
"name": {
@@ -76104,7 +76326,6 @@
"BRA"
],
"area": 181034,
- "flag": "\ud83c\uddfa\ud83c\uddfe",
"demonyms": [
{
"lang": "eng",
@@ -76117,11 +76338,6 @@
"female": "Uruguayenne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/uy.svg",
- "png": "https://flagcdn.com/w320/uy.png",
- "alt": "The flag of Uruguay is composed of nine equal horizontal bands of white alternating with blue, with a white square superimposed in the canton. In the white square is a yellow sun bearing a human face \u2014 the Sun of May \u2014 from which sixteen rays extend. The sun's rays alternate between triangular and wavy."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/uy.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/uy.png"
@@ -76210,7 +76426,14 @@
},
"nationalHoliday": "International Workers' Day",
"anthem": "National Anthem of Uruguay",
- "hdi": 0.862
+ "hdi": 0.862,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/uy.svg",
+ "png": "https://flagcdn.com/w320/uy.png",
+ "alt": "The flag of Uruguay is composed of nine equal horizontal bands of white alternating with blue, with a white square superimposed in the canton. In the white square is a yellow sun bearing a human face \u2014 the Sun of May \u2014 from which sixteen rays extend. The sun's rays alternate between triangular and wavy.",
+ "emoji": "\ud83c\uddfa\ud83c\uddfe"
+ }
},
{
"name": {
@@ -76733,7 +76956,6 @@
"MEX"
],
"area": 9525067,
- "flag": "\ud83c\uddfa\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -76746,11 +76968,6 @@
"female": "Am\u00e9ricaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/us.svg",
- "png": "https://flagcdn.com/w320/us.png",
- "alt": "The flag of the United States of America is composed of thirteen equal horizontal bands of red alternating with white. A blue rectangle, bearing fifty small five-pointed white stars arranged in nine rows where rows of six stars alternate with rows of five stars, is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/us.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/us.png"
@@ -76806,28 +77023,28 @@
"religion": [
{
"name": "christianity",
- "percentage": 67.0,
- "population": 228995854
+ "population": 228995854,
+ "percentage": 67.0
},
{
"name": "unaffiliated",
- "percentage": 22.0,
- "population": 75192669
+ "population": 75192669,
+ "percentage": 22.0
},
{
"name": "judaism",
- "percentage": 2.0,
- "population": 6835697
+ "population": 6835697,
+ "percentage": 2.0
},
{
"name": "other religion",
- "percentage": 6.0,
- "population": 20507091
+ "population": 20507091,
+ "percentage": 6.0
},
{
"name": "unanswered",
- "percentage": 3.0,
- "population": 10253546
+ "population": 10253546,
+ "percentage": 3.0
}
],
"ethnicity": [],
@@ -76852,7 +77069,14 @@
},
"nationalHoliday": "Independence Day",
"anthem": "The Star-Spangled Banner",
- "hdi": 0.938
+ "hdi": 0.938,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/us.svg",
+ "png": "https://flagcdn.com/w320/us.png",
+ "alt": "The flag of the United States of America is composed of thirteen equal horizontal bands of red alternating with white. A blue rectangle, bearing fifty small five-pointed white stars arranged in nine rows where rows of six stars alternate with rows of five stars, is superimposed in the canton.",
+ "emoji": "\ud83c\uddfa\ud83c\uddf8"
+ }
},
{
"name": {
@@ -77074,7 +77298,6 @@
"TKM"
],
"area": 447400,
- "flag": "\ud83c\uddfa\ud83c\uddff",
"demonyms": [
{
"lang": "eng",
@@ -77087,11 +77310,6 @@
"female": "Ouzb\u00e8ke"
}
],
- "flags": {
- "svg": "https://flagcdn.com/uz.svg",
- "png": "https://flagcdn.com/w320/uz.png",
- "alt": "The flag of Uzbekistan is composed of three equal horizontal bands of turquoise, white with red top and bottom edges, and green. On the hoist side of the turquoise band is a fly-side facing white crescent and twelve five-pointed white stars arranged just outside the crescent opening in three rows comprising three, four and five stars."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/uz.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/uz.png"
@@ -77128,23 +77346,23 @@
"religion": [
{
"name": "islam",
- "percentage": 94.78,
- "population": 36240748
+ "population": 36240748,
+ "percentage": 94.78
},
{
"name": "irreligion",
- "percentage": 3.89,
- "population": 1487408
+ "population": 1487408,
+ "percentage": 3.89
},
{
"name": "christianity",
- "percentage": 1.04,
- "population": 397662
+ "population": 397662,
+ "percentage": 1.04
},
{
"name": "other religions",
- "percentage": 0.27,
- "population": 103239
+ "population": 103239,
+ "percentage": 0.27
}
],
"ethnicity": [
@@ -77194,7 +77412,14 @@
},
"nationalHoliday": "Novruz",
"anthem": "National Anthem of Uzbekistan",
- "hdi": 0.74
+ "hdi": 0.74,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/uz.svg",
+ "png": "https://flagcdn.com/w320/uz.png",
+ "alt": "The flag of Uzbekistan is composed of three equal horizontal bands of turquoise, white with red top and bottom edges, and green. On the hoist side of the turquoise band is a fly-side facing white crescent and twelve five-pointed white stars arranged just outside the crescent opening in three rows comprising three, four and five stars.",
+ "emoji": "\ud83c\uddfa\ud83c\uddff"
+ }
},
{
"name": {
@@ -77413,7 +77638,6 @@
"ITA"
],
"area": 0.49,
- "flag": "\ud83c\uddfb\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -77426,11 +77650,6 @@
"female": "Vaticane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/va.svg",
- "png": "https://flagcdn.com/w320/va.png",
- "alt": "The flag of Vatican City is square shaped. It is composed of two equal vertical bands of yellow and white, with national coat of arms centered in the white band. The national coat of arms comprises the Papal Tiara superimposed on two crossed keys."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/va.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/va.png"
@@ -77478,7 +77697,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Inno e Marcia Pontificale",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/va.svg",
+ "png": "https://flagcdn.com/w320/va.png",
+ "alt": "The flag of Vatican City is square shaped. It is composed of two equal vertical bands of yellow and white, with national coat of arms centered in the white band. The national coat of arms comprises the Papal Tiara superimposed on two crossed keys.",
+ "emoji": "\ud83c\uddfb\ud83c\udde6"
+ }
},
{
"name": {
@@ -77680,7 +77906,6 @@
"landlocked": false,
"borders": [],
"area": 389,
- "flag": "\ud83c\uddfb\ud83c\udde8",
"demonyms": [
{
"lang": "eng",
@@ -77693,11 +77918,6 @@
"female": "Vincentaise"
}
],
- "flags": {
- "svg": "https://flagcdn.com/vc.svg",
- "png": "https://flagcdn.com/w320/vc.png",
- "alt": "The flag of Saint Vincent and the Grenadines is composed of three vertical bands of blue, gold and green. The gold band is twice as wide as the other two bands and bears three green diamonds arranged to form the letter V at its center."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/vc.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/vc.png"
@@ -77739,38 +77959,38 @@
"religion": [
{
"name": "christianity",
- "percentage": 88.6,
- "population": 98233
+ "population": 98233,
+ "percentage": 88.6
},
{
"name": "hinduism",
- "percentage": 3.4,
- "population": 3770
+ "population": 3770,
+ "percentage": 3.4
},
{
"name": "irreligion",
- "percentage": 2.5,
- "population": 2772
+ "population": 2772,
+ "percentage": 2.5
},
{
"name": "rastafari",
- "percentage": 1.8,
- "population": 1996
+ "population": 1996,
+ "percentage": 1.8
},
{
"name": "bah\u00e1\u02bc\u00ed faith",
- "percentage": 1.6,
- "population": 1774
+ "population": 1774,
+ "percentage": 1.6
},
{
"name": "islam",
- "percentage": 1.5,
- "population": 1663
+ "population": 1663,
+ "percentage": 1.5
},
{
"name": "other",
- "percentage": 0.5,
- "population": 554
+ "population": 554,
+ "percentage": 0.5
}
],
"ethnicity": [
@@ -77820,7 +78040,14 @@
},
"nationalHoliday": null,
"anthem": "Saint Vincent, Land so Beautiful",
- "hdi": 0.798
+ "hdi": 0.798,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/vc.svg",
+ "png": "https://flagcdn.com/w320/vc.png",
+ "alt": "The flag of Saint Vincent and the Grenadines is composed of three vertical bands of blue, gold and green. The gold band is twice as wide as the other two bands and bears three green diamonds arranged to form the letter V at its center.",
+ "emoji": "\ud83c\uddfb\ud83c\udde8"
+ }
},
{
"name": {
@@ -78029,7 +78256,6 @@
"GUY"
],
"area": 916445,
- "flag": "\ud83c\uddfb\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -78042,11 +78268,6 @@
"female": "V\u00e9n\u00e9zu\u00e9lienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ve.svg",
- "png": "https://flagcdn.com/w320/ve.png",
- "alt": "The flag of Venezuela is composed of three equal horizontal bands of yellow, blue and red. At the center of the blue band are eight five-pointed white stars arranged in a horizontal arc."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ve.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ve.png"
@@ -78094,23 +78315,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 92.6,
- "population": 29446800
+ "population": 29446800,
+ "percentage": 92.6
},
{
"name": "no religion",
- "percentage": 5.5,
- "population": 1749000
+ "population": 1749000,
+ "percentage": 5.5
},
{
"name": "spiritism",
- "percentage": 1.1,
- "population": 349800
+ "population": 349800,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 0.8,
- "population": 254400
+ "population": 254400,
+ "percentage": 0.8
}
],
"ethnicity": [
@@ -78148,7 +78369,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "gloria al bravo pueblo",
- "hdi": 0.709
+ "hdi": 0.709,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ve.svg",
+ "png": "https://flagcdn.com/w320/ve.png",
+ "alt": "The flag of Venezuela is composed of three equal horizontal bands of yellow, blue and red. At the center of the blue band are eight five-pointed white stars arranged in a horizontal arc.",
+ "emoji": "\ud83c\uddfb\ud83c\uddea"
+ }
},
{
"name": {
@@ -78351,7 +78579,6 @@
"landlocked": false,
"borders": [],
"area": 151,
- "flag": "\ud83c\uddfb\ud83c\uddec",
"demonyms": [
{
"lang": "eng",
@@ -78364,11 +78591,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/vg.svg",
- "png": "https://flagcdn.com/w320/vg.png",
- "alt": "The flag of the British Virgin Islands is blue with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms depicts a woman flanked by vertical columns of six oil lamps above a scroll bearing the Latin word \"VIGILATE\" (Be Watchful)."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/vg.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/vg.png"
@@ -78441,7 +78663,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "God Save the King",
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "GBR",
+ "flag": {
+ "svg": "https://flagcdn.com/vg.svg",
+ "png": "https://flagcdn.com/w320/vg.png",
+ "alt": "The flag of the British Virgin Islands is blue with the UK flag in the canton and the national coat of arms centered in the fly half. The coat of arms depicts a woman flanked by vertical columns of six oil lamps above a scroll bearing the Latin word \"VIGILATE\" (Be Watchful).",
+ "emoji": "\ud83c\uddfb\ud83c\uddec"
+ }
},
{
"name": {
@@ -78644,7 +78873,6 @@
"landlocked": false,
"borders": [],
"area": 347,
- "flag": "\ud83c\uddfb\ud83c\uddee",
"demonyms": [
{
"lang": "eng",
@@ -78657,11 +78885,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/vi.svg",
- "png": "https://flagcdn.com/w320/vi.png",
- "alt": "The flag of the United States Virgin Islands is composed of a white field with the national coat of arms in the center between the large blue initials V and I. The coat of arms shows a yellow eagle holding an olive branch in its right talon and three arrows in the left, with a shield of seven red and six white vertical stripes below a blue panel."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -78693,18 +78916,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 86.7,
- "population": 75556
+ "population": 75556,
+ "percentage": 86.7
},
{
"name": "no religion",
- "percentage": 8.4,
- "population": 7320
+ "population": 7320,
+ "percentage": 8.4
},
{
"name": "other",
- "percentage": 4.9,
- "population": 4270
+ "population": 4270,
+ "percentage": 4.9
}
],
"ethnicity": [
@@ -78754,7 +78977,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": "Virgin Islands March",
- "hdi": 31.0
+ "hdi": 31.0,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/vi.svg",
+ "png": "https://flagcdn.com/w320/vi.png",
+ "alt": "The flag of the United States Virgin Islands is composed of a white field with the national coat of arms in the center between the large blue initials V and I. The coat of arms shows a yellow eagle holding an olive branch in its right talon and three arrows in the left, with a shield of seven red and six white vertical stripes below a blue panel.",
+ "emoji": "\ud83c\uddfb\ud83c\uddee"
+ }
},
{
"name": {
@@ -78963,7 +79193,6 @@
"LAO"
],
"area": 331212,
- "flag": "\ud83c\uddfb\ud83c\uddf3",
"demonyms": [
{
"lang": "eng",
@@ -78976,11 +79205,6 @@
"female": "Vietnamienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/vn.svg",
- "png": "https://flagcdn.com/w320/vn.png",
- "alt": "The flag of Vietnam features a large five-pointed yellow star on a red field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/vn.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/vn.png"
@@ -79023,43 +79247,43 @@
"religion": [
{
"name": "no religion",
- "percentage": 86.32,
- "population": 88305360
+ "population": 88305360,
+ "percentage": 86.32
},
{
"name": "catholicism",
- "percentage": 6.1,
- "population": 6240300
+ "population": 6240300,
+ "percentage": 6.1
},
{
"name": "buddhism",
- "percentage": 4.79,
- "population": 4900170
+ "population": 4900170,
+ "percentage": 4.79
},
{
"name": "hoahaoism",
- "percentage": 1.02,
- "population": 1043460
+ "population": 1043460,
+ "percentage": 1.02
},
{
"name": "protestantism",
- "percentage": 1.0,
- "population": 1023000
+ "population": 1023000,
+ "percentage": 1.0
},
{
"name": "caodaism",
- "percentage": 0.58,
- "population": 593340
+ "population": 593340,
+ "percentage": 0.58
},
{
"name": "islam",
- "percentage": 0.07,
- "population": 71610
+ "population": 71610,
+ "percentage": 0.07
},
{
"name": "other",
- "percentage": 0.12,
- "population": 122760
+ "population": 122760,
+ "percentage": 0.12
}
],
"ethnicity": [
@@ -79093,7 +79317,14 @@
},
"nationalHoliday": null,
"anthem": "Ti\u1ebfn Qu\u00e2n Ca",
- "hdi": 0.766
+ "hdi": 0.766,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/vn.svg",
+ "png": "https://flagcdn.com/w320/vn.png",
+ "alt": "The flag of Vietnam features a large five-pointed yellow star on a red field.",
+ "emoji": "\ud83c\uddfb\ud83c\uddf3"
+ }
},
{
"name": {
@@ -79320,7 +79551,6 @@
"landlocked": false,
"borders": [],
"area": 12189,
- "flag": "\ud83c\uddfb\ud83c\uddfa",
"demonyms": [
{
"lang": "eng",
@@ -79333,11 +79563,6 @@
"female": "Vanuatuane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/vu.svg",
- "png": "https://flagcdn.com/w320/vu.png",
- "alt": "The flag of Vanuatu is composed of two equal horizontal bands of red and green, with a black isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and is enclosed on its sides by the arms of a thin black-edged yellow horizontally oriented Y-shaped band which extends along the boundary of the red and green bands to the fly end of the field. A yellow boar's tusk encircling two yellow crossed namele leaves is centered in the triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/vu.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/vu.png"
@@ -79374,23 +79599,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 93.4,
- "population": 313738
+ "population": 313738,
+ "percentage": 93.4
},
{
"name": "animism",
- "percentage": 4.6,
- "population": 15452
+ "population": 15452,
+ "percentage": 4.6
},
{
"name": "bah\u00e1\u02bc\u00ed faith",
- "percentage": 1.4,
- "population": 4703
+ "population": 4703,
+ "percentage": 1.4
},
{
"name": "other",
- "percentage": 0.6,
- "population": 2015
+ "population": 2015,
+ "percentage": 0.6
}
],
"ethnicity": [
@@ -79424,7 +79649,14 @@
},
"nationalHoliday": null,
"anthem": "Yumi, Yumi",
- "hdi": 0.621
+ "hdi": 0.621,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/vu.svg",
+ "png": "https://flagcdn.com/w320/vu.png",
+ "alt": "The flag of Vanuatu is composed of two equal horizontal bands of red and green, with a black isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and is enclosed on its sides by the arms of a thin black-edged yellow horizontally oriented Y-shaped band which extends along the boundary of the red and green bands to the fly end of the field. A yellow boar's tusk encircling two yellow crossed namele leaves is centered in the triangle.",
+ "emoji": "\ud83c\uddfb\ud83c\uddfa"
+ }
},
{
"name": {
@@ -79628,7 +79860,6 @@
"landlocked": false,
"borders": [],
"area": 142,
- "flag": "\ud83c\uddfc\ud83c\uddeb",
"demonyms": [
{
"lang": "eng",
@@ -79641,11 +79872,6 @@
"female": ""
}
],
- "flags": {
- "svg": "https://flagcdn.com/wf.svg",
- "png": "https://flagcdn.com/w320/wf.png",
- "alt": "The flag of Wallis and Futuna has a red field with four white isosceles triangles in the middle. The apexes of the triangles are oriented inward and at right angles to each other. The flag of France, outlined in white on two sides, is in the canton."
- },
"coatOfArms": {
"png": "",
"svg": ""
@@ -79693,7 +79919,14 @@
"gdp": null,
"nationalHoliday": null,
"anthem": null,
- "hdi": 0.0
+ "hdi": 0.0,
+ "sovereignState": "FRA",
+ "flag": {
+ "svg": "https://flagcdn.com/wf.svg",
+ "png": "https://flagcdn.com/w320/wf.png",
+ "alt": "The flag of Wallis and Futuna has a red field with four white isosceles triangles in the middle. The apexes of the triangles are oriented inward and at right angles to each other. The flag of France, outlined in white on two sides, is in the canton.",
+ "emoji": "\ud83c\uddfc\ud83c\uddeb"
+ }
},
{
"name": {
@@ -79908,7 +80141,6 @@
"landlocked": false,
"borders": [],
"area": 2842,
- "flag": "\ud83c\uddfc\ud83c\uddf8",
"demonyms": [
{
"lang": "eng",
@@ -79921,11 +80153,6 @@
"female": "Samoane"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ws.svg",
- "png": "https://flagcdn.com/w320/ws.png",
- "alt": "The flag of Samoa has a red field. A blue rectangle, bearing a representation of the Southern Cross made up of five large and one smaller five-pointed white stars, is superimposed in the canton."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ws.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ws.png"
@@ -79962,18 +80189,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 97.9,
- "population": 195810
+ "population": 195810,
+ "percentage": 97.9
},
{
"name": "no religion",
- "percentage": 1.7,
- "population": 3400
+ "population": 3400,
+ "percentage": 1.7
},
{
"name": "others",
- "percentage": 0.4,
- "population": 800
+ "population": 800,
+ "percentage": 0.4
}
],
"ethnicity": [
@@ -80015,7 +80242,14 @@
},
"nationalHoliday": null,
"anthem": "The Banner of Freedom",
- "hdi": 0.708
+ "hdi": 0.708,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ws.svg",
+ "png": "https://flagcdn.com/w320/ws.png",
+ "alt": "The flag of Samoa has a red field. A blue rectangle, bearing a representation of the Southern Cross made up of five large and one smaller five-pointed white stars, is superimposed in the canton.",
+ "emoji": "\ud83c\uddfc\ud83c\uddf8"
+ }
},
{
"name": {
@@ -80222,7 +80456,6 @@
"SAU"
],
"area": 527968,
- "flag": "\ud83c\uddfe\ud83c\uddea",
"demonyms": [
{
"lang": "eng",
@@ -80235,11 +80468,6 @@
"female": "Y\u00e9m\u00e9nite"
}
],
- "flags": {
- "svg": "https://flagcdn.com/ye.svg",
- "png": "https://flagcdn.com/w320/ye.png",
- "alt": "The flag of Yemen is composed of three equal horizontal bands of red, white and black."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/ye.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/ye.png"
@@ -80286,13 +80514,13 @@
"religion": [
{
"name": "islam",
- "percentage": 99.1,
- "population": 32390342
+ "population": 32390342,
+ "percentage": 99.1
},
{
"name": "other",
- "percentage": 0.9,
- "population": 294161
+ "population": 294161,
+ "percentage": 0.9
}
],
"ethnicity": [
@@ -80334,7 +80562,14 @@
"gdp": null,
"nationalHoliday": "International Workers' Day",
"anthem": "National anthem of Yemen",
- "hdi": 0.47
+ "hdi": 0.47,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/ye.svg",
+ "png": "https://flagcdn.com/w320/ye.png",
+ "alt": "The flag of Yemen is composed of three equal horizontal bands of red, white and black.",
+ "emoji": "\ud83c\uddfe\ud83c\uddea"
+ }
},
{
"name": {
@@ -80658,7 +80893,6 @@
"ZWE"
],
"area": 1221037,
- "flag": "\ud83c\uddff\ud83c\udde6",
"demonyms": [
{
"lang": "eng",
@@ -80671,11 +80905,6 @@
"female": "Sud-africaine"
}
],
- "flags": {
- "svg": "https://flagcdn.com/za.svg",
- "png": "https://flagcdn.com/w320/za.png",
- "alt": "The flag of South Africa is composed of two equal horizontal bands of red and blue, with a yellow-edged black isosceles triangle superimposed on the hoist side of the field. This triangle has its base centered on the hoist end, spans about two-fifth the width and two-third the height of the field, and is enclosed on its sides by the arms of a white-edged green horizontally oriented Y-shaped band which extends along the boundary of the red and blue bands to the fly end of the field."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/za.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/za.png"
@@ -80724,33 +80953,33 @@
"religion": [
{
"name": "christianity",
- "percentage": 85.3,
- "population": 53752566
+ "population": 53752566,
+ "percentage": 85.3
},
{
"name": "traditional faiths",
- "percentage": 7.8,
- "population": 4915241
+ "population": 4915241,
+ "percentage": 7.8
},
{
"name": "no religion",
- "percentage": 3.1,
- "population": 1953493
+ "population": 1953493,
+ "percentage": 3.1
},
{
"name": "islam",
- "percentage": 1.6,
- "population": 1008254
+ "population": 1008254,
+ "percentage": 1.6
},
{
"name": "hinduism",
- "percentage": 1.1,
- "population": 693175
+ "population": 693175,
+ "percentage": 1.1
},
{
"name": "other",
- "percentage": 1.1,
- "population": 693175
+ "population": 693175,
+ "percentage": 1.1
}
],
"ethnicity": [
@@ -80796,7 +81025,14 @@
},
"nationalHoliday": "Day of Goodwill",
"anthem": "national anthem of South Africa",
- "hdi": 0.741
+ "hdi": 0.741,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/za.svg",
+ "png": "https://flagcdn.com/w320/za.png",
+ "alt": "The flag of South Africa is composed of two equal horizontal bands of red and blue, with a yellow-edged black isosceles triangle superimposed on the hoist side of the field. This triangle has its base centered on the hoist end, spans about two-fifth the width and two-third the height of the field, and is enclosed on its sides by the arms of a white-edged green horizontally oriented Y-shaped band which extends along the boundary of the red and blue bands to the fly end of the field.",
+ "emoji": "\ud83c\uddff\ud83c\udde6"
+ }
},
{
"name": {
@@ -81008,7 +81244,6 @@
"ZWE"
],
"area": 752612,
- "flag": "\ud83c\uddff\ud83c\uddf2",
"demonyms": [
{
"lang": "eng",
@@ -81021,11 +81256,6 @@
"female": "Zambienne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/zm.svg",
- "png": "https://flagcdn.com/w320/zm.png",
- "alt": "The flag of Zambia has a green field, on the fly side of which is a soaring orange African fish eagle above a rectangular area divided into three equal vertical bands of red, black and orange."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/zm.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/zm.png"
@@ -81074,18 +81304,18 @@
"religion": [
{
"name": "christianity",
- "percentage": 95.5,
- "population": 19306308
+ "population": 19306308,
+ "percentage": 95.5
},
{
"name": "islam",
- "percentage": 2.7,
- "population": 545833
+ "population": 545833,
+ "percentage": 2.7
},
{
"name": "other",
- "percentage": 1.8,
- "population": 363889
+ "population": 363889,
+ "percentage": 1.8
}
],
"ethnicity": [
@@ -81239,7 +81469,14 @@
},
"nationalHoliday": null,
"anthem": "Stand and Sing of Zambia, Proud and Free",
- "hdi": 0.595
+ "hdi": 0.595,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/zm.svg",
+ "png": "https://flagcdn.com/w320/zm.png",
+ "alt": "The flag of Zambia has a green field, on the fly side of which is a soaring orange African fish eagle above a rectangular area divided into three equal vertical bands of red, black and orange.",
+ "emoji": "\ud83c\uddff\ud83c\uddf2"
+ }
},
{
"name": {
@@ -81601,7 +81838,6 @@
"ZMB"
],
"area": 390757,
- "flag": "\ud83c\uddff\ud83c\uddfc",
"demonyms": [
{
"lang": "eng",
@@ -81614,11 +81850,6 @@
"female": "Zimbabw\u00e9enne"
}
],
- "flags": {
- "svg": "https://flagcdn.com/zw.svg",
- "png": "https://flagcdn.com/w320/zw.png",
- "alt": "The flag of Zimbabwe is composed of seven equal horizontal bands of green, yellow, red, black, red, yellow and green, with a white isosceles triangle superimposed on the hoist side of the field. This triangle is edged in black, spans about one-fourth the width of the field and has its base on the hoist end. A yellow Zimbabwe Bird superimposed on a five-pointed red star is centered in the triangle."
- },
"coatOfArms": {
"svg": "https://mainfacts.com/media/images/coats_of_arms/zw.svg",
"png": "https://mainfacts.com/media/images/coats_of_arms/zw.png"
@@ -81667,23 +81898,23 @@
"religion": [
{
"name": "christianity",
- "percentage": 84.1,
- "population": 14186332
+ "population": 14186332,
+ "percentage": 84.1
},
{
"name": "no religion",
- "percentage": 10.2,
- "population": 1720578
+ "population": 1720578,
+ "percentage": 10.2
},
{
"name": "traditional faiths",
- "percentage": 4.5,
- "population": 759078
+ "population": 759078,
+ "percentage": 4.5
},
{
"name": "others",
- "percentage": 1.2,
- "population": 202421
+ "population": 202421,
+ "percentage": 1.2
}
],
"ethnicity": [
@@ -81725,6 +81956,13 @@
},
"nationalHoliday": null,
"anthem": "National Anthem of Zimbabwe",
- "hdi": 0.598
+ "hdi": 0.598,
+ "sovereignState": "",
+ "flag": {
+ "svg": "https://flagcdn.com/zw.svg",
+ "png": "https://flagcdn.com/w320/zw.png",
+ "alt": "The flag of Zimbabwe is composed of seven equal horizontal bands of green, yellow, red, black, red, yellow and green, with a white isosceles triangle superimposed on the hoist side of the field. This triangle is edged in black, spans about one-fourth the width of the field and has its base on the hoist end. A yellow Zimbabwe Bird superimposed on a five-pointed red star is centered in the triangle.",
+ "emoji": "\ud83c\uddff\ud83c\uddfc"
+ }
}
]
\ No newline at end of file
diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html
index e14ef3f..31c1473 100644
--- a/src/main/resources/static/index.html
+++ b/src/main/resources/static/index.html
@@ -547,7 +547,7 @@
- Requests are growing fast — about 4 million hits
each day and 120 GB of bandwidth
+ Requests are growing fast — morethan 6 million hits
each day and 120 GB of bandwidth
per day . Please consider making a
donation to help cover server costs.