Globalization in React Daterangepicker component

23 Jan 202424 minutes to read

Globalization is the combination of internalization and localization. You can adapt the component to various languages by parsing and formatting the date or number Internationalization and also add culture specific customization and translation to the text localization.

By default, DateRangePicker date format and meridian names are specific to the American English culture. It utilizes the Essential JavaScript 2 Internationalization package to parse and format the date object based on the culture by using the official UNICODE CLDR JSON data. It provides the loadCldr method to load the culture specific CLDR JSON data. To go with the different culture other than English, follow the below steps.

  • Install the CLDR-Data package by using the below command (it installs all the CLDR JSON data). To known about CLDR-Data refer the CLDR-Data link.

        npm install cldr-data --save
    

Once the package installed, you can find the culture specific JSON data under the location \node_modules\cldr-data.

  • Now, import the installed CLDR JSON data into the app.ts file. To import JSON data we need to install the JSON plugin loader. Here we have used the systemJS JSON plugin loader.

         npm install systemjs-plugin-json --save-dev
    
  • Once the package installed, you can find the culture specific JSON data under the location \node_modules\cldr-data.

  • Now import the installed CLDR JSON data into the app.ts file.

  • Now use the loadCldr
    method to load the culture specific CLDR JSON data from the installed location to app.ts file.

  • DateRangePicker displayed Sunday as the first day of week based on default culture (“en-US”). If you want to display the DateRangePicker with loaded culture’s first day of week, you need to import weekdata.json file from the cldr-data/suppemental as given in the code example.

import { loadCldr } from "@syncfusion/ej2-base";

import * as gregorian from 'cldr-data/main/de/ca-gregorian.json';
import * as numbers from 'cldr-data/main/de/numbers.json';
import * as timeZoneNames from 'cldr-data/main/de/timeZoneNames.json';
import * as numberingSystems from 'cldr-data/supplemental/numberingSystems.json';
import * as weekData from 'cldr-data/supplemental/weekData.json';// To load the culture based first day of week

loadCldr(numberingSystems, gregorian, numbers, timeZoneNames, weekData);

if you are facing the error /node_modules/cldr-data/main/de/*.json (1,1): unused expression, expected an assignment or function call when you are adding the json files to render the culture sample, then add the below configuration in your tslint.json file

"linterOptions": {
    "exclude": [
      "*.json",
      "**/*.json"
    ]
  }

The Localization library allows you to localize default text content of the DateRangePicker. The DateRangePicker component has static text for today feature that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the locale value and translation object.

Locale keywords Text
placeholder Hint to describe expected value in input element.
startLabel Label to represent the start date.
endLabel Label to represent the end date.
applyText Text present in the apply button.
cancelText Text present in the cancel button.
selectedDays Text to represent selected days.
days Text represents days.
customRange Text present in the custom range button in presets container.
  • Before changing to a culture other than English, ensure that locale text for the concerned culture is loaded through load method of L10n class.

         //Load the L10n from ej2-base
         import { L10n } from "@syncfusion/ej2-base";
    
         //load the locale object to set the localized placeholder value
       L10n.load({
          'de': {
             'daterangepicker': {
              placeholder: 'Wählen Sie einen Bereich aus',
              startLabel: 'Wählen Sie Startdatum',
              endLabel: 'Wählen Sie Enddatum',
              applyText: 'Sich bewerben',
              cancelText: 'Stornieren',
              selectedDays: 'Ausgewählte Tage',
              days: 'Tage',
              customRange: 'benutzerdefinierten Bereich'
             }
          }
      });
  • Set the culture by using the locale property.

The following example demonstrates the DateRangePicker in German culture.

[Class-component]

{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 12879 $",
          "_cldrVersion": "30.0.3"
        },
        "language": "de"
      },
      "dates": {
        "calendars": {
          "gregorian": {
            "months": {
              "format": {
                "abbreviated": {
                  "1": "Jan.",
                  "2": "Feb.",
                  "3": "März",
                  "4": "Apr.",
                  "5": "Mai",
                  "6": "Juni",
                  "7": "Juli",
                  "8": "Aug.",
                  "9": "Sep.",
                  "10": "Okt.",
                  "11": "Nov.",
                  "12": "Dez."
                },
                "narrow": {
                  "1": "J",
                  "2": "F",
                  "3": "M",
                  "4": "A",
                  "5": "M",
                  "6": "J",
                  "7": "J",
                  "8": "A",
                  "9": "S",
                  "10": "O",
                  "11": "N",
                  "12": "D"
                },
                "wide": {
                  "1": "Januar",
                  "2": "Februar",
                  "3": "März",
                  "4": "April",
                  "5": "Mai",
                  "6": "Juni",
                  "7": "Juli",
                  "8": "August",
                  "9": "September",
                  "10": "Oktober",
                  "11": "November",
                  "12": "Dezember"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "Jan",
                  "2": "Feb",
                  "3": "Mär",
                  "4": "Apr",
                  "5": "Mai",
                  "6": "Jun",
                  "7": "Jul",
                  "8": "Aug",
                  "9": "Sep",
                  "10": "Okt",
                  "11": "Nov",
                  "12": "Dez"
                },
                "narrow": {
                  "1": "J",
                  "2": "F",
                  "3": "M",
                  "4": "A",
                  "5": "M",
                  "6": "J",
                  "7": "J",
                  "8": "A",
                  "9": "S",
                  "10": "O",
                  "11": "N",
                  "12": "D"
                },
                "wide": {
                  "1": "Januar",
                  "2": "Februar",
                  "3": "März",
                  "4": "April",
                  "5": "Mai",
                  "6": "Juni",
                  "7": "Juli",
                  "8": "August",
                  "9": "September",
                  "10": "Oktober",
                  "11": "November",
                  "12": "Dezember"
                }
              }
            },
            "days": {
              "format": {
                "abbreviated": {
                  "sun": "So.",
                  "mon": "Mo.",
                  "tue": "Di.",
                  "wed": "Mi.",
                  "thu": "Do.",
                  "fri": "Fr.",
                  "sat": "Sa."
                },
                "narrow": {
                  "sun": "S",
                  "mon": "M",
                  "tue": "D",
                  "wed": "M",
                  "thu": "D",
                  "fri": "F",
                  "sat": "S"
                },
                "short": {
                  "sun": "So.",
                  "mon": "Mo.",
                  "tue": "Di.",
                  "wed": "Mi.",
                  "thu": "Do.",
                  "fri": "Fr.",
                  "sat": "Sa."
                },
                "wide": {
                  "sun": "Sonntag",
                  "mon": "Montag",
                  "tue": "Dienstag",
                  "wed": "Mittwoch",
                  "thu": "Donnerstag",
                  "fri": "Freitag",
                  "sat": "Samstag"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "sun": "So",
                  "mon": "Mo",
                  "tue": "Di",
                  "wed": "Mi",
                  "thu": "Do",
                  "fri": "Fr",
                  "sat": "Sa"
                },
                "narrow": {
                  "sun": "S",
                  "mon": "M",
                  "tue": "D",
                  "wed": "M",
                  "thu": "D",
                  "fri": "F",
                  "sat": "S"
                },
                "short": {
                  "sun": "So.",
                  "mon": "Mo.",
                  "tue": "Di.",
                  "wed": "Mi.",
                  "thu": "Do.",
                  "fri": "Fr.",
                  "sat": "Sa."
                },
                "wide": {
                  "sun": "Sonntag",
                  "mon": "Montag",
                  "tue": "Dienstag",
                  "wed": "Mittwoch",
                  "thu": "Donnerstag",
                  "fri": "Freitag",
                  "sat": "Samstag"
                }
              }
            },
            "quarters": {
              "format": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "1. Quartal",
                  "2": "2. Quartal",
                  "3": "3. Quartal",
                  "4": "4. Quartal"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "1. Quartal",
                  "2": "2. Quartal",
                  "3": "3. Quartal",
                  "4": "4. Quartal"
                }
              }
            },
            "dayPeriods": {
              "format": {
                "abbreviated": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "morgens",
                  "morning2": "vormittags",
                  "afternoon1": "mittags",
                  "afternoon2": "nachmittags",
                  "evening1": "abends",
                  "night1": "nachts"
                },
                "narrow": {
                  "midnight": "Mitternacht",
                  "am": "vm.",
                  "pm": "nm.",
                  "morning1": "morgens",
                  "morning2": "vormittags",
                  "afternoon1": "mittags",
                  "afternoon2": "nachmittags",
                  "evening1": "abends",
                  "night1": "nachts"
                },
                "wide": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "morgens",
                  "morning2": "vormittags",
                  "afternoon1": "mittags",
                  "afternoon2": "nachmittags",
                  "evening1": "abends",
                  "night1": "nachts"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "Morgen",
                  "morning2": "Vormittag",
                  "afternoon1": "Mittag",
                  "afternoon2": "Nachmittag",
                  "evening1": "Abend",
                  "night1": "Nacht"
                },
                "narrow": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "Morgen",
                  "morning2": "Vormittag",
                  "afternoon1": "Mittag",
                  "afternoon2": "Nachmittag",
                  "evening1": "Abend",
                  "night1": "Nacht"
                },
                "wide": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "Morgen",
                  "morning2": "Vormittag",
                  "afternoon1": "Mittag",
                  "afternoon2": "Nachmittag",
                  "evening1": "Abend",
                  "night1": "Nacht"
                }
              }
            },
            "eras": {
              "eraNames": {
                "0": "v. Chr.",
                "0-alt-variant": "vor unserer Zeitrechnung",
                "1": "n. Chr.",
                "1-alt-variant": "unserer Zeitrechnung"
              },
              "eraAbbr": {
                "0": "v. Chr.",
                "0-alt-variant": "v. u. Z.",
                "1": "n. Chr.",
                "1-alt-variant": "u. Z."
              },
              "eraNarrow": {
                "0": "v. Chr.",
                "0-alt-variant": "v. u. Z.",
                "1": "n. Chr.",
                "1-alt-variant": "u. Z."
              }
            },
            "dateFormats": {
              "full": "EEEE, d. MMMM y",
              "long": "d. MMMM y",
              "medium": "dd.MM.y",
              "short": "dd.MM.yy"
            },
            "timeFormats": {
              "full": "HH:mm:ss zzzz",
              "long": "HH:mm:ss z",
              "medium": "HH:mm:ss",
              "short": "HH:mm"
            },
            "dateTimeFormats": {
              "full": "{1} 'um' {0}",
              "long": "{1} 'um' {0}",
              "medium": "{1}, {0}",
              "short": "{1}, {0}",
              "availableFormats": {
                "d": "d",
                "E": "ccc",
                "Ed": "E, d.",
                "Ehm": "E h:mm a",
                "EHm": "E, HH:mm",
                "Ehms": "E, h:mm:ss a",
                "EHms": "E, HH:mm:ss",
                "Gy": "y G",
                "GyMMM": "MMM y G",
                "GyMMMd": "d. MMM y G",
                "GyMMMEd": "E, d. MMM y G",
                "h": "h 'Uhr' a",
                "H": "HH 'Uhr'",
                "hm": "h:mm a",
                "Hm": "HH:mm",
                "hms": "h:mm:ss a",
                "Hms": "HH:mm:ss",
                "hmsv": "h:mm:ss a v",
                "Hmsv": "HH:mm:ss v",
                "hmv": "h:mm a v",
                "Hmv": "HH:mm v",
                "M": "L",
                "Md": "d.M.",
                "MEd": "E, d.M.",
                "MMd": "d.MM.",
                "MMdd": "dd.MM.",
                "MMM": "LLL",
                "MMMd": "d. MMM",
                "MMMEd": "E, d. MMM",
                "MMMMd": "d. MMMM",
                "MMMMEd": "E, d. MMMM",
                "MMMMW": "'Woche' W 'im' MMM",
                "MMMMW": "'Woche' W 'im' MMM",
                "ms": "mm:ss",
                "y": "y",
                "yM": "M.y",
                "yMd": "d.M.y",
                "yMEd": "E, d.M.y",
                "yMM": "MM.y",
                "yMMdd": "dd.MM.y",
                "yMMM": "MMM y",
                "yMMMd": "d. MMM y",
                "yMMMEd": "E, d. MMM y",
                "yMMMM": "MMMM y",
                "yQQQ": "QQQ y",
                "yQQQQ": "QQQQ y",
                "yw": "'Woche' w 'des' 'Jahres' y",
                "yw": "'Woche' w 'des' 'Jahres' y"
              },
              "appendItems": {
                "Day": "{0} ({2}: {1})",
                "Day-Of-Week": "{0} {1}",
                "Era": "{1} {0}",
                "Hour": "{0} ({2}: {1})",
                "Minute": "{0} ({2}: {1})",
                "Month": "{0} ({2}: {1})",
                "Quarter": "{0} ({2}: {1})",
                "Second": "{0} ({2}: {1})",
                "Timezone": "{0} {1}",
                "Week": "{0} ({2}: {1})",
                "Year": "{1} {0}"
              },
              "intervalFormats": {
                "intervalFormatFallback": "{0} – {1}",
                "d": {
                  "d": "d.–d."
                },
                "h": {
                  "a": "h 'Uhr' a – h 'Uhr' a",
                  "h": "h – h 'Uhr' a"
                },
                "H": {
                  "H": "HH–HH 'Uhr'"
                },
                "hm": {
                  "a": "h:mm a – h:mm a",
                  "h": "h:mm–h:mm a",
                  "m": "h:mm–h:mm a"
                },
                "Hm": {
                  "H": "HH:mm–HH:mm 'Uhr'",
                  "m": "HH:mm–HH:mm 'Uhr'"
                },
                "hmv": {
                  "a": "h:mm a – h:mm a v",
                  "h": "h:mm–h:mm a v",
                  "m": "h:mm–h:mm a v"
                },
                "Hmv": {
                  "H": "HH:mm–HH:mm 'Uhr' v",
                  "m": "HH:mm–HH:mm 'Uhr' v"
                },
                "hv": {
                  "a": "h a – h a v",
                  "h": "h–h a v"
                },
                "Hv": {
                  "H": "HH–HH 'Uhr' v"
                },
                "M": {
                  "M": "M.–M."
                },
                "Md": {
                  "d": "dd.MM. – dd.MM.",
                  "M": "dd.MM. – dd.MM."
                },
                "MEd": {
                  "d": "E, dd.MM. – E, dd.MM.",
                  "M": "E, dd.MM. – E, dd.MM."
                },
                "MMM": {
                  "M": "MMM–MMM"
                },
                "MMMd": {
                  "d": "d.–d. MMM",
                  "M": "d. MMM – d. MMM"
                },
                "MMMEd": {
                  "d": "E, d. – E, d. MMM",
                  "M": "E, d. MMM – E, d. MMM"
                },
                "MMMM": {
                  "M": "LLLL–LLLL"
                },
                "y": {
                  "y": "y–y"
                },
                "yM": {
                  "M": "MM.y – MM.y",
                  "y": "MM.y – MM.y"
                },
                "yMd": {
                  "d": "dd.MM.y – dd.MM.y",
                  "M": "dd.MM.y – dd.MM.y",
                  "y": "dd.MM.y – dd.MM.y"
                },
                "yMEd": {
                  "d": "E, dd.MM.y – E, dd.MM.y",
                  "M": "E, dd.MM.y – E, dd.MM.y",
                  "y": "E, dd.MM.y – E, dd.MM.y"
                },
                "yMMM": {
                  "M": "MMM–MMM y",
                  "y": "MMM y – MMM y"
                },
                "yMMMd": {
                  "d": "d.–d. MMM y",
                  "M": "d. MMM – d. MMM y",
                  "y": "d. MMM y – d. MMM y"
                },
                "yMMMEd": {
                  "d": "E, d. – E, d. MMM y",
                  "M": "E, d. MMM – E, d. MMM y",
                  "y": "E, d. MMM y – E, d. MMM y"
                },
                "yMMMM": {
                  "M": "MMMM–MMMM y",
                  "y": "MMMM y – MMMM y"
                }
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 12879 $",
                        "_cldrVersion";
                    "30.0.3";
                }
                "language";
                "de";
            }
            "dates";
            {
                "calendars";
                {
                    "gregorian";
                    {
                        "months";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Jan.",
                                        "2";
                                    "Feb.",
                                        "3";
                                    "März",
                                        "4";
                                    "Apr.",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Juni",
                                        "7";
                                    "Juli",
                                        "8";
                                    "Aug.",
                                        "9";
                                    "Sep.",
                                        "10";
                                    "Okt.",
                                        "11";
                                    "Nov.",
                                        "12";
                                    "Dez.";
                                }
                                "narrow";
                                {
                                    "1";
                                    "J",
                                        "2";
                                    "F",
                                        "3";
                                    "M",
                                        "4";
                                    "A",
                                        "5";
                                    "M",
                                        "6";
                                    "J",
                                        "7";
                                    "J",
                                        "8";
                                    "A",
                                        "9";
                                    "S",
                                        "10";
                                    "O",
                                        "11";
                                    "N",
                                        "12";
                                    "D";
                                }
                                "wide";
                                {
                                    "1";
                                    "Januar",
                                        "2";
                                    "Februar",
                                        "3";
                                    "März",
                                        "4";
                                    "April",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Juni",
                                        "7";
                                    "Juli",
                                        "8";
                                    "August",
                                        "9";
                                    "September",
                                        "10";
                                    "Oktober",
                                        "11";
                                    "November",
                                        "12";
                                    "Dezember";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Jan",
                                        "2";
                                    "Feb",
                                        "3";
                                    "Mär",
                                        "4";
                                    "Apr",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Jun",
                                        "7";
                                    "Jul",
                                        "8";
                                    "Aug",
                                        "9";
                                    "Sep",
                                        "10";
                                    "Okt",
                                        "11";
                                    "Nov",
                                        "12";
                                    "Dez";
                                }
                                "narrow";
                                {
                                    "1";
                                    "J",
                                        "2";
                                    "F",
                                        "3";
                                    "M",
                                        "4";
                                    "A",
                                        "5";
                                    "M",
                                        "6";
                                    "J",
                                        "7";
                                    "J",
                                        "8";
                                    "A",
                                        "9";
                                    "S",
                                        "10";
                                    "O",
                                        "11";
                                    "N",
                                        "12";
                                    "D";
                                }
                                "wide";
                                {
                                    "1";
                                    "Januar",
                                        "2";
                                    "Februar",
                                        "3";
                                    "März",
                                        "4";
                                    "April",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Juni",
                                        "7";
                                    "Juli",
                                        "8";
                                    "August",
                                        "9";
                                    "September",
                                        "10";
                                    "Oktober",
                                        "11";
                                    "November",
                                        "12";
                                    "Dezember";
                                }
                            }
                        }
                        "days";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "So.",
                                        "mon";
                                    "Mo.",
                                        "tue";
                                    "Di.",
                                        "wed";
                                    "Mi.",
                                        "thu";
                                    "Do.",
                                        "fri";
                                    "Fr.",
                                        "sat";
                                    "Sa.";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "S",
                                        "mon";
                                    "M",
                                        "tue";
                                    "D",
                                        "wed";
                                    "M",
                                        "thu";
                                    "D",
                                        "fri";
                                    "F",
                                        "sat";
                                    "S";
                                }
                                "short";
                                {
                                    "sun";
                                    "So.",
                                        "mon";
                                    "Mo.",
                                        "tue";
                                    "Di.",
                                        "wed";
                                    "Mi.",
                                        "thu";
                                    "Do.",
                                        "fri";
                                    "Fr.",
                                        "sat";
                                    "Sa.";
                                }
                                "wide";
                                {
                                    "sun";
                                    "Sonntag",
                                        "mon";
                                    "Montag",
                                        "tue";
                                    "Dienstag",
                                        "wed";
                                    "Mittwoch",
                                        "thu";
                                    "Donnerstag",
                                        "fri";
                                    "Freitag",
                                        "sat";
                                    "Samstag";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "So",
                                        "mon";
                                    "Mo",
                                        "tue";
                                    "Di",
                                        "wed";
                                    "Mi",
                                        "thu";
                                    "Do",
                                        "fri";
                                    "Fr",
                                        "sat";
                                    "Sa";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "S",
                                        "mon";
                                    "M",
                                        "tue";
                                    "D",
                                        "wed";
                                    "M",
                                        "thu";
                                    "D",
                                        "fri";
                                    "F",
                                        "sat";
                                    "S";
                                }
                                "short";
                                {
                                    "sun";
                                    "So.",
                                        "mon";
                                    "Mo.",
                                        "tue";
                                    "Di.",
                                        "wed";
                                    "Mi.",
                                        "thu";
                                    "Do.",
                                        "fri";
                                    "Fr.",
                                        "sat";
                                    "Sa.";
                                }
                                "wide";
                                {
                                    "sun";
                                    "Sonntag",
                                        "mon";
                                    "Montag",
                                        "tue";
                                    "Dienstag",
                                        "wed";
                                    "Mittwoch",
                                        "thu";
                                    "Donnerstag",
                                        "fri";
                                    "Freitag",
                                        "sat";
                                    "Samstag";
                                }
                            }
                        }
                        "quarters";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "1. Quartal",
                                        "2";
                                    "2. Quartal",
                                        "3";
                                    "3. Quartal",
                                        "4";
                                    "4. Quartal";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "1. Quartal",
                                        "2";
                                    "2. Quartal",
                                        "3";
                                    "3. Quartal",
                                        "4";
                                    "4. Quartal";
                                }
                            }
                        }
                        "dayPeriods";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "morgens",
                                        "morning2";
                                    "vormittags",
                                        "afternoon1";
                                    "mittags",
                                        "afternoon2";
                                    "nachmittags",
                                        "evening1";
                                    "abends",
                                        "night1";
                                    "nachts";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vm.",
                                        "pm";
                                    "nm.",
                                        "morning1";
                                    "morgens",
                                        "morning2";
                                    "vormittags",
                                        "afternoon1";
                                    "mittags",
                                        "afternoon2";
                                    "nachmittags",
                                        "evening1";
                                    "abends",
                                        "night1";
                                    "nachts";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "morgens",
                                        "morning2";
                                    "vormittags",
                                        "afternoon1";
                                    "mittags",
                                        "afternoon2";
                                    "nachmittags",
                                        "evening1";
                                    "abends",
                                        "night1";
                                    "nachts";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "Morgen",
                                        "morning2";
                                    "Vormittag",
                                        "afternoon1";
                                    "Mittag",
                                        "afternoon2";
                                    "Nachmittag",
                                        "evening1";
                                    "Abend",
                                        "night1";
                                    "Nacht";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "Morgen",
                                        "morning2";
                                    "Vormittag",
                                        "afternoon1";
                                    "Mittag",
                                        "afternoon2";
                                    "Nachmittag",
                                        "evening1";
                                    "Abend",
                                        "night1";
                                    "Nacht";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "Morgen",
                                        "morning2";
                                    "Vormittag",
                                        "afternoon1";
                                    "Mittag",
                                        "afternoon2";
                                    "Nachmittag",
                                        "evening1";
                                    "Abend",
                                        "night1";
                                    "Nacht";
                                }
                            }
                        }
                        "eras";
                        {
                            "eraNames";
                            {
                                "0";
                                "v. Chr.",
                                    "0-alt-variant";
                                "vor unserer Zeitrechnung",
                                    "1";
                                "n. Chr.",
                                    "1-alt-variant";
                                "unserer Zeitrechnung";
                            }
                            "eraAbbr";
                            {
                                "0";
                                "v. Chr.",
                                    "0-alt-variant";
                                "v. u. Z.",
                                    "1";
                                "n. Chr.",
                                    "1-alt-variant";
                                "u. Z.";
                            }
                            "eraNarrow";
                            {
                                "0";
                                "v. Chr.",
                                    "0-alt-variant";
                                "v. u. Z.",
                                    "1";
                                "n. Chr.",
                                    "1-alt-variant";
                                "u. Z.";
                            }
                        }
                        "dateFormats";
                        {
                            "full";
                            "EEEE, d. MMMM y",
                                "long";
                            "d. MMMM y",
                                "medium";
                            "dd.MM.y",
                                "short";
                            "dd.MM.yy";
                        }
                        "timeFormats";
                        {
                            "full";
                            "HH:mm:ss zzzz",
                                "long";
                            "HH:mm:ss z",
                                "medium";
                            "HH:mm:ss",
                                "short";
                            "HH:mm";
                        }
                        "dateTimeFormats";
                        {
                            "full";
                            "{1} 'um' {0}",
                                "long";
                            "{1} 'um' {0}",
                                "medium";
                            "{1}, {0}",
                                "short";
                            "{1}, {0}",
                                "availableFormats";
                            {
                                "d";
                                "d",
                                    "E";
                                "ccc",
                                    "Ed";
                                "E, d.",
                                    "Ehm";
                                "E h:mm a",
                                    "EHm";
                                "E, HH:mm",
                                    "Ehms";
                                "E, h:mm:ss a",
                                    "EHms";
                                "E, HH:mm:ss",
                                    "Gy";
                                "y G",
                                    "GyMMM";
                                "MMM y G",
                                    "GyMMMd";
                                "d. MMM y G",
                                    "GyMMMEd";
                                "E, d. MMM y G",
                                    "h";
                                "h 'Uhr' a",
                                    "H";
                                "HH 'Uhr'",
                                    "hm";
                                "h:mm a",
                                    "Hm";
                                "HH:mm",
                                    "hms";
                                "h:mm:ss a",
                                    "Hms";
                                "HH:mm:ss",
                                    "hmsv";
                                "h:mm:ss a v",
                                    "Hmsv";
                                "HH:mm:ss v",
                                    "hmv";
                                "h:mm a v",
                                    "Hmv";
                                "HH:mm v",
                                    "M";
                                "L",
                                    "Md";
                                "d.M.",
                                    "MEd";
                                "E, d.M.",
                                    "MMd";
                                "d.MM.",
                                    "MMdd";
                                "dd.MM.",
                                    "MMM";
                                "LLL",
                                    "MMMd";
                                "d. MMM",
                                    "MMMEd";
                                "E, d. MMM",
                                    "MMMMd";
                                "d. MMMM",
                                    "MMMMEd";
                                "E, d. MMMM",
                                    "MMMMW";
                                "'Woche' W 'im' MMM",
                                    "MMMMW";
                                "'Woche' W 'im' MMM",
                                    "ms";
                                "mm:ss",
                                    "y";
                                "y",
                                    "yM";
                                "M.y",
                                    "yMd";
                                "d.M.y",
                                    "yMEd";
                                "E, d.M.y",
                                    "yMM";
                                "MM.y",
                                    "yMMdd";
                                "dd.MM.y",
                                    "yMMM";
                                "MMM y",
                                    "yMMMd";
                                "d. MMM y",
                                    "yMMMEd";
                                "E, d. MMM y",
                                    "yMMMM";
                                "MMMM y",
                                    "yQQQ";
                                "QQQ y",
                                    "yQQQQ";
                                "QQQQ y",
                                    "yw";
                                "'Woche' w 'des' 'Jahres' y",
                                    "yw";
                                "'Woche' w 'des' 'Jahres' y";
                            }
                            "appendItems";
                            {
                                "Day";
                                "{0} ({2}: {1})",
                                    "Day-Of-Week";
                                "{0} {1}",
                                    "Era";
                                "{1} {0}",
                                    "Hour";
                                "{0} ({2}: {1})",
                                    "Minute";
                                "{0} ({2}: {1})",
                                    "Month";
                                "{0} ({2}: {1})",
                                    "Quarter";
                                "{0} ({2}: {1})",
                                    "Second";
                                "{0} ({2}: {1})",
                                    "Timezone";
                                "{0} {1}",
                                    "Week";
                                "{0} ({2}: {1})",
                                    "Year";
                                "{1} {0}";
                            }
                            "intervalFormats";
                            {
                                "intervalFormatFallback";
                                "{0} – {1}",
                                    "d";
                                {
                                    "d";
                                    "d.–d.";
                                }
                                "h";
                                {
                                    "a";
                                    "h 'Uhr' a – h 'Uhr' a",
                                        "h";
                                    "h – h 'Uhr' a";
                                }
                                "H";
                                {
                                    "H";
                                    "HH–HH 'Uhr'";
                                }
                                "hm";
                                {
                                    "a";
                                    "h:mm a – h:mm a",
                                        "h";
                                    "h:mm–h:mm a",
                                        "m";
                                    "h:mm–h:mm a";
                                }
                                "Hm";
                                {
                                    "H";
                                    "HH:mm–HH:mm 'Uhr'",
                                        "m";
                                    "HH:mm–HH:mm 'Uhr'";
                                }
                                "hmv";
                                {
                                    "a";
                                    "h:mm a – h:mm a v",
                                        "h";
                                    "h:mm–h:mm a v",
                                        "m";
                                    "h:mm–h:mm a v";
                                }
                                "Hmv";
                                {
                                    "H";
                                    "HH:mm–HH:mm 'Uhr' v",
                                        "m";
                                    "HH:mm–HH:mm 'Uhr' v";
                                }
                                "hv";
                                {
                                    "a";
                                    "h a – h a v",
                                        "h";
                                    "h–h a v";
                                }
                                "Hv";
                                {
                                    "H";
                                    "HH–HH 'Uhr' v";
                                }
                                "M";
                                {
                                    "M";
                                    "M.–M.";
                                }
                                "Md";
                                {
                                    "d";
                                    "dd.MM. – dd.MM.",
                                        "M";
                                    "dd.MM. – dd.MM.";
                                }
                                "MEd";
                                {
                                    "d";
                                    "E, dd.MM. – E, dd.MM.",
                                        "M";
                                    "E, dd.MM. – E, dd.MM.";
                                }
                                "MMM";
                                {
                                    "M";
                                    "MMM–MMM";
                                }
                                "MMMd";
                                {
                                    "d";
                                    "d.–d. MMM",
                                        "M";
                                    "d. MMM – d. MMM";
                                }
                                "MMMEd";
                                {
                                    "d";
                                    "E, d. – E, d. MMM",
                                        "M";
                                    "E, d. MMM – E, d. MMM";
                                }
                                "MMMM";
                                {
                                    "M";
                                    "LLLL–LLLL";
                                }
                                "y";
                                {
                                    "y";
                                    "y–y";
                                }
                                "yM";
                                {
                                    "M";
                                    "MM.y – MM.y",
                                        "y";
                                    "MM.y – MM.y";
                                }
                                "yMd";
                                {
                                    "d";
                                    "dd.MM.y – dd.MM.y",
                                        "M";
                                    "dd.MM.y – dd.MM.y",
                                        "y";
                                    "dd.MM.y – dd.MM.y";
                                }
                                "yMEd";
                                {
                                    "d";
                                    "E, dd.MM.y – E, dd.MM.y",
                                        "M";
                                    "E, dd.MM.y – E, dd.MM.y",
                                        "y";
                                    "E, dd.MM.y – E, dd.MM.y";
                                }
                                "yMMM";
                                {
                                    "M";
                                    "MMM–MMM y",
                                        "y";
                                    "MMM y – MMM y";
                                }
                                "yMMMd";
                                {
                                    "d";
                                    "d.–d. MMM y",
                                        "M";
                                    "d. MMM – d. MMM y",
                                        "y";
                                    "d. MMM y – d. MMM y";
                                }
                                "yMMMEd";
                                {
                                    "d";
                                    "E, d. – E, d. MMM y",
                                        "M";
                                    "E, d. MMM – E, d. MMM y",
                                        "y";
                                    "E, d. MMM y – E, d. MMM y";
                                }
                                "yMMMM";
                                {
                                    "M";
                                    "MMMM–MMMM y",
                                        "y";
                                    "MMMM y – MMMM y";
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31"
        },
        "language": "de"
      },
      "numbers": {
        "currencies": {
          "ADP": {
            "displayName": "Andorranische Pesete",
            "displayName-count-one": "Andorranische Pesete",
            "displayName-count-other": "Andorranische Peseten",
            "symbol": "ADP"
          },
          "AED": {
            "displayName": "VAE-Dirham",
            "displayName-count-one": "VAE-Dirham",
            "displayName-count-other": "VAE-Dirham",
            "symbol": "AED"
          },
          "AFA": {
            "displayName": "Afghanische Afghani (1927–2002)",
            "displayName-count-one": "Afghanische Afghani (1927–2002)",
            "displayName-count-other": "Afghanische Afghani (1927–2002)",
            "symbol": "AFA"
          },
          "AFN": {
            "displayName": "Afghanischer Afghani",
            "displayName-count-one": "Afghanischer Afghani",
            "displayName-count-other": "Afghanische Afghani",
            "symbol": "AFN"
          },
          "ALK": {
            "displayName": "Albanischer Lek (1946–1965)",
            "displayName-count-one": "Albanischer Lek (1946–1965)",
            "displayName-count-other": "Albanische Lek (1946–1965)"
          },
          "ALL": {
            "displayName": "Albanischer Lek",
            "displayName-count-one": "Albanischer Lek",
            "displayName-count-other": "Albanische Lek",
            "symbol": "ALL"
          },
          "AMD": {
            "displayName": "Armenischer Dram",
            "displayName-count-one": "Armenischer Dram",
            "displayName-count-other": "Armenische Dram",
            "symbol": "AMD"
          },
          "ANG": {
            "displayName": "Niederländische-Antillen-Gulden",
            "displayName-count-one": "Niederländische-Antillen-Gulden",
            "displayName-count-other": "Niederländische-Antillen-Gulden",
            "symbol": "ANG"
          },
          "AOA": {
            "displayName": "Angolanischer Kwanza",
            "displayName-count-one": "Angolanischer Kwanza",
            "displayName-count-other": "Angolanische Kwanza",
            "symbol": "AOA",
            "symbol-alt-narrow": "Kz"
          },
          "AOK": {
            "displayName": "Angolanischer Kwanza (1977–1990)",
            "displayName-count-one": "Angolanischer Kwanza (1977–1990)",
            "displayName-count-other": "Angolanische Kwanza (1977–1990)",
            "symbol": "AOK"
          },
          "AON": {
            "displayName": "Angolanischer Neuer Kwanza (1990–2000)",
            "displayName-count-one": "Angolanischer Neuer Kwanza (1990–2000)",
            "displayName-count-other": "Angolanische Neue Kwanza (1990–2000)",
            "symbol": "AON"
          },
          "AOR": {
            "displayName": "Angolanischer Kwanza Reajustado (1995–1999)",
            "displayName-count-one": "Angolanischer Kwanza Reajustado (1995–1999)",
            "displayName-count-other": "Angolanische Kwanza Reajustado (1995–1999)",
            "symbol": "AOR"
          },
          "ARA": {
            "displayName": "Argentinischer Austral",
            "displayName-count-one": "Argentinischer Austral",
            "displayName-count-other": "Argentinische Austral",
            "symbol": "ARA"
          },
          "ARL": {
            "displayName": "Argentinischer Peso Ley (1970–1983)",
            "displayName-count-one": "Argentinischer Peso Ley (1970–1983)",
            "displayName-count-other": "Argentinische Pesos Ley (1970–1983)",
            "symbol": "ARL"
          },
          "ARM": {
            "displayName": "Argentinischer Peso (1881–1970)",
            "displayName-count-one": "Argentinischer Peso (1881–1970)",
            "displayName-count-other": "Argentinische Pesos (1881–1970)",
            "symbol": "ARM"
          },
          "ARP": {
            "displayName": "Argentinischer Peso (1983–1985)",
            "displayName-count-one": "Argentinischer Peso (1983–1985)",
            "displayName-count-other": "Argentinische Peso (1983–1985)",
            "symbol": "ARP"
          },
          "ARS": {
            "displayName": "Argentinischer Peso",
            "displayName-count-one": "Argentinischer Peso",
            "displayName-count-other": "Argentinische Pesos",
            "symbol": "ARS",
            "symbol-alt-narrow": "$"
          },
          "ATS": {
            "displayName": "Österreichischer Schilling",
            "displayName-count-one": "Österreichischer Schilling",
            "displayName-count-other": "Österreichische Schilling",
            "symbol": "öS"
          },
          "AUD": {
            "displayName": "Australischer Dollar",
            "displayName-count-one": "Australischer Dollar",
            "displayName-count-other": "Australische Dollar",
            "symbol": "AU$",
            "symbol-alt-narrow": "$"
          },
          "AWG": {
            "displayName": "Aruba-Florin",
            "displayName-count-one": "Aruba-Florin",
            "displayName-count-other": "Aruba-Florin",
            "symbol": "AWG"
          },
          "AZM": {
            "displayName": "Aserbaidschan-Manat (1993–2006)",
            "displayName-count-one": "Aserbaidschan-Manat (1993–2006)",
            "displayName-count-other": "Aserbaidschan-Manat (1993–2006)",
            "symbol": "AZM"
          },
          "AZN": {
            "displayName": "Aserbaidschan-Manat",
            "displayName-count-one": "Aserbaidschan-Manat",
            "displayName-count-other": "Aserbaidschan-Manat",
            "symbol": "AZN"
          },
          "BAD": {
            "displayName": "Bosnien und Herzegowina Dinar (1992–1994)",
            "displayName-count-one": "Bosnien und Herzegowina Dinar (1992–1994)",
            "displayName-count-other": "Bosnien und Herzegowina Dinar (1992–1994)",
            "symbol": "BAD"
          },
          "BAM": {
            "displayName": "Bosnien und Herzegowina Konvertierbare Mark",
            "displayName-count-one": "Bosnien und Herzegowina Konvertierbare Mark",
            "displayName-count-other": "Bosnien und Herzegowina Konvertierbare Mark",
            "symbol": "BAM",
            "symbol-alt-narrow": "KM"
          },
          "BAN": {
            "displayName": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
            "displayName-count-one": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
            "displayName-count-other": "Bosnien und Herzegowina Neue Dinar (1994–1997)",
            "symbol": "BAN"
          },
          "BBD": {
            "displayName": "Barbados-Dollar",
            "displayName-count-one": "Barbados-Dollar",
            "displayName-count-other": "Barbados-Dollar",
            "symbol": "BBD",
            "symbol-alt-narrow": "$"
          },
          "BDT": {
            "displayName": "Bangladesch-Taka",
            "displayName-count-one": "Bangladesch-Taka",
            "displayName-count-other": "Bangladesch-Taka",
            "symbol": "BDT",
            "symbol-alt-narrow": "৳"
          },
          "BEC": {
            "displayName": "Belgischer Franc (konvertibel)",
            "displayName-count-one": "Belgischer Franc (konvertibel)",
            "displayName-count-other": "Belgische Franc (konvertibel)",
            "symbol": "BEC"
          },
          "BEF": {
            "displayName": "Belgischer Franc",
            "displayName-count-one": "Belgischer Franc",
            "displayName-count-other": "Belgische Franc",
            "symbol": "BEF"
          },
          "BEL": {
            "displayName": "Belgischer Finanz-Franc",
            "displayName-count-one": "Belgischer Finanz-Franc",
            "displayName-count-other": "Belgische Finanz-Franc",
            "symbol": "BEL"
          },
          "BGL": {
            "displayName": "Bulgarische Lew (1962–1999)",
            "displayName-count-one": "Bulgarische Lew (1962–1999)",
            "displayName-count-other": "Bulgarische Lew (1962–1999)",
            "symbol": "BGL"
          },
          "BGM": {
            "displayName": "Bulgarischer Lew (1952–1962)",
            "displayName-count-one": "Bulgarischer Lew (1952–1962)",
            "displayName-count-other": "Bulgarische Lew (1952–1962)",
            "symbol": "BGK"
          },
          "BGN": {
            "displayName": "Bulgarischer Lew",
            "displayName-count-one": "Bulgarischer Lew",
            "displayName-count-other": "Bulgarische Lew",
            "symbol": "BGN"
          },
          "BGO": {
            "displayName": "Bulgarischer Lew (1879–1952)",
            "displayName-count-one": "Bulgarischer Lew (1879–1952)",
            "displayName-count-other": "Bulgarische Lew (1879–1952)",
            "symbol": "BGJ"
          },
          "BHD": {
            "displayName": "Bahrain-Dinar",
            "displayName-count-one": "Bahrain-Dinar",
            "displayName-count-other": "Bahrain-Dinar",
            "symbol": "BHD"
          },
          "BIF": {
            "displayName": "Burundi-Franc",
            "displayName-count-one": "Burundi-Franc",
            "displayName-count-other": "Burundi-Francs",
            "symbol": "BIF"
          },
          "BMD": {
            "displayName": "Bermuda-Dollar",
            "displayName-count-one": "Bermuda-Dollar",
            "displayName-count-other": "Bermuda-Dollar",
            "symbol": "BMD",
            "symbol-alt-narrow": "$"
          },
          "BND": {
            "displayName": "Brunei-Dollar",
            "displayName-count-one": "Brunei-Dollar",
            "displayName-count-other": "Brunei-Dollar",
            "symbol": "BND",
            "symbol-alt-narrow": "$"
          },
          "BOB": {
            "displayName": "Bolivanischer Boliviano",
            "displayName-count-one": "Bolivanischer Boliviano",
            "displayName-count-other": "Bolivianische Bolivianos",
            "symbol": "BOB",
            "symbol-alt-narrow": "Bs"
          },
          "BOL": {
            "displayName": "Bolivianischer Boliviano (1863–1963)",
            "displayName-count-one": "Bolivianischer Boliviano (1863–1963)",
            "displayName-count-other": "Bolivianische Bolivianos (1863–1963)",
            "symbol": "BOL"
          },
          "BOP": {
            "displayName": "Bolivianischer Peso",
            "displayName-count-one": "Bolivianischer Peso",
            "displayName-count-other": "Bolivianische Peso",
            "symbol": "BOP"
          },
          "BOV": {
            "displayName": "Boliviansiche Mvdol",
            "displayName-count-one": "Boliviansiche Mvdol",
            "displayName-count-other": "Bolivianische Mvdol",
            "symbol": "BOV"
          },
          "BRB": {
            "displayName": "Brasilianischer Cruzeiro Novo (1967–1986)",
            "displayName-count-one": "Brasilianischer Cruzeiro Novo (1967–1986)",
            "displayName-count-other": "Brasilianische Cruzeiro Novo (1967–1986)",
            "symbol": "BRB"
          },
          "BRC": {
            "displayName": "Brasilianischer Cruzado (1986–1989)",
            "displayName-count-one": "Brasilianischer Cruzado (1986–1989)",
            "displayName-count-other": "Brasilianische Cruzado (1986–1989)",
            "symbol": "BRC"
          },
          "BRE": {
            "displayName": "Brasilianischer Cruzeiro (1990–1993)",
            "displayName-count-one": "Brasilianischer Cruzeiro (1990–1993)",
            "displayName-count-other": "Brasilianische Cruzeiro (1990–1993)",
            "symbol": "BRE"
          },
          "BRL": {
            "displayName": "Brasilianischer Real",
            "displayName-count-one": "Brasilianischer Real",
            "displayName-count-other": "Brasilianische Real",
            "symbol": "R$",
            "symbol-alt-narrow": "R$"
          },
          "BRN": {
            "displayName": "Brasilianischer Cruzado Novo (1989–1990)",
            "displayName-count-one": "Brasilianischer Cruzado Novo (1989–1990)",
            "displayName-count-other": "Brasilianische Cruzado Novo (1989–1990)",
            "symbol": "BRN"
          },
          "BRR": {
            "displayName": "Brasilianischer Cruzeiro (1993–1994)",
            "displayName-count-one": "Brasilianischer Cruzeiro (1993–1994)",
            "displayName-count-other": "Brasilianische Cruzeiro (1993–1994)",
            "symbol": "BRR"
          },
          "BRZ": {
            "displayName": "Brasilianischer Cruzeiro (1942–1967)",
            "displayName-count-one": "Brasilianischer Cruzeiro (1942–1967)",
            "displayName-count-other": "Brasilianischer Cruzeiro (1942–1967)",
            "symbol": "BRZ"
          },
          "BSD": {
            "displayName": "Bahamas-Dollar",
            "displayName-count-one": "Bahamas-Dollar",
            "displayName-count-other": "Bahamas-Dollar",
            "symbol": "BSD",
            "symbol-alt-narrow": "$"
          },
          "BTN": {
            "displayName": "Bhutan-Ngultrum",
            "displayName-count-one": "Bhutan-Ngultrum",
            "displayName-count-other": "Bhutan-Ngultrum",
            "symbol": "BTN"
          },
          "BUK": {
            "displayName": "Birmanischer Kyat",
            "displayName-count-one": "Birmanischer Kyat",
            "displayName-count-other": "Birmanische Kyat",
            "symbol": "BUK"
          },
          "BWP": {
            "displayName": "Botswanischer Pula",
            "displayName-count-one": "Botswanischer Pula",
            "displayName-count-other": "Botswanische Pula",
            "symbol": "BWP",
            "symbol-alt-narrow": "P"
          },
          "BYB": {
            "displayName": "Belarus-Rubel (1994–1999)",
            "displayName-count-one": "Belarus-Rubel (1994–1999)",
            "displayName-count-other": "Belarus-Rubel (1994–1999)",
            "symbol": "BYB"
          },
          "BYN": {
            "displayName": "Weißrussischer Rubel",
            "displayName-count-one": "Weißrussischer Rubel",
            "displayName-count-other": "Weißrussische Rubel",
            "symbol": "BYN",
            "symbol-alt-narrow": "р."
          },
          "BYR": {
            "displayName": "Weißrussischer Rubel (2000–2016)",
            "displayName-count-one": "Weißrussischer Rubel (2000–2016)",
            "displayName-count-other": "Weißrussische Rubel (2000–2016)",
            "symbol": "BYR"
          },
          "BZD": {
            "displayName": "Belize-Dollar",
            "displayName-count-one": "Belize-Dollar",
            "displayName-count-other": "Belize-Dollar",
            "symbol": "BZD",
            "symbol-alt-narrow": "$"
          },
          "CAD": {
            "displayName": "Kanadischer Dollar",
            "displayName-count-one": "Kanadischer Dollar",
            "displayName-count-other": "Kanadische Dollar",
            "symbol": "CA$",
            "symbol-alt-narrow": "$"
          },
          "CDF": {
            "displayName": "Kongo-Franc",
            "displayName-count-one": "Kongo-Franc",
            "displayName-count-other": "Kongo-Francs",
            "symbol": "CDF"
          },
          "CHE": {
            "displayName": "WIR-Euro",
            "displayName-count-one": "WIR-Euro",
            "displayName-count-other": "WIR-Euro",
            "symbol": "CHE"
          },
          "CHF": {
            "displayName": "Schweizer Franken",
            "displayName-count-one": "Schweizer Franken",
            "displayName-count-other": "Schweizer Franken",
            "symbol": "CHF"
          },
          "CHW": {
            "displayName": "WIR Franken",
            "displayName-count-one": "WIR Franken",
            "displayName-count-other": "WIR Franken",
            "symbol": "CHW"
          },
          "CLE": {
            "displayName": "Chilenischer Escudo",
            "displayName-count-one": "Chilenischer Escudo",
            "displayName-count-other": "Chilenische Escudo",
            "symbol": "CLE"
          },
          "CLF": {
            "displayName": "Chilenische Unidades de Fomento",
            "displayName-count-one": "Chilenische Unidades de Fomento",
            "displayName-count-other": "Chilenische Unidades de Fomento",
            "symbol": "CLF"
          },
          "CLP": {
            "displayName": "Chilenischer Peso",
            "displayName-count-one": "Chilenischer Peso",
            "displayName-count-other": "Chilenische Pesos",
            "symbol": "CLP",
            "symbol-alt-narrow": "$"
          },
          "CNX": {
            "displayName": "Dollar der Chinesischen Volksbank",
            "displayName-count-one": "Dollar der Chinesischen Volksbank",
            "displayName-count-other": "Dollar der Chinesischen Volksbank",
            "symbol": "CNX"
          },
          "CNY": {
            "displayName": "Renminbi Yuan",
            "displayName-count-one": "Chinesischer Yuan",
            "displayName-count-other": "Renminbi Yuan",
            "symbol": "CN¥",
            "symbol-alt-narrow": "¥"
          },
          "COP": {
            "displayName": "Kolumbianischer Peso",
            "displayName-count-one": "Kolumbianischer Peso",
            "displayName-count-other": "Kolumbianische Pesos",
            "symbol": "COP",
            "symbol-alt-narrow": "$"
          },
          "COU": {
            "displayName": "Kolumbianische Unidades de valor real",
            "displayName-count-one": "Kolumbianische Unidad de valor real",
            "displayName-count-other": "Kolumbianische Unidades de valor real",
            "symbol": "COU"
          },
          "CRC": {
            "displayName": "Costa-Rica-Colón",
            "displayName-count-one": "Costa-Rica-Colón",
            "displayName-count-other": "Costa-Rica-Colón",
            "symbol": "CRC",
            "symbol-alt-narrow": "₡"
          },
          "CSD": {
            "displayName": "Serbischer Dinar (2002–2006)",
            "displayName-count-one": "Serbischer Dinar (2002–2006)",
            "displayName-count-other": "Serbische Dinar (2002–2006)",
            "symbol": "CSD"
          },
          "CSK": {
            "displayName": "Tschechoslowakische Krone",
            "displayName-count-one": "Tschechoslowakische Kronen",
            "displayName-count-other": "Tschechoslowakische Kronen",
            "symbol": "CSK"
          },
          "CUC": {
            "displayName": "Kubanischer Peso (konvertibel)",
            "displayName-count-one": "Kubanischer Peso (konvertibel)",
            "displayName-count-other": "Kubanische Pesos (konvertibel)",
            "symbol": "CUC",
            "symbol-alt-narrow": "Cub$"
          },
          "CUP": {
            "displayName": "Kubanischer Peso",
            "displayName-count-one": "Kubanischer Peso",
            "displayName-count-other": "Kubanische Pesos",
            "symbol": "CUP",
            "symbol-alt-narrow": "$"
          },
          "CVE": {
            "displayName": "Cabo-Verde-Escudo",
            "displayName-count-one": "Cabo-Verde-Escudo",
            "displayName-count-other": "Cabo-Verde-Escudos",
            "symbol": "CVE"
          },
          "CYP": {
            "displayName": "Zypern-Pfund",
            "displayName-count-one": "Zypern Pfund",
            "displayName-count-other": "Zypern Pfund",
            "symbol": "CYP"
          },
          "CZK": {
            "displayName": "Tschechische Krone",
            "displayName-count-one": "Tschechische Krone",
            "displayName-count-other": "Tschechische Kronen",
            "symbol": "CZK",
            "symbol-alt-narrow": "Kč"
          },
          "DDM": {
            "displayName": "Mark der DDR",
            "displayName-count-one": "Mark der DDR",
            "displayName-count-other": "Mark der DDR",
            "symbol": "DDM"
          },
          "DEM": {
            "displayName": "Deutsche Mark",
            "displayName-count-one": "Deutsche Mark",
            "displayName-count-other": "Deutsche Mark",
            "symbol": "DM"
          },
          "DJF": {
            "displayName": "Dschibuti-Franc",
            "displayName-count-one": "Dschibuti-Franc",
            "displayName-count-other": "Dschibuti-Franc",
            "symbol": "DJF"
          },
          "DKK": {
            "displayName": "Dänische Krone",
            "displayName-count-one": "Dänische Krone",
            "displayName-count-other": "Dänische Kronen",
            "symbol": "DKK",
            "symbol-alt-narrow": "kr"
          },
          "DOP": {
            "displayName": "Dominikanischer Peso",
            "displayName-count-one": "Dominikanischer Peso",
            "displayName-count-other": "Dominikanische Pesos",
            "symbol": "DOP",
            "symbol-alt-narrow": "$"
          },
          "DZD": {
            "displayName": "Algerischer Dinar",
            "displayName-count-one": "Algerischer Dinar",
            "displayName-count-other": "Algerische Dinar",
            "symbol": "DZD"
          },
          "ECS": {
            "displayName": "Ecuadorianischer Sucre",
            "displayName-count-one": "Ecuadorianischer Sucre",
            "displayName-count-other": "Ecuadorianische Sucre",
            "symbol": "ECS"
          },
          "ECV": {
            "displayName": "Verrechnungseinheit für Ecuador",
            "displayName-count-one": "Verrechnungseinheiten für Ecuador",
            "displayName-count-other": "Verrechnungseinheiten für Ecuador",
            "symbol": "ECV"
          },
          "EEK": {
            "displayName": "Estnische Krone",
            "displayName-count-one": "Estnische Krone",
            "displayName-count-other": "Estnische Kronen",
            "symbol": "EEK"
          },
          "EGP": {
            "displayName": "Ägyptisches Pfund",
            "displayName-count-one": "Ägyptisches Pfund",
            "displayName-count-other": "Ägyptische Pfund",
            "symbol": "EGP",
            "symbol-alt-narrow": "E£"
          },
          "ERN": {
            "displayName": "Eritreischer Nakfa",
            "displayName-count-one": "Eritreischer Nakfa",
            "displayName-count-other": "Eritreische Nakfa",
            "symbol": "ERN"
          },
          "ESA": {
            "displayName": "Spanische Peseta (A–Konten)",
            "displayName-count-one": "Spanische Peseta (A–Konten)",
            "displayName-count-other": "Spanische Peseten (A–Konten)",
            "symbol": "ESA"
          },
          "ESB": {
            "displayName": "Spanische Peseta (konvertibel)",
            "displayName-count-one": "Spanische Peseta (konvertibel)",
            "displayName-count-other": "Spanische Peseten (konvertibel)",
            "symbol": "ESB"
          },
          "ESP": {
            "displayName": "Spanische Peseta",
            "displayName-count-one": "Spanische Peseta",
            "displayName-count-other": "Spanische Peseten",
            "symbol": "ESP",
            "symbol-alt-narrow": "₧"
          },
          "ETB": {
            "displayName": "Äthiopischer Birr",
            "displayName-count-one": "Äthiopischer Birr",
            "displayName-count-other": "Äthiopische Birr",
            "symbol": "ETB"
          },
          "EUR": {
            "displayName": "Euro",
            "displayName-count-one": "Euro",
            "displayName-count-other": "Euro",
            "symbol": "€",
            "symbol-alt-narrow": "€"
          },
          "FIM": {
            "displayName": "Finnische Mark",
            "displayName-count-one": "Finnische Mark",
            "displayName-count-other": "Finnische Mark",
            "symbol": "FIM"
          },
          "FJD": {
            "displayName": "Fidschi-Dollar",
            "displayName-count-one": "Fidschi-Dollar",
            "displayName-count-other": "Fidschi-Dollar",
            "symbol": "FJD",
            "symbol-alt-narrow": "$"
          },
          "FKP": {
            "displayName": "Falkland-Pfund",
            "displayName-count-one": "Falkland-Pfund",
            "displayName-count-other": "Falkland-Pfund",
            "symbol": "FKP",
            "symbol-alt-narrow": "Fl£"
          },
          "FRF": {
            "displayName": "Französischer Franc",
            "displayName-count-one": "Französischer Franc",
            "displayName-count-other": "Französische Franc",
            "symbol": "FRF"
          },
          "GBP": {
            "displayName": "Britisches Pfund",
            "displayName-count-one": "Britisches Pfund",
            "displayName-count-other": "Britische Pfund",
            "symbol": "£",
            "symbol-alt-narrow": "£"
          },
          "GEK": {
            "displayName": "Georgischer Kupon Larit",
            "displayName-count-one": "Georgischer Kupon Larit",
            "displayName-count-other": "Georgische Kupon Larit",
            "symbol": "GEK"
          },
          "GEL": {
            "displayName": "Georgischer Lari",
            "displayName-count-one": "Georgischer Lari",
            "displayName-count-other": "Georgische Lari",
            "symbol": "GEL",
            "symbol-alt-narrow": "₾",
            "symbol-alt-variant": "₾"
          },
          "GHC": {
            "displayName": "Ghanaischer Cedi (1979–2007)",
            "displayName-count-one": "Ghanaischer Cedi (1979–2007)",
            "displayName-count-other": "Ghanaische Cedi (1979–2007)",
            "symbol": "GHC"
          },
          "GHS": {
            "displayName": "Ghanaischer Cedi",
            "displayName-count-one": "Ghanaischer Cedi",
            "displayName-count-other": "Ghanaische Cedi",
            "symbol": "GHS"
          },
          "GIP": {
            "displayName": "Gibraltar-Pfund",
            "displayName-count-one": "Gibraltar-Pfund",
            "displayName-count-other": "Gibraltar Pfund",
            "symbol": "GIP",
            "symbol-alt-narrow": "£"
          },
          "GMD": {
            "displayName": "Gambia-Dalasi",
            "displayName-count-one": "Gambia-Dalasi",
            "displayName-count-other": "Gambia-Dalasi",
            "symbol": "GMD"
          },
          "GNF": {
            "displayName": "Guinea-Franc",
            "displayName-count-one": "Guinea-Franc",
            "displayName-count-other": "Guinea-Franc",
            "symbol": "GNF",
            "symbol-alt-narrow": "F.G."
          },
          "GNS": {
            "displayName": "Guineischer Syli",
            "displayName-count-one": "Guineischer Syli",
            "displayName-count-other": "Guineische Syli",
            "symbol": "GNS"
          },
          "GQE": {
            "displayName": "Äquatorialguinea-Ekwele",
            "displayName-count-one": "Äquatorialguinea-Ekwele",
            "displayName-count-other": "Äquatorialguinea-Ekwele",
            "symbol": "GQE"
          },
          "GRD": {
            "displayName": "Griechische Drachme",
            "displayName-count-one": "Griechische Drachme",
            "displayName-count-other": "Griechische Drachmen",
            "symbol": "GRD"
          },
          "GTQ": {
            "displayName": "Guatemaltekischer Quetzal",
            "displayName-count-one": "Guatemaltekischer Quetzal",
            "displayName-count-other": "Guatemaltekische Quetzales",
            "symbol": "GTQ",
            "symbol-alt-narrow": "Q"
          },
          "GWE": {
            "displayName": "Portugiesisch Guinea Escudo",
            "displayName-count-one": "Portugiesisch Guinea Escudo",
            "displayName-count-other": "Portugiesisch Guinea Escudo",
            "symbol": "GWE"
          },
          "GWP": {
            "displayName": "Guinea-Bissau Peso",
            "displayName-count-one": "Guinea-Bissau Peso",
            "displayName-count-other": "Guinea-Bissau Pesos",
            "symbol": "GWP"
          },
          "GYD": {
            "displayName": "Guyana-Dollar",
            "displayName-count-one": "Guyana-Dollar",
            "displayName-count-other": "Guyana-Dollar",
            "symbol": "GYD",
            "symbol-alt-narrow": "$"
          },
          "HKD": {
            "displayName": "Hongkong-Dollar",
            "displayName-count-one": "Hongkong-Dollar",
            "displayName-count-other": "Hongkong-Dollar",
            "symbol": "HK$",
            "symbol-alt-narrow": "$"
          },
          "HNL": {
            "displayName": "Honduras-Lempira",
            "displayName-count-one": "Honduras-Lempira",
            "displayName-count-other": "Honduras-Lempira",
            "symbol": "HNL",
            "symbol-alt-narrow": "L"
          },
          "HRD": {
            "displayName": "Kroatischer Dinar",
            "displayName-count-one": "Kroatischer Dinar",
            "displayName-count-other": "Kroatische Dinar",
            "symbol": "HRD"
          },
          "HRK": {
            "displayName": "Kroatischer Kuna",
            "displayName-count-one": "Kroatischer Kuna",
            "displayName-count-other": "Kroatische Kuna",
            "symbol": "HRK",
            "symbol-alt-narrow": "kn"
          },
          "HTG": {
            "displayName": "Haitianische Gourde",
            "displayName-count-one": "Haitianische Gourde",
            "displayName-count-other": "Haitianische Gourdes",
            "symbol": "HTG"
          },
          "HUF": {
            "displayName": "Ungarischer Forint",
            "displayName-count-one": "Ungarischer Forint",
            "displayName-count-other": "Ungarische Forint",
            "symbol": "HUF",
            "symbol-alt-narrow": "Ft"
          },
          "IDR": {
            "displayName": "Indonesische Rupiah",
            "displayName-count-one": "Indonesische Rupiah",
            "displayName-count-other": "Indonesische Rupiah",
            "symbol": "IDR",
            "symbol-alt-narrow": "Rp"
          },
          "IEP": {
            "displayName": "Irisches Pfund",
            "displayName-count-one": "Irisches Pfund",
            "displayName-count-other": "Irische Pfund",
            "symbol": "IEP"
          },
          "ILP": {
            "displayName": "Israelisches Pfund",
            "displayName-count-one": "Israelisches Pfund",
            "displayName-count-other": "Israelische Pfund",
            "symbol": "ILP"
          },
          "ILR": {
            "displayName": "Israelischer Schekel (1980–1985)",
            "displayName-count-one": "Israelischer Schekel (1980–1985)",
            "displayName-count-other": "Israelische Schekel (1980–1985)"
          },
          "ILS": {
            "displayName": "Israelischer Neuer Schekel",
            "displayName-count-one": "Israelischer Neuer Schekel",
            "displayName-count-other": "Israelische Neue Schekel",
            "symbol": "₪",
            "symbol-alt-narrow": "₪"
          },
          "INR": {
            "displayName": "Indische Rupie",
            "displayName-count-one": "Indische Rupie",
            "displayName-count-other": "Indische Rupien",
            "symbol": "₹",
            "symbol-alt-narrow": "₹"
          },
          "IQD": {
            "displayName": "Irakischer Dinar",
            "displayName-count-one": "Irakischer Dinar",
            "displayName-count-other": "Irakische Dinar",
            "symbol": "IQD"
          },
          "IRR": {
            "displayName": "Iranischer Rial",
            "displayName-count-one": "Iranischer Rial",
            "displayName-count-other": "Iranische Rial",
            "symbol": "IRR"
          },
          "ISJ": {
            "displayName": "Isländische Krone (1918–1981)",
            "displayName-count-one": "Isländische Krone (1918–1981)",
            "displayName-count-other": "Isländische Kronen (1918–1981)"
          },
          "ISK": {
            "displayName": "Isländische Krone",
            "displayName-count-one": "Isländische Krone",
            "displayName-count-other": "Isländische Kronen",
            "symbol": "ISK",
            "symbol-alt-narrow": "kr"
          },
          "ITL": {
            "displayName": "Italienische Lira",
            "displayName-count-one": "Italienische Lira",
            "displayName-count-other": "Italienische Lire",
            "symbol": "ITL"
          },
          "JMD": {
            "displayName": "Jamaika-Dollar",
            "displayName-count-one": "Jamaika-Dollar",
            "displayName-count-other": "Jamaika-Dollar",
            "symbol": "JMD",
            "symbol-alt-narrow": "$"
          },
          "JOD": {
            "displayName": "Jordanischer Dinar",
            "displayName-count-one": "Jordanischer Dinar",
            "displayName-count-other": "Jordanische Dinar",
            "symbol": "JOD"
          },
          "JPY": {
            "displayName": "Japanischer Yen",
            "displayName-count-one": "Japanischer Yen",
            "displayName-count-other": "Japanische Yen",
            "symbol": "¥",
            "symbol-alt-narrow": "¥"
          },
          "KES": {
            "displayName": "Kenia-Schilling",
            "displayName-count-one": "Kenia-Schilling",
            "displayName-count-other": "Kenia-Schilling",
            "symbol": "KES"
          },
          "KGS": {
            "displayName": "Kirgisischer Som",
            "displayName-count-one": "Kirgisischer Som",
            "displayName-count-other": "Kirgisische Som",
            "symbol": "KGS"
          },
          "KHR": {
            "displayName": "Kambodschanischer Riel",
            "displayName-count-one": "Kambodschanischer Riel",
            "displayName-count-other": "Kambodschanische Riel",
            "symbol": "KHR",
            "symbol-alt-narrow": "៛"
          },
          "KMF": {
            "displayName": "Komoren-Franc",
            "displayName-count-one": "Komoren-Franc",
            "displayName-count-other": "Komoren-Francs",
            "symbol": "KMF",
            "symbol-alt-narrow": "FC"
          },
          "KPW": {
            "displayName": "Nordkoreanischer Won",
            "displayName-count-one": "Nordkoreanischer Won",
            "displayName-count-other": "Nordkoreanische Won",
            "symbol": "KPW",
            "symbol-alt-narrow": "₩"
          },
          "KRH": {
            "displayName": "Südkoreanischer Hwan (1953–1962)",
            "displayName-count-one": "Südkoreanischer Hwan (1953–1962)",
            "displayName-count-other": "Südkoreanischer Hwan (1953–1962)",
            "symbol": "KRH"
          },
          "KRO": {
            "displayName": "Südkoreanischer Won (1945–1953)",
            "displayName-count-one": "Südkoreanischer Won (1945–1953)",
            "displayName-count-other": "Südkoreanischer Won (1945–1953)",
            "symbol": "KRO"
          },
          "KRW": {
            "displayName": "Südkoreanischer Won",
            "displayName-count-one": "Südkoreanischer Won",
            "displayName-count-other": "Südkoreanische Won",
            "symbol": "₩",
            "symbol-alt-narrow": "₩"
          },
          "KWD": {
            "displayName": "Kuwait-Dinar",
            "displayName-count-one": "Kuwait-Dinar",
            "displayName-count-other": "Kuwait-Dinar",
            "symbol": "KWD"
          },
          "KYD": {
            "displayName": "Kaiman-Dollar",
            "displayName-count-one": "Kaiman-Dollar",
            "displayName-count-other": "Kaiman-Dollar",
            "symbol": "KYD",
            "symbol-alt-narrow": "$"
          },
          "KZT": {
            "displayName": "Kasachischer Tenge",
            "displayName-count-one": "Kasachischer Tenge",
            "displayName-count-other": "Kasachische Tenge",
            "symbol": "KZT",
            "symbol-alt-narrow": "₸"
          },
          "LAK": {
            "displayName": "Laotischer Kip",
            "displayName-count-one": "Laotischer Kip",
            "displayName-count-other": "Laotische Kip",
            "symbol": "LAK",
            "symbol-alt-narrow": "₭"
          },
          "LBP": {
            "displayName": "Libanesisches Pfund",
            "displayName-count-one": "Libanesisches Pfund",
            "displayName-count-other": "Libanesische Pfund",
            "symbol": "LBP",
            "symbol-alt-narrow": "L£"
          },
          "LKR": {
            "displayName": "Sri-Lanka-Rupie",
            "displayName-count-one": "Sri-Lanka-Rupie",
            "displayName-count-other": "Sri-Lanka-Rupien",
            "symbol": "LKR",
            "symbol-alt-narrow": "Rs"
          },
          "LRD": {
            "displayName": "Liberianischer Dollar",
            "displayName-count-one": "Liberianischer Dollar",
            "displayName-count-other": "Liberianische Dollar",
            "symbol": "LRD",
            "symbol-alt-narrow": "$"
          },
          "LSL": {
            "displayName": "Loti",
            "displayName-count-one": "Loti",
            "displayName-count-other": "Loti",
            "symbol": "LSL"
          },
          "LTL": {
            "displayName": "Litauischer Litas",
            "displayName-count-one": "Litauischer Litas",
            "displayName-count-other": "Litauische Litas",
            "symbol": "LTL",
            "symbol-alt-narrow": "Lt"
          },
          "LTT": {
            "displayName": "Litauischer Talonas",
            "displayName-count-one": "Litauische Talonas",
            "displayName-count-other": "Litauische Talonas",
            "symbol": "LTT"
          },
          "LUC": {
            "displayName": "Luxemburgischer Franc (konvertibel)",
            "displayName-count-one": "Luxemburgische Franc (konvertibel)",
            "displayName-count-other": "Luxemburgische Franc (konvertibel)",
            "symbol": "LUC"
          },
          "LUF": {
            "displayName": "Luxemburgischer Franc",
            "displayName-count-one": "Luxemburgische Franc",
            "displayName-count-other": "Luxemburgische Franc",
            "symbol": "LUF"
          },
          "LUL": {
            "displayName": "Luxemburgischer Finanz-Franc",
            "displayName-count-one": "Luxemburgische Finanz-Franc",
            "displayName-count-other": "Luxemburgische Finanz-Franc",
            "symbol": "LUL"
          },
          "LVL": {
            "displayName": "Lettischer Lats",
            "displayName-count-one": "Lettischer Lats",
            "displayName-count-other": "Lettische Lats",
            "symbol": "LVL",
            "symbol-alt-narrow": "Ls"
          },
          "LVR": {
            "displayName": "Lettischer Rubel",
            "displayName-count-one": "Lettische Rubel",
            "displayName-count-other": "Lettische Rubel",
            "symbol": "LVR"
          },
          "LYD": {
            "displayName": "Libyscher Dinar",
            "displayName-count-one": "Libyscher Dinar",
            "displayName-count-other": "Libysche Dinar",
            "symbol": "LYD"
          },
          "MAD": {
            "displayName": "Marokkanischer Dirham",
            "displayName-count-one": "Marokkanischer Dirham",
            "displayName-count-other": "Marokkanische Dirham",
            "symbol": "MAD"
          },
          "MAF": {
            "displayName": "Marokkanischer Franc",
            "displayName-count-one": "Marokkanische Franc",
            "displayName-count-other": "Marokkanische Franc",
            "symbol": "MAF"
          },
          "MCF": {
            "displayName": "Monegassischer Franc",
            "displayName-count-one": "Monegassischer Franc",
            "displayName-count-other": "Monegassische Franc",
            "symbol": "MCF"
          },
          "MDC": {
            "displayName": "Moldau-Cupon",
            "displayName-count-one": "Moldau-Cupon",
            "displayName-count-other": "Moldau-Cupon",
            "symbol": "MDC"
          },
          "MDL": {
            "displayName": "Moldau-Leu",
            "displayName-count-one": "Moldau-Leu",
            "displayName-count-other": "Moldau-Leu",
            "symbol": "MDL"
          },
          "MGA": {
            "displayName": "Madagaskar-Ariary",
            "displayName-count-one": "Madagaskar-Ariary",
            "displayName-count-other": "Madagaskar-Ariary",
            "symbol": "MGA",
            "symbol-alt-narrow": "Ar"
          },
          "MGF": {
            "displayName": "Madagaskar-Franc",
            "displayName-count-one": "Madagaskar-Franc",
            "displayName-count-other": "Madagaskar-Franc",
            "symbol": "MGF"
          },
          "MKD": {
            "displayName": "Mazedonischer Denar",
            "displayName-count-one": "Mazedonischer Denar",
            "displayName-count-other": "Mazedonische Denari",
            "symbol": "MKD"
          },
          "MKN": {
            "displayName": "Mazedonischer Denar (1992–1993)",
            "displayName-count-one": "Mazedonischer Denar (1992–1993)",
            "displayName-count-other": "Mazedonische Denar (1992–1993)",
            "symbol": "MKN"
          },
          "MLF": {
            "displayName": "Malischer Franc",
            "displayName-count-one": "Malische Franc",
            "displayName-count-other": "Malische Franc",
            "symbol": "MLF"
          },
          "MMK": {
            "displayName": "Myanmarischer Kyat",
            "displayName-count-one": "Myanmarischer Kyat",
            "displayName-count-other": "Myanmarische Kyat",
            "symbol": "MMK",
            "symbol-alt-narrow": "K"
          },
          "MNT": {
            "displayName": "Mongolischer Tögrög",
            "displayName-count-one": "Mongolischer Tögrög",
            "displayName-count-other": "Mongolische Tögrög",
            "symbol": "MNT",
            "symbol-alt-narrow": "₮"
          },
          "MOP": {
            "displayName": "Macao-Pataca",
            "displayName-count-one": "Macao-Pataca",
            "displayName-count-other": "Macao-Pataca",
            "symbol": "MOP"
          },
          "MRO": {
            "displayName": "Mauretanischer Ouguiya",
            "displayName-count-one": "Mauretanischer Ouguiya",
            "displayName-count-other": "Mauretanische Ouguiya",
            "symbol": "MRO"
          },
          "MTL": {
            "displayName": "Maltesische Lira",
            "displayName-count-one": "Maltesische Lira",
            "displayName-count-other": "Maltesische Lira",
            "symbol": "MTL"
          },
          "MTP": {
            "displayName": "Maltesisches Pfund",
            "displayName-count-one": "Maltesische Pfund",
            "displayName-count-other": "Maltesische Pfund",
            "symbol": "MTP"
          },
          "MUR": {
            "displayName": "Mauritius-Rupie",
            "displayName-count-one": "Mauritius-Rupie",
            "displayName-count-other": "Mauritius-Rupien",
            "symbol": "MUR",
            "symbol-alt-narrow": "Rs"
          },
          "MVP": {
            "displayName": "Malediven-Rupie (alt)",
            "displayName-count-one": "Malediven-Rupie (alt)",
            "displayName-count-other": "Malediven-Rupien (alt)"
          },
          "MVR": {
            "displayName": "Malediven-Rufiyaa",
            "displayName-count-one": "Malediven-Rufiyaa",
            "displayName-count-other": "Malediven-Rupien",
            "symbol": "MVR"
          },
          "MWK": {
            "displayName": "Malawi-Kwacha",
            "displayName-count-one": "Malawi-Kwacha",
            "displayName-count-other": "Malawi-Kwacha",
            "symbol": "MWK"
          },
          "MXN": {
            "displayName": "Mexikanischer Peso",
            "displayName-count-one": "Mexikanischer Peso",
            "displayName-count-other": "Mexikanische Pesos",
            "symbol": "MX$",
            "symbol-alt-narrow": "$"
          },
          "MXP": {
            "displayName": "Mexikanischer Silber-Peso (1861–1992)",
            "displayName-count-one": "Mexikanische Silber-Peso (1861–1992)",
            "displayName-count-other": "Mexikanische Silber-Pesos (1861–1992)",
            "symbol": "MXP"
          },
          "MXV": {
            "displayName": "Mexicanischer Unidad de Inversion (UDI)",
            "displayName-count-one": "Mexicanischer Unidad de Inversion (UDI)",
            "displayName-count-other": "Mexikanische Unidad de Inversion (UDI)",
            "symbol": "MXV"
          },
          "MYR": {
            "displayName": "Malaysischer Ringgit",
            "displayName-count-one": "Malaysischer Ringgit",
            "displayName-count-other": "Malaysische Ringgit",
            "symbol": "MYR",
            "symbol-alt-narrow": "RM"
          },
          "MZE": {
            "displayName": "Mosambikanischer Escudo",
            "displayName-count-one": "Mozambikanische Escudo",
            "displayName-count-other": "Mozambikanische Escudo",
            "symbol": "MZE"
          },
          "MZM": {
            "displayName": "Mosambikanischer Metical (1980–2006)",
            "displayName-count-one": "Mosambikanischer Metical (1980–2006)",
            "displayName-count-other": "Mosambikanische Meticais (1980–2006)",
            "symbol": "MZM"
          },
          "MZN": {
            "displayName": "Mosambikanischer Metical",
            "displayName-count-one": "Mosambikanischer Metical",
            "displayName-count-other": "Mosambikanische Meticais",
            "symbol": "MZN"
          },
          "NAD": {
            "displayName": "Namibia-Dollar",
            "displayName-count-one": "Namibia-Dollar",
            "displayName-count-other": "Namibia-Dollar",
            "symbol": "NAD",
            "symbol-alt-narrow": "$"
          },
          "NGN": {
            "displayName": "Nigerianischer Naira",
            "displayName-count-one": "Nigerianischer Naira",
            "displayName-count-other": "Nigerianische Naira",
            "symbol": "NGN",
            "symbol-alt-narrow": "₦"
          },
          "NIC": {
            "displayName": "Nicaraguanischer Córdoba (1988–1991)",
            "displayName-count-one": "Nicaraguanischer Córdoba (1988–1991)",
            "displayName-count-other": "Nicaraguanische Córdoba (1988–1991)",
            "symbol": "NIC"
          },
          "NIO": {
            "displayName": "Nicaragua-Córdoba",
            "displayName-count-one": "Nicaragua-Córdoba",
            "displayName-count-other": "Nicaragua-Córdobas",
            "symbol": "NIO",
            "symbol-alt-narrow": "C$"
          },
          "NLG": {
            "displayName": "Niederländischer Gulden",
            "displayName-count-one": "Niederländischer Gulden",
            "displayName-count-other": "Niederländische Gulden",
            "symbol": "NLG"
          },
          "NOK": {
            "displayName": "Norwegische Krone",
            "displayName-count-one": "Norwegische Krone",
            "displayName-count-other": "Norwegische Kronen",
            "symbol": "NOK",
            "symbol-alt-narrow": "kr"
          },
          "NPR": {
            "displayName": "Nepalesische Rupie",
            "displayName-count-one": "Nepalesische Rupie",
            "displayName-count-other": "Nepalesische Rupien",
            "symbol": "NPR",
            "symbol-alt-narrow": "Rs"
          },
          "NZD": {
            "displayName": "Neuseeland-Dollar",
            "displayName-count-one": "Neuseeland-Dollar",
            "displayName-count-other": "Neuseeland-Dollar",
            "symbol": "NZ$",
            "symbol-alt-narrow": "$"
          },
          "OMR": {
            "displayName": "Omanischer Rial",
            "displayName-count-one": "Omanischer Rial",
            "displayName-count-other": "Omanische Rials",
            "symbol": "OMR"
          },
          "PAB": {
            "displayName": "Panamaischer Balboa",
            "displayName-count-one": "Panamaischer Balboa",
            "displayName-count-other": "Panamaische Balboas",
            "symbol": "PAB"
          },
          "PEI": {
            "displayName": "Peruanischer Inti",
            "displayName-count-one": "Peruanische Inti",
            "displayName-count-other": "Peruanische Inti",
            "symbol": "PEI"
          },
          "PEN": {
            "displayName": "Peruanischer Sol",
            "displayName-count-one": "Peruanischer Sol",
            "displayName-count-other": "Peruanische Sol",
            "symbol": "PEN"
          },
          "PES": {
            "displayName": "Peruanischer Sol (1863–1965)",
            "displayName-count-one": "Peruanischer Sol (1863–1965)",
            "displayName-count-other": "Peruanische Sol (1863–1965)",
            "symbol": "PES"
          },
          "PGK": {
            "displayName": "Papua-Neuguineischer Kina",
            "displayName-count-one": "Papua-Neuguineischer Kina",
            "displayName-count-other": "Papua-Neuguineische Kina",
            "symbol": "PGK"
          },
          "PHP": {
            "displayName": "Philippinischer Peso",
            "displayName-count-one": "Philippinischer Peso",
            "displayName-count-other": "Philippinische Pesos",
            "symbol": "PHP",
            "symbol-alt-narrow": "₱"
          },
          "PKR": {
            "displayName": "Pakistanische Rupie",
            "displayName-count-one": "Pakistanische Rupie",
            "displayName-count-other": "Pakistanische Rupien",
            "symbol": "PKR",
            "symbol-alt-narrow": "Rs"
          },
          "PLN": {
            "displayName": "Polnischer Złoty",
            "displayName-count-one": "Polnischer Złoty",
            "displayName-count-other": "Polnische Złoty",
            "symbol": "PLN",
            "symbol-alt-narrow": "zł"
          },
          "PLZ": {
            "displayName": "Polnischer Zloty (1950–1995)",
            "displayName-count-one": "Polnischer Zloty (1950–1995)",
            "displayName-count-other": "Polnische Zloty (1950–1995)",
            "symbol": "PLZ"
          },
          "PTE": {
            "displayName": "Portugiesischer Escudo",
            "displayName-count-one": "Portugiesische Escudo",
            "displayName-count-other": "Portugiesische Escudo",
            "symbol": "PTE"
          },
          "PYG": {
            "displayName": "Paraguayischer Guaraní",
            "displayName-count-one": "Paraguayischer Guaraní",
            "displayName-count-other": "Paraguayische Guaraníes",
            "symbol": "PYG",
            "symbol-alt-narrow": "₲"
          },
          "QAR": {
            "displayName": "Katar-Riyal",
            "displayName-count-one": "Katar-Riyal",
            "displayName-count-other": "Katar-Riyal",
            "symbol": "QAR"
          },
          "RHD": {
            "displayName": "Rhodesischer Dollar",
            "displayName-count-one": "Rhodesische Dollar",
            "displayName-count-other": "Rhodesische Dollar",
            "symbol": "RHD"
          },
          "ROL": {
            "displayName": "Rumänischer Leu (1952–2006)",
            "displayName-count-one": "Rumänischer Leu (1952–2006)",
            "displayName-count-other": "Rumänische Leu (1952–2006)",
            "symbol": "ROL"
          },
          "RON": {
            "displayName": "Rumänischer Leu",
            "displayName-count-one": "Rumänischer Leu",
            "displayName-count-other": "Rumänische Leu",
            "symbol": "RON",
            "symbol-alt-narrow": "L"
          },
          "RSD": {
            "displayName": "Serbischer Dinar",
            "displayName-count-one": "Serbischer Dinar",
            "displayName-count-other": "Serbische Dinaren",
            "symbol": "RSD"
          },
          "RUB": {
            "displayName": "Russischer Rubel",
            "displayName-count-one": "Russischer Rubel",
            "displayName-count-other": "Russische Rubel",
            "symbol": "RUB",
            "symbol-alt-narrow": "₽"
          },
          "RUR": {
            "displayName": "Russischer Rubel (1991–1998)",
            "displayName-count-one": "Russischer Rubel (1991–1998)",
            "displayName-count-other": "Russische Rubel (1991–1998)",
            "symbol": "RUR",
            "symbol-alt-narrow": "р."
          },
          "RWF": {
            "displayName": "Ruanda-Franc",
            "displayName-count-one": "Ruanda-Franc",
            "displayName-count-other": "Ruanda-Francs",
            "symbol": "RWF",
            "symbol-alt-narrow": "F.Rw"
          },
          "SAR": {
            "displayName": "Saudi-Rial",
            "displayName-count-one": "Saudi-Rial",
            "displayName-count-other": "Saudi-Rial",
            "symbol": "SAR"
          },
          "SBD": {
            "displayName": "Salomonen-Dollar",
            "displayName-count-one": "Salomonen-Dollar",
            "displayName-count-other": "Salomonen-Dollar",
            "symbol": "SBD",
            "symbol-alt-narrow": "$"
          },
          "SCR": {
            "displayName": "Seychellen-Rupie",
            "displayName-count-one": "Seychellen-Rupie",
            "displayName-count-other": "Seychellen-Rupien",
            "symbol": "SCR"
          },
          "SDD": {
            "displayName": "Sudanesischer Dinar (1992–2007)",
            "displayName-count-one": "Sudanesischer Dinar (1992–2007)",
            "displayName-count-other": "Sudanesische Dinar (1992–2007)",
            "symbol": "SDD"
          },
          "SDG": {
            "displayName": "Sudanesisches Pfund",
            "displayName-count-one": "Sudanesisches Pfund",
            "displayName-count-other": "Sudanesische Pfund",
            "symbol": "SDG"
          },
          "SDP": {
            "displayName": "Sudanesisches Pfund (1957–1998)",
            "displayName-count-one": "Sudanesisches Pfund (1957–1998)",
            "displayName-count-other": "Sudanesische Pfund (1957–1998)",
            "symbol": "SDP"
          },
          "SEK": {
            "displayName": "Schwedische Krone",
            "displayName-count-one": "Schwedische Krone",
            "displayName-count-other": "Schwedische Kronen",
            "symbol": "SEK",
            "symbol-alt-narrow": "kr"
          },
          "SGD": {
            "displayName": "Singapur-Dollar",
            "displayName-count-one": "Singapur-Dollar",
            "displayName-count-other": "Singapur-Dollar",
            "symbol": "SGD",
            "symbol-alt-narrow": "$"
          },
          "SHP": {
            "displayName": "St. Helena-Pfund",
            "displayName-count-one": "St. Helena-Pfund",
            "displayName-count-other": "St. Helena-Pfund",
            "symbol": "SHP",
            "symbol-alt-narrow": "£"
          },
          "SIT": {
            "displayName": "Slowenischer Tolar",
            "displayName-count-one": "Slowenischer Tolar",
            "displayName-count-other": "Slowenische Tolar",
            "symbol": "SIT"
          },
          "SKK": {
            "displayName": "Slowakische Krone",
            "displayName-count-one": "Slowakische Kronen",
            "displayName-count-other": "Slowakische Kronen",
            "symbol": "SKK"
          },
          "SLL": {
            "displayName": "Sierra-leonischer Leone",
            "displayName-count-one": "Sierra-leonischer Leone",
            "displayName-count-other": "Sierra-leonische Leones",
            "symbol": "SLL"
          },
          "SOS": {
            "displayName": "Somalia-Schilling",
            "displayName-count-one": "Somalia-Schilling",
            "displayName-count-other": "Somalia-Schilling",
            "symbol": "SOS"
          },
          "SRD": {
            "displayName": "Suriname-Dollar",
            "displayName-count-one": "Suriname-Dollar",
            "displayName-count-other": "Suriname-Dollar",
            "symbol": "SRD",
            "symbol-alt-narrow": "$"
          },
          "SRG": {
            "displayName": "Suriname Gulden",
            "displayName-count-one": "Suriname-Gulden",
            "displayName-count-other": "Suriname-Gulden",
            "symbol": "SRG"
          },
          "SSP": {
            "displayName": "Südsudanesisches Pfund",
            "displayName-count-one": "Südsudanesisches Pfund",
            "displayName-count-other": "Südsudanesische Pfund",
            "symbol": "SSP",
            "symbol-alt-narrow": "£"
          },
          "STD": {
            "displayName": "São-toméischer Dobra",
            "displayName-count-one": "São-toméischer Dobra",
            "displayName-count-other": "São-toméische Dobra",
            "symbol": "STD",
            "symbol-alt-narrow": "Db"
          },
          "SUR": {
            "displayName": "Sowjetischer Rubel",
            "displayName-count-one": "Sowjetische Rubel",
            "displayName-count-other": "Sowjetische Rubel",
            "symbol": "SUR"
          },
          "SVC": {
            "displayName": "El Salvador Colon",
            "displayName-count-one": "El Salvador-Colon",
            "displayName-count-other": "El Salvador-Colon",
            "symbol": "SVC"
          },
          "SYP": {
            "displayName": "Syrisches Pfund",
            "displayName-count-one": "Syrisches Pfund",
            "displayName-count-other": "Syrische Pfund",
            "symbol": "SYP",
            "symbol-alt-narrow": "SYP"
          },
          "SZL": {
            "displayName": "Swasiländischer Lilangeni",
            "displayName-count-one": "Swasiländischer Lilangeni",
            "displayName-count-other": "Swasiländische Emalangeni",
            "symbol": "SZL"
          },
          "THB": {
            "displayName": "Thailändischer Baht",
            "displayName-count-one": "Thailändischer Baht",
            "displayName-count-other": "Thailändische Baht",
            "symbol": "฿",
            "symbol-alt-narrow": "฿"
          },
          "TJR": {
            "displayName": "Tadschikistan Rubel",
            "displayName-count-one": "Tadschikistan-Rubel",
            "displayName-count-other": "Tadschikistan-Rubel",
            "symbol": "TJR"
          },
          "TJS": {
            "displayName": "Tadschikistan-Somoni",
            "displayName-count-one": "Tadschikistan-Somoni",
            "displayName-count-other": "Tadschikistan-Somoni",
            "symbol": "TJS"
          },
          "TMM": {
            "displayName": "Turkmenistan-Manat (1993–2009)",
            "displayName-count-one": "Turkmenistan-Manat (1993–2009)",
            "displayName-count-other": "Turkmenistan-Manat (1993–2009)",
            "symbol": "TMM"
          },
          "TMT": {
            "displayName": "Turkmenistan-Manat",
            "displayName-count-one": "Turkmenistan-Manat",
            "displayName-count-other": "Turkmenistan-Manat",
            "symbol": "TMT"
          },
          "TND": {
            "displayName": "Tunesischer Dinar",
            "displayName-count-one": "Tunesischer Dinar",
            "displayName-count-other": "Tunesische Dinar",
            "symbol": "TND"
          },
          "TOP": {
            "displayName": "Tongaischer Paʻanga",
            "displayName-count-one": "Tongaischer Paʻanga",
            "displayName-count-other": "Tongaische Paʻanga",
            "symbol": "TOP",
            "symbol-alt-narrow": "T$"
          },
          "TPE": {
            "displayName": "Timor-Escudo",
            "displayName-count-one": "Timor-Escudo",
            "displayName-count-other": "Timor-Escudo",
            "symbol": "TPE"
          },
          "TRL": {
            "displayName": "Türkische Lira (1922–2005)",
            "displayName-count-one": "Türkische Lira (1922–2005)",
            "displayName-count-other": "Türkische Lira (1922–2005)",
            "symbol": "TRL"
          },
          "TRY": {
            "displayName": "Türkische Lira",
            "displayName-count-one": "Türkische Lira",
            "displayName-count-other": "Türkische Lira",
            "symbol": "TRY",
            "symbol-alt-narrow": "₺",
            "symbol-alt-variant": "TL"
          },
          "TTD": {
            "displayName": "Trinidad und Tobago-Dollar",
            "displayName-count-one": "Trinidad und Tobago-Dollar",
            "displayName-count-other": "Trinidad und Tobago-Dollar",
            "symbol": "TTD",
            "symbol-alt-narrow": "$"
          },
          "TWD": {
            "displayName": "Neuer Taiwan-Dollar",
            "displayName-count-one": "Neuer Taiwan-Dollar",
            "displayName-count-other": "Neue Taiwan-Dollar",
            "symbol": "NT$",
            "symbol-alt-narrow": "NT$"
          },
          "TZS": {
            "displayName": "Tansania-Schilling",
            "displayName-count-one": "Tansania-Schilling",
            "displayName-count-other": "Tansania-Schilling",
            "symbol": "TZS"
          },
          "UAH": {
            "displayName": "Ukrainische Hrywnja",
            "displayName-count-one": "Ukrainische Hrywnja",
            "displayName-count-other": "Ukrainische Hrywen",
            "symbol": "UAH",
            "symbol-alt-narrow": "₴"
          },
          "UAK": {
            "displayName": "Ukrainischer Karbovanetz",
            "displayName-count-one": "Ukrainische Karbovanetz",
            "displayName-count-other": "Ukrainische Karbovanetz",
            "symbol": "UAK"
          },
          "UGS": {
            "displayName": "Uganda-Schilling (1966–1987)",
            "displayName-count-one": "Uganda-Schilling (1966–1987)",
            "displayName-count-other": "Uganda-Schilling (1966–1987)",
            "symbol": "UGS"
          },
          "UGX": {
            "displayName": "Uganda-Schilling",
            "displayName-count-one": "Uganda-Schilling",
            "displayName-count-other": "Uganda-Schilling",
            "symbol": "UGX"
          },
          "USD": {
            "displayName": "US-Dollar",
            "displayName-count-one": "US-Dollar",
            "displayName-count-other": "US-Dollar",
            "symbol": "$",
            "symbol-alt-narrow": "$"
          },
          "USN": {
            "displayName": "US Dollar (Nächster Tag)",
            "displayName-count-one": "US-Dollar (Nächster Tag)",
            "displayName-count-other": "US-Dollar (Nächster Tag)",
            "symbol": "USN"
          },
          "USS": {
            "displayName": "US Dollar (Gleicher Tag)",
            "displayName-count-one": "US-Dollar (Gleicher Tag)",
            "displayName-count-other": "US-Dollar (Gleicher Tag)",
            "symbol": "USS"
          },
          "UYI": {
            "displayName": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
            "displayName-count-one": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
            "displayName-count-other": "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
            "symbol": "UYI"
          },
          "UYP": {
            "displayName": "Uruguayischer Peso (1975–1993)",
            "displayName-count-one": "Uruguayischer Peso (1975–1993)",
            "displayName-count-other": "Uruguayische Pesos (1975–1993)",
            "symbol": "UYP"
          },
          "UYU": {
            "displayName": "Uruguayischer Peso",
            "displayName-count-one": "Uruguayischer Peso",
            "displayName-count-other": "Uruguayische Pesos",
            "symbol": "UYU",
            "symbol-alt-narrow": "$"
          },
          "UZS": {
            "displayName": "Usbekistan-Sum",
            "displayName-count-one": "Usbekistan-Sum",
            "displayName-count-other": "Usbekistan-Sum",
            "symbol": "UZS"
          },
          "VEB": {
            "displayName": "Venezolanischer Bolívar (1871–2008)",
            "displayName-count-one": "Venezolanischer Bolívar (1871–2008)",
            "displayName-count-other": "Venezolanische Bolívares (1871–2008)",
            "symbol": "VEB"
          },
          "VEF": {
            "displayName": "Venezolanischer Bolívar",
            "displayName-count-one": "Venezolanischer Bolívar",
            "displayName-count-other": "Venezolanische Bolívares",
            "symbol": "VEF",
            "symbol-alt-narrow": "Bs"
          },
          "VND": {
            "displayName": "Vietnamesischer Dong",
            "displayName-count-one": "Vietnamesischer Dong",
            "displayName-count-other": "Vietnamesische Dong",
            "symbol": "₫",
            "symbol-alt-narrow": "₫"
          },
          "VNN": {
            "displayName": "Vietnamesischer Dong(1978–1985)",
            "displayName-count-one": "Vietnamesischer Dong(1978–1985)",
            "displayName-count-other": "Vietnamesische Dong(1978–1985)",
            "symbol": "VNN"
          },
          "VUV": {
            "displayName": "Vanuatu-Vatu",
            "displayName-count-one": "Vanuatu-Vatu",
            "displayName-count-other": "Vanuatu-Vatu",
            "symbol": "VUV"
          },
          "WST": {
            "displayName": "Samoanischer Tala",
            "displayName-count-one": "Samoanischer Tala",
            "displayName-count-other": "Samoanische Tala",
            "symbol": "WST"
          },
          "XAF": {
            "displayName": "CFA-Franc (BEAC)",
            "displayName-count-one": "CFA-Franc (BEAC)",
            "displayName-count-other": "CFA-Franc (BEAC)",
            "symbol": "FCFA"
          },
          "XAG": {
            "displayName": "Unze Silber",
            "displayName-count-one": "Unze Silber",
            "displayName-count-other": "Unzen Silber",
            "symbol": "XAG"
          },
          "XAU": {
            "displayName": "Unze Gold",
            "displayName-count-one": "Unze Gold",
            "displayName-count-other": "Unzen Gold",
            "symbol": "XAU"
          },
          "XBA": {
            "displayName": "Europäische Rechnungseinheit",
            "displayName-count-one": "Europäische Rechnungseinheiten",
            "displayName-count-other": "Europäische Rechnungseinheiten",
            "symbol": "XBA"
          },
          "XBB": {
            "displayName": "Europäische Währungseinheit (XBB)",
            "displayName-count-one": "Europäische Währungseinheiten (XBB)",
            "displayName-count-other": "Europäische Währungseinheiten (XBB)",
            "symbol": "XBB"
          },
          "XBC": {
            "displayName": "Europäische Rechnungseinheit (XBC)",
            "displayName-count-one": "Europäische Rechnungseinheiten (XBC)",
            "displayName-count-other": "Europäische Rechnungseinheiten (XBC)",
            "symbol": "XBC"
          },
          "XBD": {
            "displayName": "Europäische Rechnungseinheit (XBD)",
            "displayName-count-one": "Europäische Rechnungseinheiten (XBD)",
            "displayName-count-other": "Europäische Rechnungseinheiten (XBD)",
            "symbol": "XBD"
          },
          "XCD": {
            "displayName": "Ostkaribischer Dollar",
            "displayName-count-one": "Ostkaribischer Dollar",
            "displayName-count-other": "Ostkaribische Dollar",
            "symbol": "EC$",
            "symbol-alt-narrow": "$"
          },
          "XDR": {
            "displayName": "Sonderziehungsrechte",
            "displayName-count-one": "Sonderziehungsrechte",
            "displayName-count-other": "Sonderziehungsrechte",
            "symbol": "XDR"
          },
          "XEU": {
            "displayName": "Europäische Währungseinheit (XEU)",
            "displayName-count-one": "Europäische Währungseinheiten (XEU)",
            "displayName-count-other": "Europäische Währungseinheiten (XEU)",
            "symbol": "XEU"
          },
          "XFO": {
            "displayName": "Französischer Gold-Franc",
            "displayName-count-one": "Französische Gold-Franc",
            "displayName-count-other": "Französische Gold-Franc",
            "symbol": "XFO"
          },
          "XFU": {
            "displayName": "Französischer UIC-Franc",
            "displayName-count-one": "Französische UIC-Franc",
            "displayName-count-other": "Französische UIC-Franc",
            "symbol": "XFU"
          },
          "XOF": {
            "displayName": "CFA-Franc (BCEAO)",
            "displayName-count-one": "CFA-Franc (BCEAO)",
            "displayName-count-other": "CFA-Francs (BCEAO)",
            "symbol": "CFA"
          },
          "XPD": {
            "displayName": "Unze Palladium",
            "displayName-count-one": "Unze Palladium",
            "displayName-count-other": "Unzen Palladium",
            "symbol": "XPD"
          },
          "XPF": {
            "displayName": "CFP-Franc",
            "displayName-count-one": "CFP-Franc",
            "displayName-count-other": "CFP-Franc",
            "symbol": "CFPF"
          },
          "XPT": {
            "displayName": "Unze Platin",
            "displayName-count-one": "Unze Platin",
            "displayName-count-other": "Unzen Platin",
            "symbol": "XPT"
          },
          "XRE": {
            "displayName": "RINET Funds",
            "displayName-count-one": "RINET Funds",
            "displayName-count-other": "RINET Funds",
            "symbol": "XRE"
          },
          "XSU": {
            "displayName": "SUCRE",
            "displayName-count-one": "SUCRE",
            "displayName-count-other": "SUCRE",
            "symbol": "XSU"
          },
          "XTS": {
            "displayName": "Testwährung",
            "displayName-count-one": "Testwährung",
            "displayName-count-other": "Testwährung",
            "symbol": "XTS"
          },
          "XUA": {
            "displayName": "Rechnungseinheit der AfEB",
            "displayName-count-one": "Rechnungseinheit der AfEB",
            "displayName-count-other": "Rechnungseinheiten der AfEB",
            "symbol": "XUA"
          },
          "XXX": {
            "displayName": "Unbekannte Währung",
            "displayName-count-one": "(unbekannte Währung)",
            "displayName-count-other": "(unbekannte Währung)",
            "symbol": "XXX"
          },
          "YDD": {
            "displayName": "Jemen-Dinar",
            "displayName-count-one": "Jemen-Dinar",
            "displayName-count-other": "Jemen-Dinar",
            "symbol": "YDD"
          },
          "YER": {
            "displayName": "Jemen-Rial",
            "displayName-count-one": "Jemen-Rial",
            "displayName-count-other": "Jemen-Rial",
            "symbol": "YER"
          },
          "YUD": {
            "displayName": "Jugoslawischer Dinar (1966–1990)",
            "displayName-count-one": "Jugoslawischer Dinar (1966–1990)",
            "displayName-count-other": "Jugoslawische Dinar (1966–1990)",
            "symbol": "YUD"
          },
          "YUM": {
            "displayName": "Jugoslawischer Neuer Dinar (1994–2002)",
            "displayName-count-one": "Jugoslawischer Neuer Dinar (1994–2002)",
            "displayName-count-other": "Jugoslawische Neue Dinar (1994–2002)",
            "symbol": "YUM"
          },
          "YUN": {
            "displayName": "Jugoslawischer Dinar (konvertibel)",
            "displayName-count-one": "Jugoslawische Dinar (konvertibel)",
            "displayName-count-other": "Jugoslawische Dinar (konvertibel)",
            "symbol": "YUN"
          },
          "YUR": {
            "displayName": "Jugoslawischer reformierter Dinar (1992–1993)",
            "displayName-count-one": "Jugoslawischer reformierter Dinar (1992–1993)",
            "displayName-count-other": "Jugoslawische reformierte Dinar (1992–1993)",
            "symbol": "YUR"
          },
          "ZAL": {
            "displayName": "Südafrikanischer Rand (Finanz)",
            "displayName-count-one": "Südafrikanischer Rand (Finanz)",
            "displayName-count-other": "Südafrikanischer Rand (Finanz)",
            "symbol": "ZAL"
          },
          "ZAR": {
            "displayName": "Südafrikanischer Rand",
            "displayName-count-one": "Südafrikanischer Rand",
            "displayName-count-other": "Südafrikanische Rand",
            "symbol": "ZAR",
            "symbol-alt-narrow": "R"
          },
          "ZMK": {
            "displayName": "Kwacha (1968–2012)",
            "displayName-count-one": "Kwacha (1968–2012)",
            "displayName-count-other": "Kwacha (1968–2012)",
            "symbol": "ZMK"
          },
          "ZMW": {
            "displayName": "Kwacha",
            "displayName-count-one": "Kwacha",
            "displayName-count-other": "Kwacha",
            "symbol": "ZMW",
            "symbol-alt-narrow": "K"
          },
          "ZRN": {
            "displayName": "Zaire-Neuer Zaïre (1993–1998)",
            "displayName-count-one": "Zaire-Neuer Zaïre (1993–1998)",
            "displayName-count-other": "Zaire-Neue Zaïre (1993–1998)",
            "symbol": "ZRN"
          },
          "ZRZ": {
            "displayName": "Zaire-Zaïre (1971–1993)",
            "displayName-count-one": "Zaire-Zaïre (1971–1993)",
            "displayName-count-other": "Zaire-Zaïre (1971–1993)",
            "symbol": "ZRZ"
          },
          "ZWD": {
            "displayName": "Simbabwe-Dollar (1980–2008)",
            "displayName-count-one": "Simbabwe-Dollar (1980–2008)",
            "displayName-count-other": "Simbabwe-Dollar (1980–2008)",
            "symbol": "ZWD"
          },
          "ZWL": {
            "displayName": "Simbabwe-Dollar (2009)",
            "displayName-count-one": "Simbabwe-Dollar (2009)",
            "displayName-count-other": "Simbabwe-Dollar (2009)",
            "symbol": "ZWL"
          },
          "ZWR": {
            "displayName": "Simbabwe-Dollar (2008)",
            "displayName-count-one": "Simbabwe-Dollar (2008)",
            "displayName-count-other": "Simbabwe-Dollar (2008)",
            "symbol": "ZWR"
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31";
                }
                "language";
                "de";
            }
            "numbers";
            {
                "currencies";
                {
                    "ADP";
                    {
                        "displayName";
                        "Andorranische Pesete",
                            "displayName-count-one";
                        "Andorranische Pesete",
                            "displayName-count-other";
                        "Andorranische Peseten",
                            "symbol";
                        "ADP";
                    }
                    "AED";
                    {
                        "displayName";
                        "VAE-Dirham",
                            "displayName-count-one";
                        "VAE-Dirham",
                            "displayName-count-other";
                        "VAE-Dirham",
                            "symbol";
                        "AED";
                    }
                    "AFA";
                    {
                        "displayName";
                        "Afghanische Afghani (1927–2002)",
                            "displayName-count-one";
                        "Afghanische Afghani (1927–2002)",
                            "displayName-count-other";
                        "Afghanische Afghani (1927–2002)",
                            "symbol";
                        "AFA";
                    }
                    "AFN";
                    {
                        "displayName";
                        "Afghanischer Afghani",
                            "displayName-count-one";
                        "Afghanischer Afghani",
                            "displayName-count-other";
                        "Afghanische Afghani",
                            "symbol";
                        "AFN";
                    }
                    "ALK";
                    {
                        "displayName";
                        "Albanischer Lek (1946–1965)",
                            "displayName-count-one";
                        "Albanischer Lek (1946–1965)",
                            "displayName-count-other";
                        "Albanische Lek (1946–1965)";
                    }
                    "ALL";
                    {
                        "displayName";
                        "Albanischer Lek",
                            "displayName-count-one";
                        "Albanischer Lek",
                            "displayName-count-other";
                        "Albanische Lek",
                            "symbol";
                        "ALL";
                    }
                    "AMD";
                    {
                        "displayName";
                        "Armenischer Dram",
                            "displayName-count-one";
                        "Armenischer Dram",
                            "displayName-count-other";
                        "Armenische Dram",
                            "symbol";
                        "AMD";
                    }
                    "ANG";
                    {
                        "displayName";
                        "Niederländische-Antillen-Gulden",
                            "displayName-count-one";
                        "Niederländische-Antillen-Gulden",
                            "displayName-count-other";
                        "Niederländische-Antillen-Gulden",
                            "symbol";
                        "ANG";
                    }
                    "AOA";
                    {
                        "displayName";
                        "Angolanischer Kwanza",
                            "displayName-count-one";
                        "Angolanischer Kwanza",
                            "displayName-count-other";
                        "Angolanische Kwanza",
                            "symbol";
                        "AOA",
                            "symbol-alt-narrow";
                        "Kz";
                    }
                    "AOK";
                    {
                        "displayName";
                        "Angolanischer Kwanza (1977–1990)",
                            "displayName-count-one";
                        "Angolanischer Kwanza (1977–1990)",
                            "displayName-count-other";
                        "Angolanische Kwanza (1977–1990)",
                            "symbol";
                        "AOK";
                    }
                    "AON";
                    {
                        "displayName";
                        "Angolanischer Neuer Kwanza (1990–2000)",
                            "displayName-count-one";
                        "Angolanischer Neuer Kwanza (1990–2000)",
                            "displayName-count-other";
                        "Angolanische Neue Kwanza (1990–2000)",
                            "symbol";
                        "AON";
                    }
                    "AOR";
                    {
                        "displayName";
                        "Angolanischer Kwanza Reajustado (1995–1999)",
                            "displayName-count-one";
                        "Angolanischer Kwanza Reajustado (1995–1999)",
                            "displayName-count-other";
                        "Angolanische Kwanza Reajustado (1995–1999)",
                            "symbol";
                        "AOR";
                    }
                    "ARA";
                    {
                        "displayName";
                        "Argentinischer Austral",
                            "displayName-count-one";
                        "Argentinischer Austral",
                            "displayName-count-other";
                        "Argentinische Austral",
                            "symbol";
                        "ARA";
                    }
                    "ARL";
                    {
                        "displayName";
                        "Argentinischer Peso Ley (1970–1983)",
                            "displayName-count-one";
                        "Argentinischer Peso Ley (1970–1983)",
                            "displayName-count-other";
                        "Argentinische Pesos Ley (1970–1983)",
                            "symbol";
                        "ARL";
                    }
                    "ARM";
                    {
                        "displayName";
                        "Argentinischer Peso (1881–1970)",
                            "displayName-count-one";
                        "Argentinischer Peso (1881–1970)",
                            "displayName-count-other";
                        "Argentinische Pesos (1881–1970)",
                            "symbol";
                        "ARM";
                    }
                    "ARP";
                    {
                        "displayName";
                        "Argentinischer Peso (1983–1985)",
                            "displayName-count-one";
                        "Argentinischer Peso (1983–1985)",
                            "displayName-count-other";
                        "Argentinische Peso (1983–1985)",
                            "symbol";
                        "ARP";
                    }
                    "ARS";
                    {
                        "displayName";
                        "Argentinischer Peso",
                            "displayName-count-one";
                        "Argentinischer Peso",
                            "displayName-count-other";
                        "Argentinische Pesos",
                            "symbol";
                        "ARS",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "ATS";
                    {
                        "displayName";
                        "Österreichischer Schilling",
                            "displayName-count-one";
                        "Österreichischer Schilling",
                            "displayName-count-other";
                        "Österreichische Schilling",
                            "symbol";
                        "öS";
                    }
                    "AUD";
                    {
                        "displayName";
                        "Australischer Dollar",
                            "displayName-count-one";
                        "Australischer Dollar",
                            "displayName-count-other";
                        "Australische Dollar",
                            "symbol";
                        "AU$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "AWG";
                    {
                        "displayName";
                        "Aruba-Florin",
                            "displayName-count-one";
                        "Aruba-Florin",
                            "displayName-count-other";
                        "Aruba-Florin",
                            "symbol";
                        "AWG";
                    }
                    "AZM";
                    {
                        "displayName";
                        "Aserbaidschan-Manat (1993–2006)",
                            "displayName-count-one";
                        "Aserbaidschan-Manat (1993–2006)",
                            "displayName-count-other";
                        "Aserbaidschan-Manat (1993–2006)",
                            "symbol";
                        "AZM";
                    }
                    "AZN";
                    {
                        "displayName";
                        "Aserbaidschan-Manat",
                            "displayName-count-one";
                        "Aserbaidschan-Manat",
                            "displayName-count-other";
                        "Aserbaidschan-Manat",
                            "symbol";
                        "AZN";
                    }
                    "BAD";
                    {
                        "displayName";
                        "Bosnien und Herzegowina Dinar (1992–1994)",
                            "displayName-count-one";
                        "Bosnien und Herzegowina Dinar (1992–1994)",
                            "displayName-count-other";
                        "Bosnien und Herzegowina Dinar (1992–1994)",
                            "symbol";
                        "BAD";
                    }
                    "BAM";
                    {
                        "displayName";
                        "Bosnien und Herzegowina Konvertierbare Mark",
                            "displayName-count-one";
                        "Bosnien und Herzegowina Konvertierbare Mark",
                            "displayName-count-other";
                        "Bosnien und Herzegowina Konvertierbare Mark",
                            "symbol";
                        "BAM",
                            "symbol-alt-narrow";
                        "KM";
                    }
                    "BAN";
                    {
                        "displayName";
                        "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
                            "displayName-count-one";
                        "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
                            "displayName-count-other";
                        "Bosnien und Herzegowina Neue Dinar (1994–1997)",
                            "symbol";
                        "BAN";
                    }
                    "BBD";
                    {
                        "displayName";
                        "Barbados-Dollar",
                            "displayName-count-one";
                        "Barbados-Dollar",
                            "displayName-count-other";
                        "Barbados-Dollar",
                            "symbol";
                        "BBD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BDT";
                    {
                        "displayName";
                        "Bangladesch-Taka",
                            "displayName-count-one";
                        "Bangladesch-Taka",
                            "displayName-count-other";
                        "Bangladesch-Taka",
                            "symbol";
                        "BDT",
                            "symbol-alt-narrow";
                        "৳";
                    }
                    "BEC";
                    {
                        "displayName";
                        "Belgischer Franc (konvertibel)",
                            "displayName-count-one";
                        "Belgischer Franc (konvertibel)",
                            "displayName-count-other";
                        "Belgische Franc (konvertibel)",
                            "symbol";
                        "BEC";
                    }
                    "BEF";
                    {
                        "displayName";
                        "Belgischer Franc",
                            "displayName-count-one";
                        "Belgischer Franc",
                            "displayName-count-other";
                        "Belgische Franc",
                            "symbol";
                        "BEF";
                    }
                    "BEL";
                    {
                        "displayName";
                        "Belgischer Finanz-Franc",
                            "displayName-count-one";
                        "Belgischer Finanz-Franc",
                            "displayName-count-other";
                        "Belgische Finanz-Franc",
                            "symbol";
                        "BEL";
                    }
                    "BGL";
                    {
                        "displayName";
                        "Bulgarische Lew (1962–1999)",
                            "displayName-count-one";
                        "Bulgarische Lew (1962–1999)",
                            "displayName-count-other";
                        "Bulgarische Lew (1962–1999)",
                            "symbol";
                        "BGL";
                    }
                    "BGM";
                    {
                        "displayName";
                        "Bulgarischer Lew (1952–1962)",
                            "displayName-count-one";
                        "Bulgarischer Lew (1952–1962)",
                            "displayName-count-other";
                        "Bulgarische Lew (1952–1962)",
                            "symbol";
                        "BGK";
                    }
                    "BGN";
                    {
                        "displayName";
                        "Bulgarischer Lew",
                            "displayName-count-one";
                        "Bulgarischer Lew",
                            "displayName-count-other";
                        "Bulgarische Lew",
                            "symbol";
                        "BGN";
                    }
                    "BGO";
                    {
                        "displayName";
                        "Bulgarischer Lew (1879–1952)",
                            "displayName-count-one";
                        "Bulgarischer Lew (1879–1952)",
                            "displayName-count-other";
                        "Bulgarische Lew (1879–1952)",
                            "symbol";
                        "BGJ";
                    }
                    "BHD";
                    {
                        "displayName";
                        "Bahrain-Dinar",
                            "displayName-count-one";
                        "Bahrain-Dinar",
                            "displayName-count-other";
                        "Bahrain-Dinar",
                            "symbol";
                        "BHD";
                    }
                    "BIF";
                    {
                        "displayName";
                        "Burundi-Franc",
                            "displayName-count-one";
                        "Burundi-Franc",
                            "displayName-count-other";
                        "Burundi-Francs",
                            "symbol";
                        "BIF";
                    }
                    "BMD";
                    {
                        "displayName";
                        "Bermuda-Dollar",
                            "displayName-count-one";
                        "Bermuda-Dollar",
                            "displayName-count-other";
                        "Bermuda-Dollar",
                            "symbol";
                        "BMD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BND";
                    {
                        "displayName";
                        "Brunei-Dollar",
                            "displayName-count-one";
                        "Brunei-Dollar",
                            "displayName-count-other";
                        "Brunei-Dollar",
                            "symbol";
                        "BND",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BOB";
                    {
                        "displayName";
                        "Bolivanischer Boliviano",
                            "displayName-count-one";
                        "Bolivanischer Boliviano",
                            "displayName-count-other";
                        "Bolivianische Bolivianos",
                            "symbol";
                        "BOB",
                            "symbol-alt-narrow";
                        "Bs";
                    }
                    "BOL";
                    {
                        "displayName";
                        "Bolivianischer Boliviano (1863–1963)",
                            "displayName-count-one";
                        "Bolivianischer Boliviano (1863–1963)",
                            "displayName-count-other";
                        "Bolivianische Bolivianos (1863–1963)",
                            "symbol";
                        "BOL";
                    }
                    "BOP";
                    {
                        "displayName";
                        "Bolivianischer Peso",
                            "displayName-count-one";
                        "Bolivianischer Peso",
                            "displayName-count-other";
                        "Bolivianische Peso",
                            "symbol";
                        "BOP";
                    }
                    "BOV";
                    {
                        "displayName";
                        "Boliviansiche Mvdol",
                            "displayName-count-one";
                        "Boliviansiche Mvdol",
                            "displayName-count-other";
                        "Bolivianische Mvdol",
                            "symbol";
                        "BOV";
                    }
                    "BRB";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro Novo (1967–1986)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro Novo (1967–1986)",
                            "displayName-count-other";
                        "Brasilianische Cruzeiro Novo (1967–1986)",
                            "symbol";
                        "BRB";
                    }
                    "BRC";
                    {
                        "displayName";
                        "Brasilianischer Cruzado (1986–1989)",
                            "displayName-count-one";
                        "Brasilianischer Cruzado (1986–1989)",
                            "displayName-count-other";
                        "Brasilianische Cruzado (1986–1989)",
                            "symbol";
                        "BRC";
                    }
                    "BRE";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro (1990–1993)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro (1990–1993)",
                            "displayName-count-other";
                        "Brasilianische Cruzeiro (1990–1993)",
                            "symbol";
                        "BRE";
                    }
                    "BRL";
                    {
                        "displayName";
                        "Brasilianischer Real",
                            "displayName-count-one";
                        "Brasilianischer Real",
                            "displayName-count-other";
                        "Brasilianische Real",
                            "symbol";
                        "R$",
                            "symbol-alt-narrow";
                        "R$";
                    }
                    "BRN";
                    {
                        "displayName";
                        "Brasilianischer Cruzado Novo (1989–1990)",
                            "displayName-count-one";
                        "Brasilianischer Cruzado Novo (1989–1990)",
                            "displayName-count-other";
                        "Brasilianische Cruzado Novo (1989–1990)",
                            "symbol";
                        "BRN";
                    }
                    "BRR";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro (1993–1994)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro (1993–1994)",
                            "displayName-count-other";
                        "Brasilianische Cruzeiro (1993–1994)",
                            "symbol";
                        "BRR";
                    }
                    "BRZ";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro (1942–1967)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro (1942–1967)",
                            "displayName-count-other";
                        "Brasilianischer Cruzeiro (1942–1967)",
                            "symbol";
                        "BRZ";
                    }
                    "BSD";
                    {
                        "displayName";
                        "Bahamas-Dollar",
                            "displayName-count-one";
                        "Bahamas-Dollar",
                            "displayName-count-other";
                        "Bahamas-Dollar",
                            "symbol";
                        "BSD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BTN";
                    {
                        "displayName";
                        "Bhutan-Ngultrum",
                            "displayName-count-one";
                        "Bhutan-Ngultrum",
                            "displayName-count-other";
                        "Bhutan-Ngultrum",
                            "symbol";
                        "BTN";
                    }
                    "BUK";
                    {
                        "displayName";
                        "Birmanischer Kyat",
                            "displayName-count-one";
                        "Birmanischer Kyat",
                            "displayName-count-other";
                        "Birmanische Kyat",
                            "symbol";
                        "BUK";
                    }
                    "BWP";
                    {
                        "displayName";
                        "Botswanischer Pula",
                            "displayName-count-one";
                        "Botswanischer Pula",
                            "displayName-count-other";
                        "Botswanische Pula",
                            "symbol";
                        "BWP",
                            "symbol-alt-narrow";
                        "P";
                    }
                    "BYB";
                    {
                        "displayName";
                        "Belarus-Rubel (1994–1999)",
                            "displayName-count-one";
                        "Belarus-Rubel (1994–1999)",
                            "displayName-count-other";
                        "Belarus-Rubel (1994–1999)",
                            "symbol";
                        "BYB";
                    }
                    "BYN";
                    {
                        "displayName";
                        "Weißrussischer Rubel",
                            "displayName-count-one";
                        "Weißrussischer Rubel",
                            "displayName-count-other";
                        "Weißrussische Rubel",
                            "symbol";
                        "BYN",
                            "symbol-alt-narrow";
                        "р.";
                    }
                    "BYR";
                    {
                        "displayName";
                        "Weißrussischer Rubel (2000–2016)",
                            "displayName-count-one";
                        "Weißrussischer Rubel (2000–2016)",
                            "displayName-count-other";
                        "Weißrussische Rubel (2000–2016)",
                            "symbol";
                        "BYR";
                    }
                    "BZD";
                    {
                        "displayName";
                        "Belize-Dollar",
                            "displayName-count-one";
                        "Belize-Dollar",
                            "displayName-count-other";
                        "Belize-Dollar",
                            "symbol";
                        "BZD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CAD";
                    {
                        "displayName";
                        "Kanadischer Dollar",
                            "displayName-count-one";
                        "Kanadischer Dollar",
                            "displayName-count-other";
                        "Kanadische Dollar",
                            "symbol";
                        "CA$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CDF";
                    {
                        "displayName";
                        "Kongo-Franc",
                            "displayName-count-one";
                        "Kongo-Franc",
                            "displayName-count-other";
                        "Kongo-Francs",
                            "symbol";
                        "CDF";
                    }
                    "CHE";
                    {
                        "displayName";
                        "WIR-Euro",
                            "displayName-count-one";
                        "WIR-Euro",
                            "displayName-count-other";
                        "WIR-Euro",
                            "symbol";
                        "CHE";
                    }
                    "CHF";
                    {
                        "displayName";
                        "Schweizer Franken",
                            "displayName-count-one";
                        "Schweizer Franken",
                            "displayName-count-other";
                        "Schweizer Franken",
                            "symbol";
                        "CHF";
                    }
                    "CHW";
                    {
                        "displayName";
                        "WIR Franken",
                            "displayName-count-one";
                        "WIR Franken",
                            "displayName-count-other";
                        "WIR Franken",
                            "symbol";
                        "CHW";
                    }
                    "CLE";
                    {
                        "displayName";
                        "Chilenischer Escudo",
                            "displayName-count-one";
                        "Chilenischer Escudo",
                            "displayName-count-other";
                        "Chilenische Escudo",
                            "symbol";
                        "CLE";
                    }
                    "CLF";
                    {
                        "displayName";
                        "Chilenische Unidades de Fomento",
                            "displayName-count-one";
                        "Chilenische Unidades de Fomento",
                            "displayName-count-other";
                        "Chilenische Unidades de Fomento",
                            "symbol";
                        "CLF";
                    }
                    "CLP";
                    {
                        "displayName";
                        "Chilenischer Peso",
                            "displayName-count-one";
                        "Chilenischer Peso",
                            "displayName-count-other";
                        "Chilenische Pesos",
                            "symbol";
                        "CLP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CNX";
                    {
                        "displayName";
                        "Dollar der Chinesischen Volksbank",
                            "displayName-count-one";
                        "Dollar der Chinesischen Volksbank",
                            "displayName-count-other";
                        "Dollar der Chinesischen Volksbank",
                            "symbol";
                        "CNX";
                    }
                    "CNY";
                    {
                        "displayName";
                        "Renminbi Yuan",
                            "displayName-count-one";
                        "Chinesischer Yuan",
                            "displayName-count-other";
                        "Renminbi Yuan",
                            "symbol";
                        "CN¥",
                            "symbol-alt-narrow";
                        "¥";
                    }
                    "COP";
                    {
                        "displayName";
                        "Kolumbianischer Peso",
                            "displayName-count-one";
                        "Kolumbianischer Peso",
                            "displayName-count-other";
                        "Kolumbianische Pesos",
                            "symbol";
                        "COP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "COU";
                    {
                        "displayName";
                        "Kolumbianische Unidades de valor real",
                            "displayName-count-one";
                        "Kolumbianische Unidad de valor real",
                            "displayName-count-other";
                        "Kolumbianische Unidades de valor real",
                            "symbol";
                        "COU";
                    }
                    "CRC";
                    {
                        "displayName";
                        "Costa-Rica-Colón",
                            "displayName-count-one";
                        "Costa-Rica-Colón",
                            "displayName-count-other";
                        "Costa-Rica-Colón",
                            "symbol";
                        "CRC",
                            "symbol-alt-narrow";
                        "₡";
                    }
                    "CSD";
                    {
                        "displayName";
                        "Serbischer Dinar (2002–2006)",
                            "displayName-count-one";
                        "Serbischer Dinar (2002–2006)",
                            "displayName-count-other";
                        "Serbische Dinar (2002–2006)",
                            "symbol";
                        "CSD";
                    }
                    "CSK";
                    {
                        "displayName";
                        "Tschechoslowakische Krone",
                            "displayName-count-one";
                        "Tschechoslowakische Kronen",
                            "displayName-count-other";
                        "Tschechoslowakische Kronen",
                            "symbol";
                        "CSK";
                    }
                    "CUC";
                    {
                        "displayName";
                        "Kubanischer Peso (konvertibel)",
                            "displayName-count-one";
                        "Kubanischer Peso (konvertibel)",
                            "displayName-count-other";
                        "Kubanische Pesos (konvertibel)",
                            "symbol";
                        "CUC",
                            "symbol-alt-narrow";
                        "Cub$";
                    }
                    "CUP";
                    {
                        "displayName";
                        "Kubanischer Peso",
                            "displayName-count-one";
                        "Kubanischer Peso",
                            "displayName-count-other";
                        "Kubanische Pesos",
                            "symbol";
                        "CUP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CVE";
                    {
                        "displayName";
                        "Cabo-Verde-Escudo",
                            "displayName-count-one";
                        "Cabo-Verde-Escudo",
                            "displayName-count-other";
                        "Cabo-Verde-Escudos",
                            "symbol";
                        "CVE";
                    }
                    "CYP";
                    {
                        "displayName";
                        "Zypern-Pfund",
                            "displayName-count-one";
                        "Zypern Pfund",
                            "displayName-count-other";
                        "Zypern Pfund",
                            "symbol";
                        "CYP";
                    }
                    "CZK";
                    {
                        "displayName";
                        "Tschechische Krone",
                            "displayName-count-one";
                        "Tschechische Krone",
                            "displayName-count-other";
                        "Tschechische Kronen",
                            "symbol";
                        "CZK",
                            "symbol-alt-narrow";
                        "Kč";
                    }
                    "DDM";
                    {
                        "displayName";
                        "Mark der DDR",
                            "displayName-count-one";
                        "Mark der DDR",
                            "displayName-count-other";
                        "Mark der DDR",
                            "symbol";
                        "DDM";
                    }
                    "DEM";
                    {
                        "displayName";
                        "Deutsche Mark",
                            "displayName-count-one";
                        "Deutsche Mark",
                            "displayName-count-other";
                        "Deutsche Mark",
                            "symbol";
                        "DM";
                    }
                    "DJF";
                    {
                        "displayName";
                        "Dschibuti-Franc",
                            "displayName-count-one";
                        "Dschibuti-Franc",
                            "displayName-count-other";
                        "Dschibuti-Franc",
                            "symbol";
                        "DJF";
                    }
                    "DKK";
                    {
                        "displayName";
                        "Dänische Krone",
                            "displayName-count-one";
                        "Dänische Krone",
                            "displayName-count-other";
                        "Dänische Kronen",
                            "symbol";
                        "DKK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "DOP";
                    {
                        "displayName";
                        "Dominikanischer Peso",
                            "displayName-count-one";
                        "Dominikanischer Peso",
                            "displayName-count-other";
                        "Dominikanische Pesos",
                            "symbol";
                        "DOP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "DZD";
                    {
                        "displayName";
                        "Algerischer Dinar",
                            "displayName-count-one";
                        "Algerischer Dinar",
                            "displayName-count-other";
                        "Algerische Dinar",
                            "symbol";
                        "DZD";
                    }
                    "ECS";
                    {
                        "displayName";
                        "Ecuadorianischer Sucre",
                            "displayName-count-one";
                        "Ecuadorianischer Sucre",
                            "displayName-count-other";
                        "Ecuadorianische Sucre",
                            "symbol";
                        "ECS";
                    }
                    "ECV";
                    {
                        "displayName";
                        "Verrechnungseinheit für Ecuador",
                            "displayName-count-one";
                        "Verrechnungseinheiten für Ecuador",
                            "displayName-count-other";
                        "Verrechnungseinheiten für Ecuador",
                            "symbol";
                        "ECV";
                    }
                    "EEK";
                    {
                        "displayName";
                        "Estnische Krone",
                            "displayName-count-one";
                        "Estnische Krone",
                            "displayName-count-other";
                        "Estnische Kronen",
                            "symbol";
                        "EEK";
                    }
                    "EGP";
                    {
                        "displayName";
                        "Ägyptisches Pfund",
                            "displayName-count-one";
                        "Ägyptisches Pfund",
                            "displayName-count-other";
                        "Ägyptische Pfund",
                            "symbol";
                        "EGP",
                            "symbol-alt-narrow";
                        "E£";
                    }
                    "ERN";
                    {
                        "displayName";
                        "Eritreischer Nakfa",
                            "displayName-count-one";
                        "Eritreischer Nakfa",
                            "displayName-count-other";
                        "Eritreische Nakfa",
                            "symbol";
                        "ERN";
                    }
                    "ESA";
                    {
                        "displayName";
                        "Spanische Peseta (A–Konten)",
                            "displayName-count-one";
                        "Spanische Peseta (A–Konten)",
                            "displayName-count-other";
                        "Spanische Peseten (A–Konten)",
                            "symbol";
                        "ESA";
                    }
                    "ESB";
                    {
                        "displayName";
                        "Spanische Peseta (konvertibel)",
                            "displayName-count-one";
                        "Spanische Peseta (konvertibel)",
                            "displayName-count-other";
                        "Spanische Peseten (konvertibel)",
                            "symbol";
                        "ESB";
                    }
                    "ESP";
                    {
                        "displayName";
                        "Spanische Peseta",
                            "displayName-count-one";
                        "Spanische Peseta",
                            "displayName-count-other";
                        "Spanische Peseten",
                            "symbol";
                        "ESP",
                            "symbol-alt-narrow";
                        "₧";
                    }
                    "ETB";
                    {
                        "displayName";
                        "Äthiopischer Birr",
                            "displayName-count-one";
                        "Äthiopischer Birr",
                            "displayName-count-other";
                        "Äthiopische Birr",
                            "symbol";
                        "ETB";
                    }
                    "EUR";
                    {
                        "displayName";
                        "Euro",
                            "displayName-count-one";
                        "Euro",
                            "displayName-count-other";
                        "Euro",
                            "symbol";
                        "€",
                            "symbol-alt-narrow";
                        "€";
                    }
                    "FIM";
                    {
                        "displayName";
                        "Finnische Mark",
                            "displayName-count-one";
                        "Finnische Mark",
                            "displayName-count-other";
                        "Finnische Mark",
                            "symbol";
                        "FIM";
                    }
                    "FJD";
                    {
                        "displayName";
                        "Fidschi-Dollar",
                            "displayName-count-one";
                        "Fidschi-Dollar",
                            "displayName-count-other";
                        "Fidschi-Dollar",
                            "symbol";
                        "FJD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "FKP";
                    {
                        "displayName";
                        "Falkland-Pfund",
                            "displayName-count-one";
                        "Falkland-Pfund",
                            "displayName-count-other";
                        "Falkland-Pfund",
                            "symbol";
                        "FKP",
                            "symbol-alt-narrow";
                        "Fl£";
                    }
                    "FRF";
                    {
                        "displayName";
                        "Französischer Franc",
                            "displayName-count-one";
                        "Französischer Franc",
                            "displayName-count-other";
                        "Französische Franc",
                            "symbol";
                        "FRF";
                    }
                    "GBP";
                    {
                        "displayName";
                        "Britisches Pfund",
                            "displayName-count-one";
                        "Britisches Pfund",
                            "displayName-count-other";
                        "Britische Pfund",
                            "symbol";
                        "£",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "GEK";
                    {
                        "displayName";
                        "Georgischer Kupon Larit",
                            "displayName-count-one";
                        "Georgischer Kupon Larit",
                            "displayName-count-other";
                        "Georgische Kupon Larit",
                            "symbol";
                        "GEK";
                    }
                    "GEL";
                    {
                        "displayName";
                        "Georgischer Lari",
                            "displayName-count-one";
                        "Georgischer Lari",
                            "displayName-count-other";
                        "Georgische Lari",
                            "symbol";
                        "GEL",
                            "symbol-alt-narrow";
                        "₾",
                            "symbol-alt-variant";
                        "₾";
                    }
                    "GHC";
                    {
                        "displayName";
                        "Ghanaischer Cedi (1979–2007)",
                            "displayName-count-one";
                        "Ghanaischer Cedi (1979–2007)",
                            "displayName-count-other";
                        "Ghanaische Cedi (1979–2007)",
                            "symbol";
                        "GHC";
                    }
                    "GHS";
                    {
                        "displayName";
                        "Ghanaischer Cedi",
                            "displayName-count-one";
                        "Ghanaischer Cedi",
                            "displayName-count-other";
                        "Ghanaische Cedi",
                            "symbol";
                        "GHS";
                    }
                    "GIP";
                    {
                        "displayName";
                        "Gibraltar-Pfund",
                            "displayName-count-one";
                        "Gibraltar-Pfund",
                            "displayName-count-other";
                        "Gibraltar Pfund",
                            "symbol";
                        "GIP",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "GMD";
                    {
                        "displayName";
                        "Gambia-Dalasi",
                            "displayName-count-one";
                        "Gambia-Dalasi",
                            "displayName-count-other";
                        "Gambia-Dalasi",
                            "symbol";
                        "GMD";
                    }
                    "GNF";
                    {
                        "displayName";
                        "Guinea-Franc",
                            "displayName-count-one";
                        "Guinea-Franc",
                            "displayName-count-other";
                        "Guinea-Franc",
                            "symbol";
                        "GNF",
                            "symbol-alt-narrow";
                        "F.G.";
                    }
                    "GNS";
                    {
                        "displayName";
                        "Guineischer Syli",
                            "displayName-count-one";
                        "Guineischer Syli",
                            "displayName-count-other";
                        "Guineische Syli",
                            "symbol";
                        "GNS";
                    }
                    "GQE";
                    {
                        "displayName";
                        "Äquatorialguinea-Ekwele",
                            "displayName-count-one";
                        "Äquatorialguinea-Ekwele",
                            "displayName-count-other";
                        "Äquatorialguinea-Ekwele",
                            "symbol";
                        "GQE";
                    }
                    "GRD";
                    {
                        "displayName";
                        "Griechische Drachme",
                            "displayName-count-one";
                        "Griechische Drachme",
                            "displayName-count-other";
                        "Griechische Drachmen",
                            "symbol";
                        "GRD";
                    }
                    "GTQ";
                    {
                        "displayName";
                        "Guatemaltekischer Quetzal",
                            "displayName-count-one";
                        "Guatemaltekischer Quetzal",
                            "displayName-count-other";
                        "Guatemaltekische Quetzales",
                            "symbol";
                        "GTQ",
                            "symbol-alt-narrow";
                        "Q";
                    }
                    "GWE";
                    {
                        "displayName";
                        "Portugiesisch Guinea Escudo",
                            "displayName-count-one";
                        "Portugiesisch Guinea Escudo",
                            "displayName-count-other";
                        "Portugiesisch Guinea Escudo",
                            "symbol";
                        "GWE";
                    }
                    "GWP";
                    {
                        "displayName";
                        "Guinea-Bissau Peso",
                            "displayName-count-one";
                        "Guinea-Bissau Peso",
                            "displayName-count-other";
                        "Guinea-Bissau Pesos",
                            "symbol";
                        "GWP";
                    }
                    "GYD";
                    {
                        "displayName";
                        "Guyana-Dollar",
                            "displayName-count-one";
                        "Guyana-Dollar",
                            "displayName-count-other";
                        "Guyana-Dollar",
                            "symbol";
                        "GYD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "HKD";
                    {
                        "displayName";
                        "Hongkong-Dollar",
                            "displayName-count-one";
                        "Hongkong-Dollar",
                            "displayName-count-other";
                        "Hongkong-Dollar",
                            "symbol";
                        "HK$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "HNL";
                    {
                        "displayName";
                        "Honduras-Lempira",
                            "displayName-count-one";
                        "Honduras-Lempira",
                            "displayName-count-other";
                        "Honduras-Lempira",
                            "symbol";
                        "HNL",
                            "symbol-alt-narrow";
                        "L";
                    }
                    "HRD";
                    {
                        "displayName";
                        "Kroatischer Dinar",
                            "displayName-count-one";
                        "Kroatischer Dinar",
                            "displayName-count-other";
                        "Kroatische Dinar",
                            "symbol";
                        "HRD";
                    }
                    "HRK";
                    {
                        "displayName";
                        "Kroatischer Kuna",
                            "displayName-count-one";
                        "Kroatischer Kuna",
                            "displayName-count-other";
                        "Kroatische Kuna",
                            "symbol";
                        "HRK",
                            "symbol-alt-narrow";
                        "kn";
                    }
                    "HTG";
                    {
                        "displayName";
                        "Haitianische Gourde",
                            "displayName-count-one";
                        "Haitianische Gourde",
                            "displayName-count-other";
                        "Haitianische Gourdes",
                            "symbol";
                        "HTG";
                    }
                    "HUF";
                    {
                        "displayName";
                        "Ungarischer Forint",
                            "displayName-count-one";
                        "Ungarischer Forint",
                            "displayName-count-other";
                        "Ungarische Forint",
                            "symbol";
                        "HUF",
                            "symbol-alt-narrow";
                        "Ft";
                    }
                    "IDR";
                    {
                        "displayName";
                        "Indonesische Rupiah",
                            "displayName-count-one";
                        "Indonesische Rupiah",
                            "displayName-count-other";
                        "Indonesische Rupiah",
                            "symbol";
                        "IDR",
                            "symbol-alt-narrow";
                        "Rp";
                    }
                    "IEP";
                    {
                        "displayName";
                        "Irisches Pfund",
                            "displayName-count-one";
                        "Irisches Pfund",
                            "displayName-count-other";
                        "Irische Pfund",
                            "symbol";
                        "IEP";
                    }
                    "ILP";
                    {
                        "displayName";
                        "Israelisches Pfund",
                            "displayName-count-one";
                        "Israelisches Pfund",
                            "displayName-count-other";
                        "Israelische Pfund",
                            "symbol";
                        "ILP";
                    }
                    "ILR";
                    {
                        "displayName";
                        "Israelischer Schekel (1980–1985)",
                            "displayName-count-one";
                        "Israelischer Schekel (1980–1985)",
                            "displayName-count-other";
                        "Israelische Schekel (1980–1985)";
                    }
                    "ILS";
                    {
                        "displayName";
                        "Israelischer Neuer Schekel",
                            "displayName-count-one";
                        "Israelischer Neuer Schekel",
                            "displayName-count-other";
                        "Israelische Neue Schekel",
                            "symbol";
                        "₪",
                            "symbol-alt-narrow";
                        "₪";
                    }
                    "INR";
                    {
                        "displayName";
                        "Indische Rupie",
                            "displayName-count-one";
                        "Indische Rupie",
                            "displayName-count-other";
                        "Indische Rupien",
                            "symbol";
                        "₹",
                            "symbol-alt-narrow";
                        "₹";
                    }
                    "IQD";
                    {
                        "displayName";
                        "Irakischer Dinar",
                            "displayName-count-one";
                        "Irakischer Dinar",
                            "displayName-count-other";
                        "Irakische Dinar",
                            "symbol";
                        "IQD";
                    }
                    "IRR";
                    {
                        "displayName";
                        "Iranischer Rial",
                            "displayName-count-one";
                        "Iranischer Rial",
                            "displayName-count-other";
                        "Iranische Rial",
                            "symbol";
                        "IRR";
                    }
                    "ISJ";
                    {
                        "displayName";
                        "Isländische Krone (1918–1981)",
                            "displayName-count-one";
                        "Isländische Krone (1918–1981)",
                            "displayName-count-other";
                        "Isländische Kronen (1918–1981)";
                    }
                    "ISK";
                    {
                        "displayName";
                        "Isländische Krone",
                            "displayName-count-one";
                        "Isländische Krone",
                            "displayName-count-other";
                        "Isländische Kronen",
                            "symbol";
                        "ISK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "ITL";
                    {
                        "displayName";
                        "Italienische Lira",
                            "displayName-count-one";
                        "Italienische Lira",
                            "displayName-count-other";
                        "Italienische Lire",
                            "symbol";
                        "ITL";
                    }
                    "JMD";
                    {
                        "displayName";
                        "Jamaika-Dollar",
                            "displayName-count-one";
                        "Jamaika-Dollar",
                            "displayName-count-other";
                        "Jamaika-Dollar",
                            "symbol";
                        "JMD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "JOD";
                    {
                        "displayName";
                        "Jordanischer Dinar",
                            "displayName-count-one";
                        "Jordanischer Dinar",
                            "displayName-count-other";
                        "Jordanische Dinar",
                            "symbol";
                        "JOD";
                    }
                    "JPY";
                    {
                        "displayName";
                        "Japanischer Yen",
                            "displayName-count-one";
                        "Japanischer Yen",
                            "displayName-count-other";
                        "Japanische Yen",
                            "symbol";
                        "¥",
                            "symbol-alt-narrow";
                        "¥";
                    }
                    "KES";
                    {
                        "displayName";
                        "Kenia-Schilling",
                            "displayName-count-one";
                        "Kenia-Schilling",
                            "displayName-count-other";
                        "Kenia-Schilling",
                            "symbol";
                        "KES";
                    }
                    "KGS";
                    {
                        "displayName";
                        "Kirgisischer Som",
                            "displayName-count-one";
                        "Kirgisischer Som",
                            "displayName-count-other";
                        "Kirgisische Som",
                            "symbol";
                        "KGS";
                    }
                    "KHR";
                    {
                        "displayName";
                        "Kambodschanischer Riel",
                            "displayName-count-one";
                        "Kambodschanischer Riel",
                            "displayName-count-other";
                        "Kambodschanische Riel",
                            "symbol";
                        "KHR",
                            "symbol-alt-narrow";
                        "៛";
                    }
                    "KMF";
                    {
                        "displayName";
                        "Komoren-Franc",
                            "displayName-count-one";
                        "Komoren-Franc",
                            "displayName-count-other";
                        "Komoren-Francs",
                            "symbol";
                        "KMF",
                            "symbol-alt-narrow";
                        "FC";
                    }
                    "KPW";
                    {
                        "displayName";
                        "Nordkoreanischer Won",
                            "displayName-count-one";
                        "Nordkoreanischer Won",
                            "displayName-count-other";
                        "Nordkoreanische Won",
                            "symbol";
                        "KPW",
                            "symbol-alt-narrow";
                        "₩";
                    }
                    "KRH";
                    {
                        "displayName";
                        "Südkoreanischer Hwan (1953–1962)",
                            "displayName-count-one";
                        "Südkoreanischer Hwan (1953–1962)",
                            "displayName-count-other";
                        "Südkoreanischer Hwan (1953–1962)",
                            "symbol";
                        "KRH";
                    }
                    "KRO";
                    {
                        "displayName";
                        "Südkoreanischer Won (1945–1953)",
                            "displayName-count-one";
                        "Südkoreanischer Won (1945–1953)",
                            "displayName-count-other";
                        "Südkoreanischer Won (1945–1953)",
                            "symbol";
                        "KRO";
                    }
                    "KRW";
                    {
                        "displayName";
                        "Südkoreanischer Won",
                            "displayName-count-one";
                        "Südkoreanischer Won",
                            "displayName-count-other";
                        "Südkoreanische Won",
                            "symbol";
                        "₩",
                            "symbol-alt-narrow";
                        "₩";
                    }
                    "KWD";
                    {
                        "displayName";
                        "Kuwait-Dinar",
                            "displayName-count-one";
                        "Kuwait-Dinar",
                            "displayName-count-other";
                        "Kuwait-Dinar",
                            "symbol";
                        "KWD";
                    }
                    "KYD";
                    {
                        "displayName";
                        "Kaiman-Dollar",
                            "displayName-count-one";
                        "Kaiman-Dollar",
                            "displayName-count-other";
                        "Kaiman-Dollar",
                            "symbol";
                        "KYD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "KZT";
                    {
                        "displayName";
                        "Kasachischer Tenge",
                            "displayName-count-one";
                        "Kasachischer Tenge",
                            "displayName-count-other";
                        "Kasachische Tenge",
                            "symbol";
                        "KZT",
                            "symbol-alt-narrow";
                        "₸";
                    }
                    "LAK";
                    {
                        "displayName";
                        "Laotischer Kip",
                            "displayName-count-one";
                        "Laotischer Kip",
                            "displayName-count-other";
                        "Laotische Kip",
                            "symbol";
                        "LAK",
                            "symbol-alt-narrow";
                        "₭";
                    }
                    "LBP";
                    {
                        "displayName";
                        "Libanesisches Pfund",
                            "displayName-count-one";
                        "Libanesisches Pfund",
                            "displayName-count-other";
                        "Libanesische Pfund",
                            "symbol";
                        "LBP",
                            "symbol-alt-narrow";
                        "L£";
                    }
                    "LKR";
                    {
                        "displayName";
                        "Sri-Lanka-Rupie",
                            "displayName-count-one";
                        "Sri-Lanka-Rupie",
                            "displayName-count-other";
                        "Sri-Lanka-Rupien",
                            "symbol";
                        "LKR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "LRD";
                    {
                        "displayName";
                        "Liberianischer Dollar",
                            "displayName-count-one";
                        "Liberianischer Dollar",
                            "displayName-count-other";
                        "Liberianische Dollar",
                            "symbol";
                        "LRD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "LSL";
                    {
                        "displayName";
                        "Loti",
                            "displayName-count-one";
                        "Loti",
                            "displayName-count-other";
                        "Loti",
                            "symbol";
                        "LSL";
                    }
                    "LTL";
                    {
                        "displayName";
                        "Litauischer Litas",
                            "displayName-count-one";
                        "Litauischer Litas",
                            "displayName-count-other";
                        "Litauische Litas",
                            "symbol";
                        "LTL",
                            "symbol-alt-narrow";
                        "Lt";
                    }
                    "LTT";
                    {
                        "displayName";
                        "Litauischer Talonas",
                            "displayName-count-one";
                        "Litauische Talonas",
                            "displayName-count-other";
                        "Litauische Talonas",
                            "symbol";
                        "LTT";
                    }
                    "LUC";
                    {
                        "displayName";
                        "Luxemburgischer Franc (konvertibel)",
                            "displayName-count-one";
                        "Luxemburgische Franc (konvertibel)",
                            "displayName-count-other";
                        "Luxemburgische Franc (konvertibel)",
                            "symbol";
                        "LUC";
                    }
                    "LUF";
                    {
                        "displayName";
                        "Luxemburgischer Franc",
                            "displayName-count-one";
                        "Luxemburgische Franc",
                            "displayName-count-other";
                        "Luxemburgische Franc",
                            "symbol";
                        "LUF";
                    }
                    "LUL";
                    {
                        "displayName";
                        "Luxemburgischer Finanz-Franc",
                            "displayName-count-one";
                        "Luxemburgische Finanz-Franc",
                            "displayName-count-other";
                        "Luxemburgische Finanz-Franc",
                            "symbol";
                        "LUL";
                    }
                    "LVL";
                    {
                        "displayName";
                        "Lettischer Lats",
                            "displayName-count-one";
                        "Lettischer Lats",
                            "displayName-count-other";
                        "Lettische Lats",
                            "symbol";
                        "LVL",
                            "symbol-alt-narrow";
                        "Ls";
                    }
                    "LVR";
                    {
                        "displayName";
                        "Lettischer Rubel",
                            "displayName-count-one";
                        "Lettische Rubel",
                            "displayName-count-other";
                        "Lettische Rubel",
                            "symbol";
                        "LVR";
                    }
                    "LYD";
                    {
                        "displayName";
                        "Libyscher Dinar",
                            "displayName-count-one";
                        "Libyscher Dinar",
                            "displayName-count-other";
                        "Libysche Dinar",
                            "symbol";
                        "LYD";
                    }
                    "MAD";
                    {
                        "displayName";
                        "Marokkanischer Dirham",
                            "displayName-count-one";
                        "Marokkanischer Dirham",
                            "displayName-count-other";
                        "Marokkanische Dirham",
                            "symbol";
                        "MAD";
                    }
                    "MAF";
                    {
                        "displayName";
                        "Marokkanischer Franc",
                            "displayName-count-one";
                        "Marokkanische Franc",
                            "displayName-count-other";
                        "Marokkanische Franc",
                            "symbol";
                        "MAF";
                    }
                    "MCF";
                    {
                        "displayName";
                        "Monegassischer Franc",
                            "displayName-count-one";
                        "Monegassischer Franc",
                            "displayName-count-other";
                        "Monegassische Franc",
                            "symbol";
                        "MCF";
                    }
                    "MDC";
                    {
                        "displayName";
                        "Moldau-Cupon",
                            "displayName-count-one";
                        "Moldau-Cupon",
                            "displayName-count-other";
                        "Moldau-Cupon",
                            "symbol";
                        "MDC";
                    }
                    "MDL";
                    {
                        "displayName";
                        "Moldau-Leu",
                            "displayName-count-one";
                        "Moldau-Leu",
                            "displayName-count-other";
                        "Moldau-Leu",
                            "symbol";
                        "MDL";
                    }
                    "MGA";
                    {
                        "displayName";
                        "Madagaskar-Ariary",
                            "displayName-count-one";
                        "Madagaskar-Ariary",
                            "displayName-count-other";
                        "Madagaskar-Ariary",
                            "symbol";
                        "MGA",
                            "symbol-alt-narrow";
                        "Ar";
                    }
                    "MGF";
                    {
                        "displayName";
                        "Madagaskar-Franc",
                            "displayName-count-one";
                        "Madagaskar-Franc",
                            "displayName-count-other";
                        "Madagaskar-Franc",
                            "symbol";
                        "MGF";
                    }
                    "MKD";
                    {
                        "displayName";
                        "Mazedonischer Denar",
                            "displayName-count-one";
                        "Mazedonischer Denar",
                            "displayName-count-other";
                        "Mazedonische Denari",
                            "symbol";
                        "MKD";
                    }
                    "MKN";
                    {
                        "displayName";
                        "Mazedonischer Denar (1992–1993)",
                            "displayName-count-one";
                        "Mazedonischer Denar (1992–1993)",
                            "displayName-count-other";
                        "Mazedonische Denar (1992–1993)",
                            "symbol";
                        "MKN";
                    }
                    "MLF";
                    {
                        "displayName";
                        "Malischer Franc",
                            "displayName-count-one";
                        "Malische Franc",
                            "displayName-count-other";
                        "Malische Franc",
                            "symbol";
                        "MLF";
                    }
                    "MMK";
                    {
                        "displayName";
                        "Myanmarischer Kyat",
                            "displayName-count-one";
                        "Myanmarischer Kyat",
                            "displayName-count-other";
                        "Myanmarische Kyat",
                            "symbol";
                        "MMK",
                            "symbol-alt-narrow";
                        "K";
                    }
                    "MNT";
                    {
                        "displayName";
                        "Mongolischer Tögrög",
                            "displayName-count-one";
                        "Mongolischer Tögrög",
                            "displayName-count-other";
                        "Mongolische Tögrög",
                            "symbol";
                        "MNT",
                            "symbol-alt-narrow";
                        "₮";
                    }
                    "MOP";
                    {
                        "displayName";
                        "Macao-Pataca",
                            "displayName-count-one";
                        "Macao-Pataca",
                            "displayName-count-other";
                        "Macao-Pataca",
                            "symbol";
                        "MOP";
                    }
                    "MRO";
                    {
                        "displayName";
                        "Mauretanischer Ouguiya",
                            "displayName-count-one";
                        "Mauretanischer Ouguiya",
                            "displayName-count-other";
                        "Mauretanische Ouguiya",
                            "symbol";
                        "MRO";
                    }
                    "MTL";
                    {
                        "displayName";
                        "Maltesische Lira",
                            "displayName-count-one";
                        "Maltesische Lira",
                            "displayName-count-other";
                        "Maltesische Lira",
                            "symbol";
                        "MTL";
                    }
                    "MTP";
                    {
                        "displayName";
                        "Maltesisches Pfund",
                            "displayName-count-one";
                        "Maltesische Pfund",
                            "displayName-count-other";
                        "Maltesische Pfund",
                            "symbol";
                        "MTP";
                    }
                    "MUR";
                    {
                        "displayName";
                        "Mauritius-Rupie",
                            "displayName-count-one";
                        "Mauritius-Rupie",
                            "displayName-count-other";
                        "Mauritius-Rupien",
                            "symbol";
                        "MUR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "MVP";
                    {
                        "displayName";
                        "Malediven-Rupie (alt)",
                            "displayName-count-one";
                        "Malediven-Rupie (alt)",
                            "displayName-count-other";
                        "Malediven-Rupien (alt)";
                    }
                    "MVR";
                    {
                        "displayName";
                        "Malediven-Rufiyaa",
                            "displayName-count-one";
                        "Malediven-Rufiyaa",
                            "displayName-count-other";
                        "Malediven-Rupien",
                            "symbol";
                        "MVR";
                    }
                    "MWK";
                    {
                        "displayName";
                        "Malawi-Kwacha",
                            "displayName-count-one";
                        "Malawi-Kwacha",
                            "displayName-count-other";
                        "Malawi-Kwacha",
                            "symbol";
                        "MWK";
                    }
                    "MXN";
                    {
                        "displayName";
                        "Mexikanischer Peso",
                            "displayName-count-one";
                        "Mexikanischer Peso",
                            "displayName-count-other";
                        "Mexikanische Pesos",
                            "symbol";
                        "MX$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "MXP";
                    {
                        "displayName";
                        "Mexikanischer Silber-Peso (1861–1992)",
                            "displayName-count-one";
                        "Mexikanische Silber-Peso (1861–1992)",
                            "displayName-count-other";
                        "Mexikanische Silber-Pesos (1861–1992)",
                            "symbol";
                        "MXP";
                    }
                    "MXV";
                    {
                        "displayName";
                        "Mexicanischer Unidad de Inversion (UDI)",
                            "displayName-count-one";
                        "Mexicanischer Unidad de Inversion (UDI)",
                            "displayName-count-other";
                        "Mexikanische Unidad de Inversion (UDI)",
                            "symbol";
                        "MXV";
                    }
                    "MYR";
                    {
                        "displayName";
                        "Malaysischer Ringgit",
                            "displayName-count-one";
                        "Malaysischer Ringgit",
                            "displayName-count-other";
                        "Malaysische Ringgit",
                            "symbol";
                        "MYR",
                            "symbol-alt-narrow";
                        "RM";
                    }
                    "MZE";
                    {
                        "displayName";
                        "Mosambikanischer Escudo",
                            "displayName-count-one";
                        "Mozambikanische Escudo",
                            "displayName-count-other";
                        "Mozambikanische Escudo",
                            "symbol";
                        "MZE";
                    }
                    "MZM";
                    {
                        "displayName";
                        "Mosambikanischer Metical (1980–2006)",
                            "displayName-count-one";
                        "Mosambikanischer Metical (1980–2006)",
                            "displayName-count-other";
                        "Mosambikanische Meticais (1980–2006)",
                            "symbol";
                        "MZM";
                    }
                    "MZN";
                    {
                        "displayName";
                        "Mosambikanischer Metical",
                            "displayName-count-one";
                        "Mosambikanischer Metical",
                            "displayName-count-other";
                        "Mosambikanische Meticais",
                            "symbol";
                        "MZN";
                    }
                    "NAD";
                    {
                        "displayName";
                        "Namibia-Dollar",
                            "displayName-count-one";
                        "Namibia-Dollar",
                            "displayName-count-other";
                        "Namibia-Dollar",
                            "symbol";
                        "NAD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "NGN";
                    {
                        "displayName";
                        "Nigerianischer Naira",
                            "displayName-count-one";
                        "Nigerianischer Naira",
                            "displayName-count-other";
                        "Nigerianische Naira",
                            "symbol";
                        "NGN",
                            "symbol-alt-narrow";
                        "₦";
                    }
                    "NIC";
                    {
                        "displayName";
                        "Nicaraguanischer Córdoba (1988–1991)",
                            "displayName-count-one";
                        "Nicaraguanischer Córdoba (1988–1991)",
                            "displayName-count-other";
                        "Nicaraguanische Córdoba (1988–1991)",
                            "symbol";
                        "NIC";
                    }
                    "NIO";
                    {
                        "displayName";
                        "Nicaragua-Córdoba",
                            "displayName-count-one";
                        "Nicaragua-Córdoba",
                            "displayName-count-other";
                        "Nicaragua-Córdobas",
                            "symbol";
                        "NIO",
                            "symbol-alt-narrow";
                        "C$";
                    }
                    "NLG";
                    {
                        "displayName";
                        "Niederländischer Gulden",
                            "displayName-count-one";
                        "Niederländischer Gulden",
                            "displayName-count-other";
                        "Niederländische Gulden",
                            "symbol";
                        "NLG";
                    }
                    "NOK";
                    {
                        "displayName";
                        "Norwegische Krone",
                            "displayName-count-one";
                        "Norwegische Krone",
                            "displayName-count-other";
                        "Norwegische Kronen",
                            "symbol";
                        "NOK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "NPR";
                    {
                        "displayName";
                        "Nepalesische Rupie",
                            "displayName-count-one";
                        "Nepalesische Rupie",
                            "displayName-count-other";
                        "Nepalesische Rupien",
                            "symbol";
                        "NPR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "NZD";
                    {
                        "displayName";
                        "Neuseeland-Dollar",
                            "displayName-count-one";
                        "Neuseeland-Dollar",
                            "displayName-count-other";
                        "Neuseeland-Dollar",
                            "symbol";
                        "NZ$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "OMR";
                    {
                        "displayName";
                        "Omanischer Rial",
                            "displayName-count-one";
                        "Omanischer Rial",
                            "displayName-count-other";
                        "Omanische Rials",
                            "symbol";
                        "OMR";
                    }
                    "PAB";
                    {
                        "displayName";
                        "Panamaischer Balboa",
                            "displayName-count-one";
                        "Panamaischer Balboa",
                            "displayName-count-other";
                        "Panamaische Balboas",
                            "symbol";
                        "PAB";
                    }
                    "PEI";
                    {
                        "displayName";
                        "Peruanischer Inti",
                            "displayName-count-one";
                        "Peruanische Inti",
                            "displayName-count-other";
                        "Peruanische Inti",
                            "symbol";
                        "PEI";
                    }
                    "PEN";
                    {
                        "displayName";
                        "Peruanischer Sol",
                            "displayName-count-one";
                        "Peruanischer Sol",
                            "displayName-count-other";
                        "Peruanische Sol",
                            "symbol";
                        "PEN";
                    }
                    "PES";
                    {
                        "displayName";
                        "Peruanischer Sol (1863–1965)",
                            "displayName-count-one";
                        "Peruanischer Sol (1863–1965)",
                            "displayName-count-other";
                        "Peruanische Sol (1863–1965)",
                            "symbol";
                        "PES";
                    }
                    "PGK";
                    {
                        "displayName";
                        "Papua-Neuguineischer Kina",
                            "displayName-count-one";
                        "Papua-Neuguineischer Kina",
                            "displayName-count-other";
                        "Papua-Neuguineische Kina",
                            "symbol";
                        "PGK";
                    }
                    "PHP";
                    {
                        "displayName";
                        "Philippinischer Peso",
                            "displayName-count-one";
                        "Philippinischer Peso",
                            "displayName-count-other";
                        "Philippinische Pesos",
                            "symbol";
                        "PHP",
                            "symbol-alt-narrow";
                        "₱";
                    }
                    "PKR";
                    {
                        "displayName";
                        "Pakistanische Rupie",
                            "displayName-count-one";
                        "Pakistanische Rupie",
                            "displayName-count-other";
                        "Pakistanische Rupien",
                            "symbol";
                        "PKR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "PLN";
                    {
                        "displayName";
                        "Polnischer Złoty",
                            "displayName-count-one";
                        "Polnischer Złoty",
                            "displayName-count-other";
                        "Polnische Złoty",
                            "symbol";
                        "PLN",
                            "symbol-alt-narrow";
                        "zł";
                    }
                    "PLZ";
                    {
                        "displayName";
                        "Polnischer Zloty (1950–1995)",
                            "displayName-count-one";
                        "Polnischer Zloty (1950–1995)",
                            "displayName-count-other";
                        "Polnische Zloty (1950–1995)",
                            "symbol";
                        "PLZ";
                    }
                    "PTE";
                    {
                        "displayName";
                        "Portugiesischer Escudo",
                            "displayName-count-one";
                        "Portugiesische Escudo",
                            "displayName-count-other";
                        "Portugiesische Escudo",
                            "symbol";
                        "PTE";
                    }
                    "PYG";
                    {
                        "displayName";
                        "Paraguayischer Guaraní",
                            "displayName-count-one";
                        "Paraguayischer Guaraní",
                            "displayName-count-other";
                        "Paraguayische Guaraníes",
                            "symbol";
                        "PYG",
                            "symbol-alt-narrow";
                        "₲";
                    }
                    "QAR";
                    {
                        "displayName";
                        "Katar-Riyal",
                            "displayName-count-one";
                        "Katar-Riyal",
                            "displayName-count-other";
                        "Katar-Riyal",
                            "symbol";
                        "QAR";
                    }
                    "RHD";
                    {
                        "displayName";
                        "Rhodesischer Dollar",
                            "displayName-count-one";
                        "Rhodesische Dollar",
                            "displayName-count-other";
                        "Rhodesische Dollar",
                            "symbol";
                        "RHD";
                    }
                    "ROL";
                    {
                        "displayName";
                        "Rumänischer Leu (1952–2006)",
                            "displayName-count-one";
                        "Rumänischer Leu (1952–2006)",
                            "displayName-count-other";
                        "Rumänische Leu (1952–2006)",
                            "symbol";
                        "ROL";
                    }
                    "RON";
                    {
                        "displayName";
                        "Rumänischer Leu",
                            "displayName-count-one";
                        "Rumänischer Leu",
                            "displayName-count-other";
                        "Rumänische Leu",
                            "symbol";
                        "RON",
                            "symbol-alt-narrow";
                        "L";
                    }
                    "RSD";
                    {
                        "displayName";
                        "Serbischer Dinar",
                            "displayName-count-one";
                        "Serbischer Dinar",
                            "displayName-count-other";
                        "Serbische Dinaren",
                            "symbol";
                        "RSD";
                    }
                    "RUB";
                    {
                        "displayName";
                        "Russischer Rubel",
                            "displayName-count-one";
                        "Russischer Rubel",
                            "displayName-count-other";
                        "Russische Rubel",
                            "symbol";
                        "RUB",
                            "symbol-alt-narrow";
                        "₽";
                    }
                    "RUR";
                    {
                        "displayName";
                        "Russischer Rubel (1991–1998)",
                            "displayName-count-one";
                        "Russischer Rubel (1991–1998)",
                            "displayName-count-other";
                        "Russische Rubel (1991–1998)",
                            "symbol";
                        "RUR",
                            "symbol-alt-narrow";
                        "р.";
                    }
                    "RWF";
                    {
                        "displayName";
                        "Ruanda-Franc",
                            "displayName-count-one";
                        "Ruanda-Franc",
                            "displayName-count-other";
                        "Ruanda-Francs",
                            "symbol";
                        "RWF",
                            "symbol-alt-narrow";
                        "F.Rw";
                    }
                    "SAR";
                    {
                        "displayName";
                        "Saudi-Rial",
                            "displayName-count-one";
                        "Saudi-Rial",
                            "displayName-count-other";
                        "Saudi-Rial",
                            "symbol";
                        "SAR";
                    }
                    "SBD";
                    {
                        "displayName";
                        "Salomonen-Dollar",
                            "displayName-count-one";
                        "Salomonen-Dollar",
                            "displayName-count-other";
                        "Salomonen-Dollar",
                            "symbol";
                        "SBD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "SCR";
                    {
                        "displayName";
                        "Seychellen-Rupie",
                            "displayName-count-one";
                        "Seychellen-Rupie",
                            "displayName-count-other";
                        "Seychellen-Rupien",
                            "symbol";
                        "SCR";
                    }
                    "SDD";
                    {
                        "displayName";
                        "Sudanesischer Dinar (1992–2007)",
                            "displayName-count-one";
                        "Sudanesischer Dinar (1992–2007)",
                            "displayName-count-other";
                        "Sudanesische Dinar (1992–2007)",
                            "symbol";
                        "SDD";
                    }
                    "SDG";
                    {
                        "displayName";
                        "Sudanesisches Pfund",
                            "displayName-count-one";
                        "Sudanesisches Pfund",
                            "displayName-count-other";
                        "Sudanesische Pfund",
                            "symbol";
                        "SDG";
                    }
                    "SDP";
                    {
                        "displayName";
                        "Sudanesisches Pfund (1957–1998)",
                            "displayName-count-one";
                        "Sudanesisches Pfund (1957–1998)",
                            "displayName-count-other";
                        "Sudanesische Pfund (1957–1998)",
                            "symbol";
                        "SDP";
                    }
                    "SEK";
                    {
                        "displayName";
                        "Schwedische Krone",
                            "displayName-count-one";
                        "Schwedische Krone",
                            "displayName-count-other";
                        "Schwedische Kronen",
                            "symbol";
                        "SEK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "SGD";
                    {
                        "displayName";
                        "Singapur-Dollar",
                            "displayName-count-one";
                        "Singapur-Dollar",
                            "displayName-count-other";
                        "Singapur-Dollar",
                            "symbol";
                        "SGD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "SHP";
                    {
                        "displayName";
                        "St. Helena-Pfund",
                            "displayName-count-one";
                        "St. Helena-Pfund",
                            "displayName-count-other";
                        "St. Helena-Pfund",
                            "symbol";
                        "SHP",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "SIT";
                    {
                        "displayName";
                        "Slowenischer Tolar",
                            "displayName-count-one";
                        "Slowenischer Tolar",
                            "displayName-count-other";
                        "Slowenische Tolar",
                            "symbol";
                        "SIT";
                    }
                    "SKK";
                    {
                        "displayName";
                        "Slowakische Krone",
                            "displayName-count-one";
                        "Slowakische Kronen",
                            "displayName-count-other";
                        "Slowakische Kronen",
                            "symbol";
                        "SKK";
                    }
                    "SLL";
                    {
                        "displayName";
                        "Sierra-leonischer Leone",
                            "displayName-count-one";
                        "Sierra-leonischer Leone",
                            "displayName-count-other";
                        "Sierra-leonische Leones",
                            "symbol";
                        "SLL";
                    }
                    "SOS";
                    {
                        "displayName";
                        "Somalia-Schilling",
                            "displayName-count-one";
                        "Somalia-Schilling",
                            "displayName-count-other";
                        "Somalia-Schilling",
                            "symbol";
                        "SOS";
                    }
                    "SRD";
                    {
                        "displayName";
                        "Suriname-Dollar",
                            "displayName-count-one";
                        "Suriname-Dollar",
                            "displayName-count-other";
                        "Suriname-Dollar",
                            "symbol";
                        "SRD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "SRG";
                    {
                        "displayName";
                        "Suriname Gulden",
                            "displayName-count-one";
                        "Suriname-Gulden",
                            "displayName-count-other";
                        "Suriname-Gulden",
                            "symbol";
                        "SRG";
                    }
                    "SSP";
                    {
                        "displayName";
                        "Südsudanesisches Pfund",
                            "displayName-count-one";
                        "Südsudanesisches Pfund",
                            "displayName-count-other";
                        "Südsudanesische Pfund",
                            "symbol";
                        "SSP",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "STD";
                    {
                        "displayName";
                        "São-toméischer Dobra",
                            "displayName-count-one";
                        "São-toméischer Dobra",
                            "displayName-count-other";
                        "São-toméische Dobra",
                            "symbol";
                        "STD",
                            "symbol-alt-narrow";
                        "Db";
                    }
                    "SUR";
                    {
                        "displayName";
                        "Sowjetischer Rubel",
                            "displayName-count-one";
                        "Sowjetische Rubel",
                            "displayName-count-other";
                        "Sowjetische Rubel",
                            "symbol";
                        "SUR";
                    }
                    "SVC";
                    {
                        "displayName";
                        "El Salvador Colon",
                            "displayName-count-one";
                        "El Salvador-Colon",
                            "displayName-count-other";
                        "El Salvador-Colon",
                            "symbol";
                        "SVC";
                    }
                    "SYP";
                    {
                        "displayName";
                        "Syrisches Pfund",
                            "displayName-count-one";
                        "Syrisches Pfund",
                            "displayName-count-other";
                        "Syrische Pfund",
                            "symbol";
                        "SYP",
                            "symbol-alt-narrow";
                        "SYP";
                    }
                    "SZL";
                    {
                        "displayName";
                        "Swasiländischer Lilangeni",
                            "displayName-count-one";
                        "Swasiländischer Lilangeni",
                            "displayName-count-other";
                        "Swasiländische Emalangeni",
                            "symbol";
                        "SZL";
                    }
                    "THB";
                    {
                        "displayName";
                        "Thailändischer Baht",
                            "displayName-count-one";
                        "Thailändischer Baht",
                            "displayName-count-other";
                        "Thailändische Baht",
                            "symbol";
                        "฿",
                            "symbol-alt-narrow";
                        "฿";
                    }
                    "TJR";
                    {
                        "displayName";
                        "Tadschikistan Rubel",
                            "displayName-count-one";
                        "Tadschikistan-Rubel",
                            "displayName-count-other";
                        "Tadschikistan-Rubel",
                            "symbol";
                        "TJR";
                    }
                    "TJS";
                    {
                        "displayName";
                        "Tadschikistan-Somoni",
                            "displayName-count-one";
                        "Tadschikistan-Somoni",
                            "displayName-count-other";
                        "Tadschikistan-Somoni",
                            "symbol";
                        "TJS";
                    }
                    "TMM";
                    {
                        "displayName";
                        "Turkmenistan-Manat (1993–2009)",
                            "displayName-count-one";
                        "Turkmenistan-Manat (1993–2009)",
                            "displayName-count-other";
                        "Turkmenistan-Manat (1993–2009)",
                            "symbol";
                        "TMM";
                    }
                    "TMT";
                    {
                        "displayName";
                        "Turkmenistan-Manat",
                            "displayName-count-one";
                        "Turkmenistan-Manat",
                            "displayName-count-other";
                        "Turkmenistan-Manat",
                            "symbol";
                        "TMT";
                    }
                    "TND";
                    {
                        "displayName";
                        "Tunesischer Dinar",
                            "displayName-count-one";
                        "Tunesischer Dinar",
                            "displayName-count-other";
                        "Tunesische Dinar",
                            "symbol";
                        "TND";
                    }
                    "TOP";
                    {
                        "displayName";
                        "Tongaischer Paʻanga",
                            "displayName-count-one";
                        "Tongaischer Paʻanga",
                            "displayName-count-other";
                        "Tongaische Paʻanga",
                            "symbol";
                        "TOP",
                            "symbol-alt-narrow";
                        "T$";
                    }
                    "TPE";
                    {
                        "displayName";
                        "Timor-Escudo",
                            "displayName-count-one";
                        "Timor-Escudo",
                            "displayName-count-other";
                        "Timor-Escudo",
                            "symbol";
                        "TPE";
                    }
                    "TRL";
                    {
                        "displayName";
                        "Türkische Lira (1922–2005)",
                            "displayName-count-one";
                        "Türkische Lira (1922–2005)",
                            "displayName-count-other";
                        "Türkische Lira (1922–2005)",
                            "symbol";
                        "TRL";
                    }
                    "TRY";
                    {
                        "displayName";
                        "Türkische Lira",
                            "displayName-count-one";
                        "Türkische Lira",
                            "displayName-count-other";
                        "Türkische Lira",
                            "symbol";
                        "TRY",
                            "symbol-alt-narrow";
                        "₺",
                            "symbol-alt-variant";
                        "TL";
                    }
                    "TTD";
                    {
                        "displayName";
                        "Trinidad und Tobago-Dollar",
                            "displayName-count-one";
                        "Trinidad und Tobago-Dollar",
                            "displayName-count-other";
                        "Trinidad und Tobago-Dollar",
                            "symbol";
                        "TTD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "TWD";
                    {
                        "displayName";
                        "Neuer Taiwan-Dollar",
                            "displayName-count-one";
                        "Neuer Taiwan-Dollar",
                            "displayName-count-other";
                        "Neue Taiwan-Dollar",
                            "symbol";
                        "NT$",
                            "symbol-alt-narrow";
                        "NT$";
                    }
                    "TZS";
                    {
                        "displayName";
                        "Tansania-Schilling",
                            "displayName-count-one";
                        "Tansania-Schilling",
                            "displayName-count-other";
                        "Tansania-Schilling",
                            "symbol";
                        "TZS";
                    }
                    "UAH";
                    {
                        "displayName";
                        "Ukrainische Hrywnja",
                            "displayName-count-one";
                        "Ukrainische Hrywnja",
                            "displayName-count-other";
                        "Ukrainische Hrywen",
                            "symbol";
                        "UAH",
                            "symbol-alt-narrow";
                        "₴";
                    }
                    "UAK";
                    {
                        "displayName";
                        "Ukrainischer Karbovanetz",
                            "displayName-count-one";
                        "Ukrainische Karbovanetz",
                            "displayName-count-other";
                        "Ukrainische Karbovanetz",
                            "symbol";
                        "UAK";
                    }
                    "UGS";
                    {
                        "displayName";
                        "Uganda-Schilling (1966–1987)",
                            "displayName-count-one";
                        "Uganda-Schilling (1966–1987)",
                            "displayName-count-other";
                        "Uganda-Schilling (1966–1987)",
                            "symbol";
                        "UGS";
                    }
                    "UGX";
                    {
                        "displayName";
                        "Uganda-Schilling",
                            "displayName-count-one";
                        "Uganda-Schilling",
                            "displayName-count-other";
                        "Uganda-Schilling",
                            "symbol";
                        "UGX";
                    }
                    "USD";
                    {
                        "displayName";
                        "US-Dollar",
                            "displayName-count-one";
                        "US-Dollar",
                            "displayName-count-other";
                        "US-Dollar",
                            "symbol";
                        "$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "USN";
                    {
                        "displayName";
                        "US Dollar (Nächster Tag)",
                            "displayName-count-one";
                        "US-Dollar (Nächster Tag)",
                            "displayName-count-other";
                        "US-Dollar (Nächster Tag)",
                            "symbol";
                        "USN";
                    }
                    "USS";
                    {
                        "displayName";
                        "US Dollar (Gleicher Tag)",
                            "displayName-count-one";
                        "US-Dollar (Gleicher Tag)",
                            "displayName-count-other";
                        "US-Dollar (Gleicher Tag)",
                            "symbol";
                        "USS";
                    }
                    "UYI";
                    {
                        "displayName";
                        "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
                            "displayName-count-one";
                        "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
                            "displayName-count-other";
                        "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
                            "symbol";
                        "UYI";
                    }
                    "UYP";
                    {
                        "displayName";
                        "Uruguayischer Peso (1975–1993)",
                            "displayName-count-one";
                        "Uruguayischer Peso (1975–1993)",
                            "displayName-count-other";
                        "Uruguayische Pesos (1975–1993)",
                            "symbol";
                        "UYP";
                    }
                    "UYU";
                    {
                        "displayName";
                        "Uruguayischer Peso",
                            "displayName-count-one";
                        "Uruguayischer Peso",
                            "displayName-count-other";
                        "Uruguayische Pesos",
                            "symbol";
                        "UYU",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "UZS";
                    {
                        "displayName";
                        "Usbekistan-Sum",
                            "displayName-count-one";
                        "Usbekistan-Sum",
                            "displayName-count-other";
                        "Usbekistan-Sum",
                            "symbol";
                        "UZS";
                    }
                    "VEB";
                    {
                        "displayName";
                        "Venezolanischer Bolívar (1871–2008)",
                            "displayName-count-one";
                        "Venezolanischer Bolívar (1871–2008)",
                            "displayName-count-other";
                        "Venezolanische Bolívares (1871–2008)",
                            "symbol";
                        "VEB";
                    }
                    "VEF";
                    {
                        "displayName";
                        "Venezolanischer Bolívar",
                            "displayName-count-one";
                        "Venezolanischer Bolívar",
                            "displayName-count-other";
                        "Venezolanische Bolívares",
                            "symbol";
                        "VEF",
                            "symbol-alt-narrow";
                        "Bs";
                    }
                    "VND";
                    {
                        "displayName";
                        "Vietnamesischer Dong",
                            "displayName-count-one";
                        "Vietnamesischer Dong",
                            "displayName-count-other";
                        "Vietnamesische Dong",
                            "symbol";
                        "₫",
                            "symbol-alt-narrow";
                        "₫";
                    }
                    "VNN";
                    {
                        "displayName";
                        "Vietnamesischer Dong(1978–1985)",
                            "displayName-count-one";
                        "Vietnamesischer Dong(1978–1985)",
                            "displayName-count-other";
                        "Vietnamesische Dong(1978–1985)",
                            "symbol";
                        "VNN";
                    }
                    "VUV";
                    {
                        "displayName";
                        "Vanuatu-Vatu",
                            "displayName-count-one";
                        "Vanuatu-Vatu",
                            "displayName-count-other";
                        "Vanuatu-Vatu",
                            "symbol";
                        "VUV";
                    }
                    "WST";
                    {
                        "displayName";
                        "Samoanischer Tala",
                            "displayName-count-one";
                        "Samoanischer Tala",
                            "displayName-count-other";
                        "Samoanische Tala",
                            "symbol";
                        "WST";
                    }
                    "XAF";
                    {
                        "displayName";
                        "CFA-Franc (BEAC)",
                            "displayName-count-one";
                        "CFA-Franc (BEAC)",
                            "displayName-count-other";
                        "CFA-Franc (BEAC)",
                            "symbol";
                        "FCFA";
                    }
                    "XAG";
                    {
                        "displayName";
                        "Unze Silber",
                            "displayName-count-one";
                        "Unze Silber",
                            "displayName-count-other";
                        "Unzen Silber",
                            "symbol";
                        "XAG";
                    }
                    "XAU";
                    {
                        "displayName";
                        "Unze Gold",
                            "displayName-count-one";
                        "Unze Gold",
                            "displayName-count-other";
                        "Unzen Gold",
                            "symbol";
                        "XAU";
                    }
                    "XBA";
                    {
                        "displayName";
                        "Europäische Rechnungseinheit",
                            "displayName-count-one";
                        "Europäische Rechnungseinheiten",
                            "displayName-count-other";
                        "Europäische Rechnungseinheiten",
                            "symbol";
                        "XBA";
                    }
                    "XBB";
                    {
                        "displayName";
                        "Europäische Währungseinheit (XBB)",
                            "displayName-count-one";
                        "Europäische Währungseinheiten (XBB)",
                            "displayName-count-other";
                        "Europäische Währungseinheiten (XBB)",
                            "symbol";
                        "XBB";
                    }
                    "XBC";
                    {
                        "displayName";
                        "Europäische Rechnungseinheit (XBC)",
                            "displayName-count-one";
                        "Europäische Rechnungseinheiten (XBC)",
                            "displayName-count-other";
                        "Europäische Rechnungseinheiten (XBC)",
                            "symbol";
                        "XBC";
                    }
                    "XBD";
                    {
                        "displayName";
                        "Europäische Rechnungseinheit (XBD)",
                            "displayName-count-one";
                        "Europäische Rechnungseinheiten (XBD)",
                            "displayName-count-other";
                        "Europäische Rechnungseinheiten (XBD)",
                            "symbol";
                        "XBD";
                    }
                    "XCD";
                    {
                        "displayName";
                        "Ostkaribischer Dollar",
                            "displayName-count-one";
                        "Ostkaribischer Dollar",
                            "displayName-count-other";
                        "Ostkaribische Dollar",
                            "symbol";
                        "EC$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "XDR";
                    {
                        "displayName";
                        "Sonderziehungsrechte",
                            "displayName-count-one";
                        "Sonderziehungsrechte",
                            "displayName-count-other";
                        "Sonderziehungsrechte",
                            "symbol";
                        "XDR";
                    }
                    "XEU";
                    {
                        "displayName";
                        "Europäische Währungseinheit (XEU)",
                            "displayName-count-one";
                        "Europäische Währungseinheiten (XEU)",
                            "displayName-count-other";
                        "Europäische Währungseinheiten (XEU)",
                            "symbol";
                        "XEU";
                    }
                    "XFO";
                    {
                        "displayName";
                        "Französischer Gold-Franc",
                            "displayName-count-one";
                        "Französische Gold-Franc",
                            "displayName-count-other";
                        "Französische Gold-Franc",
                            "symbol";
                        "XFO";
                    }
                    "XFU";
                    {
                        "displayName";
                        "Französischer UIC-Franc",
                            "displayName-count-one";
                        "Französische UIC-Franc",
                            "displayName-count-other";
                        "Französische UIC-Franc",
                            "symbol";
                        "XFU";
                    }
                    "XOF";
                    {
                        "displayName";
                        "CFA-Franc (BCEAO)",
                            "displayName-count-one";
                        "CFA-Franc (BCEAO)",
                            "displayName-count-other";
                        "CFA-Francs (BCEAO)",
                            "symbol";
                        "CFA";
                    }
                    "XPD";
                    {
                        "displayName";
                        "Unze Palladium",
                            "displayName-count-one";
                        "Unze Palladium",
                            "displayName-count-other";
                        "Unzen Palladium",
                            "symbol";
                        "XPD";
                    }
                    "XPF";
                    {
                        "displayName";
                        "CFP-Franc",
                            "displayName-count-one";
                        "CFP-Franc",
                            "displayName-count-other";
                        "CFP-Franc",
                            "symbol";
                        "CFPF";
                    }
                    "XPT";
                    {
                        "displayName";
                        "Unze Platin",
                            "displayName-count-one";
                        "Unze Platin",
                            "displayName-count-other";
                        "Unzen Platin",
                            "symbol";
                        "XPT";
                    }
                    "XRE";
                    {
                        "displayName";
                        "RINET Funds",
                            "displayName-count-one";
                        "RINET Funds",
                            "displayName-count-other";
                        "RINET Funds",
                            "symbol";
                        "XRE";
                    }
                    "XSU";
                    {
                        "displayName";
                        "SUCRE",
                            "displayName-count-one";
                        "SUCRE",
                            "displayName-count-other";
                        "SUCRE",
                            "symbol";
                        "XSU";
                    }
                    "XTS";
                    {
                        "displayName";
                        "Testwährung",
                            "displayName-count-one";
                        "Testwährung",
                            "displayName-count-other";
                        "Testwährung",
                            "symbol";
                        "XTS";
                    }
                    "XUA";
                    {
                        "displayName";
                        "Rechnungseinheit der AfEB",
                            "displayName-count-one";
                        "Rechnungseinheit der AfEB",
                            "displayName-count-other";
                        "Rechnungseinheiten der AfEB",
                            "symbol";
                        "XUA";
                    }
                    "XXX";
                    {
                        "displayName";
                        "Unbekannte Währung",
                            "displayName-count-one";
                        "(unbekannte Währung)",
                            "displayName-count-other";
                        "(unbekannte Währung)",
                            "symbol";
                        "XXX";
                    }
                    "YDD";
                    {
                        "displayName";
                        "Jemen-Dinar",
                            "displayName-count-one";
                        "Jemen-Dinar",
                            "displayName-count-other";
                        "Jemen-Dinar",
                            "symbol";
                        "YDD";
                    }
                    "YER";
                    {
                        "displayName";
                        "Jemen-Rial",
                            "displayName-count-one";
                        "Jemen-Rial",
                            "displayName-count-other";
                        "Jemen-Rial",
                            "symbol";
                        "YER";
                    }
                    "YUD";
                    {
                        "displayName";
                        "Jugoslawischer Dinar (1966–1990)",
                            "displayName-count-one";
                        "Jugoslawischer Dinar (1966–1990)",
                            "displayName-count-other";
                        "Jugoslawische Dinar (1966–1990)",
                            "symbol";
                        "YUD";
                    }
                    "YUM";
                    {
                        "displayName";
                        "Jugoslawischer Neuer Dinar (1994–2002)",
                            "displayName-count-one";
                        "Jugoslawischer Neuer Dinar (1994–2002)",
                            "displayName-count-other";
                        "Jugoslawische Neue Dinar (1994–2002)",
                            "symbol";
                        "YUM";
                    }
                    "YUN";
                    {
                        "displayName";
                        "Jugoslawischer Dinar (konvertibel)",
                            "displayName-count-one";
                        "Jugoslawische Dinar (konvertibel)",
                            "displayName-count-other";
                        "Jugoslawische Dinar (konvertibel)",
                            "symbol";
                        "YUN";
                    }
                    "YUR";
                    {
                        "displayName";
                        "Jugoslawischer reformierter Dinar (1992–1993)",
                            "displayName-count-one";
                        "Jugoslawischer reformierter Dinar (1992–1993)",
                            "displayName-count-other";
                        "Jugoslawische reformierte Dinar (1992–1993)",
                            "symbol";
                        "YUR";
                    }
                    "ZAL";
                    {
                        "displayName";
                        "Südafrikanischer Rand (Finanz)",
                            "displayName-count-one";
                        "Südafrikanischer Rand (Finanz)",
                            "displayName-count-other";
                        "Südafrikanischer Rand (Finanz)",
                            "symbol";
                        "ZAL";
                    }
                    "ZAR";
                    {
                        "displayName";
                        "Südafrikanischer Rand",
                            "displayName-count-one";
                        "Südafrikanischer Rand",
                            "displayName-count-other";
                        "Südafrikanische Rand",
                            "symbol";
                        "ZAR",
                            "symbol-alt-narrow";
                        "R";
                    }
                    "ZMK";
                    {
                        "displayName";
                        "Kwacha (1968–2012)",
                            "displayName-count-one";
                        "Kwacha (1968–2012)",
                            "displayName-count-other";
                        "Kwacha (1968–2012)",
                            "symbol";
                        "ZMK";
                    }
                    "ZMW";
                    {
                        "displayName";
                        "Kwacha",
                            "displayName-count-one";
                        "Kwacha",
                            "displayName-count-other";
                        "Kwacha",
                            "symbol";
                        "ZMW",
                            "symbol-alt-narrow";
                        "K";
                    }
                    "ZRN";
                    {
                        "displayName";
                        "Zaire-Neuer Zaïre (1993–1998)",
                            "displayName-count-one";
                        "Zaire-Neuer Zaïre (1993–1998)",
                            "displayName-count-other";
                        "Zaire-Neue Zaïre (1993–1998)",
                            "symbol";
                        "ZRN";
                    }
                    "ZRZ";
                    {
                        "displayName";
                        "Zaire-Zaïre (1971–1993)",
                            "displayName-count-one";
                        "Zaire-Zaïre (1971–1993)",
                            "displayName-count-other";
                        "Zaire-Zaïre (1971–1993)",
                            "symbol";
                        "ZRZ";
                    }
                    "ZWD";
                    {
                        "displayName";
                        "Simbabwe-Dollar (1980–2008)",
                            "displayName-count-one";
                        "Simbabwe-Dollar (1980–2008)",
                            "displayName-count-other";
                        "Simbabwe-Dollar (1980–2008)",
                            "symbol";
                        "ZWD";
                    }
                    "ZWL";
                    {
                        "displayName";
                        "Simbabwe-Dollar (2009)",
                            "displayName-count-one";
                        "Simbabwe-Dollar (2009)",
                            "displayName-count-other";
                        "Simbabwe-Dollar (2009)",
                            "symbol";
                        "ZWL";
                    }
                    "ZWR";
                    {
                        "displayName";
                        "Simbabwe-Dollar (2008)",
                            "displayName-count-one";
                        "Simbabwe-Dollar (2008)",
                            "displayName-count-other";
                        "Simbabwe-Dollar (2008)",
                            "symbol";
                        "ZWR";
                    }
                }
            }
        }
    }
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as deTimeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, deTimeZoneNames);
L10n.load({
    'de': {
        'daterangepicker': {
            applyText: 'Sich bewerben',
            cancelText: 'Stornieren',
            customRange: 'benutzerdefinierten Bereich',
            days: 'Tage',
            endLabel: 'Wählen Sie Enddatum',
            placeholder: 'Wählen Sie einen Bereich aus',
            selectedDays: 'Ausgewählte Tage',
            startLabel: 'Wählen Sie Startdatum'
        }
    }
});
//import the daterangepicker component
class App extends React.Component {
    render() {
        return <DateRangePickerComponent id="daterangepicker" locale='de'/>;
    }
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';

//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as deTimeZoneNames from './timeZoneNames.json';

loadCldr(numberingSystems, gregorian, numbers, deTimeZoneNames);

L10n.load({
  'de': {
    'daterangepicker': {
      applyText: 'Sich bewerben',
      cancelText: 'Stornieren',
      customRange: 'benutzerdefinierten Bereich',
      days: 'Tage',
      endLabel: 'Wählen Sie Enddatum',
      placeholder: 'Wählen Sie einen Bereich aus',
      selectedDays: 'Ausgewählte Tage',
      startLabel: 'Wählen Sie Startdatum'
    }
}
});
//import the daterangepicker component
class App extends React.Component<{}, {}> {
    render() {
        return <DateRangePickerComponent id="daterangepicker" locale='de'/>
    }
};
ReactDOM.render(<App />, document.getElementById('element'));
{
  "supplemental": {
    "version": {
      "_number": "$Revision: 12732 $",
      "_unicodeVersion": "9.0.0",
      "_cldrVersion": "31"
    },
    "numberingSystems": {
      "adlm": {
        "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
        "_type": "numeric"
      },
      "ahom": {
        "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
        "_type": "numeric"
      },
      "arab": {
        "_digits": "٠١٢٣٤٥٦٧٨٩",
        "_type": "numeric"
      },
      "arabext": {
        "_digits": "۰۱۲۳۴۵۶۷۸۹",
        "_type": "numeric"
      },
      "armn": {
        "_rules": "armenian-upper",
        "_type": "algorithmic"
      },
      "armnlow": {
        "_rules": "armenian-lower",
        "_type": "algorithmic"
      },
      "bali": {
        "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
        "_type": "numeric"
      },
      "beng": {
        "_digits": "০১২৩৪৫৬৭৮৯",
        "_type": "numeric"
      },
      "bhks": {
        "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
        "_type": "numeric"
      },
      "brah": {
        "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
        "_type": "numeric"
      },
      "cakm": {
        "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
        "_type": "numeric"
      },
      "cham": {
        "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
        "_type": "numeric"
      },
      "cyrl": {
        "_rules": "cyrillic-lower",
        "_type": "algorithmic"
      },
      "deva": {
        "_digits": "०१२३४५६७८९",
        "_type": "numeric"
      },
      "ethi": {
        "_rules": "ethiopic",
        "_type": "algorithmic"
      },
      "fullwide": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "geor": {
        "_rules": "georgian",
        "_type": "algorithmic"
      },
      "grek": {
        "_rules": "greek-upper",
        "_type": "algorithmic"
      },
      "greklow": {
        "_rules": "greek-lower",
        "_type": "algorithmic"
      },
      "gujr": {
        "_digits": "૦૧૨૩૪૫૬૭૮૯",
        "_type": "numeric"
      },
      "guru": {
        "_digits": "੦੧੨੩੪੫੬੭੮੯",
        "_type": "numeric"
      },
      "hanidays": {
        "_rules": "zh/SpelloutRules/spellout-numbering-days",
        "_type": "algorithmic"
      },
      "hanidec": {
        "_digits": "〇一二三四五六七八九",
        "_type": "numeric"
      },
      "hans": {
        "_rules": "zh/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hansfin": {
        "_rules": "zh/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hant": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hantfin": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hebr": {
        "_rules": "hebrew",
        "_type": "algorithmic"
      },
      "hmng": {
        "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
        "_type": "numeric"
      },
      "java": {
        "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
        "_type": "numeric"
      },
      "jpan": {
        "_rules": "ja/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "jpanfin": {
        "_rules": "ja/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "kali": {
        "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
        "_type": "numeric"
      },
      "khmr": {
        "_digits": "០១២៣៤៥៦៧៨៩",
        "_type": "numeric"
      },
      "knda": {
        "_digits": "೦೧೨೩೪೫೬೭೮೯",
        "_type": "numeric"
      },
      "lana": {
        "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
        "_type": "numeric"
      },
      "lanatham": {
        "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
        "_type": "numeric"
      },
      "laoo": {
        "_digits": "໐໑໒໓໔໕໖໗໘໙",
        "_type": "numeric"
      },
      "latn": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "lepc": {
        "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
        "_type": "numeric"
      },
      "limb": {
        "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
        "_type": "numeric"
      },
      "mathbold": {
        "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
        "_type": "numeric"
      },
      "mathdbl": {
        "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
        "_type": "numeric"
      },
      "mathmono": {
        "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
        "_type": "numeric"
      },
      "mathsanb": {
        "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
        "_type": "numeric"
      },
      "mathsans": {
        "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
        "_type": "numeric"
      },
      "mlym": {
        "_digits": "൦൧൨൩൪൫൬൭൮൯",
        "_type": "numeric"
      },
      "modi": {
        "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
        "_type": "numeric"
      },
      "mong": {
        "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
        "_type": "numeric"
      },
      "mroo": {
        "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
        "_type": "numeric"
      },
      "mtei": {
        "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
        "_type": "numeric"
      },
      "mymr": {
        "_digits": "၀၁၂၃၄၅၆၇၈၉",
        "_type": "numeric"
      },
      "mymrshan": {
        "_digits": "႐႑႒႓႔႕႖႗႘႙",
        "_type": "numeric"
      },
      "mymrtlng": {
        "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
        "_type": "numeric"
      },
      "newa": {
        "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
        "_type": "numeric"
      },
      "nkoo": {
        "_digits": "߀߁߂߃߄߅߆߇߈߉",
        "_type": "numeric"
      },
      "olck": {
        "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
        "_type": "numeric"
      },
      "orya": {
        "_digits": "୦୧୨୩୪୫୬୭୮୯",
        "_type": "numeric"
      },
      "osma": {
        "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
        "_type": "numeric"
      },
      "roman": {
        "_rules": "roman-upper",
        "_type": "algorithmic"
      },
      "romanlow": {
        "_rules": "roman-lower",
        "_type": "algorithmic"
      },
      "saur": {
        "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
        "_type": "numeric"
      },
      "shrd": {
        "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
        "_type": "numeric"
      },
      "sind": {
        "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
        "_type": "numeric"
      },
      "sinh": {
        "_digits": "෦෧෨෩෪෫෬෭෮෯",
        "_type": "numeric"
      },
      "sora": {
        "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
        "_type": "numeric"
      },
      "sund": {
        "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
        "_type": "numeric"
      },
      "takr": {
        "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
        "_type": "numeric"
      },
      "talu": {
        "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
        "_type": "numeric"
      },
      "taml": {
        "_rules": "tamil",
        "_type": "algorithmic"
      },
      "tamldec": {
        "_digits": "௦௧௨௩௪௫௬௭௮௯",
        "_type": "numeric"
      },
      "telu": {
        "_digits": "౦౧౨౩౪౫౬౭౮౯",
        "_type": "numeric"
      },
      "thai": {
        "_digits": "๐๑๒๓๔๕๖๗๘๙",
        "_type": "numeric"
      },
      "tibt": {
        "_digits": "༠༡༢༣༤༥༦༧༨༩",
        "_type": "numeric"
      },
      "tirh": {
        "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
        "_type": "numeric"
      },
      "vaii": {
        "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
        "_type": "numeric"
      },
      "wara": {
        "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
        "_type": "numeric"
      }
    }
  }
}
{
    "supplemental";
    {
        "version";
        {
            "_number";
            "$Revision: 12732 $",
                "_unicodeVersion";
            "9.0.0",
                "_cldrVersion";
            "31";
        }
        "numberingSystems";
        {
            "adlm";
            {
                "_digits";
                "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
                    "_type";
                "numeric";
            }
            "ahom";
            {
                "_digits";
                "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
                    "_type";
                "numeric";
            }
            "arab";
            {
                "_digits";
                "٠١٢٣٤٥٦٧٨٩",
                    "_type";
                "numeric";
            }
            "arabext";
            {
                "_digits";
                "۰۱۲۳۴۵۶۷۸۹",
                    "_type";
                "numeric";
            }
            "armn";
            {
                "_rules";
                "armenian-upper",
                    "_type";
                "algorithmic";
            }
            "armnlow";
            {
                "_rules";
                "armenian-lower",
                    "_type";
                "algorithmic";
            }
            "bali";
            {
                "_digits";
                "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
                    "_type";
                "numeric";
            }
            "beng";
            {
                "_digits";
                "০১২৩৪৫৬৭৮৯",
                    "_type";
                "numeric";
            }
            "bhks";
            {
                "_digits";
                "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
                    "_type";
                "numeric";
            }
            "brah";
            {
                "_digits";
                "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
                    "_type";
                "numeric";
            }
            "cakm";
            {
                "_digits";
                "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
                    "_type";
                "numeric";
            }
            "cham";
            {
                "_digits";
                "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
                    "_type";
                "numeric";
            }
            "cyrl";
            {
                "_rules";
                "cyrillic-lower",
                    "_type";
                "algorithmic";
            }
            "deva";
            {
                "_digits";
                "०१२३४५६७८९",
                    "_type";
                "numeric";
            }
            "ethi";
            {
                "_rules";
                "ethiopic",
                    "_type";
                "algorithmic";
            }
            "fullwide";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "geor";
            {
                "_rules";
                "georgian",
                    "_type";
                "algorithmic";
            }
            "grek";
            {
                "_rules";
                "greek-upper",
                    "_type";
                "algorithmic";
            }
            "greklow";
            {
                "_rules";
                "greek-lower",
                    "_type";
                "algorithmic";
            }
            "gujr";
            {
                "_digits";
                "૦૧૨૩૪૫૬૭૮૯",
                    "_type";
                "numeric";
            }
            "guru";
            {
                "_digits";
                "੦੧੨੩੪੫੬੭੮੯",
                    "_type";
                "numeric";
            }
            "hanidays";
            {
                "_rules";
                "zh/SpelloutRules/spellout-numbering-days",
                    "_type";
                "algorithmic";
            }
            "hanidec";
            {
                "_digits";
                "〇一二三四五六七八九",
                    "_type";
                "numeric";
            }
            "hans";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hansfin";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hant";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hantfin";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hebr";
            {
                "_rules";
                "hebrew",
                    "_type";
                "algorithmic";
            }
            "hmng";
            {
                "_digits";
                "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
                    "_type";
                "numeric";
            }
            "java";
            {
                "_digits";
                "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
                    "_type";
                "numeric";
            }
            "jpan";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "jpanfin";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "kali";
            {
                "_digits";
                "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
                    "_type";
                "numeric";
            }
            "khmr";
            {
                "_digits";
                "០១២៣៤៥៦៧៨៩",
                    "_type";
                "numeric";
            }
            "knda";
            {
                "_digits";
                "೦೧೨೩೪೫೬೭೮೯",
                    "_type";
                "numeric";
            }
            "lana";
            {
                "_digits";
                "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
                    "_type";
                "numeric";
            }
            "lanatham";
            {
                "_digits";
                "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
                    "_type";
                "numeric";
            }
            "laoo";
            {
                "_digits";
                "໐໑໒໓໔໕໖໗໘໙",
                    "_type";
                "numeric";
            }
            "latn";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "lepc";
            {
                "_digits";
                "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
                    "_type";
                "numeric";
            }
            "limb";
            {
                "_digits";
                "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
                    "_type";
                "numeric";
            }
            "mathbold";
            {
                "_digits";
                "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
                    "_type";
                "numeric";
            }
            "mathdbl";
            {
                "_digits";
                "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
                    "_type";
                "numeric";
            }
            "mathmono";
            {
                "_digits";
                "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
                    "_type";
                "numeric";
            }
            "mathsanb";
            {
                "_digits";
                "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
                    "_type";
                "numeric";
            }
            "mathsans";
            {
                "_digits";
                "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
                    "_type";
                "numeric";
            }
            "mlym";
            {
                "_digits";
                "൦൧൨൩൪൫൬൭൮൯",
                    "_type";
                "numeric";
            }
            "modi";
            {
                "_digits";
                "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
                    "_type";
                "numeric";
            }
            "mong";
            {
                "_digits";
                "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
                    "_type";
                "numeric";
            }
            "mroo";
            {
                "_digits";
                "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
                    "_type";
                "numeric";
            }
            "mtei";
            {
                "_digits";
                "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
                    "_type";
                "numeric";
            }
            "mymr";
            {
                "_digits";
                "၀၁၂၃၄၅၆၇၈၉",
                    "_type";
                "numeric";
            }
            "mymrshan";
            {
                "_digits";
                "႐႑႒႓႔႕႖႗႘႙",
                    "_type";
                "numeric";
            }
            "mymrtlng";
            {
                "_digits";
                "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
                    "_type";
                "numeric";
            }
            "newa";
            {
                "_digits";
                "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
                    "_type";
                "numeric";
            }
            "nkoo";
            {
                "_digits";
                "߀߁߂߃߄߅߆߇߈߉",
                    "_type";
                "numeric";
            }
            "olck";
            {
                "_digits";
                "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
                    "_type";
                "numeric";
            }
            "orya";
            {
                "_digits";
                "୦୧୨୩୪୫୬୭୮୯",
                    "_type";
                "numeric";
            }
            "osma";
            {
                "_digits";
                "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
                    "_type";
                "numeric";
            }
            "roman";
            {
                "_rules";
                "roman-upper",
                    "_type";
                "algorithmic";
            }
            "romanlow";
            {
                "_rules";
                "roman-lower",
                    "_type";
                "algorithmic";
            }
            "saur";
            {
                "_digits";
                "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
                    "_type";
                "numeric";
            }
            "shrd";
            {
                "_digits";
                "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
                    "_type";
                "numeric";
            }
            "sind";
            {
                "_digits";
                "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
                    "_type";
                "numeric";
            }
            "sinh";
            {
                "_digits";
                "෦෧෨෩෪෫෬෭෮෯",
                    "_type";
                "numeric";
            }
            "sora";
            {
                "_digits";
                "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
                    "_type";
                "numeric";
            }
            "sund";
            {
                "_digits";
                "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
                    "_type";
                "numeric";
            }
            "takr";
            {
                "_digits";
                "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
                    "_type";
                "numeric";
            }
            "talu";
            {
                "_digits";
                "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
                    "_type";
                "numeric";
            }
            "taml";
            {
                "_rules";
                "tamil",
                    "_type";
                "algorithmic";
            }
            "tamldec";
            {
                "_digits";
                "௦௧௨௩௪௫௬௭௮௯",
                    "_type";
                "numeric";
            }
            "telu";
            {
                "_digits";
                "౦౧౨౩౪౫౬౭౮౯",
                    "_type";
                "numeric";
            }
            "thai";
            {
                "_digits";
                "๐๑๒๓๔๕๖๗๘๙",
                    "_type";
                "numeric";
            }
            "tibt";
            {
                "_digits";
                "༠༡༢༣༤༥༦༧༨༩",
                    "_type";
                "numeric";
            }
            "tirh";
            {
                "_digits";
                "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
                    "_type";
                "numeric";
            }
            "vaii";
            {
                "_digits";
                "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
                    "_type";
                "numeric";
            }
            "wara";
            {
                "_digits";
                "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
                    "_type";
                "numeric";
            }
        }
    }
}
{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31"
        },
        "language": "de"
      },
      "numbers": {
        "defaultNumberingSystem": "latn",
        "otherNumberingSystems": {
          "native": "latn"
        },
        "minimumGroupingDigits": "1",
        "symbols-numberSystem-latn": {
          "decimal": ",",
          "group": ".",
          "list": ";",
          "percentSign": "%",
          "plusSign": "+",
          "minusSign": "-",
          "exponential": "E",
          "superscriptingExponent": "·",
          "perMille": "‰",
          "infinity": "∞",
          "nan": "NaN",
          "timeSeparator": ":"
        },
        "decimalFormats-numberSystem-latn": {
          "standard": "#,##0.###",
          "long": {
            "decimalFormat": {
              "1000-count-one": "0 Tausend",
              "1000-count-other": "0 Tausend",
              "10000-count-one": "00 Tausend",
              "10000-count-other": "00 Tausend",
              "100000-count-one": "000 Tausend",
              "100000-count-other": "000 Tausend",
              "1000000-count-one": "0 Million",
              "1000000-count-other": "0 Millionen",
              "10000000-count-one": "00 Millionen",
              "10000000-count-other": "00 Millionen",
              "100000000-count-one": "000 Millionen",
              "100000000-count-other": "000 Millionen",
              "1000000000-count-one": "0 Milliarde",
              "1000000000-count-other": "0 Milliarden",
              "10000000000-count-one": "00 Milliarden",
              "10000000000-count-other": "00 Milliarden",
              "100000000000-count-one": "000 Milliarden",
              "100000000000-count-other": "000 Milliarden",
              "1000000000000-count-one": "0 Billion",
              "1000000000000-count-other": "0 Billionen",
              "10000000000000-count-one": "00 Billionen",
              "10000000000000-count-other": "00 Billionen",
              "100000000000000-count-one": "000 Billionen",
              "100000000000000-count-other": "000 Billionen"
            }
          },
          "short": {
            "decimalFormat": {
              "1000-count-one": "0",
              "1000-count-other": "0",
              "10000-count-one": "0",
              "10000-count-other": "0",
              "100000-count-one": "0",
              "100000-count-other": "0",
              "1000000-count-one": "0 Mio'.'",
              "1000000-count-other": "0 Mio'.'",
              "10000000-count-one": "00 Mio'.'",
              "10000000-count-other": "00 Mio'.'",
              "100000000-count-one": "000 Mio'.'",
              "100000000-count-other": "000 Mio'.'",
              "1000000000-count-one": "0 Mrd'.'",
              "1000000000-count-other": "0 Mrd'.'",
              "10000000000-count-one": "00 Mrd'.'",
              "10000000000-count-other": "00 Mrd'.'",
              "100000000000-count-one": "000 Mrd'.'",
              "100000000000-count-other": "000 Mrd'.'",
              "1000000000000-count-one": "0 Bio'.'",
              "1000000000000-count-other": "0 Bio'.'",
              "10000000000000-count-one": "00 Bio'.'",
              "10000000000000-count-other": "00 Bio'.'",
              "100000000000000-count-one": "000 Bio'.'",
              "100000000000000-count-other": "000 Bio'.'"
            }
          }
        },
        "scientificFormats-numberSystem-latn": {
          "standard": "#E0"
        },
        "percentFormats-numberSystem-latn": {
          "standard": "#,##0 %"
        },
        "currencyFormats-numberSystem-latn": {
          "currencySpacing": {
            "beforeCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            },
            "afterCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            }
          },
          "standard": "#,##0.00 ¤",
          "accounting": "#,##0.00 ¤",
          "short": {
            "standard": {
              "1000-count-one": "0 Tsd'.' ¤",
              "1000-count-other": "0 Tsd'.' ¤",
              "10000-count-one": "00 Tsd'.' ¤",
              "10000-count-other": "00 Tsd'.' ¤",
              "100000-count-one": "000 Tsd'.' ¤",
              "100000-count-other": "000 Tsd'.' ¤",
              "1000000-count-one": "0 Mio'.' ¤",
              "1000000-count-other": "0 Mio'.' ¤",
              "10000000-count-one": "00 Mio'.' ¤",
              "10000000-count-other": "00 Mio'.' ¤",
              "100000000-count-one": "000 Mio'.' ¤",
              "100000000-count-other": "000 Mio'.' ¤",
              "1000000000-count-one": "0 Mrd'.' ¤",
              "1000000000-count-other": "0 Mrd'.' ¤",
              "10000000000-count-one": "00 Mrd'.' ¤",
              "10000000000-count-other": "00 Mrd'.' ¤",
              "100000000000-count-one": "000 Mrd'.' ¤",
              "100000000000-count-other": "000 Mrd'.' ¤",
              "1000000000000-count-one": "0 Bio'.' ¤",
              "1000000000000-count-other": "0 Bio'.' ¤",
              "10000000000000-count-one": "00 Bio'.' ¤",
              "10000000000000-count-other": "00 Bio'.' ¤",
              "100000000000000-count-one": "000 Bio'.' ¤",
              "100000000000000-count-other": "000 Bio'.' ¤"
            }
          },
          "unitPattern-count-one": "{0} {1}",
          "unitPattern-count-other": "{0} {1}"
        },
        "miscPatterns-numberSystem-latn": {
          "atLeast": "{0}+",
          "range": "{0}–{1}"
        },
        "minimalPairs": {
          "pluralMinimalPairs": "{0} Tag",
          "pluralMinimalPairs": "{0} Tage",
          "other": "{0}. Abzweigung nach rechts nehmen"
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31";
                }
                "language";
                "de";
            }
            "numbers";
            {
                "defaultNumberingSystem";
                "latn",
                    "otherNumberingSystems";
                {
                    "native";
                    "latn";
                }
                "minimumGroupingDigits";
                "1",
                    "symbols-numberSystem-latn";
                {
                    "decimal";
                    ",",
                        "group";
                    ".",
                        "list";
                    ";",
                        "percentSign";
                    "%",
                        "plusSign";
                    "+",
                        "minusSign";
                    "-",
                        "exponential";
                    "E",
                        "superscriptingExponent";
                    "·",
                        "perMille";
                    "‰",
                        "infinity";
                    "∞",
                        "nan";
                    "NaN",
                        "timeSeparator";
                    ":";
                }
                "decimalFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0.###",
                        "long";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "0 Tausend",
                                "1000-count-other";
                            "0 Tausend",
                                "10000-count-one";
                            "00 Tausend",
                                "10000-count-other";
                            "00 Tausend",
                                "100000-count-one";
                            "000 Tausend",
                                "100000-count-other";
                            "000 Tausend",
                                "1000000-count-one";
                            "0 Million",
                                "1000000-count-other";
                            "0 Millionen",
                                "10000000-count-one";
                            "00 Millionen",
                                "10000000-count-other";
                            "00 Millionen",
                                "100000000-count-one";
                            "000 Millionen",
                                "100000000-count-other";
                            "000 Millionen",
                                "1000000000-count-one";
                            "0 Milliarde",
                                "1000000000-count-other";
                            "0 Milliarden",
                                "10000000000-count-one";
                            "00 Milliarden",
                                "10000000000-count-other";
                            "00 Milliarden",
                                "100000000000-count-one";
                            "000 Milliarden",
                                "100000000000-count-other";
                            "000 Milliarden",
                                "1000000000000-count-one";
                            "0 Billion",
                                "1000000000000-count-other";
                            "0 Billionen",
                                "10000000000000-count-one";
                            "00 Billionen",
                                "10000000000000-count-other";
                            "00 Billionen",
                                "100000000000000-count-one";
                            "000 Billionen",
                                "100000000000000-count-other";
                            "000 Billionen";
                        }
                    }
                    "short";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "0",
                                "1000-count-other";
                            "0",
                                "10000-count-one";
                            "0",
                                "10000-count-other";
                            "0",
                                "100000-count-one";
                            "0",
                                "100000-count-other";
                            "0",
                                "1000000-count-one";
                            "0 Mio'.'",
                                "1000000-count-other";
                            "0 Mio'.'",
                                "10000000-count-one";
                            "00 Mio'.'",
                                "10000000-count-other";
                            "00 Mio'.'",
                                "100000000-count-one";
                            "000 Mio'.'",
                                "100000000-count-other";
                            "000 Mio'.'",
                                "1000000000-count-one";
                            "0 Mrd'.'",
                                "1000000000-count-other";
                            "0 Mrd'.'",
                                "10000000000-count-one";
                            "00 Mrd'.'",
                                "10000000000-count-other";
                            "00 Mrd'.'",
                                "100000000000-count-one";
                            "000 Mrd'.'",
                                "100000000000-count-other";
                            "000 Mrd'.'",
                                "1000000000000-count-one";
                            "0 Bio'.'",
                                "1000000000000-count-other";
                            "0 Bio'.'",
                                "10000000000000-count-one";
                            "00 Bio'.'",
                                "10000000000000-count-other";
                            "00 Bio'.'",
                                "100000000000000-count-one";
                            "000 Bio'.'",
                                "100000000000000-count-other";
                            "000 Bio'.'";
                        }
                    }
                }
                "scientificFormats-numberSystem-latn";
                {
                    "standard";
                    "#E0";
                }
                "percentFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0 %";
                }
                "currencyFormats-numberSystem-latn";
                {
                    "currencySpacing";
                    {
                        "beforeCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                        "afterCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                    }
                    "standard";
                    "#,##0.00 ¤",
                        "accounting";
                    "#,##0.00 ¤",
                        "short";
                    {
                        "standard";
                        {
                            "1000-count-one";
                            "0 Tsd'.' ¤",
                                "1000-count-other";
                            "0 Tsd'.' ¤",
                                "10000-count-one";
                            "00 Tsd'.' ¤",
                                "10000-count-other";
                            "00 Tsd'.' ¤",
                                "100000-count-one";
                            "000 Tsd'.' ¤",
                                "100000-count-other";
                            "000 Tsd'.' ¤",
                                "1000000-count-one";
                            "0 Mio'.' ¤",
                                "1000000-count-other";
                            "0 Mio'.' ¤",
                                "10000000-count-one";
                            "00 Mio'.' ¤",
                                "10000000-count-other";
                            "00 Mio'.' ¤",
                                "100000000-count-one";
                            "000 Mio'.' ¤",
                                "100000000-count-other";
                            "000 Mio'.' ¤",
                                "1000000000-count-one";
                            "0 Mrd'.' ¤",
                                "1000000000-count-other";
                            "0 Mrd'.' ¤",
                                "10000000000-count-one";
                            "00 Mrd'.' ¤",
                                "10000000000-count-other";
                            "00 Mrd'.' ¤",
                                "100000000000-count-one";
                            "000 Mrd'.' ¤",
                                "100000000000-count-other";
                            "000 Mrd'.' ¤",
                                "1000000000000-count-one";
                            "0 Bio'.' ¤",
                                "1000000000000-count-other";
                            "0 Bio'.' ¤",
                                "10000000000000-count-one";
                            "00 Bio'.' ¤",
                                "10000000000000-count-other";
                            "00 Bio'.' ¤",
                                "100000000000000-count-one";
                            "000 Bio'.' ¤",
                                "100000000000000-count-other";
                            "000 Bio'.' ¤";
                        }
                    }
                    "unitPattern-count-one";
                    "{0} {1}",
                        "unitPattern-count-other";
                    "{0} {1}";
                }
                "miscPatterns-numberSystem-latn";
                {
                    "atLeast";
                    "{0}+",
                        "range";
                    "{0}–{1}";
                }
                "minimalPairs";
                {
                    "pluralMinimalPairs";
                    "{0} Tag",
                        "pluralMinimalPairs";
                    "{0} Tage",
                        "other";
                    "{0}. Abzweigung nach rechts nehmen";
                }
            }
        }
    }
}
{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 12879 $",
          "_cldrVersion": "30.0.3"
        },
        "language": "de"
      },
      "dates": {
        "timeZoneNames": {
          "hourFormat": "+HH:mm;-HH:mm",
          "gmtFormat": "GMT{0}",
          "gmtZeroFormat": "GMT",
          "regionFormat": "{0} Zeit",
          "regionFormat-type-daylight": "{0} Sommerzeit",
          "regionFormat-type-standard": "{0} Normalzeit",
          "fallbackFormat": "{1} ({0})",
          "zone": {
            "America": {
              "Adak": {
                "exemplarCity": "Adak"
              },
              "Anchorage": {
                "exemplarCity": "Anchorage"
              },
              "Anguilla": {
                "exemplarCity": "Anguilla"
              },
              "Antigua": {
                "exemplarCity": "Antigua"
              },
              "Araguaina": {
                "exemplarCity": "Araguaina"
              },
              "Argentina": {
                "Rio_Gallegos": {
                  "exemplarCity": "Rio Gallegos"
                },
                "San_Juan": {
                  "exemplarCity": "San Juan"
                },
                "Ushuaia": {
                  "exemplarCity": "Ushuaia"
                },
                "La_Rioja": {
                  "exemplarCity": "La Rioja"
                },
                "San_Luis": {
                  "exemplarCity": "San Luis"
                },
                "Salta": {
                  "exemplarCity": "Salta"
                },
                "Tucuman": {
                  "exemplarCity": "Tucuman"
                }
              },
              "Aruba": {
                "exemplarCity": "Aruba"
              },
              "Asuncion": {
                "exemplarCity": "Asunción"
              },
              "Bahia": {
                "exemplarCity": "Bahia"
              },
              "Bahia_Banderas": {
                "exemplarCity": "Bahia Banderas"
              },
              "Barbados": {
                "exemplarCity": "Barbados"
              },
              "Belem": {
                "exemplarCity": "Belem"
              },
              "Belize": {
                "exemplarCity": "Belize"
              },
              "Blanc-Sablon": {
                "exemplarCity": "Blanc-Sablon"
              },
              "Boa_Vista": {
                "exemplarCity": "Boa Vista"
              },
              "Bogota": {
                "exemplarCity": "Bogotá"
              },
              "Boise": {
                "exemplarCity": "Boise"
              },
              "Buenos_Aires": {
                "exemplarCity": "Buenos Aires"
              },
              "Cambridge_Bay": {
                "exemplarCity": "Cambridge Bay"
              },
              "Campo_Grande": {
                "exemplarCity": "Campo Grande"
              },
              "Cancun": {
                "exemplarCity": "Cancún"
              },
              "Caracas": {
                "exemplarCity": "Caracas"
              },
              "Catamarca": {
                "exemplarCity": "Catamarca"
              },
              "Cayenne": {
                "exemplarCity": "Cayenne"
              },
              "Cayman": {
                "exemplarCity": "Kaimaninseln"
              },
              "Chicago": {
                "exemplarCity": "Chicago"
              },
              "Chihuahua": {
                "exemplarCity": "Chihuahua"
              },
              "Coral_Harbour": {
                "exemplarCity": "Atikokan"
              },
              "Cordoba": {
                "exemplarCity": "Córdoba"
              },
              "Costa_Rica": {
                "exemplarCity": "Costa Rica"
              },
              "Creston": {
                "exemplarCity": "Creston"
              },
              "Cuiaba": {
                "exemplarCity": "Cuiaba"
              },
              "Curacao": {
                "exemplarCity": "Curaçao"
              },
              "Danmarkshavn": {
                "exemplarCity": "Danmarkshavn"
              },
              "Dawson": {
                "exemplarCity": "Dawson"
              },
              "Dawson_Creek": {
                "exemplarCity": "Dawson Creek"
              },
              "Denver": {
                "exemplarCity": "Denver"
              },
              "Detroit": {
                "exemplarCity": "Detroit"
              },
              "Dominica": {
                "exemplarCity": "Dominica"
              },
              "Edmonton": {
                "exemplarCity": "Edmonton"
              },
              "Eirunepe": {
                "exemplarCity": "Eirunepe"
              },
              "El_Salvador": {
                "exemplarCity": "El Salvador"
              },
              "Fort_Nelson": {
                "exemplarCity": "Fort Nelson"
              },
              "Fortaleza": {
                "exemplarCity": "Fortaleza"
              },
              "Glace_Bay": {
                "exemplarCity": "Glace Bay"
              },
              "Godthab": {
                "exemplarCity": "Nuuk"
              },
              "Goose_Bay": {
                "exemplarCity": "Goose Bay"
              },
              "Grand_Turk": {
                "exemplarCity": "Grand Turk"
              },
              "Grenada": {
                "exemplarCity": "Grenada"
              },
              "Guadeloupe": {
                "exemplarCity": "Guadeloupe"
              },
              "Guatemala": {
                "exemplarCity": "Guatemala"
              },
              "Guayaquil": {
                "exemplarCity": "Guayaquil"
              },
              "Guyana": {
                "exemplarCity": "Guyana"
              },
              "Halifax": {
                "exemplarCity": "Halifax"
              },
              "Havana": {
                "exemplarCity": "Havanna"
              },
              "Hermosillo": {
                "exemplarCity": "Hermosillo"
              },
              "Indiana": {
                "Vincennes": {
                  "exemplarCity": "Vincennes, Indiana"
                },
                "Petersburg": {
                  "exemplarCity": "Petersburg, Indiana"
                },
                "Tell_City": {
                  "exemplarCity": "Tell City, Indiana"
                },
                "Knox": {
                  "exemplarCity": "Knox, Indiana"
                },
                "Winamac": {
                  "exemplarCity": "Winamac, Indiana"
                },
                "Marengo": {
                  "exemplarCity": "Marengo, Indiana"
                },
                "Vevay": {
                  "exemplarCity": "Vevay, Indiana"
                }
              },
              "Indianapolis": {
                "exemplarCity": "Indianapolis"
              },
              "Inuvik": {
                "exemplarCity": "Inuvik"
              },
              "Iqaluit": {
                "exemplarCity": "Iqaluit"
              },
              "Jamaica": {
                "exemplarCity": "Jamaika"
              },
              "Jujuy": {
                "exemplarCity": "Jujuy"
              },
              "Juneau": {
                "exemplarCity": "Juneau"
              },
              "Kentucky": {
                "Monticello": {
                  "exemplarCity": "Monticello, Kentucky"
                }
              },
              "Kralendijk": {
                "exemplarCity": "Kralendijk"
              },
              "La_Paz": {
                "exemplarCity": "La Paz"
              },
              "Lima": {
                "exemplarCity": "Lima"
              },
              "Los_Angeles": {
                "exemplarCity": "Los Angeles"
              },
              "Louisville": {
                "exemplarCity": "Louisville"
              },
              "Lower_Princes": {
                "exemplarCity": "Lower Prince’s Quarter"
              },
              "Maceio": {
                "exemplarCity": "Maceio"
              },
              "Managua": {
                "exemplarCity": "Managua"
              },
              "Manaus": {
                "exemplarCity": "Manaus"
              },
              "Marigot": {
                "exemplarCity": "Marigot"
              },
              "Martinique": {
                "exemplarCity": "Martinique"
              },
              "Matamoros": {
                "exemplarCity": "Matamoros"
              },
              "Mazatlan": {
                "exemplarCity": "Mazatlan"
              },
              "Mendoza": {
                "exemplarCity": "Mendoza"
              },
              "Menominee": {
                "exemplarCity": "Menominee"
              },
              "Merida": {
                "exemplarCity": "Merida"
              },
              "Metlakatla": {
                "exemplarCity": "Metlakatla"
              },
              "Mexico_City": {
                "exemplarCity": "Mexiko-Stadt"
              },
              "Miquelon": {
                "exemplarCity": "Miquelon"
              },
              "Moncton": {
                "exemplarCity": "Moncton"
              },
              "Monterrey": {
                "exemplarCity": "Monterrey"
              },
              "Montevideo": {
                "exemplarCity": "Montevideo"
              },
              "Montserrat": {
                "exemplarCity": "Montserrat"
              },
              "Nassau": {
                "exemplarCity": "Nassau"
              },
              "New_York": {
                "exemplarCity": "New York"
              },
              "Nipigon": {
                "exemplarCity": "Nipigon"
              },
              "Nome": {
                "exemplarCity": "Nome"
              },
              "Noronha": {
                "exemplarCity": "Noronha"
              },
              "North_Dakota": {
                "Beulah": {
                  "exemplarCity": "Beulah, North Dakota"
                },
                "New_Salem": {
                  "exemplarCity": "New Salem, North Dakota"
                },
                "Center": {
                  "exemplarCity": "Center, North Dakota"
                }
              },
              "Ojinaga": {
                "exemplarCity": "Ojinaga"
              },
              "Panama": {
                "exemplarCity": "Panama"
              },
              "Pangnirtung": {
                "exemplarCity": "Pangnirtung"
              },
              "Paramaribo": {
                "exemplarCity": "Paramaribo"
              },
              "Phoenix": {
                "exemplarCity": "Phoenix"
              },
              "Port-au-Prince": {
                "exemplarCity": "Port-au-Prince"
              },
              "Port_of_Spain": {
                "exemplarCity": "Port of Spain"
              },
              "Porto_Velho": {
                "exemplarCity": "Porto Velho"
              },
              "Puerto_Rico": {
                "exemplarCity": "Puerto Rico"
              },
              "Rainy_River": {
                "exemplarCity": "Rainy River"
              },
              "Rankin_Inlet": {
                "exemplarCity": "Rankin Inlet"
              },
              "Recife": {
                "exemplarCity": "Recife"
              },
              "Regina": {
                "exemplarCity": "Regina"
              },
              "Resolute": {
                "exemplarCity": "Resolute"
              },
              "Rio_Branco": {
                "exemplarCity": "Rio Branco"
              },
              "Santa_Isabel": {
                "exemplarCity": "Santa Isabel"
              },
              "Santarem": {
                "exemplarCity": "Santarem"
              },
              "Santiago": {
                "exemplarCity": "Santiago"
              },
              "Santo_Domingo": {
                "exemplarCity": "Santo Domingo"
              },
              "Sao_Paulo": {
                "exemplarCity": "São Paulo"
              },
              "Scoresbysund": {
                "exemplarCity": "Ittoqqortoormiit"
              },
              "Sitka": {
                "exemplarCity": "Sitka"
              },
              "St_Barthelemy": {
                "exemplarCity": "Saint-Barthélemy"
              },
              "St_Johns": {
                "exemplarCity": "St. John’s"
              },
              "St_Kitts": {
                "exemplarCity": "St. Kitts"
              },
              "St_Lucia": {
                "exemplarCity": "St. Lucia"
              },
              "St_Thomas": {
                "exemplarCity": "St. Thomas"
              },
              "St_Vincent": {
                "exemplarCity": "St. Vincent"
              },
              "Swift_Current": {
                "exemplarCity": "Swift Current"
              },
              "Tegucigalpa": {
                "exemplarCity": "Tegucigalpa"
              },
              "Thule": {
                "exemplarCity": "Thule"
              },
              "Thunder_Bay": {
                "exemplarCity": "Thunder Bay"
              },
              "Tijuana": {
                "exemplarCity": "Tijuana"
              },
              "Toronto": {
                "exemplarCity": "Toronto"
              },
              "Tortola": {
                "exemplarCity": "Tortola"
              },
              "Vancouver": {
                "exemplarCity": "Vancouver"
              },
              "Whitehorse": {
                "exemplarCity": "Whitehorse"
              },
              "Winnipeg": {
                "exemplarCity": "Winnipeg"
              },
              "Yakutat": {
                "exemplarCity": "Yakutat"
              },
              "Yellowknife": {
                "exemplarCity": "Yellowknife"
              }
            },
            "Atlantic": {
              "Azores": {
                "exemplarCity": "Azoren"
              },
              "Bermuda": {
                "exemplarCity": "Bermudas"
              },
              "Canary": {
                "exemplarCity": "Kanaren"
              },
              "Cape_Verde": {
                "exemplarCity": "Cabo Verde"
              },
              "Faeroe": {
                "exemplarCity": "Färöer"
              },
              "Madeira": {
                "exemplarCity": "Madeira"
              },
              "Reykjavik": {
                "exemplarCity": "Reyk­ja­vík"
              },
              "South_Georgia": {
                "exemplarCity": "Südgeorgien"
              },
              "St_Helena": {
                "exemplarCity": "St. Helena"
              },
              "Stanley": {
                "exemplarCity": "Stanley"
              }
            },
            "Europe": {
              "Amsterdam": {
                "exemplarCity": "Amsterdam"
              },
              "Andorra": {
                "exemplarCity": "Andorra"
              },
              "Astrakhan": {
                "exemplarCity": "Astrachan"
              },
              "Athens": {
                "exemplarCity": "Athen"
              },
              "Belgrade": {
                "exemplarCity": "Belgrad"
              },
              "Berlin": {
                "exemplarCity": "Berlin"
              },
              "Bratislava": {
                "exemplarCity": "Bratislava"
              },
              "Brussels": {
                "exemplarCity": "Brüssel"
              },
              "Bucharest": {
                "exemplarCity": "Bukarest"
              },
              "Budapest": {
                "exemplarCity": "Budapest"
              },
              "Busingen": {
                "exemplarCity": "Büsingen"
              },
              "Chisinau": {
                "exemplarCity": "Kischinau"
              },
              "Copenhagen": {
                "exemplarCity": "Kopenhagen"
              },
              "Dublin": {
                "long": {
                  "daylight": "Irische Sommerzeit"
                },
                "exemplarCity": "Dublin"
              },
              "Gibraltar": {
                "exemplarCity": "Gibraltar"
              },
              "Guernsey": {
                "exemplarCity": "Guernsey"
              },
              "Helsinki": {
                "exemplarCity": "Helsinki"
              },
              "Isle_of_Man": {
                "exemplarCity": "Isle of Man"
              },
              "Istanbul": {
                "exemplarCity": "Istanbul"
              },
              "Jersey": {
                "exemplarCity": "Jersey"
              },
              "Kaliningrad": {
                "exemplarCity": "Kaliningrad"
              },
              "Kiev": {
                "exemplarCity": "Kiew"
              },
              "Kirov": {
                "exemplarCity": "Kirow"
              },
              "Lisbon": {
                "exemplarCity": "Lissabon"
              },
              "Ljubljana": {
                "exemplarCity": "Ljubljana"
              },
              "London": {
                "long": {
                  "daylight": "Britische Sommerzeit"
                },
                "exemplarCity": "London"
              },
              "Luxembourg": {
                "exemplarCity": "Luxemburg"
              },
              "Madrid": {
                "exemplarCity": "Madrid"
              },
              "Malta": {
                "exemplarCity": "Malta"
              },
              "Mariehamn": {
                "exemplarCity": "Mariehamn"
              },
              "Minsk": {
                "exemplarCity": "Minsk"
              },
              "Monaco": {
                "exemplarCity": "Monaco"
              },
              "Moscow": {
                "exemplarCity": "Moskau"
              },
              "Oslo": {
                "exemplarCity": "Oslo"
              },
              "Paris": {
                "exemplarCity": "Paris"
              },
              "Podgorica": {
                "exemplarCity": "Podgorica"
              },
              "Prague": {
                "exemplarCity": "Prag"
              },
              "Riga": {
                "exemplarCity": "Riga"
              },
              "Rome": {
                "exemplarCity": "Rom"
              },
              "Samara": {
                "exemplarCity": "Samara"
              },
              "San_Marino": {
                "exemplarCity": "San Marino"
              },
              "Sarajevo": {
                "exemplarCity": "Sarajevo"
              },
              "Simferopol": {
                "exemplarCity": "Simferopol"
              },
              "Skopje": {
                "exemplarCity": "Skopje"
              },
              "Sofia": {
                "exemplarCity": "Sofia"
              },
              "Stockholm": {
                "exemplarCity": "Stockholm"
              },
              "Tallinn": {
                "exemplarCity": "Tallinn"
              },
              "Tirane": {
                "exemplarCity": "Tirana"
              },
              "Ulyanovsk": {
                "exemplarCity": "Uljanowsk"
              },
              "Uzhgorod": {
                "exemplarCity": "Uschgorod"
              },
              "Vaduz": {
                "exemplarCity": "Vaduz"
              },
              "Vatican": {
                "exemplarCity": "Vatikan"
              },
              "Vienna": {
                "exemplarCity": "Wien"
              },
              "Vilnius": {
                "exemplarCity": "Vilnius"
              },
              "Volgograd": {
                "exemplarCity": "Wolgograd"
              },
              "Warsaw": {
                "exemplarCity": "Warschau"
              },
              "Zagreb": {
                "exemplarCity": "Zagreb"
              },
              "Zaporozhye": {
                "exemplarCity": "Saporischja"
              },
              "Zurich": {
                "exemplarCity": "Zürich"
              }
            },
            "Africa": {
              "Abidjan": {
                "exemplarCity": "Abidjan"
              },
              "Accra": {
                "exemplarCity": "Accra"
              },
              "Addis_Ababa": {
                "exemplarCity": "Addis Abeba"
              },
              "Algiers": {
                "exemplarCity": "Algier"
              },
              "Asmera": {
                "exemplarCity": "Asmara"
              },
              "Bamako": {
                "exemplarCity": "Bamako"
              },
              "Bangui": {
                "exemplarCity": "Bangui"
              },
              "Banjul": {
                "exemplarCity": "Banjul"
              },
              "Bissau": {
                "exemplarCity": "Bissau"
              },
              "Blantyre": {
                "exemplarCity": "Blantyre"
              },
              "Brazzaville": {
                "exemplarCity": "Brazzaville"
              },
              "Bujumbura": {
                "exemplarCity": "Bujumbura"
              },
              "Cairo": {
                "exemplarCity": "Kairo"
              },
              "Casablanca": {
                "exemplarCity": "Casablanca"
              },
              "Ceuta": {
                "exemplarCity": "Ceuta"
              },
              "Conakry": {
                "exemplarCity": "Conakry"
              },
              "Dakar": {
                "exemplarCity": "Dakar"
              },
              "Dar_es_Salaam": {
                "exemplarCity": "Daressalam"
              },
              "Djibouti": {
                "exemplarCity": "Dschibuti"
              },
              "Douala": {
                "exemplarCity": "Douala"
              },
              "El_Aaiun": {
                "exemplarCity": "El Aaiún"
              },
              "Freetown": {
                "exemplarCity": "Freetown"
              },
              "Gaborone": {
                "exemplarCity": "Gaborone"
              },
              "Harare": {
                "exemplarCity": "Harare"
              },
              "Johannesburg": {
                "exemplarCity": "Johannesburg"
              },
              "Juba": {
                "exemplarCity": "Juba"
              },
              "Kampala": {
                "exemplarCity": "Kampala"
              },
              "Khartoum": {
                "exemplarCity": "Khartum"
              },
              "Kigali": {
                "exemplarCity": "Kigali"
              },
              "Kinshasa": {
                "exemplarCity": "Kinshasa"
              },
              "Lagos": {
                "exemplarCity": "Lagos"
              },
              "Libreville": {
                "exemplarCity": "Libreville"
              },
              "Lome": {
                "exemplarCity": "Lomé"
              },
              "Luanda": {
                "exemplarCity": "Luanda"
              },
              "Lubumbashi": {
                "exemplarCity": "Lubumbashi"
              },
              "Lusaka": {
                "exemplarCity": "Lusaka"
              },
              "Malabo": {
                "exemplarCity": "Malabo"
              },
              "Maputo": {
                "exemplarCity": "Maputo"
              },
              "Maseru": {
                "exemplarCity": "Maseru"
              },
              "Mbabane": {
                "exemplarCity": "Mbabane"
              },
              "Mogadishu": {
                "exemplarCity": "Mogadischu"
              },
              "Monrovia": {
                "exemplarCity": "Monrovia"
              },
              "Nairobi": {
                "exemplarCity": "Nairobi"
              },
              "Ndjamena": {
                "exemplarCity": "N’Djamena"
              },
              "Niamey": {
                "exemplarCity": "Niamey"
              },
              "Nouakchott": {
                "exemplarCity": "Nouakchott"
              },
              "Ouagadougou": {
                "exemplarCity": "Ouagadougou"
              },
              "Porto-Novo": {
                "exemplarCity": "Porto Novo"
              },
              "Sao_Tome": {
                "exemplarCity": "São Tomé"
              },
              "Tripoli": {
                "exemplarCity": "Tripolis"
              },
              "Tunis": {
                "exemplarCity": "Tunis"
              },
              "Windhoek": {
                "exemplarCity": "Windhoek"
              }
            },
            "Asia": {
              "Aden": {
                "exemplarCity": "Aden"
              },
              "Almaty": {
                "exemplarCity": "Almaty"
              },
              "Amman": {
                "exemplarCity": "Amman"
              },
              "Anadyr": {
                "exemplarCity": "Anadyr"
              },
              "Aqtau": {
                "exemplarCity": "Aqtau"
              },
              "Aqtobe": {
                "exemplarCity": "Aktobe"
              },
              "Ashgabat": {
                "exemplarCity": "Aşgabat"
              },
              "Baghdad": {
                "exemplarCity": "Bagdad"
              },
              "Bahrain": {
                "exemplarCity": "Bahrain"
              },
              "Baku": {
                "exemplarCity": "Baku"
              },
              "Bangkok": {
                "exemplarCity": "Bangkok"
              },
              "Barnaul": {
                "exemplarCity": "Barnaul"
              },
              "Beirut": {
                "exemplarCity": "Beirut"
              },
              "Bishkek": {
                "exemplarCity": "Bischkek"
              },
              "Brunei": {
                "exemplarCity": "Brunei"
              },
              "Calcutta": {
                "exemplarCity": "Kalkutta"
              },
              "Chita": {
                "exemplarCity": "Tschita"
              },
              "Choibalsan": {
                "exemplarCity": "Tschoibalsan"
              },
              "Colombo": {
                "exemplarCity": "Colombo"
              },
              "Damascus": {
                "exemplarCity": "Damaskus"
              },
              "Dhaka": {
                "exemplarCity": "Dhaka"
              },
              "Dili": {
                "exemplarCity": "Dili"
              },
              "Dubai": {
                "exemplarCity": "Dubai"
              },
              "Dushanbe": {
                "exemplarCity": "Duschanbe"
              },
              "Gaza": {
                "exemplarCity": "Gaza"
              },
              "Hebron": {
                "exemplarCity": "Hebron"
              },
              "Hong_Kong": {
                "exemplarCity": "Hongkong"
              },
              "Hovd": {
                "exemplarCity": "Chowd"
              },
              "Irkutsk": {
                "exemplarCity": "Irkutsk"
              },
              "Jakarta": {
                "exemplarCity": "Jakarta"
              },
              "Jayapura": {
                "exemplarCity": "Jayapura"
              },
              "Jerusalem": {
                "exemplarCity": "Jerusalem"
              },
              "Kabul": {
                "exemplarCity": "Kabul"
              },
              "Kamchatka": {
                "exemplarCity": "Kamtschatka"
              },
              "Karachi": {
                "exemplarCity": "Karatschi"
              },
              "Katmandu": {
                "exemplarCity": "Kathmandu"
              },
              "Khandyga": {
                "exemplarCity": "Chandyga"
              },
              "Krasnoyarsk": {
                "exemplarCity": "Krasnojarsk"
              },
              "Kuala_Lumpur": {
                "exemplarCity": "Kuala Lumpur"
              },
              "Kuching": {
                "exemplarCity": "Kuching"
              },
              "Kuwait": {
                "exemplarCity": "Kuwait"
              },
              "Macau": {
                "exemplarCity": "Macao"
              },
              "Magadan": {
                "exemplarCity": "Magadan"
              },
              "Makassar": {
                "exemplarCity": "Makassar"
              },
              "Manila": {
                "exemplarCity": "Manila"
              },
              "Muscat": {
                "exemplarCity": "Maskat"
              },
              "Nicosia": {
                "exemplarCity": "Nikosia"
              },
              "Novokuznetsk": {
                "exemplarCity": "Nowokuznetsk"
              },
              "Novosibirsk": {
                "exemplarCity": "Nowosibirsk"
              },
              "Omsk": {
                "exemplarCity": "Omsk"
              },
              "Oral": {
                "exemplarCity": "Oral"
              },
              "Phnom_Penh": {
                "exemplarCity": "Phnom Penh"
              },
              "Pontianak": {
                "exemplarCity": "Pontianak"
              },
              "Pyongyang": {
                "exemplarCity": "Pjöngjang"
              },
              "Qatar": {
                "exemplarCity": "Katar"
              },
              "Qyzylorda": {
                "exemplarCity": "Qysylorda"
              },
              "Rangoon": {
                "exemplarCity": "Rangun"
              },
              "Riyadh": {
                "exemplarCity": "Riad"
              },
              "Saigon": {
                "exemplarCity": "Ho-Chi-Minh-Stadt"
              },
              "Sakhalin": {
                "exemplarCity": "Sachalin"
              },
              "Samarkand": {
                "exemplarCity": "Samarkand"
              },
              "Seoul": {
                "exemplarCity": "Seoul"
              },
              "Shanghai": {
                "exemplarCity": "Shanghai"
              },
              "Singapore": {
                "exemplarCity": "Singapur"
              },
              "Srednekolymsk": {
                "exemplarCity": "Srednekolymsk"
              },
              "Taipei": {
                "exemplarCity": "Taipeh"
              },
              "Tashkent": {
                "exemplarCity": "Taschkent"
              },
              "Tbilisi": {
                "exemplarCity": "Tiflis"
              },
              "Tehran": {
                "exemplarCity": "Teheran"
              },
              "Thimphu": {
                "exemplarCity": "Thimphu"
              },
              "Tokyo": {
                "exemplarCity": "Tokio"
              },
              "Tomsk": {
                "exemplarCity": "Tomsk"
              },
              "Ulaanbaatar": {
                "exemplarCity": "Ulaanbaatar"
              },
              "Urumqi": {
                "exemplarCity": "Ürümqi"
              },
              "Ust-Nera": {
                "exemplarCity": "Ust-Nera"
              },
              "Vientiane": {
                "exemplarCity": "Vientiane"
              },
              "Vladivostok": {
                "exemplarCity": "Wladiwostok"
              },
              "Yakutsk": {
                "exemplarCity": "Jakutsk"
              },
              "Yekaterinburg": {
                "exemplarCity": "Jekaterinburg"
              },
              "Yerevan": {
                "exemplarCity": "Eriwan"
              }
            },
            "Indian": {
              "Antananarivo": {
                "exemplarCity": "Antananarivo"
              },
              "Chagos": {
                "exemplarCity": "Chagos"
              },
              "Christmas": {
                "exemplarCity": "Weihnachtsinsel"
              },
              "Cocos": {
                "exemplarCity": "Cocos"
              },
              "Comoro": {
                "exemplarCity": "Komoren"
              },
              "Kerguelen": {
                "exemplarCity": "Kerguelen"
              },
              "Mahe": {
                "exemplarCity": "Mahe"
              },
              "Maldives": {
                "exemplarCity": "Malediven"
              },
              "Mauritius": {
                "exemplarCity": "Mauritius"
              },
              "Mayotte": {
                "exemplarCity": "Mayotte"
              },
              "Reunion": {
                "exemplarCity": "Réunion"
              }
            },
            "Australia": {
              "Adelaide": {
                "exemplarCity": "Adelaide"
              },
              "Brisbane": {
                "exemplarCity": "Brisbane"
              },
              "Broken_Hill": {
                "exemplarCity": "Broken Hill"
              },
              "Currie": {
                "exemplarCity": "Currie"
              },
              "Darwin": {
                "exemplarCity": "Darwin"
              },
              "Eucla": {
                "exemplarCity": "Eucla"
              },
              "Hobart": {
                "exemplarCity": "Hobart"
              },
              "Lindeman": {
                "exemplarCity": "Lindeman"
              },
              "Lord_Howe": {
                "exemplarCity": "Lord Howe"
              },
              "Melbourne": {
                "exemplarCity": "Melbourne"
              },
              "Perth": {
                "exemplarCity": "Perth"
              },
              "Sydney": {
                "exemplarCity": "Sydney"
              }
            },
            "Pacific": {
              "Apia": {
                "exemplarCity": "Apia"
              },
              "Auckland": {
                "exemplarCity": "Auckland"
              },
              "Bougainville": {
                "exemplarCity": "Bougainville"
              },
              "Chatham": {
                "exemplarCity": "Chatham"
              },
              "Easter": {
                "exemplarCity": "Osterinsel"
              },
              "Efate": {
                "exemplarCity": "Efate"
              },
              "Enderbury": {
                "exemplarCity": "Enderbury"
              },
              "Fakaofo": {
                "exemplarCity": "Fakaofo"
              },
              "Fiji": {
                "exemplarCity": "Fidschi"
              },
              "Funafuti": {
                "exemplarCity": "Funafuti"
              },
              "Galapagos": {
                "exemplarCity": "Galapagos"
              },
              "Gambier": {
                "exemplarCity": "Gambier"
              },
              "Guadalcanal": {
                "exemplarCity": "Guadalcanal"
              },
              "Guam": {
                "exemplarCity": "Guam"
              },
              "Honolulu": {
                "exemplarCity": "Honolulu"
              },
              "Johnston": {
                "exemplarCity": "Johnston"
              },
              "Kiritimati": {
                "exemplarCity": "Kiritimati"
              },
              "Kosrae": {
                "exemplarCity": "Kosrae"
              },
              "Kwajalein": {
                "exemplarCity": "Kwajalein"
              },
              "Majuro": {
                "exemplarCity": "Majuro"
              },
              "Marquesas": {
                "exemplarCity": "Marquesas"
              },
              "Midway": {
                "exemplarCity": "Midway"
              },
              "Nauru": {
                "exemplarCity": "Nauru"
              },
              "Niue": {
                "exemplarCity": "Niue"
              },
              "Norfolk": {
                "exemplarCity": "Norfolk"
              },
              "Noumea": {
                "exemplarCity": "Noumea"
              },
              "Pago_Pago": {
                "exemplarCity": "Pago Pago"
              },
              "Palau": {
                "exemplarCity": "Palau"
              },
              "Pitcairn": {
                "exemplarCity": "Pitcairn"
              },
              "Ponape": {
                "exemplarCity": "Pohnpei"
              },
              "Port_Moresby": {
                "exemplarCity": "Port Moresby"
              },
              "Rarotonga": {
                "exemplarCity": "Rarotonga"
              },
              "Saipan": {
                "exemplarCity": "Saipan"
              },
              "Tahiti": {
                "exemplarCity": "Tahiti"
              },
              "Tarawa": {
                "exemplarCity": "Tarawa"
              },
              "Tongatapu": {
                "exemplarCity": "Tongatapu"
              },
              "Truk": {
                "exemplarCity": "Chuuk"
              },
              "Wake": {
                "exemplarCity": "Wake"
              },
              "Wallis": {
                "exemplarCity": "Wallis"
              }
            },
            "Arctic": {
              "Longyearbyen": {
                "exemplarCity": "Longyearbyen"
              }
            },
            "Antarctica": {
              "Casey": {
                "exemplarCity": "Casey"
              },
              "Davis": {
                "exemplarCity": "Davis"
              },
              "DumontDUrville": {
                "exemplarCity": "Dumont d’Urville"
              },
              "Macquarie": {
                "exemplarCity": "Macquarie"
              },
              "Mawson": {
                "exemplarCity": "Mawson"
              },
              "McMurdo": {
                "exemplarCity": "McMurdo"
              },
              "Palmer": {
                "exemplarCity": "Palmer"
              },
              "Rothera": {
                "exemplarCity": "Rothera"
              },
              "Syowa": {
                "exemplarCity": "Syowa"
              },
              "Troll": {
                "exemplarCity": "Troll"
              },
              "Vostok": {
                "exemplarCity": "Wostok"
              }
            },
            "Etc": {
              "GMT": {
                "exemplarCity": "GMT"
              },
              "GMT1": {
                "exemplarCity": "GMT+1"
              },
              "GMT10": {
                "exemplarCity": "GMT+10"
              },
              "GMT11": {
                "exemplarCity": "GMT+11"
              },
              "GMT12": {
                "exemplarCity": "GMT+12"
              },
              "GMT2": {
                "exemplarCity": "GMT+2"
              },
              "GMT3": {
                "exemplarCity": "GMT+3"
              },
              "GMT4": {
                "exemplarCity": "GMT+4"
              },
              "GMT5": {
                "exemplarCity": "GMT+5"
              },
              "GMT6": {
                "exemplarCity": "GMT+6"
              },
              "GMT7": {
                "exemplarCity": "GMT+7"
              },
              "GMT8": {
                "exemplarCity": "GMT+8"
              },
              "GMT9": {
                "exemplarCity": "GMT+9"
              },
              "GMT-1": {
                "exemplarCity": "GMT-1"
              },
              "GMT-10": {
                "exemplarCity": "GMT-10"
              },
              "GMT-11": {
                "exemplarCity": "GMT-11"
              },
              "GMT-12": {
                "exemplarCity": "GMT-12"
              },
              "GMT-13": {
                "exemplarCity": "GMT-13"
              },
              "GMT-14": {
                "exemplarCity": "GMT-14"
              },
              "GMT-2": {
                "exemplarCity": "GMT-2"
              },
              "GMT-3": {
                "exemplarCity": "GMT-3"
              },
              "GMT-4": {
                "exemplarCity": "GMT-4"
              },
              "GMT-5": {
                "exemplarCity": "GMT-5"
              },
              "GMT-6": {
                "exemplarCity": "GMT-6"
              },
              "GMT-7": {
                "exemplarCity": "GMT-7"
              },
              "GMT-8": {
                "exemplarCity": "GMT-8"
              },
              "GMT-9": {
                "exemplarCity": "GMT-9"
              },
              "Unknown": {
                "exemplarCity": "Unbekannt"
              }
            }
          },
          "metazone": {
            "Acre": {
              "long": {
                "generic": "Acre-Zeit",
                "standard": "Acre-Normalzeit",
                "daylight": "Acre-Sommerzeit"
              }
            },
            "Afghanistan": {
              "long": {
                "standard": "Afghanistan-Zeit"
              }
            },
            "Africa_Central": {
              "long": {
                "standard": "Zentralafrikanische Zeit"
              }
            },
            "Africa_Eastern": {
              "long": {
                "standard": "Ostafrikanische Zeit"
              }
            },
            "Africa_Southern": {
              "long": {
                "standard": "Südafrikanische Zeit"
              }
            },
            "Africa_Western": {
              "long": {
                "generic": "Westafrikanische Zeit",
                "standard": "Westafrikanische Normalzeit",
                "daylight": "Westafrikanische Sommerzeit"
              }
            },
            "Alaska": {
              "long": {
                "generic": "Alaska-Zeit",
                "standard": "Alaska-Normalzeit",
                "daylight": "Alaska-Sommerzeit"
              }
            },
            "Almaty": {
              "long": {
                "generic": "Almaty-Zeit",
                "standard": "Almaty-Normalzeit",
                "daylight": "Almaty-Sommerzeit"
              }
            },
            "Amazon": {
              "long": {
                "generic": "Amazonas-Zeit",
                "standard": "Amazonas-Normalzeit",
                "daylight": "Amazonas-Sommerzeit"
              }
            },
            "America_Central": {
              "long": {
                "generic": "Nordamerikanische Inlandzeit",
                "standard": "Nordamerikanische Inland-Normalzeit",
                "daylight": "Nordamerikanische Inland-Sommerzeit"
              }
            },
            "America_Eastern": {
              "long": {
                "generic": "Nordamerikanische Ostküstenzeit",
                "standard": "Nordamerikanische Ostküsten-Normalzeit",
                "daylight": "Nordamerikanische Ostküsten-Sommerzeit"
              }
            },
            "America_Mountain": {
              "long": {
                "generic": "Rocky-Mountain-Zeit",
                "standard": "Rocky Mountain-Normalzeit",
                "daylight": "Rocky-Mountain-Sommerzeit"
              }
            },
            "America_Pacific": {
              "long": {
                "generic": "Nordamerikanische Westküstenzeit",
                "standard": "Nordamerikanische Westküsten-Normalzeit",
                "daylight": "Nordamerikanische Westküsten-Sommerzeit"
              }
            },
            "Anadyr": {
              "long": {
                "generic": "Anadyr Zeit",
                "standard": "Anadyr Normalzeit",
                "daylight": "Anadyr Sommerzeit"
              }
            },
            "Apia": {
              "long": {
                "generic": "Apia-Zeit",
                "standard": "Apia-Normalzeit",
                "daylight": "Apia-Sommerzeit"
              }
            },
            "Aqtau": {
              "long": {
                "generic": "Aqtau-Zeit",
                "standard": "Aqtau-Normalzeit",
                "daylight": "Aqtau-Sommerzeit"
              }
            },
            "Aqtobe": {
              "long": {
                "generic": "Aqtöbe-Zeit",
                "standard": "Aqtöbe-Normalzeit",
                "daylight": "Aqtöbe-Sommerzeit"
              }
            },
            "Arabian": {
              "long": {
                "generic": "Arabische Zeit",
                "standard": "Arabische Normalzeit",
                "daylight": "Arabische Sommerzeit"
              }
            },
            "Argentina": {
              "long": {
                "generic": "Argentinische Zeit",
                "standard": "Argentinische Normalzeit",
                "daylight": "Argentinische Sommerzeit"
              }
            },
            "Argentina_Western": {
              "long": {
                "generic": "Westargentinische Zeit",
                "standard": "Westargentinische Normalzeit",
                "daylight": "Westargentinische Sommerzeit"
              }
            },
            "Armenia": {
              "long": {
                "generic": "Armenische Zeit",
                "standard": "Armenische Normalzeit",
                "daylight": "Armenische Sommerzeit"
              }
            },
            "Atlantic": {
              "long": {
                "generic": "Atlantik-Zeit",
                "standard": "Atlantik-Normalzeit",
                "daylight": "Atlantik-Sommerzeit"
              }
            },
            "Australia_Central": {
              "long": {
                "generic": "Zentralaustralische Zeit",
                "standard": "Zentralaustralische Normalzeit",
                "daylight": "Zentralaustralische Sommerzeit"
              }
            },
            "Australia_CentralWestern": {
              "long": {
                "generic": "Zentral-/Westaustralische Zeit",
                "standard": "Zentral-/Westaustralische Normalzeit",
                "daylight": "Zentral-/Westaustralische Sommerzeit"
              }
            },
            "Australia_Eastern": {
              "long": {
                "generic": "Ostaustralische Zeit",
                "standard": "Ostaustralische Normalzeit",
                "daylight": "Ostaustralische Sommerzeit"
              }
            },
            "Australia_Western": {
              "long": {
                "generic": "Westaustralische Zeit",
                "standard": "Westaustralische Normalzeit",
                "daylight": "Westaustralische Sommerzeit"
              }
            },
            "Azerbaijan": {
              "long": {
                "generic": "Aserbaidschanische Zeit",
                "standard": "Aserbeidschanische Normalzeit",
                "daylight": "Aserbaidschanische Sommerzeit"
              }
            },
            "Azores": {
              "long": {
                "generic": "Azoren-Zeit",
                "standard": "Azoren-Normalzeit",
                "daylight": "Azoren-Sommerzeit"
              }
            },
            "Bangladesh": {
              "long": {
                "generic": "Bangladesch-Zeit",
                "standard": "Bangladesch-Normalzeit",
                "daylight": "Bangladesch-Sommerzeit"
              }
            },
            "Bhutan": {
              "long": {
                "standard": "Bhutan-Zeit"
              }
            },
            "Bolivia": {
              "long": {
                "standard": "Bolivianische Zeit"
              }
            },
            "Brasilia": {
              "long": {
                "generic": "Brasília-Zeit",
                "standard": "Brasília-Normalzeit",
                "daylight": "Brasília-Sommerzeit"
              }
            },
            "Brunei": {
              "long": {
                "standard": "Brunei-Zeit"
              }
            },
            "Cape_Verde": {
              "long": {
                "generic": "Cabo-Verde-Zeit",
                "standard": "Cabo-Verde-Normalzeit",
                "daylight": "Cabo-Verde-Sommerzeit"
              }
            },
            "Casey": {
              "long": {
                "standard": "Casey-Zeit"
              }
            },
            "Chamorro": {
              "long": {
                "standard": "Chamorro-Zeit"
              }
            },
            "Chatham": {
              "long": {
                "generic": "Chatham-Zeit",
                "standard": "Chatham-Normalzeit",
                "daylight": "Chatham-Sommerzeit"
              }
            },
            "Chile": {
              "long": {
                "generic": "Chilenische Zeit",
                "standard": "Chilenische Normalzeit",
                "daylight": "Chilenische Sommerzeit"
              }
            },
            "China": {
              "long": {
                "generic": "Chinesische Zeit",
                "standard": "Chinesische Normalzeit",
                "daylight": "Chinesische Sommerzeit"
              }
            },
            "Choibalsan": {
              "long": {
                "generic": "Tschoibalsan-Zeit",
                "standard": "Tschoibalsan-Normalzeit",
                "daylight": "Tschoibalsan-Sommerzeit"
              }
            },
            "Christmas": {
              "long": {
                "standard": "Weihnachtsinsel-Zeit"
              }
            },
            "Cocos": {
              "long": {
                "standard": "Kokosinseln-Zeit"
              }
            },
            "Colombia": {
              "long": {
                "generic": "Kolumbianische Zeit",
                "standard": "Kolumbianische Normalzeit",
                "daylight": "Kolumbianische Sommerzeit"
              }
            },
            "Cook": {
              "long": {
                "generic": "Cookinseln-Zeit",
                "standard": "Cookinseln-Normalzeit",
                "daylight": "Cookinseln-Sommerzeit"
              }
            },
            "Cuba": {
              "long": {
                "generic": "Kubanische Zeit",
                "standard": "Kubanische Normalzeit",
                "daylight": "Kubanische Sommerzeit"
              }
            },
            "Davis": {
              "long": {
                "standard": "Davis-Zeit"
              }
            },
            "DumontDUrville": {
              "long": {
                "standard": "Dumont-d’Urville-Zeit"
              }
            },
            "East_Timor": {
              "long": {
                "standard": "Osttimor-Zeit"
              }
            },
            "Easter": {
              "long": {
                "generic": "Osterinsel-Zeit",
                "standard": "Osterinsel-Normalzeit",
                "daylight": "Osterinsel-Sommerzeit"
              }
            },
            "Ecuador": {
              "long": {
                "standard": "Ecuadorianische Zeit"
              }
            },
            "Europe_Central": {
              "long": {
                "generic": "Mitteleuropäische Zeit",
                "standard": "Mitteleuropäische Normalzeit",
                "daylight": "Mitteleuropäische Sommerzeit"
              },
              "short": {
                "generic": "MEZ",
                "standard": "MEZ",
                "daylight": "MESZ"
              }
            },
            "Europe_Eastern": {
              "long": {
                "generic": "Osteuropäische Zeit",
                "standard": "Osteuropäische Normalzeit",
                "daylight": "Osteuropäische Sommerzeit"
              },
              "short": {
                "generic": "OEZ",
                "standard": "OEZ",
                "daylight": "OESZ"
              }
            },
            "Europe_Further_Eastern": {
              "long": {
                "standard": "Kaliningrader Zeit"
              }
            },
            "Europe_Western": {
              "long": {
                "generic": "Westeuropäische Zeit",
                "standard": "Westeuropäische Normalzeit",
                "daylight": "Westeuropäische Sommerzeit"
              },
              "short": {
                "generic": "WEZ",
                "standard": "WEZ",
                "daylight": "WESZ"
              }
            },
            "Falkland": {
              "long": {
                "generic": "Falklandinseln-Zeit",
                "standard": "Falklandinseln-Normalzeit",
                "daylight": "Falklandinseln-Sommerzeit"
              }
            },
            "Fiji": {
              "long": {
                "generic": "Fidschi-Zeit",
                "standard": "Fidschi-Normalzeit",
                "daylight": "Fidschi-Sommerzeit"
              }
            },
            "French_Guiana": {
              "long": {
                "standard": "Französisch-Guayana-Zeit"
              }
            },
            "French_Southern": {
              "long": {
                "standard": "Französische Süd- und Antarktisgebiete-Zeit"
              }
            },
            "Galapagos": {
              "long": {
                "standard": "Galapagos-Zeit"
              }
            },
            "Gambier": {
              "long": {
                "standard": "Gambier-Zeit"
              }
            },
            "Georgia": {
              "long": {
                "generic": "Georgische Zeit",
                "standard": "Georgische Normalzeit",
                "daylight": "Georgische Sommerzeit"
              }
            },
            "Gilbert_Islands": {
              "long": {
                "standard": "Gilbert-Inseln-Zeit"
              }
            },
            "GMT": {
              "long": {
                "standard": "Mittlere Greenwich-Zeit"
              }
            },
            "Greenland_Eastern": {
              "long": {
                "generic": "Ostgrönland-Zeit",
                "standard": "Ostgrönland-Normalzeit",
                "daylight": "Ostgrönland-Sommerzeit"
              }
            },
            "Greenland_Western": {
              "long": {
                "generic": "Westgrönland-Zeit",
                "standard": "Westgrönland-Normalzeit",
                "daylight": "Westgrönland-Sommerzeit"
              }
            },
            "Guam": {
              "long": {
                "standard": "Guam-Zeit"
              }
            },
            "Gulf": {
              "long": {
                "standard": "Golf-Zeit"
              }
            },
            "Guyana": {
              "long": {
                "standard": "Guyana-Zeit"
              }
            },
            "Hawaii_Aleutian": {
              "long": {
                "generic": "Hawaii-Aleuten-Zeit",
                "standard": "Hawaii-Aleuten-Normalzeit",
                "daylight": "Hawaii-Aleuten-Sommerzeit"
              }
            },
            "Hong_Kong": {
              "long": {
                "generic": "Hongkong-Zeit",
                "standard": "Hongkong-Normalzeit",
                "daylight": "Hongkong-Sommerzeit"
              }
            },
            "Hovd": {
              "long": {
                "generic": "Chowd-Zeit",
                "standard": "Chowd-Normalzeit",
                "daylight": "Chowd-Sommerzeit"
              }
            },
            "India": {
              "long": {
                "standard": "Indische Zeit"
              }
            },
            "Indian_Ocean": {
              "long": {
                "standard": "Indischer Ozean-Zeit"
              }
            },
            "Indochina": {
              "long": {
                "standard": "Indochina-Zeit"
              }
            },
            "Indonesia_Central": {
              "long": {
                "standard": "Zentralindonesische Zeit"
              }
            },
            "Indonesia_Eastern": {
              "long": {
                "standard": "Ostindonesische Zeit"
              }
            },
            "Indonesia_Western": {
              "long": {
                "standard": "Westindonesische Zeit"
              }
            },
            "Iran": {
              "long": {
                "generic": "Iranische Zeit",
                "standard": "Iranische Normalzeit",
                "daylight": "Iranische Sommerzeit"
              }
            },
            "Irkutsk": {
              "long": {
                "generic": "Irkutsk-Zeit",
                "standard": "Irkutsk-Normalzeit",
                "daylight": "Irkutsk-Sommerzeit"
              }
            },
            "Israel": {
              "long": {
                "generic": "Israelische Zeit",
                "standard": "Israelische Normalzeit",
                "daylight": "Israelische Sommerzeit"
              }
            },
            "Japan": {
              "long": {
                "generic": "Japanische Zeit",
                "standard": "Japanische Normalzeit",
                "daylight": "Japanische Sommerzeit"
              }
            },
            "Kamchatka": {
              "long": {
                "generic": "Kamtschatka-Zeit",
                "standard": "Kamtschatka-Normalzeit",
                "daylight": "Kamtschatka-Sommerzeit"
              }
            },
            "Kazakhstan_Eastern": {
              "long": {
                "standard": "Ostkasachische Zeit"
              }
            },
            "Kazakhstan_Western": {
              "long": {
                "standard": "Westkasachische Zeit"
              }
            },
            "Korea": {
              "long": {
                "generic": "Koreanische Zeit",
                "standard": "Koreanische Normalzeit",
                "daylight": "Koreanische Sommerzeit"
              }
            },
            "Kosrae": {
              "long": {
                "standard": "Kosrae-Zeit"
              }
            },
            "Krasnoyarsk": {
              "long": {
                "generic": "Krasnojarsk-Zeit",
                "standard": "Krasnojarsk-Normalzeit",
                "daylight": "Krasnojarsk-Sommerzeit"
              }
            },
            "Kyrgystan": {
              "long": {
                "standard": "Kirgisistan-Zeit"
              }
            },
            "Lanka": {
              "long": {
                "standard": "Sri-Lanka-Zeit"
              }
            },
            "Line_Islands": {
              "long": {
                "standard": "Linieninseln-Zeit"
              }
            },
            "Lord_Howe": {
              "long": {
                "generic": "Lord-Howe-Zeit",
                "standard": "Lord-Howe-Normalzeit",
                "daylight": "Lord-Howe-Sommerzeit"
              }
            },
            "Macau": {
              "long": {
                "generic": "Macau-Zeit",
                "standard": "Macau-Normalzeit",
                "daylight": "Macau-Sommerzeit"
              }
            },
            "Macquarie": {
              "long": {
                "standard": "Macquarieinsel-Zeit"
              }
            },
            "Magadan": {
              "long": {
                "generic": "Magadan-Zeit",
                "standard": "Magadan-Normalzeit",
                "daylight": "Magadan-Sommerzeit"
              }
            },
            "Malaysia": {
              "long": {
                "standard": "Malaysische Zeit"
              }
            },
            "Maldives": {
              "long": {
                "standard": "Malediven-Zeit"
              }
            },
            "Marquesas": {
              "long": {
                "standard": "Marquesas-Zeit"
              }
            },
            "Marshall_Islands": {
              "long": {
                "standard": "Marshallinseln-Zeit"
              }
            },
            "Mauritius": {
              "long": {
                "generic": "Mauritius-Zeit",
                "standard": "Mauritius-Normalzeit",
                "daylight": "Mauritius-Sommerzeit"
              }
            },
            "Mawson": {
              "long": {
                "standard": "Mawson-Zeit"
              }
            },
            "Mexico_Northwest": {
              "long": {
                "generic": "Mexiko Nordwestliche Zone-Zeit",
                "standard": "Mexiko Nordwestliche Zone-Normalzeit",
                "daylight": "Mexiko Nordwestliche Zone-Sommerzeit"
              }
            },
            "Mexico_Pacific": {
              "long": {
                "generic": "Mexiko Pazifikzone-Zeit",
                "standard": "Mexiko Pazifikzone-Normalzeit",
                "daylight": "Mexiko Pazifikzone-Sommerzeit"
              }
            },
            "Mongolia": {
              "long": {
                "generic": "Ulaanbaatar-Zeit",
                "standard": "Ulaanbaatar-Normalzeit",
                "daylight": "Ulaanbaatar-Sommerzeit"
              }
            },
            "Moscow": {
              "long": {
                "generic": "Moskauer Zeit",
                "standard": "Moskauer Normalzeit",
                "daylight": "Moskauer Sommerzeit"
              }
            },
            "Myanmar": {
              "long": {
                "standard": "Myanmar-Zeit"
              }
            },
            "Nauru": {
              "long": {
                "standard": "Nauru-Zeit"
              }
            },
            "Nepal": {
              "long": {
                "standard": "Nepalesische Zeit"
              }
            },
            "New_Caledonia": {
              "long": {
                "generic": "Neukaledonische Zeit",
                "standard": "Neukaledonische Normalzeit",
                "daylight": "Neukaledonische Sommerzeit"
              }
            },
            "New_Zealand": {
              "long": {
                "generic": "Neuseeland-Zeit",
                "standard": "Neuseeland-Normalzeit",
                "daylight": "Neuseeland-Sommerzeit"
              }
            },
            "Newfoundland": {
              "long": {
                "generic": "Neufundland-Zeit",
                "standard": "Neufundland-Normalzeit",
                "daylight": "Neufundland-Sommerzeit"
              }
            },
            "Niue": {
              "long": {
                "standard": "Niue-Zeit"
              }
            },
            "Norfolk": {
              "long": {
                "standard": "Norfolkinsel-Zeit"
              }
            },
            "Noronha": {
              "long": {
                "generic": "Fernando de Noronha-Zeit",
                "standard": "Fernando de Noronha-Normalzeit",
                "daylight": "Fernando de Noronha-Sommerzeit"
              }
            },
            "North_Mariana": {
              "long": {
                "standard": "Nördliche-Marianen-Zeit"
              }
            },
            "Novosibirsk": {
              "long": {
                "generic": "Nowosibirsk-Zeit",
                "standard": "Nowosibirsk-Normalzeit",
                "daylight": "Nowosibirsk-Sommerzeit"
              }
            },
            "Omsk": {
              "long": {
                "generic": "Omsk-Zeit",
                "standard": "Omsk-Normalzeit",
                "daylight": "Omsk-Sommerzeit"
              }
            },
            "Pakistan": {
              "long": {
                "generic": "Pakistanische Zeit",
                "standard": "Pakistanische Normalzeit",
                "daylight": "Pakistanische Sommerzeit"
              }
            },
            "Palau": {
              "long": {
                "standard": "Palau-Zeit"
              }
            },
            "Papua_New_Guinea": {
              "long": {
                "standard": "Papua-Neuguinea-Zeit"
              }
            },
            "Paraguay": {
              "long": {
                "generic": "Paraguayanische Zeit",
                "standard": "Paraguayanische Normalzeit",
                "daylight": "Paraguayanische Sommerzeit"
              }
            },
            "Peru": {
              "long": {
                "generic": "Peruanische Zeit",
                "standard": "Peruanische Normalzeit",
                "daylight": "Peruanische Sommerzeit"
              }
            },
            "Philippines": {
              "long": {
                "generic": "Philippinische Zeit",
                "standard": "Philippinische Normalzeit",
                "daylight": "Philippinische Sommerzeit"
              }
            },
            "Phoenix_Islands": {
              "long": {
                "standard": "Phoenixinseln-Zeit"
              }
            },
            "Pierre_Miquelon": {
              "long": {
                "generic": "Saint-Pierre-und-Miquelon-Zeit",
                "standard": "Saint-Pierre-und-Miquelon-Normalzeit",
                "daylight": "Saint-Pierre-und-Miquelon-Sommerzeit"
              }
            },
            "Pitcairn": {
              "long": {
                "standard": "Pitcairninseln-Zeit"
              }
            },
            "Ponape": {
              "long": {
                "standard": "Ponape-Zeit"
              }
            },
            "Pyongyang": {
              "long": {
                "standard": "Pjöngjang-Zeit"
              }
            },
            "Qyzylorda": {
              "long": {
                "generic": "Quysylorda-Zeit",
                "standard": "Quysylorda-Normalzeit",
                "daylight": "Qysylorda-Sommerzeit"
              }
            },
            "Reunion": {
              "long": {
                "standard": "Réunion-Zeit"
              }
            },
            "Rothera": {
              "long": {
                "standard": "Rothera-Zeit"
              }
            },
            "Sakhalin": {
              "long": {
                "generic": "Sachalin-Zeit",
                "standard": "Sachalin-Normalzeit",
                "daylight": "Sachalin-Sommerzeit"
              }
            },
            "Samara": {
              "long": {
                "generic": "Samara-Zeit",
                "standard": "Samara-Normalzeit",
                "daylight": "Samara-Sommerzeit"
              }
            },
            "Samoa": {
              "long": {
                "generic": "Samoa-Zeit",
                "standard": "Samoa-Normalzeit",
                "daylight": "Samoa-Sommerzeit"
              }
            },
            "Seychelles": {
              "long": {
                "standard": "Seychellen-Zeit"
              }
            },
            "Singapore": {
              "long": {
                "standard": "Singapur-Zeit"
              }
            },
            "Solomon": {
              "long": {
                "standard": "Salomoninseln-Zeit"
              }
            },
            "South_Georgia": {
              "long": {
                "standard": "Südgeorgische Zeit"
              }
            },
            "Suriname": {
              "long": {
                "standard": "Suriname-Zeit"
              }
            },
            "Syowa": {
              "long": {
                "standard": "Syowa-Zeit"
              }
            },
            "Tahiti": {
              "long": {
                "standard": "Tahiti-Zeit"
              }
            },
            "Taipei": {
              "long": {
                "generic": "Taipeh-Zeit",
                "standard": "Taipeh-Normalzeit",
                "daylight": "Taipeh-Sommerzeit"
              }
            },
            "Tajikistan": {
              "long": {
                "standard": "Tadschikistan-Zeit"
              }
            },
            "Tokelau": {
              "long": {
                "standard": "Tokelau-Zeit"
              }
            },
            "Tonga": {
              "long": {
                "generic": "Tonganische Zeit",
                "standard": "Tonganische Normalzeit",
                "daylight": "Tonganische Sommerzeit"
              }
            },
            "Truk": {
              "long": {
                "standard": "Chuuk-Zeit"
              }
            },
            "Turkmenistan": {
              "long": {
                "generic": "Turkmenistan-Zeit",
                "standard": "Turkmenistan-Normalzeit",
                "daylight": "Turkmenistan-Sommerzeit"
              }
            },
            "Tuvalu": {
              "long": {
                "standard": "Tuvalu-Zeit"
              }
            },
            "Uruguay": {
              "long": {
                "generic": "Uruguayanische Zeit",
                "standard": "Uruguyanische Normalzeit",
                "daylight": "Uruguayanische Sommerzeit"
              }
            },
            "Uzbekistan": {
              "long": {
                "generic": "Usbekistan-Zeit",
                "standard": "Usbekistan-Normalzeit",
                "daylight": "Usbekistan-Sommerzeit"
              }
            },
            "Vanuatu": {
              "long": {
                "generic": "Vanuatu-Zeit",
                "standard": "Vanuatu-Normalzeit",
                "daylight": "Vanuatu-Sommerzeit"
              }
            },
            "Venezuela": {
              "long": {
                "standard": "Venezuela-Zeit"
              }
            },
            "Vladivostok": {
              "long": {
                "generic": "Wladiwostok-Zeit",
                "standard": "Wladiwostok-Normalzeit",
                "daylight": "Wladiwostok-Sommerzeit"
              }
            },
            "Volgograd": {
              "long": {
                "generic": "Wolgograd-Zeit",
                "standard": "Wolgograd-Normalzeit",
                "daylight": "Wolgograd-Sommerzeit"
              }
            },
            "Vostok": {
              "long": {
                "standard": "Wostok-Zeit"
              }
            },
            "Wake": {
              "long": {
                "standard": "Wake-Insel-Zeit"
              }
            },
            "Wallis": {
              "long": {
                "standard": "Wallis-und-Futuna-Zeit"
              }
            },
            "Yakutsk": {
              "long": {
                "generic": "Jakutsk-Zeit",
                "standard": "Jakutsk-Normalzeit",
                "daylight": "Jakutsk-Sommerzeit"
              }
            },
            "Yekaterinburg": {
              "long": {
                "generic": "Jekaterinburg-Zeit",
                "standard": "Jekaterinburg-Normalzeit",
                "daylight": "Jekaterinburg-Sommerzeit"
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 12879 $",
                        "_cldrVersion";
                    "30.0.3";
                }
                "language";
                "de";
            }
            "dates";
            {
                "timeZoneNames";
                {
                    "hourFormat";
                    "+HH:mm;-HH:mm",
                        "gmtFormat";
                    "GMT{0}",
                        "gmtZeroFormat";
                    "GMT",
                        "regionFormat";
                    "{0} Zeit",
                        "regionFormat-type-daylight";
                    "{0} Sommerzeit",
                        "regionFormat-type-standard";
                    "{0} Normalzeit",
                        "fallbackFormat";
                    "{1} ({0})",
                        "zone";
                    {
                        "America";
                        {
                            "Adak";
                            {
                                "exemplarCity";
                                "Adak";
                            }
                            "Anchorage";
                            {
                                "exemplarCity";
                                "Anchorage";
                            }
                            "Anguilla";
                            {
                                "exemplarCity";
                                "Anguilla";
                            }
                            "Antigua";
                            {
                                "exemplarCity";
                                "Antigua";
                            }
                            "Araguaina";
                            {
                                "exemplarCity";
                                "Araguaina";
                            }
                            "Argentina";
                            {
                                "Rio_Gallegos";
                                {
                                    "exemplarCity";
                                    "Rio Gallegos";
                                }
                                "San_Juan";
                                {
                                    "exemplarCity";
                                    "San Juan";
                                }
                                "Ushuaia";
                                {
                                    "exemplarCity";
                                    "Ushuaia";
                                }
                                "La_Rioja";
                                {
                                    "exemplarCity";
                                    "La Rioja";
                                }
                                "San_Luis";
                                {
                                    "exemplarCity";
                                    "San Luis";
                                }
                                "Salta";
                                {
                                    "exemplarCity";
                                    "Salta";
                                }
                                "Tucuman";
                                {
                                    "exemplarCity";
                                    "Tucuman";
                                }
                            }
                            "Aruba";
                            {
                                "exemplarCity";
                                "Aruba";
                            }
                            "Asuncion";
                            {
                                "exemplarCity";
                                "Asunción";
                            }
                            "Bahia";
                            {
                                "exemplarCity";
                                "Bahia";
                            }
                            "Bahia_Banderas";
                            {
                                "exemplarCity";
                                "Bahia Banderas";
                            }
                            "Barbados";
                            {
                                "exemplarCity";
                                "Barbados";
                            }
                            "Belem";
                            {
                                "exemplarCity";
                                "Belem";
                            }
                            "Belize";
                            {
                                "exemplarCity";
                                "Belize";
                            }
                            "Blanc-Sablon";
                            {
                                "exemplarCity";
                                "Blanc-Sablon";
                            }
                            "Boa_Vista";
                            {
                                "exemplarCity";
                                "Boa Vista";
                            }
                            "Bogota";
                            {
                                "exemplarCity";
                                "Bogotá";
                            }
                            "Boise";
                            {
                                "exemplarCity";
                                "Boise";
                            }
                            "Buenos_Aires";
                            {
                                "exemplarCity";
                                "Buenos Aires";
                            }
                            "Cambridge_Bay";
                            {
                                "exemplarCity";
                                "Cambridge Bay";
                            }
                            "Campo_Grande";
                            {
                                "exemplarCity";
                                "Campo Grande";
                            }
                            "Cancun";
                            {
                                "exemplarCity";
                                "Cancún";
                            }
                            "Caracas";
                            {
                                "exemplarCity";
                                "Caracas";
                            }
                            "Catamarca";
                            {
                                "exemplarCity";
                                "Catamarca";
                            }
                            "Cayenne";
                            {
                                "exemplarCity";
                                "Cayenne";
                            }
                            "Cayman";
                            {
                                "exemplarCity";
                                "Kaimaninseln";
                            }
                            "Chicago";
                            {
                                "exemplarCity";
                                "Chicago";
                            }
                            "Chihuahua";
                            {
                                "exemplarCity";
                                "Chihuahua";
                            }
                            "Coral_Harbour";
                            {
                                "exemplarCity";
                                "Atikokan";
                            }
                            "Cordoba";
                            {
                                "exemplarCity";
                                "Córdoba";
                            }
                            "Costa_Rica";
                            {
                                "exemplarCity";
                                "Costa Rica";
                            }
                            "Creston";
                            {
                                "exemplarCity";
                                "Creston";
                            }
                            "Cuiaba";
                            {
                                "exemplarCity";
                                "Cuiaba";
                            }
                            "Curacao";
                            {
                                "exemplarCity";
                                "Curaçao";
                            }
                            "Danmarkshavn";
                            {
                                "exemplarCity";
                                "Danmarkshavn";
                            }
                            "Dawson";
                            {
                                "exemplarCity";
                                "Dawson";
                            }
                            "Dawson_Creek";
                            {
                                "exemplarCity";
                                "Dawson Creek";
                            }
                            "Denver";
                            {
                                "exemplarCity";
                                "Denver";
                            }
                            "Detroit";
                            {
                                "exemplarCity";
                                "Detroit";
                            }
                            "Dominica";
                            {
                                "exemplarCity";
                                "Dominica";
                            }
                            "Edmonton";
                            {
                                "exemplarCity";
                                "Edmonton";
                            }
                            "Eirunepe";
                            {
                                "exemplarCity";
                                "Eirunepe";
                            }
                            "El_Salvador";
                            {
                                "exemplarCity";
                                "El Salvador";
                            }
                            "Fort_Nelson";
                            {
                                "exemplarCity";
                                "Fort Nelson";
                            }
                            "Fortaleza";
                            {
                                "exemplarCity";
                                "Fortaleza";
                            }
                            "Glace_Bay";
                            {
                                "exemplarCity";
                                "Glace Bay";
                            }
                            "Godthab";
                            {
                                "exemplarCity";
                                "Nuuk";
                            }
                            "Goose_Bay";
                            {
                                "exemplarCity";
                                "Goose Bay";
                            }
                            "Grand_Turk";
                            {
                                "exemplarCity";
                                "Grand Turk";
                            }
                            "Grenada";
                            {
                                "exemplarCity";
                                "Grenada";
                            }
                            "Guadeloupe";
                            {
                                "exemplarCity";
                                "Guadeloupe";
                            }
                            "Guatemala";
                            {
                                "exemplarCity";
                                "Guatemala";
                            }
                            "Guayaquil";
                            {
                                "exemplarCity";
                                "Guayaquil";
                            }
                            "Guyana";
                            {
                                "exemplarCity";
                                "Guyana";
                            }
                            "Halifax";
                            {
                                "exemplarCity";
                                "Halifax";
                            }
                            "Havana";
                            {
                                "exemplarCity";
                                "Havanna";
                            }
                            "Hermosillo";
                            {
                                "exemplarCity";
                                "Hermosillo";
                            }
                            "Indiana";
                            {
                                "Vincennes";
                                {
                                    "exemplarCity";
                                    "Vincennes, Indiana";
                                }
                                "Petersburg";
                                {
                                    "exemplarCity";
                                    "Petersburg, Indiana";
                                }
                                "Tell_City";
                                {
                                    "exemplarCity";
                                    "Tell City, Indiana";
                                }
                                "Knox";
                                {
                                    "exemplarCity";
                                    "Knox, Indiana";
                                }
                                "Winamac";
                                {
                                    "exemplarCity";
                                    "Winamac, Indiana";
                                }
                                "Marengo";
                                {
                                    "exemplarCity";
                                    "Marengo, Indiana";
                                }
                                "Vevay";
                                {
                                    "exemplarCity";
                                    "Vevay, Indiana";
                                }
                            }
                            "Indianapolis";
                            {
                                "exemplarCity";
                                "Indianapolis";
                            }
                            "Inuvik";
                            {
                                "exemplarCity";
                                "Inuvik";
                            }
                            "Iqaluit";
                            {
                                "exemplarCity";
                                "Iqaluit";
                            }
                            "Jamaica";
                            {
                                "exemplarCity";
                                "Jamaika";
                            }
                            "Jujuy";
                            {
                                "exemplarCity";
                                "Jujuy";
                            }
                            "Juneau";
                            {
                                "exemplarCity";
                                "Juneau";
                            }
                            "Kentucky";
                            {
                                "Monticello";
                                {
                                    "exemplarCity";
                                    "Monticello, Kentucky";
                                }
                            }
                            "Kralendijk";
                            {
                                "exemplarCity";
                                "Kralendijk";
                            }
                            "La_Paz";
                            {
                                "exemplarCity";
                                "La Paz";
                            }
                            "Lima";
                            {
                                "exemplarCity";
                                "Lima";
                            }
                            "Los_Angeles";
                            {
                                "exemplarCity";
                                "Los Angeles";
                            }
                            "Louisville";
                            {
                                "exemplarCity";
                                "Louisville";
                            }
                            "Lower_Princes";
                            {
                                "exemplarCity";
                                "Lower Prince’s Quarter";
                            }
                            "Maceio";
                            {
                                "exemplarCity";
                                "Maceio";
                            }
                            "Managua";
                            {
                                "exemplarCity";
                                "Managua";
                            }
                            "Manaus";
                            {
                                "exemplarCity";
                                "Manaus";
                            }
                            "Marigot";
                            {
                                "exemplarCity";
                                "Marigot";
                            }
                            "Martinique";
                            {
                                "exemplarCity";
                                "Martinique";
                            }
                            "Matamoros";
                            {
                                "exemplarCity";
                                "Matamoros";
                            }
                            "Mazatlan";
                            {
                                "exemplarCity";
                                "Mazatlan";
                            }
                            "Mendoza";
                            {
                                "exemplarCity";
                                "Mendoza";
                            }
                            "Menominee";
                            {
                                "exemplarCity";
                                "Menominee";
                            }
                            "Merida";
                            {
                                "exemplarCity";
                                "Merida";
                            }
                            "Metlakatla";
                            {
                                "exemplarCity";
                                "Metlakatla";
                            }
                            "Mexico_City";
                            {
                                "exemplarCity";
                                "Mexiko-Stadt";
                            }
                            "Miquelon";
                            {
                                "exemplarCity";
                                "Miquelon";
                            }
                            "Moncton";
                            {
                                "exemplarCity";
                                "Moncton";
                            }
                            "Monterrey";
                            {
                                "exemplarCity";
                                "Monterrey";
                            }
                            "Montevideo";
                            {
                                "exemplarCity";
                                "Montevideo";
                            }
                            "Montserrat";
                            {
                                "exemplarCity";
                                "Montserrat";
                            }
                            "Nassau";
                            {
                                "exemplarCity";
                                "Nassau";
                            }
                            "New_York";
                            {
                                "exemplarCity";
                                "New York";
                            }
                            "Nipigon";
                            {
                                "exemplarCity";
                                "Nipigon";
                            }
                            "Nome";
                            {
                                "exemplarCity";
                                "Nome";
                            }
                            "Noronha";
                            {
                                "exemplarCity";
                                "Noronha";
                            }
                            "North_Dakota";
                            {
                                "Beulah";
                                {
                                    "exemplarCity";
                                    "Beulah, North Dakota";
                                }
                                "New_Salem";
                                {
                                    "exemplarCity";
                                    "New Salem, North Dakota";
                                }
                                "Center";
                                {
                                    "exemplarCity";
                                    "Center, North Dakota";
                                }
                            }
                            "Ojinaga";
                            {
                                "exemplarCity";
                                "Ojinaga";
                            }
                            "Panama";
                            {
                                "exemplarCity";
                                "Panama";
                            }
                            "Pangnirtung";
                            {
                                "exemplarCity";
                                "Pangnirtung";
                            }
                            "Paramaribo";
                            {
                                "exemplarCity";
                                "Paramaribo";
                            }
                            "Phoenix";
                            {
                                "exemplarCity";
                                "Phoenix";
                            }
                            "Port-au-Prince";
                            {
                                "exemplarCity";
                                "Port-au-Prince";
                            }
                            "Port_of_Spain";
                            {
                                "exemplarCity";
                                "Port of Spain";
                            }
                            "Porto_Velho";
                            {
                                "exemplarCity";
                                "Porto Velho";
                            }
                            "Puerto_Rico";
                            {
                                "exemplarCity";
                                "Puerto Rico";
                            }
                            "Rainy_River";
                            {
                                "exemplarCity";
                                "Rainy River";
                            }
                            "Rankin_Inlet";
                            {
                                "exemplarCity";
                                "Rankin Inlet";
                            }
                            "Recife";
                            {
                                "exemplarCity";
                                "Recife";
                            }
                            "Regina";
                            {
                                "exemplarCity";
                                "Regina";
                            }
                            "Resolute";
                            {
                                "exemplarCity";
                                "Resolute";
                            }
                            "Rio_Branco";
                            {
                                "exemplarCity";
                                "Rio Branco";
                            }
                            "Santa_Isabel";
                            {
                                "exemplarCity";
                                "Santa Isabel";
                            }
                            "Santarem";
                            {
                                "exemplarCity";
                                "Santarem";
                            }
                            "Santiago";
                            {
                                "exemplarCity";
                                "Santiago";
                            }
                            "Santo_Domingo";
                            {
                                "exemplarCity";
                                "Santo Domingo";
                            }
                            "Sao_Paulo";
                            {
                                "exemplarCity";
                                "São Paulo";
                            }
                            "Scoresbysund";
                            {
                                "exemplarCity";
                                "Ittoqqortoormiit";
                            }
                            "Sitka";
                            {
                                "exemplarCity";
                                "Sitka";
                            }
                            "St_Barthelemy";
                            {
                                "exemplarCity";
                                "Saint-Barthélemy";
                            }
                            "St_Johns";
                            {
                                "exemplarCity";
                                "St. John’s";
                            }
                            "St_Kitts";
                            {
                                "exemplarCity";
                                "St. Kitts";
                            }
                            "St_Lucia";
                            {
                                "exemplarCity";
                                "St. Lucia";
                            }
                            "St_Thomas";
                            {
                                "exemplarCity";
                                "St. Thomas";
                            }
                            "St_Vincent";
                            {
                                "exemplarCity";
                                "St. Vincent";
                            }
                            "Swift_Current";
                            {
                                "exemplarCity";
                                "Swift Current";
                            }
                            "Tegucigalpa";
                            {
                                "exemplarCity";
                                "Tegucigalpa";
                            }
                            "Thule";
                            {
                                "exemplarCity";
                                "Thule";
                            }
                            "Thunder_Bay";
                            {
                                "exemplarCity";
                                "Thunder Bay";
                            }
                            "Tijuana";
                            {
                                "exemplarCity";
                                "Tijuana";
                            }
                            "Toronto";
                            {
                                "exemplarCity";
                                "Toronto";
                            }
                            "Tortola";
                            {
                                "exemplarCity";
                                "Tortola";
                            }
                            "Vancouver";
                            {
                                "exemplarCity";
                                "Vancouver";
                            }
                            "Whitehorse";
                            {
                                "exemplarCity";
                                "Whitehorse";
                            }
                            "Winnipeg";
                            {
                                "exemplarCity";
                                "Winnipeg";
                            }
                            "Yakutat";
                            {
                                "exemplarCity";
                                "Yakutat";
                            }
                            "Yellowknife";
                            {
                                "exemplarCity";
                                "Yellowknife";
                            }
                        }
                        "Atlantic";
                        {
                            "Azores";
                            {
                                "exemplarCity";
                                "Azoren";
                            }
                            "Bermuda";
                            {
                                "exemplarCity";
                                "Bermudas";
                            }
                            "Canary";
                            {
                                "exemplarCity";
                                "Kanaren";
                            }
                            "Cape_Verde";
                            {
                                "exemplarCity";
                                "Cabo Verde";
                            }
                            "Faeroe";
                            {
                                "exemplarCity";
                                "Färöer";
                            }
                            "Madeira";
                            {
                                "exemplarCity";
                                "Madeira";
                            }
                            "Reykjavik";
                            {
                                "exemplarCity";
                                "Reyk­ja­vík";
                            }
                            "South_Georgia";
                            {
                                "exemplarCity";
                                "Südgeorgien";
                            }
                            "St_Helena";
                            {
                                "exemplarCity";
                                "St. Helena";
                            }
                            "Stanley";
                            {
                                "exemplarCity";
                                "Stanley";
                            }
                        }
                        "Europe";
                        {
                            "Amsterdam";
                            {
                                "exemplarCity";
                                "Amsterdam";
                            }
                            "Andorra";
                            {
                                "exemplarCity";
                                "Andorra";
                            }
                            "Astrakhan";
                            {
                                "exemplarCity";
                                "Astrachan";
                            }
                            "Athens";
                            {
                                "exemplarCity";
                                "Athen";
                            }
                            "Belgrade";
                            {
                                "exemplarCity";
                                "Belgrad";
                            }
                            "Berlin";
                            {
                                "exemplarCity";
                                "Berlin";
                            }
                            "Bratislava";
                            {
                                "exemplarCity";
                                "Bratislava";
                            }
                            "Brussels";
                            {
                                "exemplarCity";
                                "Brüssel";
                            }
                            "Bucharest";
                            {
                                "exemplarCity";
                                "Bukarest";
                            }
                            "Budapest";
                            {
                                "exemplarCity";
                                "Budapest";
                            }
                            "Busingen";
                            {
                                "exemplarCity";
                                "Büsingen";
                            }
                            "Chisinau";
                            {
                                "exemplarCity";
                                "Kischinau";
                            }
                            "Copenhagen";
                            {
                                "exemplarCity";
                                "Kopenhagen";
                            }
                            "Dublin";
                            {
                                "long";
                                {
                                    "daylight";
                                    "Irische Sommerzeit";
                                }
                                "exemplarCity";
                                "Dublin";
                            }
                            "Gibraltar";
                            {
                                "exemplarCity";
                                "Gibraltar";
                            }
                            "Guernsey";
                            {
                                "exemplarCity";
                                "Guernsey";
                            }
                            "Helsinki";
                            {
                                "exemplarCity";
                                "Helsinki";
                            }
                            "Isle_of_Man";
                            {
                                "exemplarCity";
                                "Isle of Man";
                            }
                            "Istanbul";
                            {
                                "exemplarCity";
                                "Istanbul";
                            }
                            "Jersey";
                            {
                                "exemplarCity";
                                "Jersey";
                            }
                            "Kaliningrad";
                            {
                                "exemplarCity";
                                "Kaliningrad";
                            }
                            "Kiev";
                            {
                                "exemplarCity";
                                "Kiew";
                            }
                            "Kirov";
                            {
                                "exemplarCity";
                                "Kirow";
                            }
                            "Lisbon";
                            {
                                "exemplarCity";
                                "Lissabon";
                            }
                            "Ljubljana";
                            {
                                "exemplarCity";
                                "Ljubljana";
                            }
                            "London";
                            {
                                "long";
                                {
                                    "daylight";
                                    "Britische Sommerzeit";
                                }
                                "exemplarCity";
                                "London";
                            }
                            "Luxembourg";
                            {
                                "exemplarCity";
                                "Luxemburg";
                            }
                            "Madrid";
                            {
                                "exemplarCity";
                                "Madrid";
                            }
                            "Malta";
                            {
                                "exemplarCity";
                                "Malta";
                            }
                            "Mariehamn";
                            {
                                "exemplarCity";
                                "Mariehamn";
                            }
                            "Minsk";
                            {
                                "exemplarCity";
                                "Minsk";
                            }
                            "Monaco";
                            {
                                "exemplarCity";
                                "Monaco";
                            }
                            "Moscow";
                            {
                                "exemplarCity";
                                "Moskau";
                            }
                            "Oslo";
                            {
                                "exemplarCity";
                                "Oslo";
                            }
                            "Paris";
                            {
                                "exemplarCity";
                                "Paris";
                            }
                            "Podgorica";
                            {
                                "exemplarCity";
                                "Podgorica";
                            }
                            "Prague";
                            {
                                "exemplarCity";
                                "Prag";
                            }
                            "Riga";
                            {
                                "exemplarCity";
                                "Riga";
                            }
                            "Rome";
                            {
                                "exemplarCity";
                                "Rom";
                            }
                            "Samara";
                            {
                                "exemplarCity";
                                "Samara";
                            }
                            "San_Marino";
                            {
                                "exemplarCity";
                                "San Marino";
                            }
                            "Sarajevo";
                            {
                                "exemplarCity";
                                "Sarajevo";
                            }
                            "Simferopol";
                            {
                                "exemplarCity";
                                "Simferopol";
                            }
                            "Skopje";
                            {
                                "exemplarCity";
                                "Skopje";
                            }
                            "Sofia";
                            {
                                "exemplarCity";
                                "Sofia";
                            }
                            "Stockholm";
                            {
                                "exemplarCity";
                                "Stockholm";
                            }
                            "Tallinn";
                            {
                                "exemplarCity";
                                "Tallinn";
                            }
                            "Tirane";
                            {
                                "exemplarCity";
                                "Tirana";
                            }
                            "Ulyanovsk";
                            {
                                "exemplarCity";
                                "Uljanowsk";
                            }
                            "Uzhgorod";
                            {
                                "exemplarCity";
                                "Uschgorod";
                            }
                            "Vaduz";
                            {
                                "exemplarCity";
                                "Vaduz";
                            }
                            "Vatican";
                            {
                                "exemplarCity";
                                "Vatikan";
                            }
                            "Vienna";
                            {
                                "exemplarCity";
                                "Wien";
                            }
                            "Vilnius";
                            {
                                "exemplarCity";
                                "Vilnius";
                            }
                            "Volgograd";
                            {
                                "exemplarCity";
                                "Wolgograd";
                            }
                            "Warsaw";
                            {
                                "exemplarCity";
                                "Warschau";
                            }
                            "Zagreb";
                            {
                                "exemplarCity";
                                "Zagreb";
                            }
                            "Zaporozhye";
                            {
                                "exemplarCity";
                                "Saporischja";
                            }
                            "Zurich";
                            {
                                "exemplarCity";
                                "Zürich";
                            }
                        }
                        "Africa";
                        {
                            "Abidjan";
                            {
                                "exemplarCity";
                                "Abidjan";
                            }
                            "Accra";
                            {
                                "exemplarCity";
                                "Accra";
                            }
                            "Addis_Ababa";
                            {
                                "exemplarCity";
                                "Addis Abeba";
                            }
                            "Algiers";
                            {
                                "exemplarCity";
                                "Algier";
                            }
                            "Asmera";
                            {
                                "exemplarCity";
                                "Asmara";
                            }
                            "Bamako";
                            {
                                "exemplarCity";
                                "Bamako";
                            }
                            "Bangui";
                            {
                                "exemplarCity";
                                "Bangui";
                            }
                            "Banjul";
                            {
                                "exemplarCity";
                                "Banjul";
                            }
                            "Bissau";
                            {
                                "exemplarCity";
                                "Bissau";
                            }
                            "Blantyre";
                            {
                                "exemplarCity";
                                "Blantyre";
                            }
                            "Brazzaville";
                            {
                                "exemplarCity";
                                "Brazzaville";
                            }
                            "Bujumbura";
                            {
                                "exemplarCity";
                                "Bujumbura";
                            }
                            "Cairo";
                            {
                                "exemplarCity";
                                "Kairo";
                            }
                            "Casablanca";
                            {
                                "exemplarCity";
                                "Casablanca";
                            }
                            "Ceuta";
                            {
                                "exemplarCity";
                                "Ceuta";
                            }
                            "Conakry";
                            {
                                "exemplarCity";
                                "Conakry";
                            }
                            "Dakar";
                            {
                                "exemplarCity";
                                "Dakar";
                            }
                            "Dar_es_Salaam";
                            {
                                "exemplarCity";
                                "Daressalam";
                            }
                            "Djibouti";
                            {
                                "exemplarCity";
                                "Dschibuti";
                            }
                            "Douala";
                            {
                                "exemplarCity";
                                "Douala";
                            }
                            "El_Aaiun";
                            {
                                "exemplarCity";
                                "El Aaiún";
                            }
                            "Freetown";
                            {
                                "exemplarCity";
                                "Freetown";
                            }
                            "Gaborone";
                            {
                                "exemplarCity";
                                "Gaborone";
                            }
                            "Harare";
                            {
                                "exemplarCity";
                                "Harare";
                            }
                            "Johannesburg";
                            {
                                "exemplarCity";
                                "Johannesburg";
                            }
                            "Juba";
                            {
                                "exemplarCity";
                                "Juba";
                            }
                            "Kampala";
                            {
                                "exemplarCity";
                                "Kampala";
                            }
                            "Khartoum";
                            {
                                "exemplarCity";
                                "Khartum";
                            }
                            "Kigali";
                            {
                                "exemplarCity";
                                "Kigali";
                            }
                            "Kinshasa";
                            {
                                "exemplarCity";
                                "Kinshasa";
                            }
                            "Lagos";
                            {
                                "exemplarCity";
                                "Lagos";
                            }
                            "Libreville";
                            {
                                "exemplarCity";
                                "Libreville";
                            }
                            "Lome";
                            {
                                "exemplarCity";
                                "Lomé";
                            }
                            "Luanda";
                            {
                                "exemplarCity";
                                "Luanda";
                            }
                            "Lubumbashi";
                            {
                                "exemplarCity";
                                "Lubumbashi";
                            }
                            "Lusaka";
                            {
                                "exemplarCity";
                                "Lusaka";
                            }
                            "Malabo";
                            {
                                "exemplarCity";
                                "Malabo";
                            }
                            "Maputo";
                            {
                                "exemplarCity";
                                "Maputo";
                            }
                            "Maseru";
                            {
                                "exemplarCity";
                                "Maseru";
                            }
                            "Mbabane";
                            {
                                "exemplarCity";
                                "Mbabane";
                            }
                            "Mogadishu";
                            {
                                "exemplarCity";
                                "Mogadischu";
                            }
                            "Monrovia";
                            {
                                "exemplarCity";
                                "Monrovia";
                            }
                            "Nairobi";
                            {
                                "exemplarCity";
                                "Nairobi";
                            }
                            "Ndjamena";
                            {
                                "exemplarCity";
                                "N’Djamena";
                            }
                            "Niamey";
                            {
                                "exemplarCity";
                                "Niamey";
                            }
                            "Nouakchott";
                            {
                                "exemplarCity";
                                "Nouakchott";
                            }
                            "Ouagadougou";
                            {
                                "exemplarCity";
                                "Ouagadougou";
                            }
                            "Porto-Novo";
                            {
                                "exemplarCity";
                                "Porto Novo";
                            }
                            "Sao_Tome";
                            {
                                "exemplarCity";
                                "São Tomé";
                            }
                            "Tripoli";
                            {
                                "exemplarCity";
                                "Tripolis";
                            }
                            "Tunis";
                            {
                                "exemplarCity";
                                "Tunis";
                            }
                            "Windhoek";
                            {
                                "exemplarCity";
                                "Windhoek";
                            }
                        }
                        "Asia";
                        {
                            "Aden";
                            {
                                "exemplarCity";
                                "Aden";
                            }
                            "Almaty";
                            {
                                "exemplarCity";
                                "Almaty";
                            }
                            "Amman";
                            {
                                "exemplarCity";
                                "Amman";
                            }
                            "Anadyr";
                            {
                                "exemplarCity";
                                "Anadyr";
                            }
                            "Aqtau";
                            {
                                "exemplarCity";
                                "Aqtau";
                            }
                            "Aqtobe";
                            {
                                "exemplarCity";
                                "Aktobe";
                            }
                            "Ashgabat";
                            {
                                "exemplarCity";
                                "Aşgabat";
                            }
                            "Baghdad";
                            {
                                "exemplarCity";
                                "Bagdad";
                            }
                            "Bahrain";
                            {
                                "exemplarCity";
                                "Bahrain";
                            }
                            "Baku";
                            {
                                "exemplarCity";
                                "Baku";
                            }
                            "Bangkok";
                            {
                                "exemplarCity";
                                "Bangkok";
                            }
                            "Barnaul";
                            {
                                "exemplarCity";
                                "Barnaul";
                            }
                            "Beirut";
                            {
                                "exemplarCity";
                                "Beirut";
                            }
                            "Bishkek";
                            {
                                "exemplarCity";
                                "Bischkek";
                            }
                            "Brunei";
                            {
                                "exemplarCity";
                                "Brunei";
                            }
                            "Calcutta";
                            {
                                "exemplarCity";
                                "Kalkutta";
                            }
                            "Chita";
                            {
                                "exemplarCity";
                                "Tschita";
                            }
                            "Choibalsan";
                            {
                                "exemplarCity";
                                "Tschoibalsan";
                            }
                            "Colombo";
                            {
                                "exemplarCity";
                                "Colombo";
                            }
                            "Damascus";
                            {
                                "exemplarCity";
                                "Damaskus";
                            }
                            "Dhaka";
                            {
                                "exemplarCity";
                                "Dhaka";
                            }
                            "Dili";
                            {
                                "exemplarCity";
                                "Dili";
                            }
                            "Dubai";
                            {
                                "exemplarCity";
                                "Dubai";
                            }
                            "Dushanbe";
                            {
                                "exemplarCity";
                                "Duschanbe";
                            }
                            "Gaza";
                            {
                                "exemplarCity";
                                "Gaza";
                            }
                            "Hebron";
                            {
                                "exemplarCity";
                                "Hebron";
                            }
                            "Hong_Kong";
                            {
                                "exemplarCity";
                                "Hongkong";
                            }
                            "Hovd";
                            {
                                "exemplarCity";
                                "Chowd";
                            }
                            "Irkutsk";
                            {
                                "exemplarCity";
                                "Irkutsk";
                            }
                            "Jakarta";
                            {
                                "exemplarCity";
                                "Jakarta";
                            }
                            "Jayapura";
                            {
                                "exemplarCity";
                                "Jayapura";
                            }
                            "Jerusalem";
                            {
                                "exemplarCity";
                                "Jerusalem";
                            }
                            "Kabul";
                            {
                                "exemplarCity";
                                "Kabul";
                            }
                            "Kamchatka";
                            {
                                "exemplarCity";
                                "Kamtschatka";
                            }
                            "Karachi";
                            {
                                "exemplarCity";
                                "Karatschi";
                            }
                            "Katmandu";
                            {
                                "exemplarCity";
                                "Kathmandu";
                            }
                            "Khandyga";
                            {
                                "exemplarCity";
                                "Chandyga";
                            }
                            "Krasnoyarsk";
                            {
                                "exemplarCity";
                                "Krasnojarsk";
                            }
                            "Kuala_Lumpur";
                            {
                                "exemplarCity";
                                "Kuala Lumpur";
                            }
                            "Kuching";
                            {
                                "exemplarCity";
                                "Kuching";
                            }
                            "Kuwait";
                            {
                                "exemplarCity";
                                "Kuwait";
                            }
                            "Macau";
                            {
                                "exemplarCity";
                                "Macao";
                            }
                            "Magadan";
                            {
                                "exemplarCity";
                                "Magadan";
                            }
                            "Makassar";
                            {
                                "exemplarCity";
                                "Makassar";
                            }
                            "Manila";
                            {
                                "exemplarCity";
                                "Manila";
                            }
                            "Muscat";
                            {
                                "exemplarCity";
                                "Maskat";
                            }
                            "Nicosia";
                            {
                                "exemplarCity";
                                "Nikosia";
                            }
                            "Novokuznetsk";
                            {
                                "exemplarCity";
                                "Nowokuznetsk";
                            }
                            "Novosibirsk";
                            {
                                "exemplarCity";
                                "Nowosibirsk";
                            }
                            "Omsk";
                            {
                                "exemplarCity";
                                "Omsk";
                            }
                            "Oral";
                            {
                                "exemplarCity";
                                "Oral";
                            }
                            "Phnom_Penh";
                            {
                                "exemplarCity";
                                "Phnom Penh";
                            }
                            "Pontianak";
                            {
                                "exemplarCity";
                                "Pontianak";
                            }
                            "Pyongyang";
                            {
                                "exemplarCity";
                                "Pjöngjang";
                            }
                            "Qatar";
                            {
                                "exemplarCity";
                                "Katar";
                            }
                            "Qyzylorda";
                            {
                                "exemplarCity";
                                "Qysylorda";
                            }
                            "Rangoon";
                            {
                                "exemplarCity";
                                "Rangun";
                            }
                            "Riyadh";
                            {
                                "exemplarCity";
                                "Riad";
                            }
                            "Saigon";
                            {
                                "exemplarCity";
                                "Ho-Chi-Minh-Stadt";
                            }
                            "Sakhalin";
                            {
                                "exemplarCity";
                                "Sachalin";
                            }
                            "Samarkand";
                            {
                                "exemplarCity";
                                "Samarkand";
                            }
                            "Seoul";
                            {
                                "exemplarCity";
                                "Seoul";
                            }
                            "Shanghai";
                            {
                                "exemplarCity";
                                "Shanghai";
                            }
                            "Singapore";
                            {
                                "exemplarCity";
                                "Singapur";
                            }
                            "Srednekolymsk";
                            {
                                "exemplarCity";
                                "Srednekolymsk";
                            }
                            "Taipei";
                            {
                                "exemplarCity";
                                "Taipeh";
                            }
                            "Tashkent";
                            {
                                "exemplarCity";
                                "Taschkent";
                            }
                            "Tbilisi";
                            {
                                "exemplarCity";
                                "Tiflis";
                            }
                            "Tehran";
                            {
                                "exemplarCity";
                                "Teheran";
                            }
                            "Thimphu";
                            {
                                "exemplarCity";
                                "Thimphu";
                            }
                            "Tokyo";
                            {
                                "exemplarCity";
                                "Tokio";
                            }
                            "Tomsk";
                            {
                                "exemplarCity";
                                "Tomsk";
                            }
                            "Ulaanbaatar";
                            {
                                "exemplarCity";
                                "Ulaanbaatar";
                            }
                            "Urumqi";
                            {
                                "exemplarCity";
                                "Ürümqi";
                            }
                            "Ust-Nera";
                            {
                                "exemplarCity";
                                "Ust-Nera";
                            }
                            "Vientiane";
                            {
                                "exemplarCity";
                                "Vientiane";
                            }
                            "Vladivostok";
                            {
                                "exemplarCity";
                                "Wladiwostok";
                            }
                            "Yakutsk";
                            {
                                "exemplarCity";
                                "Jakutsk";
                            }
                            "Yekaterinburg";
                            {
                                "exemplarCity";
                                "Jekaterinburg";
                            }
                            "Yerevan";
                            {
                                "exemplarCity";
                                "Eriwan";
                            }
                        }
                        "Indian";
                        {
                            "Antananarivo";
                            {
                                "exemplarCity";
                                "Antananarivo";
                            }
                            "Chagos";
                            {
                                "exemplarCity";
                                "Chagos";
                            }
                            "Christmas";
                            {
                                "exemplarCity";
                                "Weihnachtsinsel";
                            }
                            "Cocos";
                            {
                                "exemplarCity";
                                "Cocos";
                            }
                            "Comoro";
                            {
                                "exemplarCity";
                                "Komoren";
                            }
                            "Kerguelen";
                            {
                                "exemplarCity";
                                "Kerguelen";
                            }
                            "Mahe";
                            {
                                "exemplarCity";
                                "Mahe";
                            }
                            "Maldives";
                            {
                                "exemplarCity";
                                "Malediven";
                            }
                            "Mauritius";
                            {
                                "exemplarCity";
                                "Mauritius";
                            }
                            "Mayotte";
                            {
                                "exemplarCity";
                                "Mayotte";
                            }
                            "Reunion";
                            {
                                "exemplarCity";
                                "Réunion";
                            }
                        }
                        "Australia";
                        {
                            "Adelaide";
                            {
                                "exemplarCity";
                                "Adelaide";
                            }
                            "Brisbane";
                            {
                                "exemplarCity";
                                "Brisbane";
                            }
                            "Broken_Hill";
                            {
                                "exemplarCity";
                                "Broken Hill";
                            }
                            "Currie";
                            {
                                "exemplarCity";
                                "Currie";
                            }
                            "Darwin";
                            {
                                "exemplarCity";
                                "Darwin";
                            }
                            "Eucla";
                            {
                                "exemplarCity";
                                "Eucla";
                            }
                            "Hobart";
                            {
                                "exemplarCity";
                                "Hobart";
                            }
                            "Lindeman";
                            {
                                "exemplarCity";
                                "Lindeman";
                            }
                            "Lord_Howe";
                            {
                                "exemplarCity";
                                "Lord Howe";
                            }
                            "Melbourne";
                            {
                                "exemplarCity";
                                "Melbourne";
                            }
                            "Perth";
                            {
                                "exemplarCity";
                                "Perth";
                            }
                            "Sydney";
                            {
                                "exemplarCity";
                                "Sydney";
                            }
                        }
                        "Pacific";
                        {
                            "Apia";
                            {
                                "exemplarCity";
                                "Apia";
                            }
                            "Auckland";
                            {
                                "exemplarCity";
                                "Auckland";
                            }
                            "Bougainville";
                            {
                                "exemplarCity";
                                "Bougainville";
                            }
                            "Chatham";
                            {
                                "exemplarCity";
                                "Chatham";
                            }
                            "Easter";
                            {
                                "exemplarCity";
                                "Osterinsel";
                            }
                            "Efate";
                            {
                                "exemplarCity";
                                "Efate";
                            }
                            "Enderbury";
                            {
                                "exemplarCity";
                                "Enderbury";
                            }
                            "Fakaofo";
                            {
                                "exemplarCity";
                                "Fakaofo";
                            }
                            "Fiji";
                            {
                                "exemplarCity";
                                "Fidschi";
                            }
                            "Funafuti";
                            {
                                "exemplarCity";
                                "Funafuti";
                            }
                            "Galapagos";
                            {
                                "exemplarCity";
                                "Galapagos";
                            }
                            "Gambier";
                            {
                                "exemplarCity";
                                "Gambier";
                            }
                            "Guadalcanal";
                            {
                                "exemplarCity";
                                "Guadalcanal";
                            }
                            "Guam";
                            {
                                "exemplarCity";
                                "Guam";
                            }
                            "Honolulu";
                            {
                                "exemplarCity";
                                "Honolulu";
                            }
                            "Johnston";
                            {
                                "exemplarCity";
                                "Johnston";
                            }
                            "Kiritimati";
                            {
                                "exemplarCity";
                                "Kiritimati";
                            }
                            "Kosrae";
                            {
                                "exemplarCity";
                                "Kosrae";
                            }
                            "Kwajalein";
                            {
                                "exemplarCity";
                                "Kwajalein";
                            }
                            "Majuro";
                            {
                                "exemplarCity";
                                "Majuro";
                            }
                            "Marquesas";
                            {
                                "exemplarCity";
                                "Marquesas";
                            }
                            "Midway";
                            {
                                "exemplarCity";
                                "Midway";
                            }
                            "Nauru";
                            {
                                "exemplarCity";
                                "Nauru";
                            }
                            "Niue";
                            {
                                "exemplarCity";
                                "Niue";
                            }
                            "Norfolk";
                            {
                                "exemplarCity";
                                "Norfolk";
                            }
                            "Noumea";
                            {
                                "exemplarCity";
                                "Noumea";
                            }
                            "Pago_Pago";
                            {
                                "exemplarCity";
                                "Pago Pago";
                            }
                            "Palau";
                            {
                                "exemplarCity";
                                "Palau";
                            }
                            "Pitcairn";
                            {
                                "exemplarCity";
                                "Pitcairn";
                            }
                            "Ponape";
                            {
                                "exemplarCity";
                                "Pohnpei";
                            }
                            "Port_Moresby";
                            {
                                "exemplarCity";
                                "Port Moresby";
                            }
                            "Rarotonga";
                            {
                                "exemplarCity";
                                "Rarotonga";
                            }
                            "Saipan";
                            {
                                "exemplarCity";
                                "Saipan";
                            }
                            "Tahiti";
                            {
                                "exemplarCity";
                                "Tahiti";
                            }
                            "Tarawa";
                            {
                                "exemplarCity";
                                "Tarawa";
                            }
                            "Tongatapu";
                            {
                                "exemplarCity";
                                "Tongatapu";
                            }
                            "Truk";
                            {
                                "exemplarCity";
                                "Chuuk";
                            }
                            "Wake";
                            {
                                "exemplarCity";
                                "Wake";
                            }
                            "Wallis";
                            {
                                "exemplarCity";
                                "Wallis";
                            }
                        }
                        "Arctic";
                        {
                            "Longyearbyen";
                            {
                                "exemplarCity";
                                "Longyearbyen";
                            }
                        }
                        "Antarctica";
                        {
                            "Casey";
                            {
                                "exemplarCity";
                                "Casey";
                            }
                            "Davis";
                            {
                                "exemplarCity";
                                "Davis";
                            }
                            "DumontDUrville";
                            {
                                "exemplarCity";
                                "Dumont d’Urville";
                            }
                            "Macquarie";
                            {
                                "exemplarCity";
                                "Macquarie";
                            }
                            "Mawson";
                            {
                                "exemplarCity";
                                "Mawson";
                            }
                            "McMurdo";
                            {
                                "exemplarCity";
                                "McMurdo";
                            }
                            "Palmer";
                            {
                                "exemplarCity";
                                "Palmer";
                            }
                            "Rothera";
                            {
                                "exemplarCity";
                                "Rothera";
                            }
                            "Syowa";
                            {
                                "exemplarCity";
                                "Syowa";
                            }
                            "Troll";
                            {
                                "exemplarCity";
                                "Troll";
                            }
                            "Vostok";
                            {
                                "exemplarCity";
                                "Wostok";
                            }
                        }
                        "Etc";
                        {
                            "GMT";
                            {
                                "exemplarCity";
                                "GMT";
                            }
                            "GMT1";
                            {
                                "exemplarCity";
                                "GMT+1";
                            }
                            "GMT10";
                            {
                                "exemplarCity";
                                "GMT+10";
                            }
                            "GMT11";
                            {
                                "exemplarCity";
                                "GMT+11";
                            }
                            "GMT12";
                            {
                                "exemplarCity";
                                "GMT+12";
                            }
                            "GMT2";
                            {
                                "exemplarCity";
                                "GMT+2";
                            }
                            "GMT3";
                            {
                                "exemplarCity";
                                "GMT+3";
                            }
                            "GMT4";
                            {
                                "exemplarCity";
                                "GMT+4";
                            }
                            "GMT5";
                            {
                                "exemplarCity";
                                "GMT+5";
                            }
                            "GMT6";
                            {
                                "exemplarCity";
                                "GMT+6";
                            }
                            "GMT7";
                            {
                                "exemplarCity";
                                "GMT+7";
                            }
                            "GMT8";
                            {
                                "exemplarCity";
                                "GMT+8";
                            }
                            "GMT9";
                            {
                                "exemplarCity";
                                "GMT+9";
                            }
                            "GMT-1";
                            {
                                "exemplarCity";
                                "GMT-1";
                            }
                            "GMT-10";
                            {
                                "exemplarCity";
                                "GMT-10";
                            }
                            "GMT-11";
                            {
                                "exemplarCity";
                                "GMT-11";
                            }
                            "GMT-12";
                            {
                                "exemplarCity";
                                "GMT-12";
                            }
                            "GMT-13";
                            {
                                "exemplarCity";
                                "GMT-13";
                            }
                            "GMT-14";
                            {
                                "exemplarCity";
                                "GMT-14";
                            }
                            "GMT-2";
                            {
                                "exemplarCity";
                                "GMT-2";
                            }
                            "GMT-3";
                            {
                                "exemplarCity";
                                "GMT-3";
                            }
                            "GMT-4";
                            {
                                "exemplarCity";
                                "GMT-4";
                            }
                            "GMT-5";
                            {
                                "exemplarCity";
                                "GMT-5";
                            }
                            "GMT-6";
                            {
                                "exemplarCity";
                                "GMT-6";
                            }
                            "GMT-7";
                            {
                                "exemplarCity";
                                "GMT-7";
                            }
                            "GMT-8";
                            {
                                "exemplarCity";
                                "GMT-8";
                            }
                            "GMT-9";
                            {
                                "exemplarCity";
                                "GMT-9";
                            }
                            "Unknown";
                            {
                                "exemplarCity";
                                "Unbekannt";
                            }
                        }
                    }
                    "metazone";
                    {
                        "Acre";
                        {
                            "long";
                            {
                                "generic";
                                "Acre-Zeit",
                                    "standard";
                                "Acre-Normalzeit",
                                    "daylight";
                                "Acre-Sommerzeit";
                            }
                        }
                        "Afghanistan";
                        {
                            "long";
                            {
                                "standard";
                                "Afghanistan-Zeit";
                            }
                        }
                        "Africa_Central";
                        {
                            "long";
                            {
                                "standard";
                                "Zentralafrikanische Zeit";
                            }
                        }
                        "Africa_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Ostafrikanische Zeit";
                            }
                        }
                        "Africa_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "Südafrikanische Zeit";
                            }
                        }
                        "Africa_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westafrikanische Zeit",
                                    "standard";
                                "Westafrikanische Normalzeit",
                                    "daylight";
                                "Westafrikanische Sommerzeit";
                            }
                        }
                        "Alaska";
                        {
                            "long";
                            {
                                "generic";
                                "Alaska-Zeit",
                                    "standard";
                                "Alaska-Normalzeit",
                                    "daylight";
                                "Alaska-Sommerzeit";
                            }
                        }
                        "Almaty";
                        {
                            "long";
                            {
                                "generic";
                                "Almaty-Zeit",
                                    "standard";
                                "Almaty-Normalzeit",
                                    "daylight";
                                "Almaty-Sommerzeit";
                            }
                        }
                        "Amazon";
                        {
                            "long";
                            {
                                "generic";
                                "Amazonas-Zeit",
                                    "standard";
                                "Amazonas-Normalzeit",
                                    "daylight";
                                "Amazonas-Sommerzeit";
                            }
                        }
                        "America_Central";
                        {
                            "long";
                            {
                                "generic";
                                "Nordamerikanische Inlandzeit",
                                    "standard";
                                "Nordamerikanische Inland-Normalzeit",
                                    "daylight";
                                "Nordamerikanische Inland-Sommerzeit";
                            }
                        }
                        "America_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Nordamerikanische Ostküstenzeit",
                                    "standard";
                                "Nordamerikanische Ostküsten-Normalzeit",
                                    "daylight";
                                "Nordamerikanische Ostküsten-Sommerzeit";
                            }
                        }
                        "America_Mountain";
                        {
                            "long";
                            {
                                "generic";
                                "Rocky-Mountain-Zeit",
                                    "standard";
                                "Rocky Mountain-Normalzeit",
                                    "daylight";
                                "Rocky-Mountain-Sommerzeit";
                            }
                        }
                        "America_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "Nordamerikanische Westküstenzeit",
                                    "standard";
                                "Nordamerikanische Westküsten-Normalzeit",
                                    "daylight";
                                "Nordamerikanische Westküsten-Sommerzeit";
                            }
                        }
                        "Anadyr";
                        {
                            "long";
                            {
                                "generic";
                                "Anadyr Zeit",
                                    "standard";
                                "Anadyr Normalzeit",
                                    "daylight";
                                "Anadyr Sommerzeit";
                            }
                        }
                        "Apia";
                        {
                            "long";
                            {
                                "generic";
                                "Apia-Zeit",
                                    "standard";
                                "Apia-Normalzeit",
                                    "daylight";
                                "Apia-Sommerzeit";
                            }
                        }
                        "Aqtau";
                        {
                            "long";
                            {
                                "generic";
                                "Aqtau-Zeit",
                                    "standard";
                                "Aqtau-Normalzeit",
                                    "daylight";
                                "Aqtau-Sommerzeit";
                            }
                        }
                        "Aqtobe";
                        {
                            "long";
                            {
                                "generic";
                                "Aqtöbe-Zeit",
                                    "standard";
                                "Aqtöbe-Normalzeit",
                                    "daylight";
                                "Aqtöbe-Sommerzeit";
                            }
                        }
                        "Arabian";
                        {
                            "long";
                            {
                                "generic";
                                "Arabische Zeit",
                                    "standard";
                                "Arabische Normalzeit",
                                    "daylight";
                                "Arabische Sommerzeit";
                            }
                        }
                        "Argentina";
                        {
                            "long";
                            {
                                "generic";
                                "Argentinische Zeit",
                                    "standard";
                                "Argentinische Normalzeit",
                                    "daylight";
                                "Argentinische Sommerzeit";
                            }
                        }
                        "Argentina_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westargentinische Zeit",
                                    "standard";
                                "Westargentinische Normalzeit",
                                    "daylight";
                                "Westargentinische Sommerzeit";
                            }
                        }
                        "Armenia";
                        {
                            "long";
                            {
                                "generic";
                                "Armenische Zeit",
                                    "standard";
                                "Armenische Normalzeit",
                                    "daylight";
                                "Armenische Sommerzeit";
                            }
                        }
                        "Atlantic";
                        {
                            "long";
                            {
                                "generic";
                                "Atlantik-Zeit",
                                    "standard";
                                "Atlantik-Normalzeit",
                                    "daylight";
                                "Atlantik-Sommerzeit";
                            }
                        }
                        "Australia_Central";
                        {
                            "long";
                            {
                                "generic";
                                "Zentralaustralische Zeit",
                                    "standard";
                                "Zentralaustralische Normalzeit",
                                    "daylight";
                                "Zentralaustralische Sommerzeit";
                            }
                        }
                        "Australia_CentralWestern";
                        {
                            "long";
                            {
                                "generic";
                                "Zentral-/Westaustralische Zeit",
                                    "standard";
                                "Zentral-/Westaustralische Normalzeit",
                                    "daylight";
                                "Zentral-/Westaustralische Sommerzeit";
                            }
                        }
                        "Australia_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Ostaustralische Zeit",
                                    "standard";
                                "Ostaustralische Normalzeit",
                                    "daylight";
                                "Ostaustralische Sommerzeit";
                            }
                        }
                        "Australia_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westaustralische Zeit",
                                    "standard";
                                "Westaustralische Normalzeit",
                                    "daylight";
                                "Westaustralische Sommerzeit";
                            }
                        }
                        "Azerbaijan";
                        {
                            "long";
                            {
                                "generic";
                                "Aserbaidschanische Zeit",
                                    "standard";
                                "Aserbeidschanische Normalzeit",
                                    "daylight";
                                "Aserbaidschanische Sommerzeit";
                            }
                        }
                        "Azores";
                        {
                            "long";
                            {
                                "generic";
                                "Azoren-Zeit",
                                    "standard";
                                "Azoren-Normalzeit",
                                    "daylight";
                                "Azoren-Sommerzeit";
                            }
                        }
                        "Bangladesh";
                        {
                            "long";
                            {
                                "generic";
                                "Bangladesch-Zeit",
                                    "standard";
                                "Bangladesch-Normalzeit",
                                    "daylight";
                                "Bangladesch-Sommerzeit";
                            }
                        }
                        "Bhutan";
                        {
                            "long";
                            {
                                "standard";
                                "Bhutan-Zeit";
                            }
                        }
                        "Bolivia";
                        {
                            "long";
                            {
                                "standard";
                                "Bolivianische Zeit";
                            }
                        }
                        "Brasilia";
                        {
                            "long";
                            {
                                "generic";
                                "Brasília-Zeit",
                                    "standard";
                                "Brasília-Normalzeit",
                                    "daylight";
                                "Brasília-Sommerzeit";
                            }
                        }
                        "Brunei";
                        {
                            "long";
                            {
                                "standard";
                                "Brunei-Zeit";
                            }
                        }
                        "Cape_Verde";
                        {
                            "long";
                            {
                                "generic";
                                "Cabo-Verde-Zeit",
                                    "standard";
                                "Cabo-Verde-Normalzeit",
                                    "daylight";
                                "Cabo-Verde-Sommerzeit";
                            }
                        }
                        "Casey";
                        {
                            "long";
                            {
                                "standard";
                                "Casey-Zeit";
                            }
                        }
                        "Chamorro";
                        {
                            "long";
                            {
                                "standard";
                                "Chamorro-Zeit";
                            }
                        }
                        "Chatham";
                        {
                            "long";
                            {
                                "generic";
                                "Chatham-Zeit",
                                    "standard";
                                "Chatham-Normalzeit",
                                    "daylight";
                                "Chatham-Sommerzeit";
                            }
                        }
                        "Chile";
                        {
                            "long";
                            {
                                "generic";
                                "Chilenische Zeit",
                                    "standard";
                                "Chilenische Normalzeit",
                                    "daylight";
                                "Chilenische Sommerzeit";
                            }
                        }
                        "China";
                        {
                            "long";
                            {
                                "generic";
                                "Chinesische Zeit",
                                    "standard";
                                "Chinesische Normalzeit",
                                    "daylight";
                                "Chinesische Sommerzeit";
                            }
                        }
                        "Choibalsan";
                        {
                            "long";
                            {
                                "generic";
                                "Tschoibalsan-Zeit",
                                    "standard";
                                "Tschoibalsan-Normalzeit",
                                    "daylight";
                                "Tschoibalsan-Sommerzeit";
                            }
                        }
                        "Christmas";
                        {
                            "long";
                            {
                                "standard";
                                "Weihnachtsinsel-Zeit";
                            }
                        }
                        "Cocos";
                        {
                            "long";
                            {
                                "standard";
                                "Kokosinseln-Zeit";
                            }
                        }
                        "Colombia";
                        {
                            "long";
                            {
                                "generic";
                                "Kolumbianische Zeit",
                                    "standard";
                                "Kolumbianische Normalzeit",
                                    "daylight";
                                "Kolumbianische Sommerzeit";
                            }
                        }
                        "Cook";
                        {
                            "long";
                            {
                                "generic";
                                "Cookinseln-Zeit",
                                    "standard";
                                "Cookinseln-Normalzeit",
                                    "daylight";
                                "Cookinseln-Sommerzeit";
                            }
                        }
                        "Cuba";
                        {
                            "long";
                            {
                                "generic";
                                "Kubanische Zeit",
                                    "standard";
                                "Kubanische Normalzeit",
                                    "daylight";
                                "Kubanische Sommerzeit";
                            }
                        }
                        "Davis";
                        {
                            "long";
                            {
                                "standard";
                                "Davis-Zeit";
                            }
                        }
                        "DumontDUrville";
                        {
                            "long";
                            {
                                "standard";
                                "Dumont-d’Urville-Zeit";
                            }
                        }
                        "East_Timor";
                        {
                            "long";
                            {
                                "standard";
                                "Osttimor-Zeit";
                            }
                        }
                        "Easter";
                        {
                            "long";
                            {
                                "generic";
                                "Osterinsel-Zeit",
                                    "standard";
                                "Osterinsel-Normalzeit",
                                    "daylight";
                                "Osterinsel-Sommerzeit";
                            }
                        }
                        "Ecuador";
                        {
                            "long";
                            {
                                "standard";
                                "Ecuadorianische Zeit";
                            }
                        }
                        "Europe_Central";
                        {
                            "long";
                            {
                                "generic";
                                "Mitteleuropäische Zeit",
                                    "standard";
                                "Mitteleuropäische Normalzeit",
                                    "daylight";
                                "Mitteleuropäische Sommerzeit";
                            }
                            "short";
                            {
                                "generic";
                                "MEZ",
                                    "standard";
                                "MEZ",
                                    "daylight";
                                "MESZ";
                            }
                        }
                        "Europe_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Osteuropäische Zeit",
                                    "standard";
                                "Osteuropäische Normalzeit",
                                    "daylight";
                                "Osteuropäische Sommerzeit";
                            }
                            "short";
                            {
                                "generic";
                                "OEZ",
                                    "standard";
                                "OEZ",
                                    "daylight";
                                "OESZ";
                            }
                        }
                        "Europe_Further_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Kaliningrader Zeit";
                            }
                        }
                        "Europe_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westeuropäische Zeit",
                                    "standard";
                                "Westeuropäische Normalzeit",
                                    "daylight";
                                "Westeuropäische Sommerzeit";
                            }
                            "short";
                            {
                                "generic";
                                "WEZ",
                                    "standard";
                                "WEZ",
                                    "daylight";
                                "WESZ";
                            }
                        }
                        "Falkland";
                        {
                            "long";
                            {
                                "generic";
                                "Falklandinseln-Zeit",
                                    "standard";
                                "Falklandinseln-Normalzeit",
                                    "daylight";
                                "Falklandinseln-Sommerzeit";
                            }
                        }
                        "Fiji";
                        {
                            "long";
                            {
                                "generic";
                                "Fidschi-Zeit",
                                    "standard";
                                "Fidschi-Normalzeit",
                                    "daylight";
                                "Fidschi-Sommerzeit";
                            }
                        }
                        "French_Guiana";
                        {
                            "long";
                            {
                                "standard";
                                "Französisch-Guayana-Zeit";
                            }
                        }
                        "French_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "Französische Süd- und Antarktisgebiete-Zeit";
                            }
                        }
                        "Galapagos";
                        {
                            "long";
                            {
                                "standard";
                                "Galapagos-Zeit";
                            }
                        }
                        "Gambier";
                        {
                            "long";
                            {
                                "standard";
                                "Gambier-Zeit";
                            }
                        }
                        "Georgia";
                        {
                            "long";
                            {
                                "generic";
                                "Georgische Zeit",
                                    "standard";
                                "Georgische Normalzeit",
                                    "daylight";
                                "Georgische Sommerzeit";
                            }
                        }
                        "Gilbert_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Gilbert-Inseln-Zeit";
                            }
                        }
                        "GMT";
                        {
                            "long";
                            {
                                "standard";
                                "Mittlere Greenwich-Zeit";
                            }
                        }
                        "Greenland_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Ostgrönland-Zeit",
                                    "standard";
                                "Ostgrönland-Normalzeit",
                                    "daylight";
                                "Ostgrönland-Sommerzeit";
                            }
                        }
                        "Greenland_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westgrönland-Zeit",
                                    "standard";
                                "Westgrönland-Normalzeit",
                                    "daylight";
                                "Westgrönland-Sommerzeit";
                            }
                        }
                        "Guam";
                        {
                            "long";
                            {
                                "standard";
                                "Guam-Zeit";
                            }
                        }
                        "Gulf";
                        {
                            "long";
                            {
                                "standard";
                                "Golf-Zeit";
                            }
                        }
                        "Guyana";
                        {
                            "long";
                            {
                                "standard";
                                "Guyana-Zeit";
                            }
                        }
                        "Hawaii_Aleutian";
                        {
                            "long";
                            {
                                "generic";
                                "Hawaii-Aleuten-Zeit",
                                    "standard";
                                "Hawaii-Aleuten-Normalzeit",
                                    "daylight";
                                "Hawaii-Aleuten-Sommerzeit";
                            }
                        }
                        "Hong_Kong";
                        {
                            "long";
                            {
                                "generic";
                                "Hongkong-Zeit",
                                    "standard";
                                "Hongkong-Normalzeit",
                                    "daylight";
                                "Hongkong-Sommerzeit";
                            }
                        }
                        "Hovd";
                        {
                            "long";
                            {
                                "generic";
                                "Chowd-Zeit",
                                    "standard";
                                "Chowd-Normalzeit",
                                    "daylight";
                                "Chowd-Sommerzeit";
                            }
                        }
                        "India";
                        {
                            "long";
                            {
                                "standard";
                                "Indische Zeit";
                            }
                        }
                        "Indian_Ocean";
                        {
                            "long";
                            {
                                "standard";
                                "Indischer Ozean-Zeit";
                            }
                        }
                        "Indochina";
                        {
                            "long";
                            {
                                "standard";
                                "Indochina-Zeit";
                            }
                        }
                        "Indonesia_Central";
                        {
                            "long";
                            {
                                "standard";
                                "Zentralindonesische Zeit";
                            }
                        }
                        "Indonesia_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Ostindonesische Zeit";
                            }
                        }
                        "Indonesia_Western";
                        {
                            "long";
                            {
                                "standard";
                                "Westindonesische Zeit";
                            }
                        }
                        "Iran";
                        {
                            "long";
                            {
                                "generic";
                                "Iranische Zeit",
                                    "standard";
                                "Iranische Normalzeit",
                                    "daylight";
                                "Iranische Sommerzeit";
                            }
                        }
                        "Irkutsk";
                        {
                            "long";
                            {
                                "generic";
                                "Irkutsk-Zeit",
                                    "standard";
                                "Irkutsk-Normalzeit",
                                    "daylight";
                                "Irkutsk-Sommerzeit";
                            }
                        }
                        "Israel";
                        {
                            "long";
                            {
                                "generic";
                                "Israelische Zeit",
                                    "standard";
                                "Israelische Normalzeit",
                                    "daylight";
                                "Israelische Sommerzeit";
                            }
                        }
                        "Japan";
                        {
                            "long";
                            {
                                "generic";
                                "Japanische Zeit",
                                    "standard";
                                "Japanische Normalzeit",
                                    "daylight";
                                "Japanische Sommerzeit";
                            }
                        }
                        "Kamchatka";
                        {
                            "long";
                            {
                                "generic";
                                "Kamtschatka-Zeit",
                                    "standard";
                                "Kamtschatka-Normalzeit",
                                    "daylight";
                                "Kamtschatka-Sommerzeit";
                            }
                        }
                        "Kazakhstan_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Ostkasachische Zeit";
                            }
                        }
                        "Kazakhstan_Western";
                        {
                            "long";
                            {
                                "standard";
                                "Westkasachische Zeit";
                            }
                        }
                        "Korea";
                        {
                            "long";
                            {
                                "generic";
                                "Koreanische Zeit",
                                    "standard";
                                "Koreanische Normalzeit",
                                    "daylight";
                                "Koreanische Sommerzeit";
                            }
                        }
                        "Kosrae";
                        {
                            "long";
                            {
                                "standard";
                                "Kosrae-Zeit";
                            }
                        }
                        "Krasnoyarsk";
                        {
                            "long";
                            {
                                "generic";
                                "Krasnojarsk-Zeit",
                                    "standard";
                                "Krasnojarsk-Normalzeit",
                                    "daylight";
                                "Krasnojarsk-Sommerzeit";
                            }
                        }
                        "Kyrgystan";
                        {
                            "long";
                            {
                                "standard";
                                "Kirgisistan-Zeit";
                            }
                        }
                        "Lanka";
                        {
                            "long";
                            {
                                "standard";
                                "Sri-Lanka-Zeit";
                            }
                        }
                        "Line_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Linieninseln-Zeit";
                            }
                        }
                        "Lord_Howe";
                        {
                            "long";
                            {
                                "generic";
                                "Lord-Howe-Zeit",
                                    "standard";
                                "Lord-Howe-Normalzeit",
                                    "daylight";
                                "Lord-Howe-Sommerzeit";
                            }
                        }
                        "Macau";
                        {
                            "long";
                            {
                                "generic";
                                "Macau-Zeit",
                                    "standard";
                                "Macau-Normalzeit",
                                    "daylight";
                                "Macau-Sommerzeit";
                            }
                        }
                        "Macquarie";
                        {
                            "long";
                            {
                                "standard";
                                "Macquarieinsel-Zeit";
                            }
                        }
                        "Magadan";
                        {
                            "long";
                            {
                                "generic";
                                "Magadan-Zeit",
                                    "standard";
                                "Magadan-Normalzeit",
                                    "daylight";
                                "Magadan-Sommerzeit";
                            }
                        }
                        "Malaysia";
                        {
                            "long";
                            {
                                "standard";
                                "Malaysische Zeit";
                            }
                        }
                        "Maldives";
                        {
                            "long";
                            {
                                "standard";
                                "Malediven-Zeit";
                            }
                        }
                        "Marquesas";
                        {
                            "long";
                            {
                                "standard";
                                "Marquesas-Zeit";
                            }
                        }
                        "Marshall_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Marshallinseln-Zeit";
                            }
                        }
                        "Mauritius";
                        {
                            "long";
                            {
                                "generic";
                                "Mauritius-Zeit",
                                    "standard";
                                "Mauritius-Normalzeit",
                                    "daylight";
                                "Mauritius-Sommerzeit";
                            }
                        }
                        "Mawson";
                        {
                            "long";
                            {
                                "standard";
                                "Mawson-Zeit";
                            }
                        }
                        "Mexico_Northwest";
                        {
                            "long";
                            {
                                "generic";
                                "Mexiko Nordwestliche Zone-Zeit",
                                    "standard";
                                "Mexiko Nordwestliche Zone-Normalzeit",
                                    "daylight";
                                "Mexiko Nordwestliche Zone-Sommerzeit";
                            }
                        }
                        "Mexico_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "Mexiko Pazifikzone-Zeit",
                                    "standard";
                                "Mexiko Pazifikzone-Normalzeit",
                                    "daylight";
                                "Mexiko Pazifikzone-Sommerzeit";
                            }
                        }
                        "Mongolia";
                        {
                            "long";
                            {
                                "generic";
                                "Ulaanbaatar-Zeit",
                                    "standard";
                                "Ulaanbaatar-Normalzeit",
                                    "daylight";
                                "Ulaanbaatar-Sommerzeit";
                            }
                        }
                        "Moscow";
                        {
                            "long";
                            {
                                "generic";
                                "Moskauer Zeit",
                                    "standard";
                                "Moskauer Normalzeit",
                                    "daylight";
                                "Moskauer Sommerzeit";
                            }
                        }
                        "Myanmar";
                        {
                            "long";
                            {
                                "standard";
                                "Myanmar-Zeit";
                            }
                        }
                        "Nauru";
                        {
                            "long";
                            {
                                "standard";
                                "Nauru-Zeit";
                            }
                        }
                        "Nepal";
                        {
                            "long";
                            {
                                "standard";
                                "Nepalesische Zeit";
                            }
                        }
                        "New_Caledonia";
                        {
                            "long";
                            {
                                "generic";
                                "Neukaledonische Zeit",
                                    "standard";
                                "Neukaledonische Normalzeit",
                                    "daylight";
                                "Neukaledonische Sommerzeit";
                            }
                        }
                        "New_Zealand";
                        {
                            "long";
                            {
                                "generic";
                                "Neuseeland-Zeit",
                                    "standard";
                                "Neuseeland-Normalzeit",
                                    "daylight";
                                "Neuseeland-Sommerzeit";
                            }
                        }
                        "Newfoundland";
                        {
                            "long";
                            {
                                "generic";
                                "Neufundland-Zeit",
                                    "standard";
                                "Neufundland-Normalzeit",
                                    "daylight";
                                "Neufundland-Sommerzeit";
                            }
                        }
                        "Niue";
                        {
                            "long";
                            {
                                "standard";
                                "Niue-Zeit";
                            }
                        }
                        "Norfolk";
                        {
                            "long";
                            {
                                "standard";
                                "Norfolkinsel-Zeit";
                            }
                        }
                        "Noronha";
                        {
                            "long";
                            {
                                "generic";
                                "Fernando de Noronha-Zeit",
                                    "standard";
                                "Fernando de Noronha-Normalzeit",
                                    "daylight";
                                "Fernando de Noronha-Sommerzeit";
                            }
                        }
                        "North_Mariana";
                        {
                            "long";
                            {
                                "standard";
                                "Nördliche-Marianen-Zeit";
                            }
                        }
                        "Novosibirsk";
                        {
                            "long";
                            {
                                "generic";
                                "Nowosibirsk-Zeit",
                                    "standard";
                                "Nowosibirsk-Normalzeit",
                                    "daylight";
                                "Nowosibirsk-Sommerzeit";
                            }
                        }
                        "Omsk";
                        {
                            "long";
                            {
                                "generic";
                                "Omsk-Zeit",
                                    "standard";
                                "Omsk-Normalzeit",
                                    "daylight";
                                "Omsk-Sommerzeit";
                            }
                        }
                        "Pakistan";
                        {
                            "long";
                            {
                                "generic";
                                "Pakistanische Zeit",
                                    "standard";
                                "Pakistanische Normalzeit",
                                    "daylight";
                                "Pakistanische Sommerzeit";
                            }
                        }
                        "Palau";
                        {
                            "long";
                            {
                                "standard";
                                "Palau-Zeit";
                            }
                        }
                        "Papua_New_Guinea";
                        {
                            "long";
                            {
                                "standard";
                                "Papua-Neuguinea-Zeit";
                            }
                        }
                        "Paraguay";
                        {
                            "long";
                            {
                                "generic";
                                "Paraguayanische Zeit",
                                    "standard";
                                "Paraguayanische Normalzeit",
                                    "daylight";
                                "Paraguayanische Sommerzeit";
                            }
                        }
                        "Peru";
                        {
                            "long";
                            {
                                "generic";
                                "Peruanische Zeit",
                                    "standard";
                                "Peruanische Normalzeit",
                                    "daylight";
                                "Peruanische Sommerzeit";
                            }
                        }
                        "Philippines";
                        {
                            "long";
                            {
                                "generic";
                                "Philippinische Zeit",
                                    "standard";
                                "Philippinische Normalzeit",
                                    "daylight";
                                "Philippinische Sommerzeit";
                            }
                        }
                        "Phoenix_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Phoenixinseln-Zeit";
                            }
                        }
                        "Pierre_Miquelon";
                        {
                            "long";
                            {
                                "generic";
                                "Saint-Pierre-und-Miquelon-Zeit",
                                    "standard";
                                "Saint-Pierre-und-Miquelon-Normalzeit",
                                    "daylight";
                                "Saint-Pierre-und-Miquelon-Sommerzeit";
                            }
                        }
                        "Pitcairn";
                        {
                            "long";
                            {
                                "standard";
                                "Pitcairninseln-Zeit";
                            }
                        }
                        "Ponape";
                        {
                            "long";
                            {
                                "standard";
                                "Ponape-Zeit";
                            }
                        }
                        "Pyongyang";
                        {
                            "long";
                            {
                                "standard";
                                "Pjöngjang-Zeit";
                            }
                        }
                        "Qyzylorda";
                        {
                            "long";
                            {
                                "generic";
                                "Quysylorda-Zeit",
                                    "standard";
                                "Quysylorda-Normalzeit",
                                    "daylight";
                                "Qysylorda-Sommerzeit";
                            }
                        }
                        "Reunion";
                        {
                            "long";
                            {
                                "standard";
                                "Réunion-Zeit";
                            }
                        }
                        "Rothera";
                        {
                            "long";
                            {
                                "standard";
                                "Rothera-Zeit";
                            }
                        }
                        "Sakhalin";
                        {
                            "long";
                            {
                                "generic";
                                "Sachalin-Zeit",
                                    "standard";
                                "Sachalin-Normalzeit",
                                    "daylight";
                                "Sachalin-Sommerzeit";
                            }
                        }
                        "Samara";
                        {
                            "long";
                            {
                                "generic";
                                "Samara-Zeit",
                                    "standard";
                                "Samara-Normalzeit",
                                    "daylight";
                                "Samara-Sommerzeit";
                            }
                        }
                        "Samoa";
                        {
                            "long";
                            {
                                "generic";
                                "Samoa-Zeit",
                                    "standard";
                                "Samoa-Normalzeit",
                                    "daylight";
                                "Samoa-Sommerzeit";
                            }
                        }
                        "Seychelles";
                        {
                            "long";
                            {
                                "standard";
                                "Seychellen-Zeit";
                            }
                        }
                        "Singapore";
                        {
                            "long";
                            {
                                "standard";
                                "Singapur-Zeit";
                            }
                        }
                        "Solomon";
                        {
                            "long";
                            {
                                "standard";
                                "Salomoninseln-Zeit";
                            }
                        }
                        "South_Georgia";
                        {
                            "long";
                            {
                                "standard";
                                "Südgeorgische Zeit";
                            }
                        }
                        "Suriname";
                        {
                            "long";
                            {
                                "standard";
                                "Suriname-Zeit";
                            }
                        }
                        "Syowa";
                        {
                            "long";
                            {
                                "standard";
                                "Syowa-Zeit";
                            }
                        }
                        "Tahiti";
                        {
                            "long";
                            {
                                "standard";
                                "Tahiti-Zeit";
                            }
                        }
                        "Taipei";
                        {
                            "long";
                            {
                                "generic";
                                "Taipeh-Zeit",
                                    "standard";
                                "Taipeh-Normalzeit",
                                    "daylight";
                                "Taipeh-Sommerzeit";
                            }
                        }
                        "Tajikistan";
                        {
                            "long";
                            {
                                "standard";
                                "Tadschikistan-Zeit";
                            }
                        }
                        "Tokelau";
                        {
                            "long";
                            {
                                "standard";
                                "Tokelau-Zeit";
                            }
                        }
                        "Tonga";
                        {
                            "long";
                            {
                                "generic";
                                "Tonganische Zeit",
                                    "standard";
                                "Tonganische Normalzeit",
                                    "daylight";
                                "Tonganische Sommerzeit";
                            }
                        }
                        "Truk";
                        {
                            "long";
                            {
                                "standard";
                                "Chuuk-Zeit";
                            }
                        }
                        "Turkmenistan";
                        {
                            "long";
                            {
                                "generic";
                                "Turkmenistan-Zeit",
                                    "standard";
                                "Turkmenistan-Normalzeit",
                                    "daylight";
                                "Turkmenistan-Sommerzeit";
                            }
                        }
                        "Tuvalu";
                        {
                            "long";
                            {
                                "standard";
                                "Tuvalu-Zeit";
                            }
                        }
                        "Uruguay";
                        {
                            "long";
                            {
                                "generic";
                                "Uruguayanische Zeit",
                                    "standard";
                                "Uruguyanische Normalzeit",
                                    "daylight";
                                "Uruguayanische Sommerzeit";
                            }
                        }
                        "Uzbekistan";
                        {
                            "long";
                            {
                                "generic";
                                "Usbekistan-Zeit",
                                    "standard";
                                "Usbekistan-Normalzeit",
                                    "daylight";
                                "Usbekistan-Sommerzeit";
                            }
                        }
                        "Vanuatu";
                        {
                            "long";
                            {
                                "generic";
                                "Vanuatu-Zeit",
                                    "standard";
                                "Vanuatu-Normalzeit",
                                    "daylight";
                                "Vanuatu-Sommerzeit";
                            }
                        }
                        "Venezuela";
                        {
                            "long";
                            {
                                "standard";
                                "Venezuela-Zeit";
                            }
                        }
                        "Vladivostok";
                        {
                            "long";
                            {
                                "generic";
                                "Wladiwostok-Zeit",
                                    "standard";
                                "Wladiwostok-Normalzeit",
                                    "daylight";
                                "Wladiwostok-Sommerzeit";
                            }
                        }
                        "Volgograd";
                        {
                            "long";
                            {
                                "generic";
                                "Wolgograd-Zeit",
                                    "standard";
                                "Wolgograd-Normalzeit",
                                    "daylight";
                                "Wolgograd-Sommerzeit";
                            }
                        }
                        "Vostok";
                        {
                            "long";
                            {
                                "standard";
                                "Wostok-Zeit";
                            }
                        }
                        "Wake";
                        {
                            "long";
                            {
                                "standard";
                                "Wake-Insel-Zeit";
                            }
                        }
                        "Wallis";
                        {
                            "long";
                            {
                                "standard";
                                "Wallis-und-Futuna-Zeit";
                            }
                        }
                        "Yakutsk";
                        {
                            "long";
                            {
                                "generic";
                                "Jakutsk-Zeit",
                                    "standard";
                                "Jakutsk-Normalzeit",
                                    "daylight";
                                "Jakutsk-Sommerzeit";
                            }
                        }
                        "Yekaterinburg";
                        {
                            "long";
                            {
                                "generic";
                                "Jekaterinburg-Zeit",
                                    "standard";
                                "Jekaterinburg-Normalzeit",
                                    "daylight";
                                "Jekaterinburg-Sommerzeit";
                            }
                        }
                    }
                }
            }
        }
    }
}

[Functional-component]

{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 12879 $",
          "_cldrVersion": "30.0.3"
        },
        "language": "de"
      },
      "dates": {
        "calendars": {
          "gregorian": {
            "months": {
              "format": {
                "abbreviated": {
                  "1": "Jan.",
                  "2": "Feb.",
                  "3": "März",
                  "4": "Apr.",
                  "5": "Mai",
                  "6": "Juni",
                  "7": "Juli",
                  "8": "Aug.",
                  "9": "Sep.",
                  "10": "Okt.",
                  "11": "Nov.",
                  "12": "Dez."
                },
                "narrow": {
                  "1": "J",
                  "2": "F",
                  "3": "M",
                  "4": "A",
                  "5": "M",
                  "6": "J",
                  "7": "J",
                  "8": "A",
                  "9": "S",
                  "10": "O",
                  "11": "N",
                  "12": "D"
                },
                "wide": {
                  "1": "Januar",
                  "2": "Februar",
                  "3": "März",
                  "4": "April",
                  "5": "Mai",
                  "6": "Juni",
                  "7": "Juli",
                  "8": "August",
                  "9": "September",
                  "10": "Oktober",
                  "11": "November",
                  "12": "Dezember"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "Jan",
                  "2": "Feb",
                  "3": "Mär",
                  "4": "Apr",
                  "5": "Mai",
                  "6": "Jun",
                  "7": "Jul",
                  "8": "Aug",
                  "9": "Sep",
                  "10": "Okt",
                  "11": "Nov",
                  "12": "Dez"
                },
                "narrow": {
                  "1": "J",
                  "2": "F",
                  "3": "M",
                  "4": "A",
                  "5": "M",
                  "6": "J",
                  "7": "J",
                  "8": "A",
                  "9": "S",
                  "10": "O",
                  "11": "N",
                  "12": "D"
                },
                "wide": {
                  "1": "Januar",
                  "2": "Februar",
                  "3": "März",
                  "4": "April",
                  "5": "Mai",
                  "6": "Juni",
                  "7": "Juli",
                  "8": "August",
                  "9": "September",
                  "10": "Oktober",
                  "11": "November",
                  "12": "Dezember"
                }
              }
            },
            "days": {
              "format": {
                "abbreviated": {
                  "sun": "So.",
                  "mon": "Mo.",
                  "tue": "Di.",
                  "wed": "Mi.",
                  "thu": "Do.",
                  "fri": "Fr.",
                  "sat": "Sa."
                },
                "narrow": {
                  "sun": "S",
                  "mon": "M",
                  "tue": "D",
                  "wed": "M",
                  "thu": "D",
                  "fri": "F",
                  "sat": "S"
                },
                "short": {
                  "sun": "So.",
                  "mon": "Mo.",
                  "tue": "Di.",
                  "wed": "Mi.",
                  "thu": "Do.",
                  "fri": "Fr.",
                  "sat": "Sa."
                },
                "wide": {
                  "sun": "Sonntag",
                  "mon": "Montag",
                  "tue": "Dienstag",
                  "wed": "Mittwoch",
                  "thu": "Donnerstag",
                  "fri": "Freitag",
                  "sat": "Samstag"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "sun": "So",
                  "mon": "Mo",
                  "tue": "Di",
                  "wed": "Mi",
                  "thu": "Do",
                  "fri": "Fr",
                  "sat": "Sa"
                },
                "narrow": {
                  "sun": "S",
                  "mon": "M",
                  "tue": "D",
                  "wed": "M",
                  "thu": "D",
                  "fri": "F",
                  "sat": "S"
                },
                "short": {
                  "sun": "So.",
                  "mon": "Mo.",
                  "tue": "Di.",
                  "wed": "Mi.",
                  "thu": "Do.",
                  "fri": "Fr.",
                  "sat": "Sa."
                },
                "wide": {
                  "sun": "Sonntag",
                  "mon": "Montag",
                  "tue": "Dienstag",
                  "wed": "Mittwoch",
                  "thu": "Donnerstag",
                  "fri": "Freitag",
                  "sat": "Samstag"
                }
              }
            },
            "quarters": {
              "format": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "1. Quartal",
                  "2": "2. Quartal",
                  "3": "3. Quartal",
                  "4": "4. Quartal"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "1. Quartal",
                  "2": "2. Quartal",
                  "3": "3. Quartal",
                  "4": "4. Quartal"
                }
              }
            },
            "dayPeriods": {
              "format": {
                "abbreviated": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "morgens",
                  "morning2": "vormittags",
                  "afternoon1": "mittags",
                  "afternoon2": "nachmittags",
                  "evening1": "abends",
                  "night1": "nachts"
                },
                "narrow": {
                  "midnight": "Mitternacht",
                  "am": "vm.",
                  "pm": "nm.",
                  "morning1": "morgens",
                  "morning2": "vormittags",
                  "afternoon1": "mittags",
                  "afternoon2": "nachmittags",
                  "evening1": "abends",
                  "night1": "nachts"
                },
                "wide": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "morgens",
                  "morning2": "vormittags",
                  "afternoon1": "mittags",
                  "afternoon2": "nachmittags",
                  "evening1": "abends",
                  "night1": "nachts"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "Morgen",
                  "morning2": "Vormittag",
                  "afternoon1": "Mittag",
                  "afternoon2": "Nachmittag",
                  "evening1": "Abend",
                  "night1": "Nacht"
                },
                "narrow": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "Morgen",
                  "morning2": "Vormittag",
                  "afternoon1": "Mittag",
                  "afternoon2": "Nachmittag",
                  "evening1": "Abend",
                  "night1": "Nacht"
                },
                "wide": {
                  "midnight": "Mitternacht",
                  "am": "vorm.",
                  "pm": "nachm.",
                  "morning1": "Morgen",
                  "morning2": "Vormittag",
                  "afternoon1": "Mittag",
                  "afternoon2": "Nachmittag",
                  "evening1": "Abend",
                  "night1": "Nacht"
                }
              }
            },
            "eras": {
              "eraNames": {
                "0": "v. Chr.",
                "0-alt-variant": "vor unserer Zeitrechnung",
                "1": "n. Chr.",
                "1-alt-variant": "unserer Zeitrechnung"
              },
              "eraAbbr": {
                "0": "v. Chr.",
                "0-alt-variant": "v. u. Z.",
                "1": "n. Chr.",
                "1-alt-variant": "u. Z."
              },
              "eraNarrow": {
                "0": "v. Chr.",
                "0-alt-variant": "v. u. Z.",
                "1": "n. Chr.",
                "1-alt-variant": "u. Z."
              }
            },
            "dateFormats": {
              "full": "EEEE, d. MMMM y",
              "long": "d. MMMM y",
              "medium": "dd.MM.y",
              "short": "dd.MM.yy"
            },
            "timeFormats": {
              "full": "HH:mm:ss zzzz",
              "long": "HH:mm:ss z",
              "medium": "HH:mm:ss",
              "short": "HH:mm"
            },
            "dateTimeFormats": {
              "full": "{1} 'um' {0}",
              "long": "{1} 'um' {0}",
              "medium": "{1}, {0}",
              "short": "{1}, {0}",
              "availableFormats": {
                "d": "d",
                "E": "ccc",
                "Ed": "E, d.",
                "Ehm": "E h:mm a",
                "EHm": "E, HH:mm",
                "Ehms": "E, h:mm:ss a",
                "EHms": "E, HH:mm:ss",
                "Gy": "y G",
                "GyMMM": "MMM y G",
                "GyMMMd": "d. MMM y G",
                "GyMMMEd": "E, d. MMM y G",
                "h": "h 'Uhr' a",
                "H": "HH 'Uhr'",
                "hm": "h:mm a",
                "Hm": "HH:mm",
                "hms": "h:mm:ss a",
                "Hms": "HH:mm:ss",
                "hmsv": "h:mm:ss a v",
                "Hmsv": "HH:mm:ss v",
                "hmv": "h:mm a v",
                "Hmv": "HH:mm v",
                "M": "L",
                "Md": "d.M.",
                "MEd": "E, d.M.",
                "MMd": "d.MM.",
                "MMdd": "dd.MM.",
                "MMM": "LLL",
                "MMMd": "d. MMM",
                "MMMEd": "E, d. MMM",
                "MMMMd": "d. MMMM",
                "MMMMEd": "E, d. MMMM",
                "MMMMW": "'Woche' W 'im' MMM",
                "MMMMW": "'Woche' W 'im' MMM",
                "ms": "mm:ss",
                "y": "y",
                "yM": "M.y",
                "yMd": "d.M.y",
                "yMEd": "E, d.M.y",
                "yMM": "MM.y",
                "yMMdd": "dd.MM.y",
                "yMMM": "MMM y",
                "yMMMd": "d. MMM y",
                "yMMMEd": "E, d. MMM y",
                "yMMMM": "MMMM y",
                "yQQQ": "QQQ y",
                "yQQQQ": "QQQQ y",
                "yw": "'Woche' w 'des' 'Jahres' y",
                "yw": "'Woche' w 'des' 'Jahres' y"
              },
              "appendItems": {
                "Day": "{0} ({2}: {1})",
                "Day-Of-Week": "{0} {1}",
                "Era": "{1} {0}",
                "Hour": "{0} ({2}: {1})",
                "Minute": "{0} ({2}: {1})",
                "Month": "{0} ({2}: {1})",
                "Quarter": "{0} ({2}: {1})",
                "Second": "{0} ({2}: {1})",
                "Timezone": "{0} {1}",
                "Week": "{0} ({2}: {1})",
                "Year": "{1} {0}"
              },
              "intervalFormats": {
                "intervalFormatFallback": "{0} – {1}",
                "d": {
                  "d": "d.–d."
                },
                "h": {
                  "a": "h 'Uhr' a – h 'Uhr' a",
                  "h": "h – h 'Uhr' a"
                },
                "H": {
                  "H": "HH–HH 'Uhr'"
                },
                "hm": {
                  "a": "h:mm a – h:mm a",
                  "h": "h:mm–h:mm a",
                  "m": "h:mm–h:mm a"
                },
                "Hm": {
                  "H": "HH:mm–HH:mm 'Uhr'",
                  "m": "HH:mm–HH:mm 'Uhr'"
                },
                "hmv": {
                  "a": "h:mm a – h:mm a v",
                  "h": "h:mm–h:mm a v",
                  "m": "h:mm–h:mm a v"
                },
                "Hmv": {
                  "H": "HH:mm–HH:mm 'Uhr' v",
                  "m": "HH:mm–HH:mm 'Uhr' v"
                },
                "hv": {
                  "a": "h a – h a v",
                  "h": "h–h a v"
                },
                "Hv": {
                  "H": "HH–HH 'Uhr' v"
                },
                "M": {
                  "M": "M.–M."
                },
                "Md": {
                  "d": "dd.MM. – dd.MM.",
                  "M": "dd.MM. – dd.MM."
                },
                "MEd": {
                  "d": "E, dd.MM. – E, dd.MM.",
                  "M": "E, dd.MM. – E, dd.MM."
                },
                "MMM": {
                  "M": "MMM–MMM"
                },
                "MMMd": {
                  "d": "d.–d. MMM",
                  "M": "d. MMM – d. MMM"
                },
                "MMMEd": {
                  "d": "E, d. – E, d. MMM",
                  "M": "E, d. MMM – E, d. MMM"
                },
                "MMMM": {
                  "M": "LLLL–LLLL"
                },
                "y": {
                  "y": "y–y"
                },
                "yM": {
                  "M": "MM.y – MM.y",
                  "y": "MM.y – MM.y"
                },
                "yMd": {
                  "d": "dd.MM.y – dd.MM.y",
                  "M": "dd.MM.y – dd.MM.y",
                  "y": "dd.MM.y – dd.MM.y"
                },
                "yMEd": {
                  "d": "E, dd.MM.y – E, dd.MM.y",
                  "M": "E, dd.MM.y – E, dd.MM.y",
                  "y": "E, dd.MM.y – E, dd.MM.y"
                },
                "yMMM": {
                  "M": "MMM–MMM y",
                  "y": "MMM y – MMM y"
                },
                "yMMMd": {
                  "d": "d.–d. MMM y",
                  "M": "d. MMM – d. MMM y",
                  "y": "d. MMM y – d. MMM y"
                },
                "yMMMEd": {
                  "d": "E, d. – E, d. MMM y",
                  "M": "E, d. MMM – E, d. MMM y",
                  "y": "E, d. MMM y – E, d. MMM y"
                },
                "yMMMM": {
                  "M": "MMMM–MMMM y",
                  "y": "MMMM y – MMMM y"
                }
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 12879 $",
                        "_cldrVersion";
                    "30.0.3";
                }
                "language";
                "de";
            }
            "dates";
            {
                "calendars";
                {
                    "gregorian";
                    {
                        "months";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Jan.",
                                        "2";
                                    "Feb.",
                                        "3";
                                    "März",
                                        "4";
                                    "Apr.",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Juni",
                                        "7";
                                    "Juli",
                                        "8";
                                    "Aug.",
                                        "9";
                                    "Sep.",
                                        "10";
                                    "Okt.",
                                        "11";
                                    "Nov.",
                                        "12";
                                    "Dez.";
                                }
                                "narrow";
                                {
                                    "1";
                                    "J",
                                        "2";
                                    "F",
                                        "3";
                                    "M",
                                        "4";
                                    "A",
                                        "5";
                                    "M",
                                        "6";
                                    "J",
                                        "7";
                                    "J",
                                        "8";
                                    "A",
                                        "9";
                                    "S",
                                        "10";
                                    "O",
                                        "11";
                                    "N",
                                        "12";
                                    "D";
                                }
                                "wide";
                                {
                                    "1";
                                    "Januar",
                                        "2";
                                    "Februar",
                                        "3";
                                    "März",
                                        "4";
                                    "April",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Juni",
                                        "7";
                                    "Juli",
                                        "8";
                                    "August",
                                        "9";
                                    "September",
                                        "10";
                                    "Oktober",
                                        "11";
                                    "November",
                                        "12";
                                    "Dezember";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Jan",
                                        "2";
                                    "Feb",
                                        "3";
                                    "Mär",
                                        "4";
                                    "Apr",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Jun",
                                        "7";
                                    "Jul",
                                        "8";
                                    "Aug",
                                        "9";
                                    "Sep",
                                        "10";
                                    "Okt",
                                        "11";
                                    "Nov",
                                        "12";
                                    "Dez";
                                }
                                "narrow";
                                {
                                    "1";
                                    "J",
                                        "2";
                                    "F",
                                        "3";
                                    "M",
                                        "4";
                                    "A",
                                        "5";
                                    "M",
                                        "6";
                                    "J",
                                        "7";
                                    "J",
                                        "8";
                                    "A",
                                        "9";
                                    "S",
                                        "10";
                                    "O",
                                        "11";
                                    "N",
                                        "12";
                                    "D";
                                }
                                "wide";
                                {
                                    "1";
                                    "Januar",
                                        "2";
                                    "Februar",
                                        "3";
                                    "März",
                                        "4";
                                    "April",
                                        "5";
                                    "Mai",
                                        "6";
                                    "Juni",
                                        "7";
                                    "Juli",
                                        "8";
                                    "August",
                                        "9";
                                    "September",
                                        "10";
                                    "Oktober",
                                        "11";
                                    "November",
                                        "12";
                                    "Dezember";
                                }
                            }
                        }
                        "days";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "So.",
                                        "mon";
                                    "Mo.",
                                        "tue";
                                    "Di.",
                                        "wed";
                                    "Mi.",
                                        "thu";
                                    "Do.",
                                        "fri";
                                    "Fr.",
                                        "sat";
                                    "Sa.";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "S",
                                        "mon";
                                    "M",
                                        "tue";
                                    "D",
                                        "wed";
                                    "M",
                                        "thu";
                                    "D",
                                        "fri";
                                    "F",
                                        "sat";
                                    "S";
                                }
                                "short";
                                {
                                    "sun";
                                    "So.",
                                        "mon";
                                    "Mo.",
                                        "tue";
                                    "Di.",
                                        "wed";
                                    "Mi.",
                                        "thu";
                                    "Do.",
                                        "fri";
                                    "Fr.",
                                        "sat";
                                    "Sa.";
                                }
                                "wide";
                                {
                                    "sun";
                                    "Sonntag",
                                        "mon";
                                    "Montag",
                                        "tue";
                                    "Dienstag",
                                        "wed";
                                    "Mittwoch",
                                        "thu";
                                    "Donnerstag",
                                        "fri";
                                    "Freitag",
                                        "sat";
                                    "Samstag";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "So",
                                        "mon";
                                    "Mo",
                                        "tue";
                                    "Di",
                                        "wed";
                                    "Mi",
                                        "thu";
                                    "Do",
                                        "fri";
                                    "Fr",
                                        "sat";
                                    "Sa";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "S",
                                        "mon";
                                    "M",
                                        "tue";
                                    "D",
                                        "wed";
                                    "M",
                                        "thu";
                                    "D",
                                        "fri";
                                    "F",
                                        "sat";
                                    "S";
                                }
                                "short";
                                {
                                    "sun";
                                    "So.",
                                        "mon";
                                    "Mo.",
                                        "tue";
                                    "Di.",
                                        "wed";
                                    "Mi.",
                                        "thu";
                                    "Do.",
                                        "fri";
                                    "Fr.",
                                        "sat";
                                    "Sa.";
                                }
                                "wide";
                                {
                                    "sun";
                                    "Sonntag",
                                        "mon";
                                    "Montag",
                                        "tue";
                                    "Dienstag",
                                        "wed";
                                    "Mittwoch",
                                        "thu";
                                    "Donnerstag",
                                        "fri";
                                    "Freitag",
                                        "sat";
                                    "Samstag";
                                }
                            }
                        }
                        "quarters";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "1. Quartal",
                                        "2";
                                    "2. Quartal",
                                        "3";
                                    "3. Quartal",
                                        "4";
                                    "4. Quartal";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "1. Quartal",
                                        "2";
                                    "2. Quartal",
                                        "3";
                                    "3. Quartal",
                                        "4";
                                    "4. Quartal";
                                }
                            }
                        }
                        "dayPeriods";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "morgens",
                                        "morning2";
                                    "vormittags",
                                        "afternoon1";
                                    "mittags",
                                        "afternoon2";
                                    "nachmittags",
                                        "evening1";
                                    "abends",
                                        "night1";
                                    "nachts";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vm.",
                                        "pm";
                                    "nm.",
                                        "morning1";
                                    "morgens",
                                        "morning2";
                                    "vormittags",
                                        "afternoon1";
                                    "mittags",
                                        "afternoon2";
                                    "nachmittags",
                                        "evening1";
                                    "abends",
                                        "night1";
                                    "nachts";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "morgens",
                                        "morning2";
                                    "vormittags",
                                        "afternoon1";
                                    "mittags",
                                        "afternoon2";
                                    "nachmittags",
                                        "evening1";
                                    "abends",
                                        "night1";
                                    "nachts";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "Morgen",
                                        "morning2";
                                    "Vormittag",
                                        "afternoon1";
                                    "Mittag",
                                        "afternoon2";
                                    "Nachmittag",
                                        "evening1";
                                    "Abend",
                                        "night1";
                                    "Nacht";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "Morgen",
                                        "morning2";
                                    "Vormittag",
                                        "afternoon1";
                                    "Mittag",
                                        "afternoon2";
                                    "Nachmittag",
                                        "evening1";
                                    "Abend",
                                        "night1";
                                    "Nacht";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "Mitternacht",
                                        "am";
                                    "vorm.",
                                        "pm";
                                    "nachm.",
                                        "morning1";
                                    "Morgen",
                                        "morning2";
                                    "Vormittag",
                                        "afternoon1";
                                    "Mittag",
                                        "afternoon2";
                                    "Nachmittag",
                                        "evening1";
                                    "Abend",
                                        "night1";
                                    "Nacht";
                                }
                            }
                        }
                        "eras";
                        {
                            "eraNames";
                            {
                                "0";
                                "v. Chr.",
                                    "0-alt-variant";
                                "vor unserer Zeitrechnung",
                                    "1";
                                "n. Chr.",
                                    "1-alt-variant";
                                "unserer Zeitrechnung";
                            }
                            "eraAbbr";
                            {
                                "0";
                                "v. Chr.",
                                    "0-alt-variant";
                                "v. u. Z.",
                                    "1";
                                "n. Chr.",
                                    "1-alt-variant";
                                "u. Z.";
                            }
                            "eraNarrow";
                            {
                                "0";
                                "v. Chr.",
                                    "0-alt-variant";
                                "v. u. Z.",
                                    "1";
                                "n. Chr.",
                                    "1-alt-variant";
                                "u. Z.";
                            }
                        }
                        "dateFormats";
                        {
                            "full";
                            "EEEE, d. MMMM y",
                                "long";
                            "d. MMMM y",
                                "medium";
                            "dd.MM.y",
                                "short";
                            "dd.MM.yy";
                        }
                        "timeFormats";
                        {
                            "full";
                            "HH:mm:ss zzzz",
                                "long";
                            "HH:mm:ss z",
                                "medium";
                            "HH:mm:ss",
                                "short";
                            "HH:mm";
                        }
                        "dateTimeFormats";
                        {
                            "full";
                            "{1} 'um' {0}",
                                "long";
                            "{1} 'um' {0}",
                                "medium";
                            "{1}, {0}",
                                "short";
                            "{1}, {0}",
                                "availableFormats";
                            {
                                "d";
                                "d",
                                    "E";
                                "ccc",
                                    "Ed";
                                "E, d.",
                                    "Ehm";
                                "E h:mm a",
                                    "EHm";
                                "E, HH:mm",
                                    "Ehms";
                                "E, h:mm:ss a",
                                    "EHms";
                                "E, HH:mm:ss",
                                    "Gy";
                                "y G",
                                    "GyMMM";
                                "MMM y G",
                                    "GyMMMd";
                                "d. MMM y G",
                                    "GyMMMEd";
                                "E, d. MMM y G",
                                    "h";
                                "h 'Uhr' a",
                                    "H";
                                "HH 'Uhr'",
                                    "hm";
                                "h:mm a",
                                    "Hm";
                                "HH:mm",
                                    "hms";
                                "h:mm:ss a",
                                    "Hms";
                                "HH:mm:ss",
                                    "hmsv";
                                "h:mm:ss a v",
                                    "Hmsv";
                                "HH:mm:ss v",
                                    "hmv";
                                "h:mm a v",
                                    "Hmv";
                                "HH:mm v",
                                    "M";
                                "L",
                                    "Md";
                                "d.M.",
                                    "MEd";
                                "E, d.M.",
                                    "MMd";
                                "d.MM.",
                                    "MMdd";
                                "dd.MM.",
                                    "MMM";
                                "LLL",
                                    "MMMd";
                                "d. MMM",
                                    "MMMEd";
                                "E, d. MMM",
                                    "MMMMd";
                                "d. MMMM",
                                    "MMMMEd";
                                "E, d. MMMM",
                                    "MMMMW";
                                "'Woche' W 'im' MMM",
                                    "MMMMW";
                                "'Woche' W 'im' MMM",
                                    "ms";
                                "mm:ss",
                                    "y";
                                "y",
                                    "yM";
                                "M.y",
                                    "yMd";
                                "d.M.y",
                                    "yMEd";
                                "E, d.M.y",
                                    "yMM";
                                "MM.y",
                                    "yMMdd";
                                "dd.MM.y",
                                    "yMMM";
                                "MMM y",
                                    "yMMMd";
                                "d. MMM y",
                                    "yMMMEd";
                                "E, d. MMM y",
                                    "yMMMM";
                                "MMMM y",
                                    "yQQQ";
                                "QQQ y",
                                    "yQQQQ";
                                "QQQQ y",
                                    "yw";
                                "'Woche' w 'des' 'Jahres' y",
                                    "yw";
                                "'Woche' w 'des' 'Jahres' y";
                            }
                            "appendItems";
                            {
                                "Day";
                                "{0} ({2}: {1})",
                                    "Day-Of-Week";
                                "{0} {1}",
                                    "Era";
                                "{1} {0}",
                                    "Hour";
                                "{0} ({2}: {1})",
                                    "Minute";
                                "{0} ({2}: {1})",
                                    "Month";
                                "{0} ({2}: {1})",
                                    "Quarter";
                                "{0} ({2}: {1})",
                                    "Second";
                                "{0} ({2}: {1})",
                                    "Timezone";
                                "{0} {1}",
                                    "Week";
                                "{0} ({2}: {1})",
                                    "Year";
                                "{1} {0}";
                            }
                            "intervalFormats";
                            {
                                "intervalFormatFallback";
                                "{0} – {1}",
                                    "d";
                                {
                                    "d";
                                    "d.–d.";
                                }
                                "h";
                                {
                                    "a";
                                    "h 'Uhr' a – h 'Uhr' a",
                                        "h";
                                    "h – h 'Uhr' a";
                                }
                                "H";
                                {
                                    "H";
                                    "HH–HH 'Uhr'";
                                }
                                "hm";
                                {
                                    "a";
                                    "h:mm a – h:mm a",
                                        "h";
                                    "h:mm–h:mm a",
                                        "m";
                                    "h:mm–h:mm a";
                                }
                                "Hm";
                                {
                                    "H";
                                    "HH:mm–HH:mm 'Uhr'",
                                        "m";
                                    "HH:mm–HH:mm 'Uhr'";
                                }
                                "hmv";
                                {
                                    "a";
                                    "h:mm a – h:mm a v",
                                        "h";
                                    "h:mm–h:mm a v",
                                        "m";
                                    "h:mm–h:mm a v";
                                }
                                "Hmv";
                                {
                                    "H";
                                    "HH:mm–HH:mm 'Uhr' v",
                                        "m";
                                    "HH:mm–HH:mm 'Uhr' v";
                                }
                                "hv";
                                {
                                    "a";
                                    "h a – h a v",
                                        "h";
                                    "h–h a v";
                                }
                                "Hv";
                                {
                                    "H";
                                    "HH–HH 'Uhr' v";
                                }
                                "M";
                                {
                                    "M";
                                    "M.–M.";
                                }
                                "Md";
                                {
                                    "d";
                                    "dd.MM. – dd.MM.",
                                        "M";
                                    "dd.MM. – dd.MM.";
                                }
                                "MEd";
                                {
                                    "d";
                                    "E, dd.MM. – E, dd.MM.",
                                        "M";
                                    "E, dd.MM. – E, dd.MM.";
                                }
                                "MMM";
                                {
                                    "M";
                                    "MMM–MMM";
                                }
                                "MMMd";
                                {
                                    "d";
                                    "d.–d. MMM",
                                        "M";
                                    "d. MMM – d. MMM";
                                }
                                "MMMEd";
                                {
                                    "d";
                                    "E, d. – E, d. MMM",
                                        "M";
                                    "E, d. MMM – E, d. MMM";
                                }
                                "MMMM";
                                {
                                    "M";
                                    "LLLL–LLLL";
                                }
                                "y";
                                {
                                    "y";
                                    "y–y";
                                }
                                "yM";
                                {
                                    "M";
                                    "MM.y – MM.y",
                                        "y";
                                    "MM.y – MM.y";
                                }
                                "yMd";
                                {
                                    "d";
                                    "dd.MM.y – dd.MM.y",
                                        "M";
                                    "dd.MM.y – dd.MM.y",
                                        "y";
                                    "dd.MM.y – dd.MM.y";
                                }
                                "yMEd";
                                {
                                    "d";
                                    "E, dd.MM.y – E, dd.MM.y",
                                        "M";
                                    "E, dd.MM.y – E, dd.MM.y",
                                        "y";
                                    "E, dd.MM.y – E, dd.MM.y";
                                }
                                "yMMM";
                                {
                                    "M";
                                    "MMM–MMM y",
                                        "y";
                                    "MMM y – MMM y";
                                }
                                "yMMMd";
                                {
                                    "d";
                                    "d.–d. MMM y",
                                        "M";
                                    "d. MMM – d. MMM y",
                                        "y";
                                    "d. MMM y – d. MMM y";
                                }
                                "yMMMEd";
                                {
                                    "d";
                                    "E, d. – E, d. MMM y",
                                        "M";
                                    "E, d. MMM – E, d. MMM y",
                                        "y";
                                    "E, d. MMM y – E, d. MMM y";
                                }
                                "yMMMM";
                                {
                                    "M";
                                    "MMMM–MMMM y",
                                        "y";
                                    "MMMM y – MMMM y";
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31"
        },
        "language": "de"
      },
      "numbers": {
        "currencies": {
          "ADP": {
            "displayName": "Andorranische Pesete",
            "displayName-count-one": "Andorranische Pesete",
            "displayName-count-other": "Andorranische Peseten",
            "symbol": "ADP"
          },
          "AED": {
            "displayName": "VAE-Dirham",
            "displayName-count-one": "VAE-Dirham",
            "displayName-count-other": "VAE-Dirham",
            "symbol": "AED"
          },
          "AFA": {
            "displayName": "Afghanische Afghani (1927–2002)",
            "displayName-count-one": "Afghanische Afghani (1927–2002)",
            "displayName-count-other": "Afghanische Afghani (1927–2002)",
            "symbol": "AFA"
          },
          "AFN": {
            "displayName": "Afghanischer Afghani",
            "displayName-count-one": "Afghanischer Afghani",
            "displayName-count-other": "Afghanische Afghani",
            "symbol": "AFN"
          },
          "ALK": {
            "displayName": "Albanischer Lek (1946–1965)",
            "displayName-count-one": "Albanischer Lek (1946–1965)",
            "displayName-count-other": "Albanische Lek (1946–1965)"
          },
          "ALL": {
            "displayName": "Albanischer Lek",
            "displayName-count-one": "Albanischer Lek",
            "displayName-count-other": "Albanische Lek",
            "symbol": "ALL"
          },
          "AMD": {
            "displayName": "Armenischer Dram",
            "displayName-count-one": "Armenischer Dram",
            "displayName-count-other": "Armenische Dram",
            "symbol": "AMD"
          },
          "ANG": {
            "displayName": "Niederländische-Antillen-Gulden",
            "displayName-count-one": "Niederländische-Antillen-Gulden",
            "displayName-count-other": "Niederländische-Antillen-Gulden",
            "symbol": "ANG"
          },
          "AOA": {
            "displayName": "Angolanischer Kwanza",
            "displayName-count-one": "Angolanischer Kwanza",
            "displayName-count-other": "Angolanische Kwanza",
            "symbol": "AOA",
            "symbol-alt-narrow": "Kz"
          },
          "AOK": {
            "displayName": "Angolanischer Kwanza (1977–1990)",
            "displayName-count-one": "Angolanischer Kwanza (1977–1990)",
            "displayName-count-other": "Angolanische Kwanza (1977–1990)",
            "symbol": "AOK"
          },
          "AON": {
            "displayName": "Angolanischer Neuer Kwanza (1990–2000)",
            "displayName-count-one": "Angolanischer Neuer Kwanza (1990–2000)",
            "displayName-count-other": "Angolanische Neue Kwanza (1990–2000)",
            "symbol": "AON"
          },
          "AOR": {
            "displayName": "Angolanischer Kwanza Reajustado (1995–1999)",
            "displayName-count-one": "Angolanischer Kwanza Reajustado (1995–1999)",
            "displayName-count-other": "Angolanische Kwanza Reajustado (1995–1999)",
            "symbol": "AOR"
          },
          "ARA": {
            "displayName": "Argentinischer Austral",
            "displayName-count-one": "Argentinischer Austral",
            "displayName-count-other": "Argentinische Austral",
            "symbol": "ARA"
          },
          "ARL": {
            "displayName": "Argentinischer Peso Ley (1970–1983)",
            "displayName-count-one": "Argentinischer Peso Ley (1970–1983)",
            "displayName-count-other": "Argentinische Pesos Ley (1970–1983)",
            "symbol": "ARL"
          },
          "ARM": {
            "displayName": "Argentinischer Peso (1881–1970)",
            "displayName-count-one": "Argentinischer Peso (1881–1970)",
            "displayName-count-other": "Argentinische Pesos (1881–1970)",
            "symbol": "ARM"
          },
          "ARP": {
            "displayName": "Argentinischer Peso (1983–1985)",
            "displayName-count-one": "Argentinischer Peso (1983–1985)",
            "displayName-count-other": "Argentinische Peso (1983–1985)",
            "symbol": "ARP"
          },
          "ARS": {
            "displayName": "Argentinischer Peso",
            "displayName-count-one": "Argentinischer Peso",
            "displayName-count-other": "Argentinische Pesos",
            "symbol": "ARS",
            "symbol-alt-narrow": "$"
          },
          "ATS": {
            "displayName": "Österreichischer Schilling",
            "displayName-count-one": "Österreichischer Schilling",
            "displayName-count-other": "Österreichische Schilling",
            "symbol": "öS"
          },
          "AUD": {
            "displayName": "Australischer Dollar",
            "displayName-count-one": "Australischer Dollar",
            "displayName-count-other": "Australische Dollar",
            "symbol": "AU$",
            "symbol-alt-narrow": "$"
          },
          "AWG": {
            "displayName": "Aruba-Florin",
            "displayName-count-one": "Aruba-Florin",
            "displayName-count-other": "Aruba-Florin",
            "symbol": "AWG"
          },
          "AZM": {
            "displayName": "Aserbaidschan-Manat (1993–2006)",
            "displayName-count-one": "Aserbaidschan-Manat (1993–2006)",
            "displayName-count-other": "Aserbaidschan-Manat (1993–2006)",
            "symbol": "AZM"
          },
          "AZN": {
            "displayName": "Aserbaidschan-Manat",
            "displayName-count-one": "Aserbaidschan-Manat",
            "displayName-count-other": "Aserbaidschan-Manat",
            "symbol": "AZN"
          },
          "BAD": {
            "displayName": "Bosnien und Herzegowina Dinar (1992–1994)",
            "displayName-count-one": "Bosnien und Herzegowina Dinar (1992–1994)",
            "displayName-count-other": "Bosnien und Herzegowina Dinar (1992–1994)",
            "symbol": "BAD"
          },
          "BAM": {
            "displayName": "Bosnien und Herzegowina Konvertierbare Mark",
            "displayName-count-one": "Bosnien und Herzegowina Konvertierbare Mark",
            "displayName-count-other": "Bosnien und Herzegowina Konvertierbare Mark",
            "symbol": "BAM",
            "symbol-alt-narrow": "KM"
          },
          "BAN": {
            "displayName": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
            "displayName-count-one": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
            "displayName-count-other": "Bosnien und Herzegowina Neue Dinar (1994–1997)",
            "symbol": "BAN"
          },
          "BBD": {
            "displayName": "Barbados-Dollar",
            "displayName-count-one": "Barbados-Dollar",
            "displayName-count-other": "Barbados-Dollar",
            "symbol": "BBD",
            "symbol-alt-narrow": "$"
          },
          "BDT": {
            "displayName": "Bangladesch-Taka",
            "displayName-count-one": "Bangladesch-Taka",
            "displayName-count-other": "Bangladesch-Taka",
            "symbol": "BDT",
            "symbol-alt-narrow": "৳"
          },
          "BEC": {
            "displayName": "Belgischer Franc (konvertibel)",
            "displayName-count-one": "Belgischer Franc (konvertibel)",
            "displayName-count-other": "Belgische Franc (konvertibel)",
            "symbol": "BEC"
          },
          "BEF": {
            "displayName": "Belgischer Franc",
            "displayName-count-one": "Belgischer Franc",
            "displayName-count-other": "Belgische Franc",
            "symbol": "BEF"
          },
          "BEL": {
            "displayName": "Belgischer Finanz-Franc",
            "displayName-count-one": "Belgischer Finanz-Franc",
            "displayName-count-other": "Belgische Finanz-Franc",
            "symbol": "BEL"
          },
          "BGL": {
            "displayName": "Bulgarische Lew (1962–1999)",
            "displayName-count-one": "Bulgarische Lew (1962–1999)",
            "displayName-count-other": "Bulgarische Lew (1962–1999)",
            "symbol": "BGL"
          },
          "BGM": {
            "displayName": "Bulgarischer Lew (1952–1962)",
            "displayName-count-one": "Bulgarischer Lew (1952–1962)",
            "displayName-count-other": "Bulgarische Lew (1952–1962)",
            "symbol": "BGK"
          },
          "BGN": {
            "displayName": "Bulgarischer Lew",
            "displayName-count-one": "Bulgarischer Lew",
            "displayName-count-other": "Bulgarische Lew",
            "symbol": "BGN"
          },
          "BGO": {
            "displayName": "Bulgarischer Lew (1879–1952)",
            "displayName-count-one": "Bulgarischer Lew (1879–1952)",
            "displayName-count-other": "Bulgarische Lew (1879–1952)",
            "symbol": "BGJ"
          },
          "BHD": {
            "displayName": "Bahrain-Dinar",
            "displayName-count-one": "Bahrain-Dinar",
            "displayName-count-other": "Bahrain-Dinar",
            "symbol": "BHD"
          },
          "BIF": {
            "displayName": "Burundi-Franc",
            "displayName-count-one": "Burundi-Franc",
            "displayName-count-other": "Burundi-Francs",
            "symbol": "BIF"
          },
          "BMD": {
            "displayName": "Bermuda-Dollar",
            "displayName-count-one": "Bermuda-Dollar",
            "displayName-count-other": "Bermuda-Dollar",
            "symbol": "BMD",
            "symbol-alt-narrow": "$"
          },
          "BND": {
            "displayName": "Brunei-Dollar",
            "displayName-count-one": "Brunei-Dollar",
            "displayName-count-other": "Brunei-Dollar",
            "symbol": "BND",
            "symbol-alt-narrow": "$"
          },
          "BOB": {
            "displayName": "Bolivanischer Boliviano",
            "displayName-count-one": "Bolivanischer Boliviano",
            "displayName-count-other": "Bolivianische Bolivianos",
            "symbol": "BOB",
            "symbol-alt-narrow": "Bs"
          },
          "BOL": {
            "displayName": "Bolivianischer Boliviano (1863–1963)",
            "displayName-count-one": "Bolivianischer Boliviano (1863–1963)",
            "displayName-count-other": "Bolivianische Bolivianos (1863–1963)",
            "symbol": "BOL"
          },
          "BOP": {
            "displayName": "Bolivianischer Peso",
            "displayName-count-one": "Bolivianischer Peso",
            "displayName-count-other": "Bolivianische Peso",
            "symbol": "BOP"
          },
          "BOV": {
            "displayName": "Boliviansiche Mvdol",
            "displayName-count-one": "Boliviansiche Mvdol",
            "displayName-count-other": "Bolivianische Mvdol",
            "symbol": "BOV"
          },
          "BRB": {
            "displayName": "Brasilianischer Cruzeiro Novo (1967–1986)",
            "displayName-count-one": "Brasilianischer Cruzeiro Novo (1967–1986)",
            "displayName-count-other": "Brasilianische Cruzeiro Novo (1967–1986)",
            "symbol": "BRB"
          },
          "BRC": {
            "displayName": "Brasilianischer Cruzado (1986–1989)",
            "displayName-count-one": "Brasilianischer Cruzado (1986–1989)",
            "displayName-count-other": "Brasilianische Cruzado (1986–1989)",
            "symbol": "BRC"
          },
          "BRE": {
            "displayName": "Brasilianischer Cruzeiro (1990–1993)",
            "displayName-count-one": "Brasilianischer Cruzeiro (1990–1993)",
            "displayName-count-other": "Brasilianische Cruzeiro (1990–1993)",
            "symbol": "BRE"
          },
          "BRL": {
            "displayName": "Brasilianischer Real",
            "displayName-count-one": "Brasilianischer Real",
            "displayName-count-other": "Brasilianische Real",
            "symbol": "R$",
            "symbol-alt-narrow": "R$"
          },
          "BRN": {
            "displayName": "Brasilianischer Cruzado Novo (1989–1990)",
            "displayName-count-one": "Brasilianischer Cruzado Novo (1989–1990)",
            "displayName-count-other": "Brasilianische Cruzado Novo (1989–1990)",
            "symbol": "BRN"
          },
          "BRR": {
            "displayName": "Brasilianischer Cruzeiro (1993–1994)",
            "displayName-count-one": "Brasilianischer Cruzeiro (1993–1994)",
            "displayName-count-other": "Brasilianische Cruzeiro (1993–1994)",
            "symbol": "BRR"
          },
          "BRZ": {
            "displayName": "Brasilianischer Cruzeiro (1942–1967)",
            "displayName-count-one": "Brasilianischer Cruzeiro (1942–1967)",
            "displayName-count-other": "Brasilianischer Cruzeiro (1942–1967)",
            "symbol": "BRZ"
          },
          "BSD": {
            "displayName": "Bahamas-Dollar",
            "displayName-count-one": "Bahamas-Dollar",
            "displayName-count-other": "Bahamas-Dollar",
            "symbol": "BSD",
            "symbol-alt-narrow": "$"
          },
          "BTN": {
            "displayName": "Bhutan-Ngultrum",
            "displayName-count-one": "Bhutan-Ngultrum",
            "displayName-count-other": "Bhutan-Ngultrum",
            "symbol": "BTN"
          },
          "BUK": {
            "displayName": "Birmanischer Kyat",
            "displayName-count-one": "Birmanischer Kyat",
            "displayName-count-other": "Birmanische Kyat",
            "symbol": "BUK"
          },
          "BWP": {
            "displayName": "Botswanischer Pula",
            "displayName-count-one": "Botswanischer Pula",
            "displayName-count-other": "Botswanische Pula",
            "symbol": "BWP",
            "symbol-alt-narrow": "P"
          },
          "BYB": {
            "displayName": "Belarus-Rubel (1994–1999)",
            "displayName-count-one": "Belarus-Rubel (1994–1999)",
            "displayName-count-other": "Belarus-Rubel (1994–1999)",
            "symbol": "BYB"
          },
          "BYN": {
            "displayName": "Weißrussischer Rubel",
            "displayName-count-one": "Weißrussischer Rubel",
            "displayName-count-other": "Weißrussische Rubel",
            "symbol": "BYN",
            "symbol-alt-narrow": "р."
          },
          "BYR": {
            "displayName": "Weißrussischer Rubel (2000–2016)",
            "displayName-count-one": "Weißrussischer Rubel (2000–2016)",
            "displayName-count-other": "Weißrussische Rubel (2000–2016)",
            "symbol": "BYR"
          },
          "BZD": {
            "displayName": "Belize-Dollar",
            "displayName-count-one": "Belize-Dollar",
            "displayName-count-other": "Belize-Dollar",
            "symbol": "BZD",
            "symbol-alt-narrow": "$"
          },
          "CAD": {
            "displayName": "Kanadischer Dollar",
            "displayName-count-one": "Kanadischer Dollar",
            "displayName-count-other": "Kanadische Dollar",
            "symbol": "CA$",
            "symbol-alt-narrow": "$"
          },
          "CDF": {
            "displayName": "Kongo-Franc",
            "displayName-count-one": "Kongo-Franc",
            "displayName-count-other": "Kongo-Francs",
            "symbol": "CDF"
          },
          "CHE": {
            "displayName": "WIR-Euro",
            "displayName-count-one": "WIR-Euro",
            "displayName-count-other": "WIR-Euro",
            "symbol": "CHE"
          },
          "CHF": {
            "displayName": "Schweizer Franken",
            "displayName-count-one": "Schweizer Franken",
            "displayName-count-other": "Schweizer Franken",
            "symbol": "CHF"
          },
          "CHW": {
            "displayName": "WIR Franken",
            "displayName-count-one": "WIR Franken",
            "displayName-count-other": "WIR Franken",
            "symbol": "CHW"
          },
          "CLE": {
            "displayName": "Chilenischer Escudo",
            "displayName-count-one": "Chilenischer Escudo",
            "displayName-count-other": "Chilenische Escudo",
            "symbol": "CLE"
          },
          "CLF": {
            "displayName": "Chilenische Unidades de Fomento",
            "displayName-count-one": "Chilenische Unidades de Fomento",
            "displayName-count-other": "Chilenische Unidades de Fomento",
            "symbol": "CLF"
          },
          "CLP": {
            "displayName": "Chilenischer Peso",
            "displayName-count-one": "Chilenischer Peso",
            "displayName-count-other": "Chilenische Pesos",
            "symbol": "CLP",
            "symbol-alt-narrow": "$"
          },
          "CNX": {
            "displayName": "Dollar der Chinesischen Volksbank",
            "displayName-count-one": "Dollar der Chinesischen Volksbank",
            "displayName-count-other": "Dollar der Chinesischen Volksbank",
            "symbol": "CNX"
          },
          "CNY": {
            "displayName": "Renminbi Yuan",
            "displayName-count-one": "Chinesischer Yuan",
            "displayName-count-other": "Renminbi Yuan",
            "symbol": "CN¥",
            "symbol-alt-narrow": "¥"
          },
          "COP": {
            "displayName": "Kolumbianischer Peso",
            "displayName-count-one": "Kolumbianischer Peso",
            "displayName-count-other": "Kolumbianische Pesos",
            "symbol": "COP",
            "symbol-alt-narrow": "$"
          },
          "COU": {
            "displayName": "Kolumbianische Unidades de valor real",
            "displayName-count-one": "Kolumbianische Unidad de valor real",
            "displayName-count-other": "Kolumbianische Unidades de valor real",
            "symbol": "COU"
          },
          "CRC": {
            "displayName": "Costa-Rica-Colón",
            "displayName-count-one": "Costa-Rica-Colón",
            "displayName-count-other": "Costa-Rica-Colón",
            "symbol": "CRC",
            "symbol-alt-narrow": "₡"
          },
          "CSD": {
            "displayName": "Serbischer Dinar (2002–2006)",
            "displayName-count-one": "Serbischer Dinar (2002–2006)",
            "displayName-count-other": "Serbische Dinar (2002–2006)",
            "symbol": "CSD"
          },
          "CSK": {
            "displayName": "Tschechoslowakische Krone",
            "displayName-count-one": "Tschechoslowakische Kronen",
            "displayName-count-other": "Tschechoslowakische Kronen",
            "symbol": "CSK"
          },
          "CUC": {
            "displayName": "Kubanischer Peso (konvertibel)",
            "displayName-count-one": "Kubanischer Peso (konvertibel)",
            "displayName-count-other": "Kubanische Pesos (konvertibel)",
            "symbol": "CUC",
            "symbol-alt-narrow": "Cub$"
          },
          "CUP": {
            "displayName": "Kubanischer Peso",
            "displayName-count-one": "Kubanischer Peso",
            "displayName-count-other": "Kubanische Pesos",
            "symbol": "CUP",
            "symbol-alt-narrow": "$"
          },
          "CVE": {
            "displayName": "Cabo-Verde-Escudo",
            "displayName-count-one": "Cabo-Verde-Escudo",
            "displayName-count-other": "Cabo-Verde-Escudos",
            "symbol": "CVE"
          },
          "CYP": {
            "displayName": "Zypern-Pfund",
            "displayName-count-one": "Zypern Pfund",
            "displayName-count-other": "Zypern Pfund",
            "symbol": "CYP"
          },
          "CZK": {
            "displayName": "Tschechische Krone",
            "displayName-count-one": "Tschechische Krone",
            "displayName-count-other": "Tschechische Kronen",
            "symbol": "CZK",
            "symbol-alt-narrow": "Kč"
          },
          "DDM": {
            "displayName": "Mark der DDR",
            "displayName-count-one": "Mark der DDR",
            "displayName-count-other": "Mark der DDR",
            "symbol": "DDM"
          },
          "DEM": {
            "displayName": "Deutsche Mark",
            "displayName-count-one": "Deutsche Mark",
            "displayName-count-other": "Deutsche Mark",
            "symbol": "DM"
          },
          "DJF": {
            "displayName": "Dschibuti-Franc",
            "displayName-count-one": "Dschibuti-Franc",
            "displayName-count-other": "Dschibuti-Franc",
            "symbol": "DJF"
          },
          "DKK": {
            "displayName": "Dänische Krone",
            "displayName-count-one": "Dänische Krone",
            "displayName-count-other": "Dänische Kronen",
            "symbol": "DKK",
            "symbol-alt-narrow": "kr"
          },
          "DOP": {
            "displayName": "Dominikanischer Peso",
            "displayName-count-one": "Dominikanischer Peso",
            "displayName-count-other": "Dominikanische Pesos",
            "symbol": "DOP",
            "symbol-alt-narrow": "$"
          },
          "DZD": {
            "displayName": "Algerischer Dinar",
            "displayName-count-one": "Algerischer Dinar",
            "displayName-count-other": "Algerische Dinar",
            "symbol": "DZD"
          },
          "ECS": {
            "displayName": "Ecuadorianischer Sucre",
            "displayName-count-one": "Ecuadorianischer Sucre",
            "displayName-count-other": "Ecuadorianische Sucre",
            "symbol": "ECS"
          },
          "ECV": {
            "displayName": "Verrechnungseinheit für Ecuador",
            "displayName-count-one": "Verrechnungseinheiten für Ecuador",
            "displayName-count-other": "Verrechnungseinheiten für Ecuador",
            "symbol": "ECV"
          },
          "EEK": {
            "displayName": "Estnische Krone",
            "displayName-count-one": "Estnische Krone",
            "displayName-count-other": "Estnische Kronen",
            "symbol": "EEK"
          },
          "EGP": {
            "displayName": "Ägyptisches Pfund",
            "displayName-count-one": "Ägyptisches Pfund",
            "displayName-count-other": "Ägyptische Pfund",
            "symbol": "EGP",
            "symbol-alt-narrow": "E£"
          },
          "ERN": {
            "displayName": "Eritreischer Nakfa",
            "displayName-count-one": "Eritreischer Nakfa",
            "displayName-count-other": "Eritreische Nakfa",
            "symbol": "ERN"
          },
          "ESA": {
            "displayName": "Spanische Peseta (A–Konten)",
            "displayName-count-one": "Spanische Peseta (A–Konten)",
            "displayName-count-other": "Spanische Peseten (A–Konten)",
            "symbol": "ESA"
          },
          "ESB": {
            "displayName": "Spanische Peseta (konvertibel)",
            "displayName-count-one": "Spanische Peseta (konvertibel)",
            "displayName-count-other": "Spanische Peseten (konvertibel)",
            "symbol": "ESB"
          },
          "ESP": {
            "displayName": "Spanische Peseta",
            "displayName-count-one": "Spanische Peseta",
            "displayName-count-other": "Spanische Peseten",
            "symbol": "ESP",
            "symbol-alt-narrow": "₧"
          },
          "ETB": {
            "displayName": "Äthiopischer Birr",
            "displayName-count-one": "Äthiopischer Birr",
            "displayName-count-other": "Äthiopische Birr",
            "symbol": "ETB"
          },
          "EUR": {
            "displayName": "Euro",
            "displayName-count-one": "Euro",
            "displayName-count-other": "Euro",
            "symbol": "€",
            "symbol-alt-narrow": "€"
          },
          "FIM": {
            "displayName": "Finnische Mark",
            "displayName-count-one": "Finnische Mark",
            "displayName-count-other": "Finnische Mark",
            "symbol": "FIM"
          },
          "FJD": {
            "displayName": "Fidschi-Dollar",
            "displayName-count-one": "Fidschi-Dollar",
            "displayName-count-other": "Fidschi-Dollar",
            "symbol": "FJD",
            "symbol-alt-narrow": "$"
          },
          "FKP": {
            "displayName": "Falkland-Pfund",
            "displayName-count-one": "Falkland-Pfund",
            "displayName-count-other": "Falkland-Pfund",
            "symbol": "FKP",
            "symbol-alt-narrow": "Fl£"
          },
          "FRF": {
            "displayName": "Französischer Franc",
            "displayName-count-one": "Französischer Franc",
            "displayName-count-other": "Französische Franc",
            "symbol": "FRF"
          },
          "GBP": {
            "displayName": "Britisches Pfund",
            "displayName-count-one": "Britisches Pfund",
            "displayName-count-other": "Britische Pfund",
            "symbol": "£",
            "symbol-alt-narrow": "£"
          },
          "GEK": {
            "displayName": "Georgischer Kupon Larit",
            "displayName-count-one": "Georgischer Kupon Larit",
            "displayName-count-other": "Georgische Kupon Larit",
            "symbol": "GEK"
          },
          "GEL": {
            "displayName": "Georgischer Lari",
            "displayName-count-one": "Georgischer Lari",
            "displayName-count-other": "Georgische Lari",
            "symbol": "GEL",
            "symbol-alt-narrow": "₾",
            "symbol-alt-variant": "₾"
          },
          "GHC": {
            "displayName": "Ghanaischer Cedi (1979–2007)",
            "displayName-count-one": "Ghanaischer Cedi (1979–2007)",
            "displayName-count-other": "Ghanaische Cedi (1979–2007)",
            "symbol": "GHC"
          },
          "GHS": {
            "displayName": "Ghanaischer Cedi",
            "displayName-count-one": "Ghanaischer Cedi",
            "displayName-count-other": "Ghanaische Cedi",
            "symbol": "GHS"
          },
          "GIP": {
            "displayName": "Gibraltar-Pfund",
            "displayName-count-one": "Gibraltar-Pfund",
            "displayName-count-other": "Gibraltar Pfund",
            "symbol": "GIP",
            "symbol-alt-narrow": "£"
          },
          "GMD": {
            "displayName": "Gambia-Dalasi",
            "displayName-count-one": "Gambia-Dalasi",
            "displayName-count-other": "Gambia-Dalasi",
            "symbol": "GMD"
          },
          "GNF": {
            "displayName": "Guinea-Franc",
            "displayName-count-one": "Guinea-Franc",
            "displayName-count-other": "Guinea-Franc",
            "symbol": "GNF",
            "symbol-alt-narrow": "F.G."
          },
          "GNS": {
            "displayName": "Guineischer Syli",
            "displayName-count-one": "Guineischer Syli",
            "displayName-count-other": "Guineische Syli",
            "symbol": "GNS"
          },
          "GQE": {
            "displayName": "Äquatorialguinea-Ekwele",
            "displayName-count-one": "Äquatorialguinea-Ekwele",
            "displayName-count-other": "Äquatorialguinea-Ekwele",
            "symbol": "GQE"
          },
          "GRD": {
            "displayName": "Griechische Drachme",
            "displayName-count-one": "Griechische Drachme",
            "displayName-count-other": "Griechische Drachmen",
            "symbol": "GRD"
          },
          "GTQ": {
            "displayName": "Guatemaltekischer Quetzal",
            "displayName-count-one": "Guatemaltekischer Quetzal",
            "displayName-count-other": "Guatemaltekische Quetzales",
            "symbol": "GTQ",
            "symbol-alt-narrow": "Q"
          },
          "GWE": {
            "displayName": "Portugiesisch Guinea Escudo",
            "displayName-count-one": "Portugiesisch Guinea Escudo",
            "displayName-count-other": "Portugiesisch Guinea Escudo",
            "symbol": "GWE"
          },
          "GWP": {
            "displayName": "Guinea-Bissau Peso",
            "displayName-count-one": "Guinea-Bissau Peso",
            "displayName-count-other": "Guinea-Bissau Pesos",
            "symbol": "GWP"
          },
          "GYD": {
            "displayName": "Guyana-Dollar",
            "displayName-count-one": "Guyana-Dollar",
            "displayName-count-other": "Guyana-Dollar",
            "symbol": "GYD",
            "symbol-alt-narrow": "$"
          },
          "HKD": {
            "displayName": "Hongkong-Dollar",
            "displayName-count-one": "Hongkong-Dollar",
            "displayName-count-other": "Hongkong-Dollar",
            "symbol": "HK$",
            "symbol-alt-narrow": "$"
          },
          "HNL": {
            "displayName": "Honduras-Lempira",
            "displayName-count-one": "Honduras-Lempira",
            "displayName-count-other": "Honduras-Lempira",
            "symbol": "HNL",
            "symbol-alt-narrow": "L"
          },
          "HRD": {
            "displayName": "Kroatischer Dinar",
            "displayName-count-one": "Kroatischer Dinar",
            "displayName-count-other": "Kroatische Dinar",
            "symbol": "HRD"
          },
          "HRK": {
            "displayName": "Kroatischer Kuna",
            "displayName-count-one": "Kroatischer Kuna",
            "displayName-count-other": "Kroatische Kuna",
            "symbol": "HRK",
            "symbol-alt-narrow": "kn"
          },
          "HTG": {
            "displayName": "Haitianische Gourde",
            "displayName-count-one": "Haitianische Gourde",
            "displayName-count-other": "Haitianische Gourdes",
            "symbol": "HTG"
          },
          "HUF": {
            "displayName": "Ungarischer Forint",
            "displayName-count-one": "Ungarischer Forint",
            "displayName-count-other": "Ungarische Forint",
            "symbol": "HUF",
            "symbol-alt-narrow": "Ft"
          },
          "IDR": {
            "displayName": "Indonesische Rupiah",
            "displayName-count-one": "Indonesische Rupiah",
            "displayName-count-other": "Indonesische Rupiah",
            "symbol": "IDR",
            "symbol-alt-narrow": "Rp"
          },
          "IEP": {
            "displayName": "Irisches Pfund",
            "displayName-count-one": "Irisches Pfund",
            "displayName-count-other": "Irische Pfund",
            "symbol": "IEP"
          },
          "ILP": {
            "displayName": "Israelisches Pfund",
            "displayName-count-one": "Israelisches Pfund",
            "displayName-count-other": "Israelische Pfund",
            "symbol": "ILP"
          },
          "ILR": {
            "displayName": "Israelischer Schekel (1980–1985)",
            "displayName-count-one": "Israelischer Schekel (1980–1985)",
            "displayName-count-other": "Israelische Schekel (1980–1985)"
          },
          "ILS": {
            "displayName": "Israelischer Neuer Schekel",
            "displayName-count-one": "Israelischer Neuer Schekel",
            "displayName-count-other": "Israelische Neue Schekel",
            "symbol": "₪",
            "symbol-alt-narrow": "₪"
          },
          "INR": {
            "displayName": "Indische Rupie",
            "displayName-count-one": "Indische Rupie",
            "displayName-count-other": "Indische Rupien",
            "symbol": "₹",
            "symbol-alt-narrow": "₹"
          },
          "IQD": {
            "displayName": "Irakischer Dinar",
            "displayName-count-one": "Irakischer Dinar",
            "displayName-count-other": "Irakische Dinar",
            "symbol": "IQD"
          },
          "IRR": {
            "displayName": "Iranischer Rial",
            "displayName-count-one": "Iranischer Rial",
            "displayName-count-other": "Iranische Rial",
            "symbol": "IRR"
          },
          "ISJ": {
            "displayName": "Isländische Krone (1918–1981)",
            "displayName-count-one": "Isländische Krone (1918–1981)",
            "displayName-count-other": "Isländische Kronen (1918–1981)"
          },
          "ISK": {
            "displayName": "Isländische Krone",
            "displayName-count-one": "Isländische Krone",
            "displayName-count-other": "Isländische Kronen",
            "symbol": "ISK",
            "symbol-alt-narrow": "kr"
          },
          "ITL": {
            "displayName": "Italienische Lira",
            "displayName-count-one": "Italienische Lira",
            "displayName-count-other": "Italienische Lire",
            "symbol": "ITL"
          },
          "JMD": {
            "displayName": "Jamaika-Dollar",
            "displayName-count-one": "Jamaika-Dollar",
            "displayName-count-other": "Jamaika-Dollar",
            "symbol": "JMD",
            "symbol-alt-narrow": "$"
          },
          "JOD": {
            "displayName": "Jordanischer Dinar",
            "displayName-count-one": "Jordanischer Dinar",
            "displayName-count-other": "Jordanische Dinar",
            "symbol": "JOD"
          },
          "JPY": {
            "displayName": "Japanischer Yen",
            "displayName-count-one": "Japanischer Yen",
            "displayName-count-other": "Japanische Yen",
            "symbol": "¥",
            "symbol-alt-narrow": "¥"
          },
          "KES": {
            "displayName": "Kenia-Schilling",
            "displayName-count-one": "Kenia-Schilling",
            "displayName-count-other": "Kenia-Schilling",
            "symbol": "KES"
          },
          "KGS": {
            "displayName": "Kirgisischer Som",
            "displayName-count-one": "Kirgisischer Som",
            "displayName-count-other": "Kirgisische Som",
            "symbol": "KGS"
          },
          "KHR": {
            "displayName": "Kambodschanischer Riel",
            "displayName-count-one": "Kambodschanischer Riel",
            "displayName-count-other": "Kambodschanische Riel",
            "symbol": "KHR",
            "symbol-alt-narrow": "៛"
          },
          "KMF": {
            "displayName": "Komoren-Franc",
            "displayName-count-one": "Komoren-Franc",
            "displayName-count-other": "Komoren-Francs",
            "symbol": "KMF",
            "symbol-alt-narrow": "FC"
          },
          "KPW": {
            "displayName": "Nordkoreanischer Won",
            "displayName-count-one": "Nordkoreanischer Won",
            "displayName-count-other": "Nordkoreanische Won",
            "symbol": "KPW",
            "symbol-alt-narrow": "₩"
          },
          "KRH": {
            "displayName": "Südkoreanischer Hwan (1953–1962)",
            "displayName-count-one": "Südkoreanischer Hwan (1953–1962)",
            "displayName-count-other": "Südkoreanischer Hwan (1953–1962)",
            "symbol": "KRH"
          },
          "KRO": {
            "displayName": "Südkoreanischer Won (1945–1953)",
            "displayName-count-one": "Südkoreanischer Won (1945–1953)",
            "displayName-count-other": "Südkoreanischer Won (1945–1953)",
            "symbol": "KRO"
          },
          "KRW": {
            "displayName": "Südkoreanischer Won",
            "displayName-count-one": "Südkoreanischer Won",
            "displayName-count-other": "Südkoreanische Won",
            "symbol": "₩",
            "symbol-alt-narrow": "₩"
          },
          "KWD": {
            "displayName": "Kuwait-Dinar",
            "displayName-count-one": "Kuwait-Dinar",
            "displayName-count-other": "Kuwait-Dinar",
            "symbol": "KWD"
          },
          "KYD": {
            "displayName": "Kaiman-Dollar",
            "displayName-count-one": "Kaiman-Dollar",
            "displayName-count-other": "Kaiman-Dollar",
            "symbol": "KYD",
            "symbol-alt-narrow": "$"
          },
          "KZT": {
            "displayName": "Kasachischer Tenge",
            "displayName-count-one": "Kasachischer Tenge",
            "displayName-count-other": "Kasachische Tenge",
            "symbol": "KZT",
            "symbol-alt-narrow": "₸"
          },
          "LAK": {
            "displayName": "Laotischer Kip",
            "displayName-count-one": "Laotischer Kip",
            "displayName-count-other": "Laotische Kip",
            "symbol": "LAK",
            "symbol-alt-narrow": "₭"
          },
          "LBP": {
            "displayName": "Libanesisches Pfund",
            "displayName-count-one": "Libanesisches Pfund",
            "displayName-count-other": "Libanesische Pfund",
            "symbol": "LBP",
            "symbol-alt-narrow": "L£"
          },
          "LKR": {
            "displayName": "Sri-Lanka-Rupie",
            "displayName-count-one": "Sri-Lanka-Rupie",
            "displayName-count-other": "Sri-Lanka-Rupien",
            "symbol": "LKR",
            "symbol-alt-narrow": "Rs"
          },
          "LRD": {
            "displayName": "Liberianischer Dollar",
            "displayName-count-one": "Liberianischer Dollar",
            "displayName-count-other": "Liberianische Dollar",
            "symbol": "LRD",
            "symbol-alt-narrow": "$"
          },
          "LSL": {
            "displayName": "Loti",
            "displayName-count-one": "Loti",
            "displayName-count-other": "Loti",
            "symbol": "LSL"
          },
          "LTL": {
            "displayName": "Litauischer Litas",
            "displayName-count-one": "Litauischer Litas",
            "displayName-count-other": "Litauische Litas",
            "symbol": "LTL",
            "symbol-alt-narrow": "Lt"
          },
          "LTT": {
            "displayName": "Litauischer Talonas",
            "displayName-count-one": "Litauische Talonas",
            "displayName-count-other": "Litauische Talonas",
            "symbol": "LTT"
          },
          "LUC": {
            "displayName": "Luxemburgischer Franc (konvertibel)",
            "displayName-count-one": "Luxemburgische Franc (konvertibel)",
            "displayName-count-other": "Luxemburgische Franc (konvertibel)",
            "symbol": "LUC"
          },
          "LUF": {
            "displayName": "Luxemburgischer Franc",
            "displayName-count-one": "Luxemburgische Franc",
            "displayName-count-other": "Luxemburgische Franc",
            "symbol": "LUF"
          },
          "LUL": {
            "displayName": "Luxemburgischer Finanz-Franc",
            "displayName-count-one": "Luxemburgische Finanz-Franc",
            "displayName-count-other": "Luxemburgische Finanz-Franc",
            "symbol": "LUL"
          },
          "LVL": {
            "displayName": "Lettischer Lats",
            "displayName-count-one": "Lettischer Lats",
            "displayName-count-other": "Lettische Lats",
            "symbol": "LVL",
            "symbol-alt-narrow": "Ls"
          },
          "LVR": {
            "displayName": "Lettischer Rubel",
            "displayName-count-one": "Lettische Rubel",
            "displayName-count-other": "Lettische Rubel",
            "symbol": "LVR"
          },
          "LYD": {
            "displayName": "Libyscher Dinar",
            "displayName-count-one": "Libyscher Dinar",
            "displayName-count-other": "Libysche Dinar",
            "symbol": "LYD"
          },
          "MAD": {
            "displayName": "Marokkanischer Dirham",
            "displayName-count-one": "Marokkanischer Dirham",
            "displayName-count-other": "Marokkanische Dirham",
            "symbol": "MAD"
          },
          "MAF": {
            "displayName": "Marokkanischer Franc",
            "displayName-count-one": "Marokkanische Franc",
            "displayName-count-other": "Marokkanische Franc",
            "symbol": "MAF"
          },
          "MCF": {
            "displayName": "Monegassischer Franc",
            "displayName-count-one": "Monegassischer Franc",
            "displayName-count-other": "Monegassische Franc",
            "symbol": "MCF"
          },
          "MDC": {
            "displayName": "Moldau-Cupon",
            "displayName-count-one": "Moldau-Cupon",
            "displayName-count-other": "Moldau-Cupon",
            "symbol": "MDC"
          },
          "MDL": {
            "displayName": "Moldau-Leu",
            "displayName-count-one": "Moldau-Leu",
            "displayName-count-other": "Moldau-Leu",
            "symbol": "MDL"
          },
          "MGA": {
            "displayName": "Madagaskar-Ariary",
            "displayName-count-one": "Madagaskar-Ariary",
            "displayName-count-other": "Madagaskar-Ariary",
            "symbol": "MGA",
            "symbol-alt-narrow": "Ar"
          },
          "MGF": {
            "displayName": "Madagaskar-Franc",
            "displayName-count-one": "Madagaskar-Franc",
            "displayName-count-other": "Madagaskar-Franc",
            "symbol": "MGF"
          },
          "MKD": {
            "displayName": "Mazedonischer Denar",
            "displayName-count-one": "Mazedonischer Denar",
            "displayName-count-other": "Mazedonische Denari",
            "symbol": "MKD"
          },
          "MKN": {
            "displayName": "Mazedonischer Denar (1992–1993)",
            "displayName-count-one": "Mazedonischer Denar (1992–1993)",
            "displayName-count-other": "Mazedonische Denar (1992–1993)",
            "symbol": "MKN"
          },
          "MLF": {
            "displayName": "Malischer Franc",
            "displayName-count-one": "Malische Franc",
            "displayName-count-other": "Malische Franc",
            "symbol": "MLF"
          },
          "MMK": {
            "displayName": "Myanmarischer Kyat",
            "displayName-count-one": "Myanmarischer Kyat",
            "displayName-count-other": "Myanmarische Kyat",
            "symbol": "MMK",
            "symbol-alt-narrow": "K"
          },
          "MNT": {
            "displayName": "Mongolischer Tögrög",
            "displayName-count-one": "Mongolischer Tögrög",
            "displayName-count-other": "Mongolische Tögrög",
            "symbol": "MNT",
            "symbol-alt-narrow": "₮"
          },
          "MOP": {
            "displayName": "Macao-Pataca",
            "displayName-count-one": "Macao-Pataca",
            "displayName-count-other": "Macao-Pataca",
            "symbol": "MOP"
          },
          "MRO": {
            "displayName": "Mauretanischer Ouguiya",
            "displayName-count-one": "Mauretanischer Ouguiya",
            "displayName-count-other": "Mauretanische Ouguiya",
            "symbol": "MRO"
          },
          "MTL": {
            "displayName": "Maltesische Lira",
            "displayName-count-one": "Maltesische Lira",
            "displayName-count-other": "Maltesische Lira",
            "symbol": "MTL"
          },
          "MTP": {
            "displayName": "Maltesisches Pfund",
            "displayName-count-one": "Maltesische Pfund",
            "displayName-count-other": "Maltesische Pfund",
            "symbol": "MTP"
          },
          "MUR": {
            "displayName": "Mauritius-Rupie",
            "displayName-count-one": "Mauritius-Rupie",
            "displayName-count-other": "Mauritius-Rupien",
            "symbol": "MUR",
            "symbol-alt-narrow": "Rs"
          },
          "MVP": {
            "displayName": "Malediven-Rupie (alt)",
            "displayName-count-one": "Malediven-Rupie (alt)",
            "displayName-count-other": "Malediven-Rupien (alt)"
          },
          "MVR": {
            "displayName": "Malediven-Rufiyaa",
            "displayName-count-one": "Malediven-Rufiyaa",
            "displayName-count-other": "Malediven-Rupien",
            "symbol": "MVR"
          },
          "MWK": {
            "displayName": "Malawi-Kwacha",
            "displayName-count-one": "Malawi-Kwacha",
            "displayName-count-other": "Malawi-Kwacha",
            "symbol": "MWK"
          },
          "MXN": {
            "displayName": "Mexikanischer Peso",
            "displayName-count-one": "Mexikanischer Peso",
            "displayName-count-other": "Mexikanische Pesos",
            "symbol": "MX$",
            "symbol-alt-narrow": "$"
          },
          "MXP": {
            "displayName": "Mexikanischer Silber-Peso (1861–1992)",
            "displayName-count-one": "Mexikanische Silber-Peso (1861–1992)",
            "displayName-count-other": "Mexikanische Silber-Pesos (1861–1992)",
            "symbol": "MXP"
          },
          "MXV": {
            "displayName": "Mexicanischer Unidad de Inversion (UDI)",
            "displayName-count-one": "Mexicanischer Unidad de Inversion (UDI)",
            "displayName-count-other": "Mexikanische Unidad de Inversion (UDI)",
            "symbol": "MXV"
          },
          "MYR": {
            "displayName": "Malaysischer Ringgit",
            "displayName-count-one": "Malaysischer Ringgit",
            "displayName-count-other": "Malaysische Ringgit",
            "symbol": "MYR",
            "symbol-alt-narrow": "RM"
          },
          "MZE": {
            "displayName": "Mosambikanischer Escudo",
            "displayName-count-one": "Mozambikanische Escudo",
            "displayName-count-other": "Mozambikanische Escudo",
            "symbol": "MZE"
          },
          "MZM": {
            "displayName": "Mosambikanischer Metical (1980–2006)",
            "displayName-count-one": "Mosambikanischer Metical (1980–2006)",
            "displayName-count-other": "Mosambikanische Meticais (1980–2006)",
            "symbol": "MZM"
          },
          "MZN": {
            "displayName": "Mosambikanischer Metical",
            "displayName-count-one": "Mosambikanischer Metical",
            "displayName-count-other": "Mosambikanische Meticais",
            "symbol": "MZN"
          },
          "NAD": {
            "displayName": "Namibia-Dollar",
            "displayName-count-one": "Namibia-Dollar",
            "displayName-count-other": "Namibia-Dollar",
            "symbol": "NAD",
            "symbol-alt-narrow": "$"
          },
          "NGN": {
            "displayName": "Nigerianischer Naira",
            "displayName-count-one": "Nigerianischer Naira",
            "displayName-count-other": "Nigerianische Naira",
            "symbol": "NGN",
            "symbol-alt-narrow": "₦"
          },
          "NIC": {
            "displayName": "Nicaraguanischer Córdoba (1988–1991)",
            "displayName-count-one": "Nicaraguanischer Córdoba (1988–1991)",
            "displayName-count-other": "Nicaraguanische Córdoba (1988–1991)",
            "symbol": "NIC"
          },
          "NIO": {
            "displayName": "Nicaragua-Córdoba",
            "displayName-count-one": "Nicaragua-Córdoba",
            "displayName-count-other": "Nicaragua-Córdobas",
            "symbol": "NIO",
            "symbol-alt-narrow": "C$"
          },
          "NLG": {
            "displayName": "Niederländischer Gulden",
            "displayName-count-one": "Niederländischer Gulden",
            "displayName-count-other": "Niederländische Gulden",
            "symbol": "NLG"
          },
          "NOK": {
            "displayName": "Norwegische Krone",
            "displayName-count-one": "Norwegische Krone",
            "displayName-count-other": "Norwegische Kronen",
            "symbol": "NOK",
            "symbol-alt-narrow": "kr"
          },
          "NPR": {
            "displayName": "Nepalesische Rupie",
            "displayName-count-one": "Nepalesische Rupie",
            "displayName-count-other": "Nepalesische Rupien",
            "symbol": "NPR",
            "symbol-alt-narrow": "Rs"
          },
          "NZD": {
            "displayName": "Neuseeland-Dollar",
            "displayName-count-one": "Neuseeland-Dollar",
            "displayName-count-other": "Neuseeland-Dollar",
            "symbol": "NZ$",
            "symbol-alt-narrow": "$"
          },
          "OMR": {
            "displayName": "Omanischer Rial",
            "displayName-count-one": "Omanischer Rial",
            "displayName-count-other": "Omanische Rials",
            "symbol": "OMR"
          },
          "PAB": {
            "displayName": "Panamaischer Balboa",
            "displayName-count-one": "Panamaischer Balboa",
            "displayName-count-other": "Panamaische Balboas",
            "symbol": "PAB"
          },
          "PEI": {
            "displayName": "Peruanischer Inti",
            "displayName-count-one": "Peruanische Inti",
            "displayName-count-other": "Peruanische Inti",
            "symbol": "PEI"
          },
          "PEN": {
            "displayName": "Peruanischer Sol",
            "displayName-count-one": "Peruanischer Sol",
            "displayName-count-other": "Peruanische Sol",
            "symbol": "PEN"
          },
          "PES": {
            "displayName": "Peruanischer Sol (1863–1965)",
            "displayName-count-one": "Peruanischer Sol (1863–1965)",
            "displayName-count-other": "Peruanische Sol (1863–1965)",
            "symbol": "PES"
          },
          "PGK": {
            "displayName": "Papua-Neuguineischer Kina",
            "displayName-count-one": "Papua-Neuguineischer Kina",
            "displayName-count-other": "Papua-Neuguineische Kina",
            "symbol": "PGK"
          },
          "PHP": {
            "displayName": "Philippinischer Peso",
            "displayName-count-one": "Philippinischer Peso",
            "displayName-count-other": "Philippinische Pesos",
            "symbol": "PHP",
            "symbol-alt-narrow": "₱"
          },
          "PKR": {
            "displayName": "Pakistanische Rupie",
            "displayName-count-one": "Pakistanische Rupie",
            "displayName-count-other": "Pakistanische Rupien",
            "symbol": "PKR",
            "symbol-alt-narrow": "Rs"
          },
          "PLN": {
            "displayName": "Polnischer Złoty",
            "displayName-count-one": "Polnischer Złoty",
            "displayName-count-other": "Polnische Złoty",
            "symbol": "PLN",
            "symbol-alt-narrow": "zł"
          },
          "PLZ": {
            "displayName": "Polnischer Zloty (1950–1995)",
            "displayName-count-one": "Polnischer Zloty (1950–1995)",
            "displayName-count-other": "Polnische Zloty (1950–1995)",
            "symbol": "PLZ"
          },
          "PTE": {
            "displayName": "Portugiesischer Escudo",
            "displayName-count-one": "Portugiesische Escudo",
            "displayName-count-other": "Portugiesische Escudo",
            "symbol": "PTE"
          },
          "PYG": {
            "displayName": "Paraguayischer Guaraní",
            "displayName-count-one": "Paraguayischer Guaraní",
            "displayName-count-other": "Paraguayische Guaraníes",
            "symbol": "PYG",
            "symbol-alt-narrow": "₲"
          },
          "QAR": {
            "displayName": "Katar-Riyal",
            "displayName-count-one": "Katar-Riyal",
            "displayName-count-other": "Katar-Riyal",
            "symbol": "QAR"
          },
          "RHD": {
            "displayName": "Rhodesischer Dollar",
            "displayName-count-one": "Rhodesische Dollar",
            "displayName-count-other": "Rhodesische Dollar",
            "symbol": "RHD"
          },
          "ROL": {
            "displayName": "Rumänischer Leu (1952–2006)",
            "displayName-count-one": "Rumänischer Leu (1952–2006)",
            "displayName-count-other": "Rumänische Leu (1952–2006)",
            "symbol": "ROL"
          },
          "RON": {
            "displayName": "Rumänischer Leu",
            "displayName-count-one": "Rumänischer Leu",
            "displayName-count-other": "Rumänische Leu",
            "symbol": "RON",
            "symbol-alt-narrow": "L"
          },
          "RSD": {
            "displayName": "Serbischer Dinar",
            "displayName-count-one": "Serbischer Dinar",
            "displayName-count-other": "Serbische Dinaren",
            "symbol": "RSD"
          },
          "RUB": {
            "displayName": "Russischer Rubel",
            "displayName-count-one": "Russischer Rubel",
            "displayName-count-other": "Russische Rubel",
            "symbol": "RUB",
            "symbol-alt-narrow": "₽"
          },
          "RUR": {
            "displayName": "Russischer Rubel (1991–1998)",
            "displayName-count-one": "Russischer Rubel (1991–1998)",
            "displayName-count-other": "Russische Rubel (1991–1998)",
            "symbol": "RUR",
            "symbol-alt-narrow": "р."
          },
          "RWF": {
            "displayName": "Ruanda-Franc",
            "displayName-count-one": "Ruanda-Franc",
            "displayName-count-other": "Ruanda-Francs",
            "symbol": "RWF",
            "symbol-alt-narrow": "F.Rw"
          },
          "SAR": {
            "displayName": "Saudi-Rial",
            "displayName-count-one": "Saudi-Rial",
            "displayName-count-other": "Saudi-Rial",
            "symbol": "SAR"
          },
          "SBD": {
            "displayName": "Salomonen-Dollar",
            "displayName-count-one": "Salomonen-Dollar",
            "displayName-count-other": "Salomonen-Dollar",
            "symbol": "SBD",
            "symbol-alt-narrow": "$"
          },
          "SCR": {
            "displayName": "Seychellen-Rupie",
            "displayName-count-one": "Seychellen-Rupie",
            "displayName-count-other": "Seychellen-Rupien",
            "symbol": "SCR"
          },
          "SDD": {
            "displayName": "Sudanesischer Dinar (1992–2007)",
            "displayName-count-one": "Sudanesischer Dinar (1992–2007)",
            "displayName-count-other": "Sudanesische Dinar (1992–2007)",
            "symbol": "SDD"
          },
          "SDG": {
            "displayName": "Sudanesisches Pfund",
            "displayName-count-one": "Sudanesisches Pfund",
            "displayName-count-other": "Sudanesische Pfund",
            "symbol": "SDG"
          },
          "SDP": {
            "displayName": "Sudanesisches Pfund (1957–1998)",
            "displayName-count-one": "Sudanesisches Pfund (1957–1998)",
            "displayName-count-other": "Sudanesische Pfund (1957–1998)",
            "symbol": "SDP"
          },
          "SEK": {
            "displayName": "Schwedische Krone",
            "displayName-count-one": "Schwedische Krone",
            "displayName-count-other": "Schwedische Kronen",
            "symbol": "SEK",
            "symbol-alt-narrow": "kr"
          },
          "SGD": {
            "displayName": "Singapur-Dollar",
            "displayName-count-one": "Singapur-Dollar",
            "displayName-count-other": "Singapur-Dollar",
            "symbol": "SGD",
            "symbol-alt-narrow": "$"
          },
          "SHP": {
            "displayName": "St. Helena-Pfund",
            "displayName-count-one": "St. Helena-Pfund",
            "displayName-count-other": "St. Helena-Pfund",
            "symbol": "SHP",
            "symbol-alt-narrow": "£"
          },
          "SIT": {
            "displayName": "Slowenischer Tolar",
            "displayName-count-one": "Slowenischer Tolar",
            "displayName-count-other": "Slowenische Tolar",
            "symbol": "SIT"
          },
          "SKK": {
            "displayName": "Slowakische Krone",
            "displayName-count-one": "Slowakische Kronen",
            "displayName-count-other": "Slowakische Kronen",
            "symbol": "SKK"
          },
          "SLL": {
            "displayName": "Sierra-leonischer Leone",
            "displayName-count-one": "Sierra-leonischer Leone",
            "displayName-count-other": "Sierra-leonische Leones",
            "symbol": "SLL"
          },
          "SOS": {
            "displayName": "Somalia-Schilling",
            "displayName-count-one": "Somalia-Schilling",
            "displayName-count-other": "Somalia-Schilling",
            "symbol": "SOS"
          },
          "SRD": {
            "displayName": "Suriname-Dollar",
            "displayName-count-one": "Suriname-Dollar",
            "displayName-count-other": "Suriname-Dollar",
            "symbol": "SRD",
            "symbol-alt-narrow": "$"
          },
          "SRG": {
            "displayName": "Suriname Gulden",
            "displayName-count-one": "Suriname-Gulden",
            "displayName-count-other": "Suriname-Gulden",
            "symbol": "SRG"
          },
          "SSP": {
            "displayName": "Südsudanesisches Pfund",
            "displayName-count-one": "Südsudanesisches Pfund",
            "displayName-count-other": "Südsudanesische Pfund",
            "symbol": "SSP",
            "symbol-alt-narrow": "£"
          },
          "STD": {
            "displayName": "São-toméischer Dobra",
            "displayName-count-one": "São-toméischer Dobra",
            "displayName-count-other": "São-toméische Dobra",
            "symbol": "STD",
            "symbol-alt-narrow": "Db"
          },
          "SUR": {
            "displayName": "Sowjetischer Rubel",
            "displayName-count-one": "Sowjetische Rubel",
            "displayName-count-other": "Sowjetische Rubel",
            "symbol": "SUR"
          },
          "SVC": {
            "displayName": "El Salvador Colon",
            "displayName-count-one": "El Salvador-Colon",
            "displayName-count-other": "El Salvador-Colon",
            "symbol": "SVC"
          },
          "SYP": {
            "displayName": "Syrisches Pfund",
            "displayName-count-one": "Syrisches Pfund",
            "displayName-count-other": "Syrische Pfund",
            "symbol": "SYP",
            "symbol-alt-narrow": "SYP"
          },
          "SZL": {
            "displayName": "Swasiländischer Lilangeni",
            "displayName-count-one": "Swasiländischer Lilangeni",
            "displayName-count-other": "Swasiländische Emalangeni",
            "symbol": "SZL"
          },
          "THB": {
            "displayName": "Thailändischer Baht",
            "displayName-count-one": "Thailändischer Baht",
            "displayName-count-other": "Thailändische Baht",
            "symbol": "฿",
            "symbol-alt-narrow": "฿"
          },
          "TJR": {
            "displayName": "Tadschikistan Rubel",
            "displayName-count-one": "Tadschikistan-Rubel",
            "displayName-count-other": "Tadschikistan-Rubel",
            "symbol": "TJR"
          },
          "TJS": {
            "displayName": "Tadschikistan-Somoni",
            "displayName-count-one": "Tadschikistan-Somoni",
            "displayName-count-other": "Tadschikistan-Somoni",
            "symbol": "TJS"
          },
          "TMM": {
            "displayName": "Turkmenistan-Manat (1993–2009)",
            "displayName-count-one": "Turkmenistan-Manat (1993–2009)",
            "displayName-count-other": "Turkmenistan-Manat (1993–2009)",
            "symbol": "TMM"
          },
          "TMT": {
            "displayName": "Turkmenistan-Manat",
            "displayName-count-one": "Turkmenistan-Manat",
            "displayName-count-other": "Turkmenistan-Manat",
            "symbol": "TMT"
          },
          "TND": {
            "displayName": "Tunesischer Dinar",
            "displayName-count-one": "Tunesischer Dinar",
            "displayName-count-other": "Tunesische Dinar",
            "symbol": "TND"
          },
          "TOP": {
            "displayName": "Tongaischer Paʻanga",
            "displayName-count-one": "Tongaischer Paʻanga",
            "displayName-count-other": "Tongaische Paʻanga",
            "symbol": "TOP",
            "symbol-alt-narrow": "T$"
          },
          "TPE": {
            "displayName": "Timor-Escudo",
            "displayName-count-one": "Timor-Escudo",
            "displayName-count-other": "Timor-Escudo",
            "symbol": "TPE"
          },
          "TRL": {
            "displayName": "Türkische Lira (1922–2005)",
            "displayName-count-one": "Türkische Lira (1922–2005)",
            "displayName-count-other": "Türkische Lira (1922–2005)",
            "symbol": "TRL"
          },
          "TRY": {
            "displayName": "Türkische Lira",
            "displayName-count-one": "Türkische Lira",
            "displayName-count-other": "Türkische Lira",
            "symbol": "TRY",
            "symbol-alt-narrow": "₺",
            "symbol-alt-variant": "TL"
          },
          "TTD": {
            "displayName": "Trinidad und Tobago-Dollar",
            "displayName-count-one": "Trinidad und Tobago-Dollar",
            "displayName-count-other": "Trinidad und Tobago-Dollar",
            "symbol": "TTD",
            "symbol-alt-narrow": "$"
          },
          "TWD": {
            "displayName": "Neuer Taiwan-Dollar",
            "displayName-count-one": "Neuer Taiwan-Dollar",
            "displayName-count-other": "Neue Taiwan-Dollar",
            "symbol": "NT$",
            "symbol-alt-narrow": "NT$"
          },
          "TZS": {
            "displayName": "Tansania-Schilling",
            "displayName-count-one": "Tansania-Schilling",
            "displayName-count-other": "Tansania-Schilling",
            "symbol": "TZS"
          },
          "UAH": {
            "displayName": "Ukrainische Hrywnja",
            "displayName-count-one": "Ukrainische Hrywnja",
            "displayName-count-other": "Ukrainische Hrywen",
            "symbol": "UAH",
            "symbol-alt-narrow": "₴"
          },
          "UAK": {
            "displayName": "Ukrainischer Karbovanetz",
            "displayName-count-one": "Ukrainische Karbovanetz",
            "displayName-count-other": "Ukrainische Karbovanetz",
            "symbol": "UAK"
          },
          "UGS": {
            "displayName": "Uganda-Schilling (1966–1987)",
            "displayName-count-one": "Uganda-Schilling (1966–1987)",
            "displayName-count-other": "Uganda-Schilling (1966–1987)",
            "symbol": "UGS"
          },
          "UGX": {
            "displayName": "Uganda-Schilling",
            "displayName-count-one": "Uganda-Schilling",
            "displayName-count-other": "Uganda-Schilling",
            "symbol": "UGX"
          },
          "USD": {
            "displayName": "US-Dollar",
            "displayName-count-one": "US-Dollar",
            "displayName-count-other": "US-Dollar",
            "symbol": "$",
            "symbol-alt-narrow": "$"
          },
          "USN": {
            "displayName": "US Dollar (Nächster Tag)",
            "displayName-count-one": "US-Dollar (Nächster Tag)",
            "displayName-count-other": "US-Dollar (Nächster Tag)",
            "symbol": "USN"
          },
          "USS": {
            "displayName": "US Dollar (Gleicher Tag)",
            "displayName-count-one": "US-Dollar (Gleicher Tag)",
            "displayName-count-other": "US-Dollar (Gleicher Tag)",
            "symbol": "USS"
          },
          "UYI": {
            "displayName": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
            "displayName-count-one": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
            "displayName-count-other": "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
            "symbol": "UYI"
          },
          "UYP": {
            "displayName": "Uruguayischer Peso (1975–1993)",
            "displayName-count-one": "Uruguayischer Peso (1975–1993)",
            "displayName-count-other": "Uruguayische Pesos (1975–1993)",
            "symbol": "UYP"
          },
          "UYU": {
            "displayName": "Uruguayischer Peso",
            "displayName-count-one": "Uruguayischer Peso",
            "displayName-count-other": "Uruguayische Pesos",
            "symbol": "UYU",
            "symbol-alt-narrow": "$"
          },
          "UZS": {
            "displayName": "Usbekistan-Sum",
            "displayName-count-one": "Usbekistan-Sum",
            "displayName-count-other": "Usbekistan-Sum",
            "symbol": "UZS"
          },
          "VEB": {
            "displayName": "Venezolanischer Bolívar (1871–2008)",
            "displayName-count-one": "Venezolanischer Bolívar (1871–2008)",
            "displayName-count-other": "Venezolanische Bolívares (1871–2008)",
            "symbol": "VEB"
          },
          "VEF": {
            "displayName": "Venezolanischer Bolívar",
            "displayName-count-one": "Venezolanischer Bolívar",
            "displayName-count-other": "Venezolanische Bolívares",
            "symbol": "VEF",
            "symbol-alt-narrow": "Bs"
          },
          "VND": {
            "displayName": "Vietnamesischer Dong",
            "displayName-count-one": "Vietnamesischer Dong",
            "displayName-count-other": "Vietnamesische Dong",
            "symbol": "₫",
            "symbol-alt-narrow": "₫"
          },
          "VNN": {
            "displayName": "Vietnamesischer Dong(1978–1985)",
            "displayName-count-one": "Vietnamesischer Dong(1978–1985)",
            "displayName-count-other": "Vietnamesische Dong(1978–1985)",
            "symbol": "VNN"
          },
          "VUV": {
            "displayName": "Vanuatu-Vatu",
            "displayName-count-one": "Vanuatu-Vatu",
            "displayName-count-other": "Vanuatu-Vatu",
            "symbol": "VUV"
          },
          "WST": {
            "displayName": "Samoanischer Tala",
            "displayName-count-one": "Samoanischer Tala",
            "displayName-count-other": "Samoanische Tala",
            "symbol": "WST"
          },
          "XAF": {
            "displayName": "CFA-Franc (BEAC)",
            "displayName-count-one": "CFA-Franc (BEAC)",
            "displayName-count-other": "CFA-Franc (BEAC)",
            "symbol": "FCFA"
          },
          "XAG": {
            "displayName": "Unze Silber",
            "displayName-count-one": "Unze Silber",
            "displayName-count-other": "Unzen Silber",
            "symbol": "XAG"
          },
          "XAU": {
            "displayName": "Unze Gold",
            "displayName-count-one": "Unze Gold",
            "displayName-count-other": "Unzen Gold",
            "symbol": "XAU"
          },
          "XBA": {
            "displayName": "Europäische Rechnungseinheit",
            "displayName-count-one": "Europäische Rechnungseinheiten",
            "displayName-count-other": "Europäische Rechnungseinheiten",
            "symbol": "XBA"
          },
          "XBB": {
            "displayName": "Europäische Währungseinheit (XBB)",
            "displayName-count-one": "Europäische Währungseinheiten (XBB)",
            "displayName-count-other": "Europäische Währungseinheiten (XBB)",
            "symbol": "XBB"
          },
          "XBC": {
            "displayName": "Europäische Rechnungseinheit (XBC)",
            "displayName-count-one": "Europäische Rechnungseinheiten (XBC)",
            "displayName-count-other": "Europäische Rechnungseinheiten (XBC)",
            "symbol": "XBC"
          },
          "XBD": {
            "displayName": "Europäische Rechnungseinheit (XBD)",
            "displayName-count-one": "Europäische Rechnungseinheiten (XBD)",
            "displayName-count-other": "Europäische Rechnungseinheiten (XBD)",
            "symbol": "XBD"
          },
          "XCD": {
            "displayName": "Ostkaribischer Dollar",
            "displayName-count-one": "Ostkaribischer Dollar",
            "displayName-count-other": "Ostkaribische Dollar",
            "symbol": "EC$",
            "symbol-alt-narrow": "$"
          },
          "XDR": {
            "displayName": "Sonderziehungsrechte",
            "displayName-count-one": "Sonderziehungsrechte",
            "displayName-count-other": "Sonderziehungsrechte",
            "symbol": "XDR"
          },
          "XEU": {
            "displayName": "Europäische Währungseinheit (XEU)",
            "displayName-count-one": "Europäische Währungseinheiten (XEU)",
            "displayName-count-other": "Europäische Währungseinheiten (XEU)",
            "symbol": "XEU"
          },
          "XFO": {
            "displayName": "Französischer Gold-Franc",
            "displayName-count-one": "Französische Gold-Franc",
            "displayName-count-other": "Französische Gold-Franc",
            "symbol": "XFO"
          },
          "XFU": {
            "displayName": "Französischer UIC-Franc",
            "displayName-count-one": "Französische UIC-Franc",
            "displayName-count-other": "Französische UIC-Franc",
            "symbol": "XFU"
          },
          "XOF": {
            "displayName": "CFA-Franc (BCEAO)",
            "displayName-count-one": "CFA-Franc (BCEAO)",
            "displayName-count-other": "CFA-Francs (BCEAO)",
            "symbol": "CFA"
          },
          "XPD": {
            "displayName": "Unze Palladium",
            "displayName-count-one": "Unze Palladium",
            "displayName-count-other": "Unzen Palladium",
            "symbol": "XPD"
          },
          "XPF": {
            "displayName": "CFP-Franc",
            "displayName-count-one": "CFP-Franc",
            "displayName-count-other": "CFP-Franc",
            "symbol": "CFPF"
          },
          "XPT": {
            "displayName": "Unze Platin",
            "displayName-count-one": "Unze Platin",
            "displayName-count-other": "Unzen Platin",
            "symbol": "XPT"
          },
          "XRE": {
            "displayName": "RINET Funds",
            "displayName-count-one": "RINET Funds",
            "displayName-count-other": "RINET Funds",
            "symbol": "XRE"
          },
          "XSU": {
            "displayName": "SUCRE",
            "displayName-count-one": "SUCRE",
            "displayName-count-other": "SUCRE",
            "symbol": "XSU"
          },
          "XTS": {
            "displayName": "Testwährung",
            "displayName-count-one": "Testwährung",
            "displayName-count-other": "Testwährung",
            "symbol": "XTS"
          },
          "XUA": {
            "displayName": "Rechnungseinheit der AfEB",
            "displayName-count-one": "Rechnungseinheit der AfEB",
            "displayName-count-other": "Rechnungseinheiten der AfEB",
            "symbol": "XUA"
          },
          "XXX": {
            "displayName": "Unbekannte Währung",
            "displayName-count-one": "(unbekannte Währung)",
            "displayName-count-other": "(unbekannte Währung)",
            "symbol": "XXX"
          },
          "YDD": {
            "displayName": "Jemen-Dinar",
            "displayName-count-one": "Jemen-Dinar",
            "displayName-count-other": "Jemen-Dinar",
            "symbol": "YDD"
          },
          "YER": {
            "displayName": "Jemen-Rial",
            "displayName-count-one": "Jemen-Rial",
            "displayName-count-other": "Jemen-Rial",
            "symbol": "YER"
          },
          "YUD": {
            "displayName": "Jugoslawischer Dinar (1966–1990)",
            "displayName-count-one": "Jugoslawischer Dinar (1966–1990)",
            "displayName-count-other": "Jugoslawische Dinar (1966–1990)",
            "symbol": "YUD"
          },
          "YUM": {
            "displayName": "Jugoslawischer Neuer Dinar (1994–2002)",
            "displayName-count-one": "Jugoslawischer Neuer Dinar (1994–2002)",
            "displayName-count-other": "Jugoslawische Neue Dinar (1994–2002)",
            "symbol": "YUM"
          },
          "YUN": {
            "displayName": "Jugoslawischer Dinar (konvertibel)",
            "displayName-count-one": "Jugoslawische Dinar (konvertibel)",
            "displayName-count-other": "Jugoslawische Dinar (konvertibel)",
            "symbol": "YUN"
          },
          "YUR": {
            "displayName": "Jugoslawischer reformierter Dinar (1992–1993)",
            "displayName-count-one": "Jugoslawischer reformierter Dinar (1992–1993)",
            "displayName-count-other": "Jugoslawische reformierte Dinar (1992–1993)",
            "symbol": "YUR"
          },
          "ZAL": {
            "displayName": "Südafrikanischer Rand (Finanz)",
            "displayName-count-one": "Südafrikanischer Rand (Finanz)",
            "displayName-count-other": "Südafrikanischer Rand (Finanz)",
            "symbol": "ZAL"
          },
          "ZAR": {
            "displayName": "Südafrikanischer Rand",
            "displayName-count-one": "Südafrikanischer Rand",
            "displayName-count-other": "Südafrikanische Rand",
            "symbol": "ZAR",
            "symbol-alt-narrow": "R"
          },
          "ZMK": {
            "displayName": "Kwacha (1968–2012)",
            "displayName-count-one": "Kwacha (1968–2012)",
            "displayName-count-other": "Kwacha (1968–2012)",
            "symbol": "ZMK"
          },
          "ZMW": {
            "displayName": "Kwacha",
            "displayName-count-one": "Kwacha",
            "displayName-count-other": "Kwacha",
            "symbol": "ZMW",
            "symbol-alt-narrow": "K"
          },
          "ZRN": {
            "displayName": "Zaire-Neuer Zaïre (1993–1998)",
            "displayName-count-one": "Zaire-Neuer Zaïre (1993–1998)",
            "displayName-count-other": "Zaire-Neue Zaïre (1993–1998)",
            "symbol": "ZRN"
          },
          "ZRZ": {
            "displayName": "Zaire-Zaïre (1971–1993)",
            "displayName-count-one": "Zaire-Zaïre (1971–1993)",
            "displayName-count-other": "Zaire-Zaïre (1971–1993)",
            "symbol": "ZRZ"
          },
          "ZWD": {
            "displayName": "Simbabwe-Dollar (1980–2008)",
            "displayName-count-one": "Simbabwe-Dollar (1980–2008)",
            "displayName-count-other": "Simbabwe-Dollar (1980–2008)",
            "symbol": "ZWD"
          },
          "ZWL": {
            "displayName": "Simbabwe-Dollar (2009)",
            "displayName-count-one": "Simbabwe-Dollar (2009)",
            "displayName-count-other": "Simbabwe-Dollar (2009)",
            "symbol": "ZWL"
          },
          "ZWR": {
            "displayName": "Simbabwe-Dollar (2008)",
            "displayName-count-one": "Simbabwe-Dollar (2008)",
            "displayName-count-other": "Simbabwe-Dollar (2008)",
            "symbol": "ZWR"
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31";
                }
                "language";
                "de";
            }
            "numbers";
            {
                "currencies";
                {
                    "ADP";
                    {
                        "displayName";
                        "Andorranische Pesete",
                            "displayName-count-one";
                        "Andorranische Pesete",
                            "displayName-count-other";
                        "Andorranische Peseten",
                            "symbol";
                        "ADP";
                    }
                    "AED";
                    {
                        "displayName";
                        "VAE-Dirham",
                            "displayName-count-one";
                        "VAE-Dirham",
                            "displayName-count-other";
                        "VAE-Dirham",
                            "symbol";
                        "AED";
                    }
                    "AFA";
                    {
                        "displayName";
                        "Afghanische Afghani (1927–2002)",
                            "displayName-count-one";
                        "Afghanische Afghani (1927–2002)",
                            "displayName-count-other";
                        "Afghanische Afghani (1927–2002)",
                            "symbol";
                        "AFA";
                    }
                    "AFN";
                    {
                        "displayName";
                        "Afghanischer Afghani",
                            "displayName-count-one";
                        "Afghanischer Afghani",
                            "displayName-count-other";
                        "Afghanische Afghani",
                            "symbol";
                        "AFN";
                    }
                    "ALK";
                    {
                        "displayName";
                        "Albanischer Lek (1946–1965)",
                            "displayName-count-one";
                        "Albanischer Lek (1946–1965)",
                            "displayName-count-other";
                        "Albanische Lek (1946–1965)";
                    }
                    "ALL";
                    {
                        "displayName";
                        "Albanischer Lek",
                            "displayName-count-one";
                        "Albanischer Lek",
                            "displayName-count-other";
                        "Albanische Lek",
                            "symbol";
                        "ALL";
                    }
                    "AMD";
                    {
                        "displayName";
                        "Armenischer Dram",
                            "displayName-count-one";
                        "Armenischer Dram",
                            "displayName-count-other";
                        "Armenische Dram",
                            "symbol";
                        "AMD";
                    }
                    "ANG";
                    {
                        "displayName";
                        "Niederländische-Antillen-Gulden",
                            "displayName-count-one";
                        "Niederländische-Antillen-Gulden",
                            "displayName-count-other";
                        "Niederländische-Antillen-Gulden",
                            "symbol";
                        "ANG";
                    }
                    "AOA";
                    {
                        "displayName";
                        "Angolanischer Kwanza",
                            "displayName-count-one";
                        "Angolanischer Kwanza",
                            "displayName-count-other";
                        "Angolanische Kwanza",
                            "symbol";
                        "AOA",
                            "symbol-alt-narrow";
                        "Kz";
                    }
                    "AOK";
                    {
                        "displayName";
                        "Angolanischer Kwanza (1977–1990)",
                            "displayName-count-one";
                        "Angolanischer Kwanza (1977–1990)",
                            "displayName-count-other";
                        "Angolanische Kwanza (1977–1990)",
                            "symbol";
                        "AOK";
                    }
                    "AON";
                    {
                        "displayName";
                        "Angolanischer Neuer Kwanza (1990–2000)",
                            "displayName-count-one";
                        "Angolanischer Neuer Kwanza (1990–2000)",
                            "displayName-count-other";
                        "Angolanische Neue Kwanza (1990–2000)",
                            "symbol";
                        "AON";
                    }
                    "AOR";
                    {
                        "displayName";
                        "Angolanischer Kwanza Reajustado (1995–1999)",
                            "displayName-count-one";
                        "Angolanischer Kwanza Reajustado (1995–1999)",
                            "displayName-count-other";
                        "Angolanische Kwanza Reajustado (1995–1999)",
                            "symbol";
                        "AOR";
                    }
                    "ARA";
                    {
                        "displayName";
                        "Argentinischer Austral",
                            "displayName-count-one";
                        "Argentinischer Austral",
                            "displayName-count-other";
                        "Argentinische Austral",
                            "symbol";
                        "ARA";
                    }
                    "ARL";
                    {
                        "displayName";
                        "Argentinischer Peso Ley (1970–1983)",
                            "displayName-count-one";
                        "Argentinischer Peso Ley (1970–1983)",
                            "displayName-count-other";
                        "Argentinische Pesos Ley (1970–1983)",
                            "symbol";
                        "ARL";
                    }
                    "ARM";
                    {
                        "displayName";
                        "Argentinischer Peso (1881–1970)",
                            "displayName-count-one";
                        "Argentinischer Peso (1881–1970)",
                            "displayName-count-other";
                        "Argentinische Pesos (1881–1970)",
                            "symbol";
                        "ARM";
                    }
                    "ARP";
                    {
                        "displayName";
                        "Argentinischer Peso (1983–1985)",
                            "displayName-count-one";
                        "Argentinischer Peso (1983–1985)",
                            "displayName-count-other";
                        "Argentinische Peso (1983–1985)",
                            "symbol";
                        "ARP";
                    }
                    "ARS";
                    {
                        "displayName";
                        "Argentinischer Peso",
                            "displayName-count-one";
                        "Argentinischer Peso",
                            "displayName-count-other";
                        "Argentinische Pesos",
                            "symbol";
                        "ARS",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "ATS";
                    {
                        "displayName";
                        "Österreichischer Schilling",
                            "displayName-count-one";
                        "Österreichischer Schilling",
                            "displayName-count-other";
                        "Österreichische Schilling",
                            "symbol";
                        "öS";
                    }
                    "AUD";
                    {
                        "displayName";
                        "Australischer Dollar",
                            "displayName-count-one";
                        "Australischer Dollar",
                            "displayName-count-other";
                        "Australische Dollar",
                            "symbol";
                        "AU$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "AWG";
                    {
                        "displayName";
                        "Aruba-Florin",
                            "displayName-count-one";
                        "Aruba-Florin",
                            "displayName-count-other";
                        "Aruba-Florin",
                            "symbol";
                        "AWG";
                    }
                    "AZM";
                    {
                        "displayName";
                        "Aserbaidschan-Manat (1993–2006)",
                            "displayName-count-one";
                        "Aserbaidschan-Manat (1993–2006)",
                            "displayName-count-other";
                        "Aserbaidschan-Manat (1993–2006)",
                            "symbol";
                        "AZM";
                    }
                    "AZN";
                    {
                        "displayName";
                        "Aserbaidschan-Manat",
                            "displayName-count-one";
                        "Aserbaidschan-Manat",
                            "displayName-count-other";
                        "Aserbaidschan-Manat",
                            "symbol";
                        "AZN";
                    }
                    "BAD";
                    {
                        "displayName";
                        "Bosnien und Herzegowina Dinar (1992–1994)",
                            "displayName-count-one";
                        "Bosnien und Herzegowina Dinar (1992–1994)",
                            "displayName-count-other";
                        "Bosnien und Herzegowina Dinar (1992–1994)",
                            "symbol";
                        "BAD";
                    }
                    "BAM";
                    {
                        "displayName";
                        "Bosnien und Herzegowina Konvertierbare Mark",
                            "displayName-count-one";
                        "Bosnien und Herzegowina Konvertierbare Mark",
                            "displayName-count-other";
                        "Bosnien und Herzegowina Konvertierbare Mark",
                            "symbol";
                        "BAM",
                            "symbol-alt-narrow";
                        "KM";
                    }
                    "BAN";
                    {
                        "displayName";
                        "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
                            "displayName-count-one";
                        "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
                            "displayName-count-other";
                        "Bosnien und Herzegowina Neue Dinar (1994–1997)",
                            "symbol";
                        "BAN";
                    }
                    "BBD";
                    {
                        "displayName";
                        "Barbados-Dollar",
                            "displayName-count-one";
                        "Barbados-Dollar",
                            "displayName-count-other";
                        "Barbados-Dollar",
                            "symbol";
                        "BBD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BDT";
                    {
                        "displayName";
                        "Bangladesch-Taka",
                            "displayName-count-one";
                        "Bangladesch-Taka",
                            "displayName-count-other";
                        "Bangladesch-Taka",
                            "symbol";
                        "BDT",
                            "symbol-alt-narrow";
                        "৳";
                    }
                    "BEC";
                    {
                        "displayName";
                        "Belgischer Franc (konvertibel)",
                            "displayName-count-one";
                        "Belgischer Franc (konvertibel)",
                            "displayName-count-other";
                        "Belgische Franc (konvertibel)",
                            "symbol";
                        "BEC";
                    }
                    "BEF";
                    {
                        "displayName";
                        "Belgischer Franc",
                            "displayName-count-one";
                        "Belgischer Franc",
                            "displayName-count-other";
                        "Belgische Franc",
                            "symbol";
                        "BEF";
                    }
                    "BEL";
                    {
                        "displayName";
                        "Belgischer Finanz-Franc",
                            "displayName-count-one";
                        "Belgischer Finanz-Franc",
                            "displayName-count-other";
                        "Belgische Finanz-Franc",
                            "symbol";
                        "BEL";
                    }
                    "BGL";
                    {
                        "displayName";
                        "Bulgarische Lew (1962–1999)",
                            "displayName-count-one";
                        "Bulgarische Lew (1962–1999)",
                            "displayName-count-other";
                        "Bulgarische Lew (1962–1999)",
                            "symbol";
                        "BGL";
                    }
                    "BGM";
                    {
                        "displayName";
                        "Bulgarischer Lew (1952–1962)",
                            "displayName-count-one";
                        "Bulgarischer Lew (1952–1962)",
                            "displayName-count-other";
                        "Bulgarische Lew (1952–1962)",
                            "symbol";
                        "BGK";
                    }
                    "BGN";
                    {
                        "displayName";
                        "Bulgarischer Lew",
                            "displayName-count-one";
                        "Bulgarischer Lew",
                            "displayName-count-other";
                        "Bulgarische Lew",
                            "symbol";
                        "BGN";
                    }
                    "BGO";
                    {
                        "displayName";
                        "Bulgarischer Lew (1879–1952)",
                            "displayName-count-one";
                        "Bulgarischer Lew (1879–1952)",
                            "displayName-count-other";
                        "Bulgarische Lew (1879–1952)",
                            "symbol";
                        "BGJ";
                    }
                    "BHD";
                    {
                        "displayName";
                        "Bahrain-Dinar",
                            "displayName-count-one";
                        "Bahrain-Dinar",
                            "displayName-count-other";
                        "Bahrain-Dinar",
                            "symbol";
                        "BHD";
                    }
                    "BIF";
                    {
                        "displayName";
                        "Burundi-Franc",
                            "displayName-count-one";
                        "Burundi-Franc",
                            "displayName-count-other";
                        "Burundi-Francs",
                            "symbol";
                        "BIF";
                    }
                    "BMD";
                    {
                        "displayName";
                        "Bermuda-Dollar",
                            "displayName-count-one";
                        "Bermuda-Dollar",
                            "displayName-count-other";
                        "Bermuda-Dollar",
                            "symbol";
                        "BMD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BND";
                    {
                        "displayName";
                        "Brunei-Dollar",
                            "displayName-count-one";
                        "Brunei-Dollar",
                            "displayName-count-other";
                        "Brunei-Dollar",
                            "symbol";
                        "BND",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BOB";
                    {
                        "displayName";
                        "Bolivanischer Boliviano",
                            "displayName-count-one";
                        "Bolivanischer Boliviano",
                            "displayName-count-other";
                        "Bolivianische Bolivianos",
                            "symbol";
                        "BOB",
                            "symbol-alt-narrow";
                        "Bs";
                    }
                    "BOL";
                    {
                        "displayName";
                        "Bolivianischer Boliviano (1863–1963)",
                            "displayName-count-one";
                        "Bolivianischer Boliviano (1863–1963)",
                            "displayName-count-other";
                        "Bolivianische Bolivianos (1863–1963)",
                            "symbol";
                        "BOL";
                    }
                    "BOP";
                    {
                        "displayName";
                        "Bolivianischer Peso",
                            "displayName-count-one";
                        "Bolivianischer Peso",
                            "displayName-count-other";
                        "Bolivianische Peso",
                            "symbol";
                        "BOP";
                    }
                    "BOV";
                    {
                        "displayName";
                        "Boliviansiche Mvdol",
                            "displayName-count-one";
                        "Boliviansiche Mvdol",
                            "displayName-count-other";
                        "Bolivianische Mvdol",
                            "symbol";
                        "BOV";
                    }
                    "BRB";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro Novo (1967–1986)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro Novo (1967–1986)",
                            "displayName-count-other";
                        "Brasilianische Cruzeiro Novo (1967–1986)",
                            "symbol";
                        "BRB";
                    }
                    "BRC";
                    {
                        "displayName";
                        "Brasilianischer Cruzado (1986–1989)",
                            "displayName-count-one";
                        "Brasilianischer Cruzado (1986–1989)",
                            "displayName-count-other";
                        "Brasilianische Cruzado (1986–1989)",
                            "symbol";
                        "BRC";
                    }
                    "BRE";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro (1990–1993)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro (1990–1993)",
                            "displayName-count-other";
                        "Brasilianische Cruzeiro (1990–1993)",
                            "symbol";
                        "BRE";
                    }
                    "BRL";
                    {
                        "displayName";
                        "Brasilianischer Real",
                            "displayName-count-one";
                        "Brasilianischer Real",
                            "displayName-count-other";
                        "Brasilianische Real",
                            "symbol";
                        "R$",
                            "symbol-alt-narrow";
                        "R$";
                    }
                    "BRN";
                    {
                        "displayName";
                        "Brasilianischer Cruzado Novo (1989–1990)",
                            "displayName-count-one";
                        "Brasilianischer Cruzado Novo (1989–1990)",
                            "displayName-count-other";
                        "Brasilianische Cruzado Novo (1989–1990)",
                            "symbol";
                        "BRN";
                    }
                    "BRR";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro (1993–1994)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro (1993–1994)",
                            "displayName-count-other";
                        "Brasilianische Cruzeiro (1993–1994)",
                            "symbol";
                        "BRR";
                    }
                    "BRZ";
                    {
                        "displayName";
                        "Brasilianischer Cruzeiro (1942–1967)",
                            "displayName-count-one";
                        "Brasilianischer Cruzeiro (1942–1967)",
                            "displayName-count-other";
                        "Brasilianischer Cruzeiro (1942–1967)",
                            "symbol";
                        "BRZ";
                    }
                    "BSD";
                    {
                        "displayName";
                        "Bahamas-Dollar",
                            "displayName-count-one";
                        "Bahamas-Dollar",
                            "displayName-count-other";
                        "Bahamas-Dollar",
                            "symbol";
                        "BSD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "BTN";
                    {
                        "displayName";
                        "Bhutan-Ngultrum",
                            "displayName-count-one";
                        "Bhutan-Ngultrum",
                            "displayName-count-other";
                        "Bhutan-Ngultrum",
                            "symbol";
                        "BTN";
                    }
                    "BUK";
                    {
                        "displayName";
                        "Birmanischer Kyat",
                            "displayName-count-one";
                        "Birmanischer Kyat",
                            "displayName-count-other";
                        "Birmanische Kyat",
                            "symbol";
                        "BUK";
                    }
                    "BWP";
                    {
                        "displayName";
                        "Botswanischer Pula",
                            "displayName-count-one";
                        "Botswanischer Pula",
                            "displayName-count-other";
                        "Botswanische Pula",
                            "symbol";
                        "BWP",
                            "symbol-alt-narrow";
                        "P";
                    }
                    "BYB";
                    {
                        "displayName";
                        "Belarus-Rubel (1994–1999)",
                            "displayName-count-one";
                        "Belarus-Rubel (1994–1999)",
                            "displayName-count-other";
                        "Belarus-Rubel (1994–1999)",
                            "symbol";
                        "BYB";
                    }
                    "BYN";
                    {
                        "displayName";
                        "Weißrussischer Rubel",
                            "displayName-count-one";
                        "Weißrussischer Rubel",
                            "displayName-count-other";
                        "Weißrussische Rubel",
                            "symbol";
                        "BYN",
                            "symbol-alt-narrow";
                        "р.";
                    }
                    "BYR";
                    {
                        "displayName";
                        "Weißrussischer Rubel (2000–2016)",
                            "displayName-count-one";
                        "Weißrussischer Rubel (2000–2016)",
                            "displayName-count-other";
                        "Weißrussische Rubel (2000–2016)",
                            "symbol";
                        "BYR";
                    }
                    "BZD";
                    {
                        "displayName";
                        "Belize-Dollar",
                            "displayName-count-one";
                        "Belize-Dollar",
                            "displayName-count-other";
                        "Belize-Dollar",
                            "symbol";
                        "BZD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CAD";
                    {
                        "displayName";
                        "Kanadischer Dollar",
                            "displayName-count-one";
                        "Kanadischer Dollar",
                            "displayName-count-other";
                        "Kanadische Dollar",
                            "symbol";
                        "CA$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CDF";
                    {
                        "displayName";
                        "Kongo-Franc",
                            "displayName-count-one";
                        "Kongo-Franc",
                            "displayName-count-other";
                        "Kongo-Francs",
                            "symbol";
                        "CDF";
                    }
                    "CHE";
                    {
                        "displayName";
                        "WIR-Euro",
                            "displayName-count-one";
                        "WIR-Euro",
                            "displayName-count-other";
                        "WIR-Euro",
                            "symbol";
                        "CHE";
                    }
                    "CHF";
                    {
                        "displayName";
                        "Schweizer Franken",
                            "displayName-count-one";
                        "Schweizer Franken",
                            "displayName-count-other";
                        "Schweizer Franken",
                            "symbol";
                        "CHF";
                    }
                    "CHW";
                    {
                        "displayName";
                        "WIR Franken",
                            "displayName-count-one";
                        "WIR Franken",
                            "displayName-count-other";
                        "WIR Franken",
                            "symbol";
                        "CHW";
                    }
                    "CLE";
                    {
                        "displayName";
                        "Chilenischer Escudo",
                            "displayName-count-one";
                        "Chilenischer Escudo",
                            "displayName-count-other";
                        "Chilenische Escudo",
                            "symbol";
                        "CLE";
                    }
                    "CLF";
                    {
                        "displayName";
                        "Chilenische Unidades de Fomento",
                            "displayName-count-one";
                        "Chilenische Unidades de Fomento",
                            "displayName-count-other";
                        "Chilenische Unidades de Fomento",
                            "symbol";
                        "CLF";
                    }
                    "CLP";
                    {
                        "displayName";
                        "Chilenischer Peso",
                            "displayName-count-one";
                        "Chilenischer Peso",
                            "displayName-count-other";
                        "Chilenische Pesos",
                            "symbol";
                        "CLP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CNX";
                    {
                        "displayName";
                        "Dollar der Chinesischen Volksbank",
                            "displayName-count-one";
                        "Dollar der Chinesischen Volksbank",
                            "displayName-count-other";
                        "Dollar der Chinesischen Volksbank",
                            "symbol";
                        "CNX";
                    }
                    "CNY";
                    {
                        "displayName";
                        "Renminbi Yuan",
                            "displayName-count-one";
                        "Chinesischer Yuan",
                            "displayName-count-other";
                        "Renminbi Yuan",
                            "symbol";
                        "CN¥",
                            "symbol-alt-narrow";
                        "¥";
                    }
                    "COP";
                    {
                        "displayName";
                        "Kolumbianischer Peso",
                            "displayName-count-one";
                        "Kolumbianischer Peso",
                            "displayName-count-other";
                        "Kolumbianische Pesos",
                            "symbol";
                        "COP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "COU";
                    {
                        "displayName";
                        "Kolumbianische Unidades de valor real",
                            "displayName-count-one";
                        "Kolumbianische Unidad de valor real",
                            "displayName-count-other";
                        "Kolumbianische Unidades de valor real",
                            "symbol";
                        "COU";
                    }
                    "CRC";
                    {
                        "displayName";
                        "Costa-Rica-Colón",
                            "displayName-count-one";
                        "Costa-Rica-Colón",
                            "displayName-count-other";
                        "Costa-Rica-Colón",
                            "symbol";
                        "CRC",
                            "symbol-alt-narrow";
                        "₡";
                    }
                    "CSD";
                    {
                        "displayName";
                        "Serbischer Dinar (2002–2006)",
                            "displayName-count-one";
                        "Serbischer Dinar (2002–2006)",
                            "displayName-count-other";
                        "Serbische Dinar (2002–2006)",
                            "symbol";
                        "CSD";
                    }
                    "CSK";
                    {
                        "displayName";
                        "Tschechoslowakische Krone",
                            "displayName-count-one";
                        "Tschechoslowakische Kronen",
                            "displayName-count-other";
                        "Tschechoslowakische Kronen",
                            "symbol";
                        "CSK";
                    }
                    "CUC";
                    {
                        "displayName";
                        "Kubanischer Peso (konvertibel)",
                            "displayName-count-one";
                        "Kubanischer Peso (konvertibel)",
                            "displayName-count-other";
                        "Kubanische Pesos (konvertibel)",
                            "symbol";
                        "CUC",
                            "symbol-alt-narrow";
                        "Cub$";
                    }
                    "CUP";
                    {
                        "displayName";
                        "Kubanischer Peso",
                            "displayName-count-one";
                        "Kubanischer Peso",
                            "displayName-count-other";
                        "Kubanische Pesos",
                            "symbol";
                        "CUP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "CVE";
                    {
                        "displayName";
                        "Cabo-Verde-Escudo",
                            "displayName-count-one";
                        "Cabo-Verde-Escudo",
                            "displayName-count-other";
                        "Cabo-Verde-Escudos",
                            "symbol";
                        "CVE";
                    }
                    "CYP";
                    {
                        "displayName";
                        "Zypern-Pfund",
                            "displayName-count-one";
                        "Zypern Pfund",
                            "displayName-count-other";
                        "Zypern Pfund",
                            "symbol";
                        "CYP";
                    }
                    "CZK";
                    {
                        "displayName";
                        "Tschechische Krone",
                            "displayName-count-one";
                        "Tschechische Krone",
                            "displayName-count-other";
                        "Tschechische Kronen",
                            "symbol";
                        "CZK",
                            "symbol-alt-narrow";
                        "Kč";
                    }
                    "DDM";
                    {
                        "displayName";
                        "Mark der DDR",
                            "displayName-count-one";
                        "Mark der DDR",
                            "displayName-count-other";
                        "Mark der DDR",
                            "symbol";
                        "DDM";
                    }
                    "DEM";
                    {
                        "displayName";
                        "Deutsche Mark",
                            "displayName-count-one";
                        "Deutsche Mark",
                            "displayName-count-other";
                        "Deutsche Mark",
                            "symbol";
                        "DM";
                    }
                    "DJF";
                    {
                        "displayName";
                        "Dschibuti-Franc",
                            "displayName-count-one";
                        "Dschibuti-Franc",
                            "displayName-count-other";
                        "Dschibuti-Franc",
                            "symbol";
                        "DJF";
                    }
                    "DKK";
                    {
                        "displayName";
                        "Dänische Krone",
                            "displayName-count-one";
                        "Dänische Krone",
                            "displayName-count-other";
                        "Dänische Kronen",
                            "symbol";
                        "DKK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "DOP";
                    {
                        "displayName";
                        "Dominikanischer Peso",
                            "displayName-count-one";
                        "Dominikanischer Peso",
                            "displayName-count-other";
                        "Dominikanische Pesos",
                            "symbol";
                        "DOP",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "DZD";
                    {
                        "displayName";
                        "Algerischer Dinar",
                            "displayName-count-one";
                        "Algerischer Dinar",
                            "displayName-count-other";
                        "Algerische Dinar",
                            "symbol";
                        "DZD";
                    }
                    "ECS";
                    {
                        "displayName";
                        "Ecuadorianischer Sucre",
                            "displayName-count-one";
                        "Ecuadorianischer Sucre",
                            "displayName-count-other";
                        "Ecuadorianische Sucre",
                            "symbol";
                        "ECS";
                    }
                    "ECV";
                    {
                        "displayName";
                        "Verrechnungseinheit für Ecuador",
                            "displayName-count-one";
                        "Verrechnungseinheiten für Ecuador",
                            "displayName-count-other";
                        "Verrechnungseinheiten für Ecuador",
                            "symbol";
                        "ECV";
                    }
                    "EEK";
                    {
                        "displayName";
                        "Estnische Krone",
                            "displayName-count-one";
                        "Estnische Krone",
                            "displayName-count-other";
                        "Estnische Kronen",
                            "symbol";
                        "EEK";
                    }
                    "EGP";
                    {
                        "displayName";
                        "Ägyptisches Pfund",
                            "displayName-count-one";
                        "Ägyptisches Pfund",
                            "displayName-count-other";
                        "Ägyptische Pfund",
                            "symbol";
                        "EGP",
                            "symbol-alt-narrow";
                        "E£";
                    }
                    "ERN";
                    {
                        "displayName";
                        "Eritreischer Nakfa",
                            "displayName-count-one";
                        "Eritreischer Nakfa",
                            "displayName-count-other";
                        "Eritreische Nakfa",
                            "symbol";
                        "ERN";
                    }
                    "ESA";
                    {
                        "displayName";
                        "Spanische Peseta (A–Konten)",
                            "displayName-count-one";
                        "Spanische Peseta (A–Konten)",
                            "displayName-count-other";
                        "Spanische Peseten (A–Konten)",
                            "symbol";
                        "ESA";
                    }
                    "ESB";
                    {
                        "displayName";
                        "Spanische Peseta (konvertibel)",
                            "displayName-count-one";
                        "Spanische Peseta (konvertibel)",
                            "displayName-count-other";
                        "Spanische Peseten (konvertibel)",
                            "symbol";
                        "ESB";
                    }
                    "ESP";
                    {
                        "displayName";
                        "Spanische Peseta",
                            "displayName-count-one";
                        "Spanische Peseta",
                            "displayName-count-other";
                        "Spanische Peseten",
                            "symbol";
                        "ESP",
                            "symbol-alt-narrow";
                        "₧";
                    }
                    "ETB";
                    {
                        "displayName";
                        "Äthiopischer Birr",
                            "displayName-count-one";
                        "Äthiopischer Birr",
                            "displayName-count-other";
                        "Äthiopische Birr",
                            "symbol";
                        "ETB";
                    }
                    "EUR";
                    {
                        "displayName";
                        "Euro",
                            "displayName-count-one";
                        "Euro",
                            "displayName-count-other";
                        "Euro",
                            "symbol";
                        "€",
                            "symbol-alt-narrow";
                        "€";
                    }
                    "FIM";
                    {
                        "displayName";
                        "Finnische Mark",
                            "displayName-count-one";
                        "Finnische Mark",
                            "displayName-count-other";
                        "Finnische Mark",
                            "symbol";
                        "FIM";
                    }
                    "FJD";
                    {
                        "displayName";
                        "Fidschi-Dollar",
                            "displayName-count-one";
                        "Fidschi-Dollar",
                            "displayName-count-other";
                        "Fidschi-Dollar",
                            "symbol";
                        "FJD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "FKP";
                    {
                        "displayName";
                        "Falkland-Pfund",
                            "displayName-count-one";
                        "Falkland-Pfund",
                            "displayName-count-other";
                        "Falkland-Pfund",
                            "symbol";
                        "FKP",
                            "symbol-alt-narrow";
                        "Fl£";
                    }
                    "FRF";
                    {
                        "displayName";
                        "Französischer Franc",
                            "displayName-count-one";
                        "Französischer Franc",
                            "displayName-count-other";
                        "Französische Franc",
                            "symbol";
                        "FRF";
                    }
                    "GBP";
                    {
                        "displayName";
                        "Britisches Pfund",
                            "displayName-count-one";
                        "Britisches Pfund",
                            "displayName-count-other";
                        "Britische Pfund",
                            "symbol";
                        "£",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "GEK";
                    {
                        "displayName";
                        "Georgischer Kupon Larit",
                            "displayName-count-one";
                        "Georgischer Kupon Larit",
                            "displayName-count-other";
                        "Georgische Kupon Larit",
                            "symbol";
                        "GEK";
                    }
                    "GEL";
                    {
                        "displayName";
                        "Georgischer Lari",
                            "displayName-count-one";
                        "Georgischer Lari",
                            "displayName-count-other";
                        "Georgische Lari",
                            "symbol";
                        "GEL",
                            "symbol-alt-narrow";
                        "₾",
                            "symbol-alt-variant";
                        "₾";
                    }
                    "GHC";
                    {
                        "displayName";
                        "Ghanaischer Cedi (1979–2007)",
                            "displayName-count-one";
                        "Ghanaischer Cedi (1979–2007)",
                            "displayName-count-other";
                        "Ghanaische Cedi (1979–2007)",
                            "symbol";
                        "GHC";
                    }
                    "GHS";
                    {
                        "displayName";
                        "Ghanaischer Cedi",
                            "displayName-count-one";
                        "Ghanaischer Cedi",
                            "displayName-count-other";
                        "Ghanaische Cedi",
                            "symbol";
                        "GHS";
                    }
                    "GIP";
                    {
                        "displayName";
                        "Gibraltar-Pfund",
                            "displayName-count-one";
                        "Gibraltar-Pfund",
                            "displayName-count-other";
                        "Gibraltar Pfund",
                            "symbol";
                        "GIP",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "GMD";
                    {
                        "displayName";
                        "Gambia-Dalasi",
                            "displayName-count-one";
                        "Gambia-Dalasi",
                            "displayName-count-other";
                        "Gambia-Dalasi",
                            "symbol";
                        "GMD";
                    }
                    "GNF";
                    {
                        "displayName";
                        "Guinea-Franc",
                            "displayName-count-one";
                        "Guinea-Franc",
                            "displayName-count-other";
                        "Guinea-Franc",
                            "symbol";
                        "GNF",
                            "symbol-alt-narrow";
                        "F.G.";
                    }
                    "GNS";
                    {
                        "displayName";
                        "Guineischer Syli",
                            "displayName-count-one";
                        "Guineischer Syli",
                            "displayName-count-other";
                        "Guineische Syli",
                            "symbol";
                        "GNS";
                    }
                    "GQE";
                    {
                        "displayName";
                        "Äquatorialguinea-Ekwele",
                            "displayName-count-one";
                        "Äquatorialguinea-Ekwele",
                            "displayName-count-other";
                        "Äquatorialguinea-Ekwele",
                            "symbol";
                        "GQE";
                    }
                    "GRD";
                    {
                        "displayName";
                        "Griechische Drachme",
                            "displayName-count-one";
                        "Griechische Drachme",
                            "displayName-count-other";
                        "Griechische Drachmen",
                            "symbol";
                        "GRD";
                    }
                    "GTQ";
                    {
                        "displayName";
                        "Guatemaltekischer Quetzal",
                            "displayName-count-one";
                        "Guatemaltekischer Quetzal",
                            "displayName-count-other";
                        "Guatemaltekische Quetzales",
                            "symbol";
                        "GTQ",
                            "symbol-alt-narrow";
                        "Q";
                    }
                    "GWE";
                    {
                        "displayName";
                        "Portugiesisch Guinea Escudo",
                            "displayName-count-one";
                        "Portugiesisch Guinea Escudo",
                            "displayName-count-other";
                        "Portugiesisch Guinea Escudo",
                            "symbol";
                        "GWE";
                    }
                    "GWP";
                    {
                        "displayName";
                        "Guinea-Bissau Peso",
                            "displayName-count-one";
                        "Guinea-Bissau Peso",
                            "displayName-count-other";
                        "Guinea-Bissau Pesos",
                            "symbol";
                        "GWP";
                    }
                    "GYD";
                    {
                        "displayName";
                        "Guyana-Dollar",
                            "displayName-count-one";
                        "Guyana-Dollar",
                            "displayName-count-other";
                        "Guyana-Dollar",
                            "symbol";
                        "GYD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "HKD";
                    {
                        "displayName";
                        "Hongkong-Dollar",
                            "displayName-count-one";
                        "Hongkong-Dollar",
                            "displayName-count-other";
                        "Hongkong-Dollar",
                            "symbol";
                        "HK$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "HNL";
                    {
                        "displayName";
                        "Honduras-Lempira",
                            "displayName-count-one";
                        "Honduras-Lempira",
                            "displayName-count-other";
                        "Honduras-Lempira",
                            "symbol";
                        "HNL",
                            "symbol-alt-narrow";
                        "L";
                    }
                    "HRD";
                    {
                        "displayName";
                        "Kroatischer Dinar",
                            "displayName-count-one";
                        "Kroatischer Dinar",
                            "displayName-count-other";
                        "Kroatische Dinar",
                            "symbol";
                        "HRD";
                    }
                    "HRK";
                    {
                        "displayName";
                        "Kroatischer Kuna",
                            "displayName-count-one";
                        "Kroatischer Kuna",
                            "displayName-count-other";
                        "Kroatische Kuna",
                            "symbol";
                        "HRK",
                            "symbol-alt-narrow";
                        "kn";
                    }
                    "HTG";
                    {
                        "displayName";
                        "Haitianische Gourde",
                            "displayName-count-one";
                        "Haitianische Gourde",
                            "displayName-count-other";
                        "Haitianische Gourdes",
                            "symbol";
                        "HTG";
                    }
                    "HUF";
                    {
                        "displayName";
                        "Ungarischer Forint",
                            "displayName-count-one";
                        "Ungarischer Forint",
                            "displayName-count-other";
                        "Ungarische Forint",
                            "symbol";
                        "HUF",
                            "symbol-alt-narrow";
                        "Ft";
                    }
                    "IDR";
                    {
                        "displayName";
                        "Indonesische Rupiah",
                            "displayName-count-one";
                        "Indonesische Rupiah",
                            "displayName-count-other";
                        "Indonesische Rupiah",
                            "symbol";
                        "IDR",
                            "symbol-alt-narrow";
                        "Rp";
                    }
                    "IEP";
                    {
                        "displayName";
                        "Irisches Pfund",
                            "displayName-count-one";
                        "Irisches Pfund",
                            "displayName-count-other";
                        "Irische Pfund",
                            "symbol";
                        "IEP";
                    }
                    "ILP";
                    {
                        "displayName";
                        "Israelisches Pfund",
                            "displayName-count-one";
                        "Israelisches Pfund",
                            "displayName-count-other";
                        "Israelische Pfund",
                            "symbol";
                        "ILP";
                    }
                    "ILR";
                    {
                        "displayName";
                        "Israelischer Schekel (1980–1985)",
                            "displayName-count-one";
                        "Israelischer Schekel (1980–1985)",
                            "displayName-count-other";
                        "Israelische Schekel (1980–1985)";
                    }
                    "ILS";
                    {
                        "displayName";
                        "Israelischer Neuer Schekel",
                            "displayName-count-one";
                        "Israelischer Neuer Schekel",
                            "displayName-count-other";
                        "Israelische Neue Schekel",
                            "symbol";
                        "₪",
                            "symbol-alt-narrow";
                        "₪";
                    }
                    "INR";
                    {
                        "displayName";
                        "Indische Rupie",
                            "displayName-count-one";
                        "Indische Rupie",
                            "displayName-count-other";
                        "Indische Rupien",
                            "symbol";
                        "₹",
                            "symbol-alt-narrow";
                        "₹";
                    }
                    "IQD";
                    {
                        "displayName";
                        "Irakischer Dinar",
                            "displayName-count-one";
                        "Irakischer Dinar",
                            "displayName-count-other";
                        "Irakische Dinar",
                            "symbol";
                        "IQD";
                    }
                    "IRR";
                    {
                        "displayName";
                        "Iranischer Rial",
                            "displayName-count-one";
                        "Iranischer Rial",
                            "displayName-count-other";
                        "Iranische Rial",
                            "symbol";
                        "IRR";
                    }
                    "ISJ";
                    {
                        "displayName";
                        "Isländische Krone (1918–1981)",
                            "displayName-count-one";
                        "Isländische Krone (1918–1981)",
                            "displayName-count-other";
                        "Isländische Kronen (1918–1981)";
                    }
                    "ISK";
                    {
                        "displayName";
                        "Isländische Krone",
                            "displayName-count-one";
                        "Isländische Krone",
                            "displayName-count-other";
                        "Isländische Kronen",
                            "symbol";
                        "ISK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "ITL";
                    {
                        "displayName";
                        "Italienische Lira",
                            "displayName-count-one";
                        "Italienische Lira",
                            "displayName-count-other";
                        "Italienische Lire",
                            "symbol";
                        "ITL";
                    }
                    "JMD";
                    {
                        "displayName";
                        "Jamaika-Dollar",
                            "displayName-count-one";
                        "Jamaika-Dollar",
                            "displayName-count-other";
                        "Jamaika-Dollar",
                            "symbol";
                        "JMD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "JOD";
                    {
                        "displayName";
                        "Jordanischer Dinar",
                            "displayName-count-one";
                        "Jordanischer Dinar",
                            "displayName-count-other";
                        "Jordanische Dinar",
                            "symbol";
                        "JOD";
                    }
                    "JPY";
                    {
                        "displayName";
                        "Japanischer Yen",
                            "displayName-count-one";
                        "Japanischer Yen",
                            "displayName-count-other";
                        "Japanische Yen",
                            "symbol";
                        "¥",
                            "symbol-alt-narrow";
                        "¥";
                    }
                    "KES";
                    {
                        "displayName";
                        "Kenia-Schilling",
                            "displayName-count-one";
                        "Kenia-Schilling",
                            "displayName-count-other";
                        "Kenia-Schilling",
                            "symbol";
                        "KES";
                    }
                    "KGS";
                    {
                        "displayName";
                        "Kirgisischer Som",
                            "displayName-count-one";
                        "Kirgisischer Som",
                            "displayName-count-other";
                        "Kirgisische Som",
                            "symbol";
                        "KGS";
                    }
                    "KHR";
                    {
                        "displayName";
                        "Kambodschanischer Riel",
                            "displayName-count-one";
                        "Kambodschanischer Riel",
                            "displayName-count-other";
                        "Kambodschanische Riel",
                            "symbol";
                        "KHR",
                            "symbol-alt-narrow";
                        "៛";
                    }
                    "KMF";
                    {
                        "displayName";
                        "Komoren-Franc",
                            "displayName-count-one";
                        "Komoren-Franc",
                            "displayName-count-other";
                        "Komoren-Francs",
                            "symbol";
                        "KMF",
                            "symbol-alt-narrow";
                        "FC";
                    }
                    "KPW";
                    {
                        "displayName";
                        "Nordkoreanischer Won",
                            "displayName-count-one";
                        "Nordkoreanischer Won",
                            "displayName-count-other";
                        "Nordkoreanische Won",
                            "symbol";
                        "KPW",
                            "symbol-alt-narrow";
                        "₩";
                    }
                    "KRH";
                    {
                        "displayName";
                        "Südkoreanischer Hwan (1953–1962)",
                            "displayName-count-one";
                        "Südkoreanischer Hwan (1953–1962)",
                            "displayName-count-other";
                        "Südkoreanischer Hwan (1953–1962)",
                            "symbol";
                        "KRH";
                    }
                    "KRO";
                    {
                        "displayName";
                        "Südkoreanischer Won (1945–1953)",
                            "displayName-count-one";
                        "Südkoreanischer Won (1945–1953)",
                            "displayName-count-other";
                        "Südkoreanischer Won (1945–1953)",
                            "symbol";
                        "KRO";
                    }
                    "KRW";
                    {
                        "displayName";
                        "Südkoreanischer Won",
                            "displayName-count-one";
                        "Südkoreanischer Won",
                            "displayName-count-other";
                        "Südkoreanische Won",
                            "symbol";
                        "₩",
                            "symbol-alt-narrow";
                        "₩";
                    }
                    "KWD";
                    {
                        "displayName";
                        "Kuwait-Dinar",
                            "displayName-count-one";
                        "Kuwait-Dinar",
                            "displayName-count-other";
                        "Kuwait-Dinar",
                            "symbol";
                        "KWD";
                    }
                    "KYD";
                    {
                        "displayName";
                        "Kaiman-Dollar",
                            "displayName-count-one";
                        "Kaiman-Dollar",
                            "displayName-count-other";
                        "Kaiman-Dollar",
                            "symbol";
                        "KYD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "KZT";
                    {
                        "displayName";
                        "Kasachischer Tenge",
                            "displayName-count-one";
                        "Kasachischer Tenge",
                            "displayName-count-other";
                        "Kasachische Tenge",
                            "symbol";
                        "KZT",
                            "symbol-alt-narrow";
                        "₸";
                    }
                    "LAK";
                    {
                        "displayName";
                        "Laotischer Kip",
                            "displayName-count-one";
                        "Laotischer Kip",
                            "displayName-count-other";
                        "Laotische Kip",
                            "symbol";
                        "LAK",
                            "symbol-alt-narrow";
                        "₭";
                    }
                    "LBP";
                    {
                        "displayName";
                        "Libanesisches Pfund",
                            "displayName-count-one";
                        "Libanesisches Pfund",
                            "displayName-count-other";
                        "Libanesische Pfund",
                            "symbol";
                        "LBP",
                            "symbol-alt-narrow";
                        "L£";
                    }
                    "LKR";
                    {
                        "displayName";
                        "Sri-Lanka-Rupie",
                            "displayName-count-one";
                        "Sri-Lanka-Rupie",
                            "displayName-count-other";
                        "Sri-Lanka-Rupien",
                            "symbol";
                        "LKR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "LRD";
                    {
                        "displayName";
                        "Liberianischer Dollar",
                            "displayName-count-one";
                        "Liberianischer Dollar",
                            "displayName-count-other";
                        "Liberianische Dollar",
                            "symbol";
                        "LRD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "LSL";
                    {
                        "displayName";
                        "Loti",
                            "displayName-count-one";
                        "Loti",
                            "displayName-count-other";
                        "Loti",
                            "symbol";
                        "LSL";
                    }
                    "LTL";
                    {
                        "displayName";
                        "Litauischer Litas",
                            "displayName-count-one";
                        "Litauischer Litas",
                            "displayName-count-other";
                        "Litauische Litas",
                            "symbol";
                        "LTL",
                            "symbol-alt-narrow";
                        "Lt";
                    }
                    "LTT";
                    {
                        "displayName";
                        "Litauischer Talonas",
                            "displayName-count-one";
                        "Litauische Talonas",
                            "displayName-count-other";
                        "Litauische Talonas",
                            "symbol";
                        "LTT";
                    }
                    "LUC";
                    {
                        "displayName";
                        "Luxemburgischer Franc (konvertibel)",
                            "displayName-count-one";
                        "Luxemburgische Franc (konvertibel)",
                            "displayName-count-other";
                        "Luxemburgische Franc (konvertibel)",
                            "symbol";
                        "LUC";
                    }
                    "LUF";
                    {
                        "displayName";
                        "Luxemburgischer Franc",
                            "displayName-count-one";
                        "Luxemburgische Franc",
                            "displayName-count-other";
                        "Luxemburgische Franc",
                            "symbol";
                        "LUF";
                    }
                    "LUL";
                    {
                        "displayName";
                        "Luxemburgischer Finanz-Franc",
                            "displayName-count-one";
                        "Luxemburgische Finanz-Franc",
                            "displayName-count-other";
                        "Luxemburgische Finanz-Franc",
                            "symbol";
                        "LUL";
                    }
                    "LVL";
                    {
                        "displayName";
                        "Lettischer Lats",
                            "displayName-count-one";
                        "Lettischer Lats",
                            "displayName-count-other";
                        "Lettische Lats",
                            "symbol";
                        "LVL",
                            "symbol-alt-narrow";
                        "Ls";
                    }
                    "LVR";
                    {
                        "displayName";
                        "Lettischer Rubel",
                            "displayName-count-one";
                        "Lettische Rubel",
                            "displayName-count-other";
                        "Lettische Rubel",
                            "symbol";
                        "LVR";
                    }
                    "LYD";
                    {
                        "displayName";
                        "Libyscher Dinar",
                            "displayName-count-one";
                        "Libyscher Dinar",
                            "displayName-count-other";
                        "Libysche Dinar",
                            "symbol";
                        "LYD";
                    }
                    "MAD";
                    {
                        "displayName";
                        "Marokkanischer Dirham",
                            "displayName-count-one";
                        "Marokkanischer Dirham",
                            "displayName-count-other";
                        "Marokkanische Dirham",
                            "symbol";
                        "MAD";
                    }
                    "MAF";
                    {
                        "displayName";
                        "Marokkanischer Franc",
                            "displayName-count-one";
                        "Marokkanische Franc",
                            "displayName-count-other";
                        "Marokkanische Franc",
                            "symbol";
                        "MAF";
                    }
                    "MCF";
                    {
                        "displayName";
                        "Monegassischer Franc",
                            "displayName-count-one";
                        "Monegassischer Franc",
                            "displayName-count-other";
                        "Monegassische Franc",
                            "symbol";
                        "MCF";
                    }
                    "MDC";
                    {
                        "displayName";
                        "Moldau-Cupon",
                            "displayName-count-one";
                        "Moldau-Cupon",
                            "displayName-count-other";
                        "Moldau-Cupon",
                            "symbol";
                        "MDC";
                    }
                    "MDL";
                    {
                        "displayName";
                        "Moldau-Leu",
                            "displayName-count-one";
                        "Moldau-Leu",
                            "displayName-count-other";
                        "Moldau-Leu",
                            "symbol";
                        "MDL";
                    }
                    "MGA";
                    {
                        "displayName";
                        "Madagaskar-Ariary",
                            "displayName-count-one";
                        "Madagaskar-Ariary",
                            "displayName-count-other";
                        "Madagaskar-Ariary",
                            "symbol";
                        "MGA",
                            "symbol-alt-narrow";
                        "Ar";
                    }
                    "MGF";
                    {
                        "displayName";
                        "Madagaskar-Franc",
                            "displayName-count-one";
                        "Madagaskar-Franc",
                            "displayName-count-other";
                        "Madagaskar-Franc",
                            "symbol";
                        "MGF";
                    }
                    "MKD";
                    {
                        "displayName";
                        "Mazedonischer Denar",
                            "displayName-count-one";
                        "Mazedonischer Denar",
                            "displayName-count-other";
                        "Mazedonische Denari",
                            "symbol";
                        "MKD";
                    }
                    "MKN";
                    {
                        "displayName";
                        "Mazedonischer Denar (1992–1993)",
                            "displayName-count-one";
                        "Mazedonischer Denar (1992–1993)",
                            "displayName-count-other";
                        "Mazedonische Denar (1992–1993)",
                            "symbol";
                        "MKN";
                    }
                    "MLF";
                    {
                        "displayName";
                        "Malischer Franc",
                            "displayName-count-one";
                        "Malische Franc",
                            "displayName-count-other";
                        "Malische Franc",
                            "symbol";
                        "MLF";
                    }
                    "MMK";
                    {
                        "displayName";
                        "Myanmarischer Kyat",
                            "displayName-count-one";
                        "Myanmarischer Kyat",
                            "displayName-count-other";
                        "Myanmarische Kyat",
                            "symbol";
                        "MMK",
                            "symbol-alt-narrow";
                        "K";
                    }
                    "MNT";
                    {
                        "displayName";
                        "Mongolischer Tögrög",
                            "displayName-count-one";
                        "Mongolischer Tögrög",
                            "displayName-count-other";
                        "Mongolische Tögrög",
                            "symbol";
                        "MNT",
                            "symbol-alt-narrow";
                        "₮";
                    }
                    "MOP";
                    {
                        "displayName";
                        "Macao-Pataca",
                            "displayName-count-one";
                        "Macao-Pataca",
                            "displayName-count-other";
                        "Macao-Pataca",
                            "symbol";
                        "MOP";
                    }
                    "MRO";
                    {
                        "displayName";
                        "Mauretanischer Ouguiya",
                            "displayName-count-one";
                        "Mauretanischer Ouguiya",
                            "displayName-count-other";
                        "Mauretanische Ouguiya",
                            "symbol";
                        "MRO";
                    }
                    "MTL";
                    {
                        "displayName";
                        "Maltesische Lira",
                            "displayName-count-one";
                        "Maltesische Lira",
                            "displayName-count-other";
                        "Maltesische Lira",
                            "symbol";
                        "MTL";
                    }
                    "MTP";
                    {
                        "displayName";
                        "Maltesisches Pfund",
                            "displayName-count-one";
                        "Maltesische Pfund",
                            "displayName-count-other";
                        "Maltesische Pfund",
                            "symbol";
                        "MTP";
                    }
                    "MUR";
                    {
                        "displayName";
                        "Mauritius-Rupie",
                            "displayName-count-one";
                        "Mauritius-Rupie",
                            "displayName-count-other";
                        "Mauritius-Rupien",
                            "symbol";
                        "MUR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "MVP";
                    {
                        "displayName";
                        "Malediven-Rupie (alt)",
                            "displayName-count-one";
                        "Malediven-Rupie (alt)",
                            "displayName-count-other";
                        "Malediven-Rupien (alt)";
                    }
                    "MVR";
                    {
                        "displayName";
                        "Malediven-Rufiyaa",
                            "displayName-count-one";
                        "Malediven-Rufiyaa",
                            "displayName-count-other";
                        "Malediven-Rupien",
                            "symbol";
                        "MVR";
                    }
                    "MWK";
                    {
                        "displayName";
                        "Malawi-Kwacha",
                            "displayName-count-one";
                        "Malawi-Kwacha",
                            "displayName-count-other";
                        "Malawi-Kwacha",
                            "symbol";
                        "MWK";
                    }
                    "MXN";
                    {
                        "displayName";
                        "Mexikanischer Peso",
                            "displayName-count-one";
                        "Mexikanischer Peso",
                            "displayName-count-other";
                        "Mexikanische Pesos",
                            "symbol";
                        "MX$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "MXP";
                    {
                        "displayName";
                        "Mexikanischer Silber-Peso (1861–1992)",
                            "displayName-count-one";
                        "Mexikanische Silber-Peso (1861–1992)",
                            "displayName-count-other";
                        "Mexikanische Silber-Pesos (1861–1992)",
                            "symbol";
                        "MXP";
                    }
                    "MXV";
                    {
                        "displayName";
                        "Mexicanischer Unidad de Inversion (UDI)",
                            "displayName-count-one";
                        "Mexicanischer Unidad de Inversion (UDI)",
                            "displayName-count-other";
                        "Mexikanische Unidad de Inversion (UDI)",
                            "symbol";
                        "MXV";
                    }
                    "MYR";
                    {
                        "displayName";
                        "Malaysischer Ringgit",
                            "displayName-count-one";
                        "Malaysischer Ringgit",
                            "displayName-count-other";
                        "Malaysische Ringgit",
                            "symbol";
                        "MYR",
                            "symbol-alt-narrow";
                        "RM";
                    }
                    "MZE";
                    {
                        "displayName";
                        "Mosambikanischer Escudo",
                            "displayName-count-one";
                        "Mozambikanische Escudo",
                            "displayName-count-other";
                        "Mozambikanische Escudo",
                            "symbol";
                        "MZE";
                    }
                    "MZM";
                    {
                        "displayName";
                        "Mosambikanischer Metical (1980–2006)",
                            "displayName-count-one";
                        "Mosambikanischer Metical (1980–2006)",
                            "displayName-count-other";
                        "Mosambikanische Meticais (1980–2006)",
                            "symbol";
                        "MZM";
                    }
                    "MZN";
                    {
                        "displayName";
                        "Mosambikanischer Metical",
                            "displayName-count-one";
                        "Mosambikanischer Metical",
                            "displayName-count-other";
                        "Mosambikanische Meticais",
                            "symbol";
                        "MZN";
                    }
                    "NAD";
                    {
                        "displayName";
                        "Namibia-Dollar",
                            "displayName-count-one";
                        "Namibia-Dollar",
                            "displayName-count-other";
                        "Namibia-Dollar",
                            "symbol";
                        "NAD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "NGN";
                    {
                        "displayName";
                        "Nigerianischer Naira",
                            "displayName-count-one";
                        "Nigerianischer Naira",
                            "displayName-count-other";
                        "Nigerianische Naira",
                            "symbol";
                        "NGN",
                            "symbol-alt-narrow";
                        "₦";
                    }
                    "NIC";
                    {
                        "displayName";
                        "Nicaraguanischer Córdoba (1988–1991)",
                            "displayName-count-one";
                        "Nicaraguanischer Córdoba (1988–1991)",
                            "displayName-count-other";
                        "Nicaraguanische Córdoba (1988–1991)",
                            "symbol";
                        "NIC";
                    }
                    "NIO";
                    {
                        "displayName";
                        "Nicaragua-Córdoba",
                            "displayName-count-one";
                        "Nicaragua-Córdoba",
                            "displayName-count-other";
                        "Nicaragua-Córdobas",
                            "symbol";
                        "NIO",
                            "symbol-alt-narrow";
                        "C$";
                    }
                    "NLG";
                    {
                        "displayName";
                        "Niederländischer Gulden",
                            "displayName-count-one";
                        "Niederländischer Gulden",
                            "displayName-count-other";
                        "Niederländische Gulden",
                            "symbol";
                        "NLG";
                    }
                    "NOK";
                    {
                        "displayName";
                        "Norwegische Krone",
                            "displayName-count-one";
                        "Norwegische Krone",
                            "displayName-count-other";
                        "Norwegische Kronen",
                            "symbol";
                        "NOK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "NPR";
                    {
                        "displayName";
                        "Nepalesische Rupie",
                            "displayName-count-one";
                        "Nepalesische Rupie",
                            "displayName-count-other";
                        "Nepalesische Rupien",
                            "symbol";
                        "NPR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "NZD";
                    {
                        "displayName";
                        "Neuseeland-Dollar",
                            "displayName-count-one";
                        "Neuseeland-Dollar",
                            "displayName-count-other";
                        "Neuseeland-Dollar",
                            "symbol";
                        "NZ$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "OMR";
                    {
                        "displayName";
                        "Omanischer Rial",
                            "displayName-count-one";
                        "Omanischer Rial",
                            "displayName-count-other";
                        "Omanische Rials",
                            "symbol";
                        "OMR";
                    }
                    "PAB";
                    {
                        "displayName";
                        "Panamaischer Balboa",
                            "displayName-count-one";
                        "Panamaischer Balboa",
                            "displayName-count-other";
                        "Panamaische Balboas",
                            "symbol";
                        "PAB";
                    }
                    "PEI";
                    {
                        "displayName";
                        "Peruanischer Inti",
                            "displayName-count-one";
                        "Peruanische Inti",
                            "displayName-count-other";
                        "Peruanische Inti",
                            "symbol";
                        "PEI";
                    }
                    "PEN";
                    {
                        "displayName";
                        "Peruanischer Sol",
                            "displayName-count-one";
                        "Peruanischer Sol",
                            "displayName-count-other";
                        "Peruanische Sol",
                            "symbol";
                        "PEN";
                    }
                    "PES";
                    {
                        "displayName";
                        "Peruanischer Sol (1863–1965)",
                            "displayName-count-one";
                        "Peruanischer Sol (1863–1965)",
                            "displayName-count-other";
                        "Peruanische Sol (1863–1965)",
                            "symbol";
                        "PES";
                    }
                    "PGK";
                    {
                        "displayName";
                        "Papua-Neuguineischer Kina",
                            "displayName-count-one";
                        "Papua-Neuguineischer Kina",
                            "displayName-count-other";
                        "Papua-Neuguineische Kina",
                            "symbol";
                        "PGK";
                    }
                    "PHP";
                    {
                        "displayName";
                        "Philippinischer Peso",
                            "displayName-count-one";
                        "Philippinischer Peso",
                            "displayName-count-other";
                        "Philippinische Pesos",
                            "symbol";
                        "PHP",
                            "symbol-alt-narrow";
                        "₱";
                    }
                    "PKR";
                    {
                        "displayName";
                        "Pakistanische Rupie",
                            "displayName-count-one";
                        "Pakistanische Rupie",
                            "displayName-count-other";
                        "Pakistanische Rupien",
                            "symbol";
                        "PKR",
                            "symbol-alt-narrow";
                        "Rs";
                    }
                    "PLN";
                    {
                        "displayName";
                        "Polnischer Złoty",
                            "displayName-count-one";
                        "Polnischer Złoty",
                            "displayName-count-other";
                        "Polnische Złoty",
                            "symbol";
                        "PLN",
                            "symbol-alt-narrow";
                        "zł";
                    }
                    "PLZ";
                    {
                        "displayName";
                        "Polnischer Zloty (1950–1995)",
                            "displayName-count-one";
                        "Polnischer Zloty (1950–1995)",
                            "displayName-count-other";
                        "Polnische Zloty (1950–1995)",
                            "symbol";
                        "PLZ";
                    }
                    "PTE";
                    {
                        "displayName";
                        "Portugiesischer Escudo",
                            "displayName-count-one";
                        "Portugiesische Escudo",
                            "displayName-count-other";
                        "Portugiesische Escudo",
                            "symbol";
                        "PTE";
                    }
                    "PYG";
                    {
                        "displayName";
                        "Paraguayischer Guaraní",
                            "displayName-count-one";
                        "Paraguayischer Guaraní",
                            "displayName-count-other";
                        "Paraguayische Guaraníes",
                            "symbol";
                        "PYG",
                            "symbol-alt-narrow";
                        "₲";
                    }
                    "QAR";
                    {
                        "displayName";
                        "Katar-Riyal",
                            "displayName-count-one";
                        "Katar-Riyal",
                            "displayName-count-other";
                        "Katar-Riyal",
                            "symbol";
                        "QAR";
                    }
                    "RHD";
                    {
                        "displayName";
                        "Rhodesischer Dollar",
                            "displayName-count-one";
                        "Rhodesische Dollar",
                            "displayName-count-other";
                        "Rhodesische Dollar",
                            "symbol";
                        "RHD";
                    }
                    "ROL";
                    {
                        "displayName";
                        "Rumänischer Leu (1952–2006)",
                            "displayName-count-one";
                        "Rumänischer Leu (1952–2006)",
                            "displayName-count-other";
                        "Rumänische Leu (1952–2006)",
                            "symbol";
                        "ROL";
                    }
                    "RON";
                    {
                        "displayName";
                        "Rumänischer Leu",
                            "displayName-count-one";
                        "Rumänischer Leu",
                            "displayName-count-other";
                        "Rumänische Leu",
                            "symbol";
                        "RON",
                            "symbol-alt-narrow";
                        "L";
                    }
                    "RSD";
                    {
                        "displayName";
                        "Serbischer Dinar",
                            "displayName-count-one";
                        "Serbischer Dinar",
                            "displayName-count-other";
                        "Serbische Dinaren",
                            "symbol";
                        "RSD";
                    }
                    "RUB";
                    {
                        "displayName";
                        "Russischer Rubel",
                            "displayName-count-one";
                        "Russischer Rubel",
                            "displayName-count-other";
                        "Russische Rubel",
                            "symbol";
                        "RUB",
                            "symbol-alt-narrow";
                        "₽";
                    }
                    "RUR";
                    {
                        "displayName";
                        "Russischer Rubel (1991–1998)",
                            "displayName-count-one";
                        "Russischer Rubel (1991–1998)",
                            "displayName-count-other";
                        "Russische Rubel (1991–1998)",
                            "symbol";
                        "RUR",
                            "symbol-alt-narrow";
                        "р.";
                    }
                    "RWF";
                    {
                        "displayName";
                        "Ruanda-Franc",
                            "displayName-count-one";
                        "Ruanda-Franc",
                            "displayName-count-other";
                        "Ruanda-Francs",
                            "symbol";
                        "RWF",
                            "symbol-alt-narrow";
                        "F.Rw";
                    }
                    "SAR";
                    {
                        "displayName";
                        "Saudi-Rial",
                            "displayName-count-one";
                        "Saudi-Rial",
                            "displayName-count-other";
                        "Saudi-Rial",
                            "symbol";
                        "SAR";
                    }
                    "SBD";
                    {
                        "displayName";
                        "Salomonen-Dollar",
                            "displayName-count-one";
                        "Salomonen-Dollar",
                            "displayName-count-other";
                        "Salomonen-Dollar",
                            "symbol";
                        "SBD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "SCR";
                    {
                        "displayName";
                        "Seychellen-Rupie",
                            "displayName-count-one";
                        "Seychellen-Rupie",
                            "displayName-count-other";
                        "Seychellen-Rupien",
                            "symbol";
                        "SCR";
                    }
                    "SDD";
                    {
                        "displayName";
                        "Sudanesischer Dinar (1992–2007)",
                            "displayName-count-one";
                        "Sudanesischer Dinar (1992–2007)",
                            "displayName-count-other";
                        "Sudanesische Dinar (1992–2007)",
                            "symbol";
                        "SDD";
                    }
                    "SDG";
                    {
                        "displayName";
                        "Sudanesisches Pfund",
                            "displayName-count-one";
                        "Sudanesisches Pfund",
                            "displayName-count-other";
                        "Sudanesische Pfund",
                            "symbol";
                        "SDG";
                    }
                    "SDP";
                    {
                        "displayName";
                        "Sudanesisches Pfund (1957–1998)",
                            "displayName-count-one";
                        "Sudanesisches Pfund (1957–1998)",
                            "displayName-count-other";
                        "Sudanesische Pfund (1957–1998)",
                            "symbol";
                        "SDP";
                    }
                    "SEK";
                    {
                        "displayName";
                        "Schwedische Krone",
                            "displayName-count-one";
                        "Schwedische Krone",
                            "displayName-count-other";
                        "Schwedische Kronen",
                            "symbol";
                        "SEK",
                            "symbol-alt-narrow";
                        "kr";
                    }
                    "SGD";
                    {
                        "displayName";
                        "Singapur-Dollar",
                            "displayName-count-one";
                        "Singapur-Dollar",
                            "displayName-count-other";
                        "Singapur-Dollar",
                            "symbol";
                        "SGD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "SHP";
                    {
                        "displayName";
                        "St. Helena-Pfund",
                            "displayName-count-one";
                        "St. Helena-Pfund",
                            "displayName-count-other";
                        "St. Helena-Pfund",
                            "symbol";
                        "SHP",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "SIT";
                    {
                        "displayName";
                        "Slowenischer Tolar",
                            "displayName-count-one";
                        "Slowenischer Tolar",
                            "displayName-count-other";
                        "Slowenische Tolar",
                            "symbol";
                        "SIT";
                    }
                    "SKK";
                    {
                        "displayName";
                        "Slowakische Krone",
                            "displayName-count-one";
                        "Slowakische Kronen",
                            "displayName-count-other";
                        "Slowakische Kronen",
                            "symbol";
                        "SKK";
                    }
                    "SLL";
                    {
                        "displayName";
                        "Sierra-leonischer Leone",
                            "displayName-count-one";
                        "Sierra-leonischer Leone",
                            "displayName-count-other";
                        "Sierra-leonische Leones",
                            "symbol";
                        "SLL";
                    }
                    "SOS";
                    {
                        "displayName";
                        "Somalia-Schilling",
                            "displayName-count-one";
                        "Somalia-Schilling",
                            "displayName-count-other";
                        "Somalia-Schilling",
                            "symbol";
                        "SOS";
                    }
                    "SRD";
                    {
                        "displayName";
                        "Suriname-Dollar",
                            "displayName-count-one";
                        "Suriname-Dollar",
                            "displayName-count-other";
                        "Suriname-Dollar",
                            "symbol";
                        "SRD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "SRG";
                    {
                        "displayName";
                        "Suriname Gulden",
                            "displayName-count-one";
                        "Suriname-Gulden",
                            "displayName-count-other";
                        "Suriname-Gulden",
                            "symbol";
                        "SRG";
                    }
                    "SSP";
                    {
                        "displayName";
                        "Südsudanesisches Pfund",
                            "displayName-count-one";
                        "Südsudanesisches Pfund",
                            "displayName-count-other";
                        "Südsudanesische Pfund",
                            "symbol";
                        "SSP",
                            "symbol-alt-narrow";
                        "£";
                    }
                    "STD";
                    {
                        "displayName";
                        "São-toméischer Dobra",
                            "displayName-count-one";
                        "São-toméischer Dobra",
                            "displayName-count-other";
                        "São-toméische Dobra",
                            "symbol";
                        "STD",
                            "symbol-alt-narrow";
                        "Db";
                    }
                    "SUR";
                    {
                        "displayName";
                        "Sowjetischer Rubel",
                            "displayName-count-one";
                        "Sowjetische Rubel",
                            "displayName-count-other";
                        "Sowjetische Rubel",
                            "symbol";
                        "SUR";
                    }
                    "SVC";
                    {
                        "displayName";
                        "El Salvador Colon",
                            "displayName-count-one";
                        "El Salvador-Colon",
                            "displayName-count-other";
                        "El Salvador-Colon",
                            "symbol";
                        "SVC";
                    }
                    "SYP";
                    {
                        "displayName";
                        "Syrisches Pfund",
                            "displayName-count-one";
                        "Syrisches Pfund",
                            "displayName-count-other";
                        "Syrische Pfund",
                            "symbol";
                        "SYP",
                            "symbol-alt-narrow";
                        "SYP";
                    }
                    "SZL";
                    {
                        "displayName";
                        "Swasiländischer Lilangeni",
                            "displayName-count-one";
                        "Swasiländischer Lilangeni",
                            "displayName-count-other";
                        "Swasiländische Emalangeni",
                            "symbol";
                        "SZL";
                    }
                    "THB";
                    {
                        "displayName";
                        "Thailändischer Baht",
                            "displayName-count-one";
                        "Thailändischer Baht",
                            "displayName-count-other";
                        "Thailändische Baht",
                            "symbol";
                        "฿",
                            "symbol-alt-narrow";
                        "฿";
                    }
                    "TJR";
                    {
                        "displayName";
                        "Tadschikistan Rubel",
                            "displayName-count-one";
                        "Tadschikistan-Rubel",
                            "displayName-count-other";
                        "Tadschikistan-Rubel",
                            "symbol";
                        "TJR";
                    }
                    "TJS";
                    {
                        "displayName";
                        "Tadschikistan-Somoni",
                            "displayName-count-one";
                        "Tadschikistan-Somoni",
                            "displayName-count-other";
                        "Tadschikistan-Somoni",
                            "symbol";
                        "TJS";
                    }
                    "TMM";
                    {
                        "displayName";
                        "Turkmenistan-Manat (1993–2009)",
                            "displayName-count-one";
                        "Turkmenistan-Manat (1993–2009)",
                            "displayName-count-other";
                        "Turkmenistan-Manat (1993–2009)",
                            "symbol";
                        "TMM";
                    }
                    "TMT";
                    {
                        "displayName";
                        "Turkmenistan-Manat",
                            "displayName-count-one";
                        "Turkmenistan-Manat",
                            "displayName-count-other";
                        "Turkmenistan-Manat",
                            "symbol";
                        "TMT";
                    }
                    "TND";
                    {
                        "displayName";
                        "Tunesischer Dinar",
                            "displayName-count-one";
                        "Tunesischer Dinar",
                            "displayName-count-other";
                        "Tunesische Dinar",
                            "symbol";
                        "TND";
                    }
                    "TOP";
                    {
                        "displayName";
                        "Tongaischer Paʻanga",
                            "displayName-count-one";
                        "Tongaischer Paʻanga",
                            "displayName-count-other";
                        "Tongaische Paʻanga",
                            "symbol";
                        "TOP",
                            "symbol-alt-narrow";
                        "T$";
                    }
                    "TPE";
                    {
                        "displayName";
                        "Timor-Escudo",
                            "displayName-count-one";
                        "Timor-Escudo",
                            "displayName-count-other";
                        "Timor-Escudo",
                            "symbol";
                        "TPE";
                    }
                    "TRL";
                    {
                        "displayName";
                        "Türkische Lira (1922–2005)",
                            "displayName-count-one";
                        "Türkische Lira (1922–2005)",
                            "displayName-count-other";
                        "Türkische Lira (1922–2005)",
                            "symbol";
                        "TRL";
                    }
                    "TRY";
                    {
                        "displayName";
                        "Türkische Lira",
                            "displayName-count-one";
                        "Türkische Lira",
                            "displayName-count-other";
                        "Türkische Lira",
                            "symbol";
                        "TRY",
                            "symbol-alt-narrow";
                        "₺",
                            "symbol-alt-variant";
                        "TL";
                    }
                    "TTD";
                    {
                        "displayName";
                        "Trinidad und Tobago-Dollar",
                            "displayName-count-one";
                        "Trinidad und Tobago-Dollar",
                            "displayName-count-other";
                        "Trinidad und Tobago-Dollar",
                            "symbol";
                        "TTD",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "TWD";
                    {
                        "displayName";
                        "Neuer Taiwan-Dollar",
                            "displayName-count-one";
                        "Neuer Taiwan-Dollar",
                            "displayName-count-other";
                        "Neue Taiwan-Dollar",
                            "symbol";
                        "NT$",
                            "symbol-alt-narrow";
                        "NT$";
                    }
                    "TZS";
                    {
                        "displayName";
                        "Tansania-Schilling",
                            "displayName-count-one";
                        "Tansania-Schilling",
                            "displayName-count-other";
                        "Tansania-Schilling",
                            "symbol";
                        "TZS";
                    }
                    "UAH";
                    {
                        "displayName";
                        "Ukrainische Hrywnja",
                            "displayName-count-one";
                        "Ukrainische Hrywnja",
                            "displayName-count-other";
                        "Ukrainische Hrywen",
                            "symbol";
                        "UAH",
                            "symbol-alt-narrow";
                        "₴";
                    }
                    "UAK";
                    {
                        "displayName";
                        "Ukrainischer Karbovanetz",
                            "displayName-count-one";
                        "Ukrainische Karbovanetz",
                            "displayName-count-other";
                        "Ukrainische Karbovanetz",
                            "symbol";
                        "UAK";
                    }
                    "UGS";
                    {
                        "displayName";
                        "Uganda-Schilling (1966–1987)",
                            "displayName-count-one";
                        "Uganda-Schilling (1966–1987)",
                            "displayName-count-other";
                        "Uganda-Schilling (1966–1987)",
                            "symbol";
                        "UGS";
                    }
                    "UGX";
                    {
                        "displayName";
                        "Uganda-Schilling",
                            "displayName-count-one";
                        "Uganda-Schilling",
                            "displayName-count-other";
                        "Uganda-Schilling",
                            "symbol";
                        "UGX";
                    }
                    "USD";
                    {
                        "displayName";
                        "US-Dollar",
                            "displayName-count-one";
                        "US-Dollar",
                            "displayName-count-other";
                        "US-Dollar",
                            "symbol";
                        "$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "USN";
                    {
                        "displayName";
                        "US Dollar (Nächster Tag)",
                            "displayName-count-one";
                        "US-Dollar (Nächster Tag)",
                            "displayName-count-other";
                        "US-Dollar (Nächster Tag)",
                            "symbol";
                        "USN";
                    }
                    "USS";
                    {
                        "displayName";
                        "US Dollar (Gleicher Tag)",
                            "displayName-count-one";
                        "US-Dollar (Gleicher Tag)",
                            "displayName-count-other";
                        "US-Dollar (Gleicher Tag)",
                            "symbol";
                        "USS";
                    }
                    "UYI";
                    {
                        "displayName";
                        "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
                            "displayName-count-one";
                        "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
                            "displayName-count-other";
                        "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
                            "symbol";
                        "UYI";
                    }
                    "UYP";
                    {
                        "displayName";
                        "Uruguayischer Peso (1975–1993)",
                            "displayName-count-one";
                        "Uruguayischer Peso (1975–1993)",
                            "displayName-count-other";
                        "Uruguayische Pesos (1975–1993)",
                            "symbol";
                        "UYP";
                    }
                    "UYU";
                    {
                        "displayName";
                        "Uruguayischer Peso",
                            "displayName-count-one";
                        "Uruguayischer Peso",
                            "displayName-count-other";
                        "Uruguayische Pesos",
                            "symbol";
                        "UYU",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "UZS";
                    {
                        "displayName";
                        "Usbekistan-Sum",
                            "displayName-count-one";
                        "Usbekistan-Sum",
                            "displayName-count-other";
                        "Usbekistan-Sum",
                            "symbol";
                        "UZS";
                    }
                    "VEB";
                    {
                        "displayName";
                        "Venezolanischer Bolívar (1871–2008)",
                            "displayName-count-one";
                        "Venezolanischer Bolívar (1871–2008)",
                            "displayName-count-other";
                        "Venezolanische Bolívares (1871–2008)",
                            "symbol";
                        "VEB";
                    }
                    "VEF";
                    {
                        "displayName";
                        "Venezolanischer Bolívar",
                            "displayName-count-one";
                        "Venezolanischer Bolívar",
                            "displayName-count-other";
                        "Venezolanische Bolívares",
                            "symbol";
                        "VEF",
                            "symbol-alt-narrow";
                        "Bs";
                    }
                    "VND";
                    {
                        "displayName";
                        "Vietnamesischer Dong",
                            "displayName-count-one";
                        "Vietnamesischer Dong",
                            "displayName-count-other";
                        "Vietnamesische Dong",
                            "symbol";
                        "₫",
                            "symbol-alt-narrow";
                        "₫";
                    }
                    "VNN";
                    {
                        "displayName";
                        "Vietnamesischer Dong(1978–1985)",
                            "displayName-count-one";
                        "Vietnamesischer Dong(1978–1985)",
                            "displayName-count-other";
                        "Vietnamesische Dong(1978–1985)",
                            "symbol";
                        "VNN";
                    }
                    "VUV";
                    {
                        "displayName";
                        "Vanuatu-Vatu",
                            "displayName-count-one";
                        "Vanuatu-Vatu",
                            "displayName-count-other";
                        "Vanuatu-Vatu",
                            "symbol";
                        "VUV";
                    }
                    "WST";
                    {
                        "displayName";
                        "Samoanischer Tala",
                            "displayName-count-one";
                        "Samoanischer Tala",
                            "displayName-count-other";
                        "Samoanische Tala",
                            "symbol";
                        "WST";
                    }
                    "XAF";
                    {
                        "displayName";
                        "CFA-Franc (BEAC)",
                            "displayName-count-one";
                        "CFA-Franc (BEAC)",
                            "displayName-count-other";
                        "CFA-Franc (BEAC)",
                            "symbol";
                        "FCFA";
                    }
                    "XAG";
                    {
                        "displayName";
                        "Unze Silber",
                            "displayName-count-one";
                        "Unze Silber",
                            "displayName-count-other";
                        "Unzen Silber",
                            "symbol";
                        "XAG";
                    }
                    "XAU";
                    {
                        "displayName";
                        "Unze Gold",
                            "displayName-count-one";
                        "Unze Gold",
                            "displayName-count-other";
                        "Unzen Gold",
                            "symbol";
                        "XAU";
                    }
                    "XBA";
                    {
                        "displayName";
                        "Europäische Rechnungseinheit",
                            "displayName-count-one";
                        "Europäische Rechnungseinheiten",
                            "displayName-count-other";
                        "Europäische Rechnungseinheiten",
                            "symbol";
                        "XBA";
                    }
                    "XBB";
                    {
                        "displayName";
                        "Europäische Währungseinheit (XBB)",
                            "displayName-count-one";
                        "Europäische Währungseinheiten (XBB)",
                            "displayName-count-other";
                        "Europäische Währungseinheiten (XBB)",
                            "symbol";
                        "XBB";
                    }
                    "XBC";
                    {
                        "displayName";
                        "Europäische Rechnungseinheit (XBC)",
                            "displayName-count-one";
                        "Europäische Rechnungseinheiten (XBC)",
                            "displayName-count-other";
                        "Europäische Rechnungseinheiten (XBC)",
                            "symbol";
                        "XBC";
                    }
                    "XBD";
                    {
                        "displayName";
                        "Europäische Rechnungseinheit (XBD)",
                            "displayName-count-one";
                        "Europäische Rechnungseinheiten (XBD)",
                            "displayName-count-other";
                        "Europäische Rechnungseinheiten (XBD)",
                            "symbol";
                        "XBD";
                    }
                    "XCD";
                    {
                        "displayName";
                        "Ostkaribischer Dollar",
                            "displayName-count-one";
                        "Ostkaribischer Dollar",
                            "displayName-count-other";
                        "Ostkaribische Dollar",
                            "symbol";
                        "EC$",
                            "symbol-alt-narrow";
                        "$";
                    }
                    "XDR";
                    {
                        "displayName";
                        "Sonderziehungsrechte",
                            "displayName-count-one";
                        "Sonderziehungsrechte",
                            "displayName-count-other";
                        "Sonderziehungsrechte",
                            "symbol";
                        "XDR";
                    }
                    "XEU";
                    {
                        "displayName";
                        "Europäische Währungseinheit (XEU)",
                            "displayName-count-one";
                        "Europäische Währungseinheiten (XEU)",
                            "displayName-count-other";
                        "Europäische Währungseinheiten (XEU)",
                            "symbol";
                        "XEU";
                    }
                    "XFO";
                    {
                        "displayName";
                        "Französischer Gold-Franc",
                            "displayName-count-one";
                        "Französische Gold-Franc",
                            "displayName-count-other";
                        "Französische Gold-Franc",
                            "symbol";
                        "XFO";
                    }
                    "XFU";
                    {
                        "displayName";
                        "Französischer UIC-Franc",
                            "displayName-count-one";
                        "Französische UIC-Franc",
                            "displayName-count-other";
                        "Französische UIC-Franc",
                            "symbol";
                        "XFU";
                    }
                    "XOF";
                    {
                        "displayName";
                        "CFA-Franc (BCEAO)",
                            "displayName-count-one";
                        "CFA-Franc (BCEAO)",
                            "displayName-count-other";
                        "CFA-Francs (BCEAO)",
                            "symbol";
                        "CFA";
                    }
                    "XPD";
                    {
                        "displayName";
                        "Unze Palladium",
                            "displayName-count-one";
                        "Unze Palladium",
                            "displayName-count-other";
                        "Unzen Palladium",
                            "symbol";
                        "XPD";
                    }
                    "XPF";
                    {
                        "displayName";
                        "CFP-Franc",
                            "displayName-count-one";
                        "CFP-Franc",
                            "displayName-count-other";
                        "CFP-Franc",
                            "symbol";
                        "CFPF";
                    }
                    "XPT";
                    {
                        "displayName";
                        "Unze Platin",
                            "displayName-count-one";
                        "Unze Platin",
                            "displayName-count-other";
                        "Unzen Platin",
                            "symbol";
                        "XPT";
                    }
                    "XRE";
                    {
                        "displayName";
                        "RINET Funds",
                            "displayName-count-one";
                        "RINET Funds",
                            "displayName-count-other";
                        "RINET Funds",
                            "symbol";
                        "XRE";
                    }
                    "XSU";
                    {
                        "displayName";
                        "SUCRE",
                            "displayName-count-one";
                        "SUCRE",
                            "displayName-count-other";
                        "SUCRE",
                            "symbol";
                        "XSU";
                    }
                    "XTS";
                    {
                        "displayName";
                        "Testwährung",
                            "displayName-count-one";
                        "Testwährung",
                            "displayName-count-other";
                        "Testwährung",
                            "symbol";
                        "XTS";
                    }
                    "XUA";
                    {
                        "displayName";
                        "Rechnungseinheit der AfEB",
                            "displayName-count-one";
                        "Rechnungseinheit der AfEB",
                            "displayName-count-other";
                        "Rechnungseinheiten der AfEB",
                            "symbol";
                        "XUA";
                    }
                    "XXX";
                    {
                        "displayName";
                        "Unbekannte Währung",
                            "displayName-count-one";
                        "(unbekannte Währung)",
                            "displayName-count-other";
                        "(unbekannte Währung)",
                            "symbol";
                        "XXX";
                    }
                    "YDD";
                    {
                        "displayName";
                        "Jemen-Dinar",
                            "displayName-count-one";
                        "Jemen-Dinar",
                            "displayName-count-other";
                        "Jemen-Dinar",
                            "symbol";
                        "YDD";
                    }
                    "YER";
                    {
                        "displayName";
                        "Jemen-Rial",
                            "displayName-count-one";
                        "Jemen-Rial",
                            "displayName-count-other";
                        "Jemen-Rial",
                            "symbol";
                        "YER";
                    }
                    "YUD";
                    {
                        "displayName";
                        "Jugoslawischer Dinar (1966–1990)",
                            "displayName-count-one";
                        "Jugoslawischer Dinar (1966–1990)",
                            "displayName-count-other";
                        "Jugoslawische Dinar (1966–1990)",
                            "symbol";
                        "YUD";
                    }
                    "YUM";
                    {
                        "displayName";
                        "Jugoslawischer Neuer Dinar (1994–2002)",
                            "displayName-count-one";
                        "Jugoslawischer Neuer Dinar (1994–2002)",
                            "displayName-count-other";
                        "Jugoslawische Neue Dinar (1994–2002)",
                            "symbol";
                        "YUM";
                    }
                    "YUN";
                    {
                        "displayName";
                        "Jugoslawischer Dinar (konvertibel)",
                            "displayName-count-one";
                        "Jugoslawische Dinar (konvertibel)",
                            "displayName-count-other";
                        "Jugoslawische Dinar (konvertibel)",
                            "symbol";
                        "YUN";
                    }
                    "YUR";
                    {
                        "displayName";
                        "Jugoslawischer reformierter Dinar (1992–1993)",
                            "displayName-count-one";
                        "Jugoslawischer reformierter Dinar (1992–1993)",
                            "displayName-count-other";
                        "Jugoslawische reformierte Dinar (1992–1993)",
                            "symbol";
                        "YUR";
                    }
                    "ZAL";
                    {
                        "displayName";
                        "Südafrikanischer Rand (Finanz)",
                            "displayName-count-one";
                        "Südafrikanischer Rand (Finanz)",
                            "displayName-count-other";
                        "Südafrikanischer Rand (Finanz)",
                            "symbol";
                        "ZAL";
                    }
                    "ZAR";
                    {
                        "displayName";
                        "Südafrikanischer Rand",
                            "displayName-count-one";
                        "Südafrikanischer Rand",
                            "displayName-count-other";
                        "Südafrikanische Rand",
                            "symbol";
                        "ZAR",
                            "symbol-alt-narrow";
                        "R";
                    }
                    "ZMK";
                    {
                        "displayName";
                        "Kwacha (1968–2012)",
                            "displayName-count-one";
                        "Kwacha (1968–2012)",
                            "displayName-count-other";
                        "Kwacha (1968–2012)",
                            "symbol";
                        "ZMK";
                    }
                    "ZMW";
                    {
                        "displayName";
                        "Kwacha",
                            "displayName-count-one";
                        "Kwacha",
                            "displayName-count-other";
                        "Kwacha",
                            "symbol";
                        "ZMW",
                            "symbol-alt-narrow";
                        "K";
                    }
                    "ZRN";
                    {
                        "displayName";
                        "Zaire-Neuer Zaïre (1993–1998)",
                            "displayName-count-one";
                        "Zaire-Neuer Zaïre (1993–1998)",
                            "displayName-count-other";
                        "Zaire-Neue Zaïre (1993–1998)",
                            "symbol";
                        "ZRN";
                    }
                    "ZRZ";
                    {
                        "displayName";
                        "Zaire-Zaïre (1971–1993)",
                            "displayName-count-one";
                        "Zaire-Zaïre (1971–1993)",
                            "displayName-count-other";
                        "Zaire-Zaïre (1971–1993)",
                            "symbol";
                        "ZRZ";
                    }
                    "ZWD";
                    {
                        "displayName";
                        "Simbabwe-Dollar (1980–2008)",
                            "displayName-count-one";
                        "Simbabwe-Dollar (1980–2008)",
                            "displayName-count-other";
                        "Simbabwe-Dollar (1980–2008)",
                            "symbol";
                        "ZWD";
                    }
                    "ZWL";
                    {
                        "displayName";
                        "Simbabwe-Dollar (2009)",
                            "displayName-count-one";
                        "Simbabwe-Dollar (2009)",
                            "displayName-count-other";
                        "Simbabwe-Dollar (2009)",
                            "symbol";
                        "ZWL";
                    }
                    "ZWR";
                    {
                        "displayName";
                        "Simbabwe-Dollar (2008)",
                            "displayName-count-one";
                        "Simbabwe-Dollar (2008)",
                            "displayName-count-other";
                        "Simbabwe-Dollar (2008)",
                            "symbol";
                        "ZWR";
                    }
                }
            }
        }
    }
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as deTimeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, deTimeZoneNames);
L10n.load({
    'de': {
        'daterangepicker': {
            applyText: 'Sich bewerben',
            cancelText: 'Stornieren',
            customRange: 'benutzerdefinierten Bereich',
            days: 'Tage',
            endLabel: 'Wählen Sie Enddatum',
            placeholder: 'Wählen Sie einen Bereich aus',
            selectedDays: 'Ausgewählte Tage',
            startLabel: 'Wählen Sie Startdatum'
        }
    }
});
//import the daterangepicker component
function App() {
    return <DateRangePickerComponent id="daterangepicker" locale='de'/>;
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';

//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as deTimeZoneNames from './timeZoneNames.json';

loadCldr(numberingSystems, gregorian, numbers, deTimeZoneNames);

L10n.load({
  'de': {
    'daterangepicker': {
      applyText: 'Sich bewerben',
      cancelText: 'Stornieren',
      customRange: 'benutzerdefinierten Bereich',
      days: 'Tage',
      endLabel: 'Wählen Sie Enddatum',
      placeholder: 'Wählen Sie einen Bereich aus',
      selectedDays: 'Ausgewählte Tage',
      startLabel: 'Wählen Sie Startdatum'
    }
}
});
//import the daterangepicker component
function App() {
      return <DateRangePickerComponent id="daterangepicker" locale='de'/>
};
ReactDOM.render(<App />, document.getElementById('element'));
{
  "supplemental": {
    "version": {
      "_number": "$Revision: 12732 $",
      "_unicodeVersion": "9.0.0",
      "_cldrVersion": "31"
    },
    "numberingSystems": {
      "adlm": {
        "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
        "_type": "numeric"
      },
      "ahom": {
        "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
        "_type": "numeric"
      },
      "arab": {
        "_digits": "٠١٢٣٤٥٦٧٨٩",
        "_type": "numeric"
      },
      "arabext": {
        "_digits": "۰۱۲۳۴۵۶۷۸۹",
        "_type": "numeric"
      },
      "armn": {
        "_rules": "armenian-upper",
        "_type": "algorithmic"
      },
      "armnlow": {
        "_rules": "armenian-lower",
        "_type": "algorithmic"
      },
      "bali": {
        "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
        "_type": "numeric"
      },
      "beng": {
        "_digits": "০১২৩৪৫৬৭৮৯",
        "_type": "numeric"
      },
      "bhks": {
        "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
        "_type": "numeric"
      },
      "brah": {
        "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
        "_type": "numeric"
      },
      "cakm": {
        "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
        "_type": "numeric"
      },
      "cham": {
        "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
        "_type": "numeric"
      },
      "cyrl": {
        "_rules": "cyrillic-lower",
        "_type": "algorithmic"
      },
      "deva": {
        "_digits": "०१२३४५६७८९",
        "_type": "numeric"
      },
      "ethi": {
        "_rules": "ethiopic",
        "_type": "algorithmic"
      },
      "fullwide": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "geor": {
        "_rules": "georgian",
        "_type": "algorithmic"
      },
      "grek": {
        "_rules": "greek-upper",
        "_type": "algorithmic"
      },
      "greklow": {
        "_rules": "greek-lower",
        "_type": "algorithmic"
      },
      "gujr": {
        "_digits": "૦૧૨૩૪૫૬૭૮૯",
        "_type": "numeric"
      },
      "guru": {
        "_digits": "੦੧੨੩੪੫੬੭੮੯",
        "_type": "numeric"
      },
      "hanidays": {
        "_rules": "zh/SpelloutRules/spellout-numbering-days",
        "_type": "algorithmic"
      },
      "hanidec": {
        "_digits": "〇一二三四五六七八九",
        "_type": "numeric"
      },
      "hans": {
        "_rules": "zh/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hansfin": {
        "_rules": "zh/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hant": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hantfin": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hebr": {
        "_rules": "hebrew",
        "_type": "algorithmic"
      },
      "hmng": {
        "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
        "_type": "numeric"
      },
      "java": {
        "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
        "_type": "numeric"
      },
      "jpan": {
        "_rules": "ja/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "jpanfin": {
        "_rules": "ja/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "kali": {
        "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
        "_type": "numeric"
      },
      "khmr": {
        "_digits": "០១២៣៤៥៦៧៨៩",
        "_type": "numeric"
      },
      "knda": {
        "_digits": "೦೧೨೩೪೫೬೭೮೯",
        "_type": "numeric"
      },
      "lana": {
        "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
        "_type": "numeric"
      },
      "lanatham": {
        "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
        "_type": "numeric"
      },
      "laoo": {
        "_digits": "໐໑໒໓໔໕໖໗໘໙",
        "_type": "numeric"
      },
      "latn": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "lepc": {
        "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
        "_type": "numeric"
      },
      "limb": {
        "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
        "_type": "numeric"
      },
      "mathbold": {
        "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
        "_type": "numeric"
      },
      "mathdbl": {
        "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
        "_type": "numeric"
      },
      "mathmono": {
        "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
        "_type": "numeric"
      },
      "mathsanb": {
        "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
        "_type": "numeric"
      },
      "mathsans": {
        "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
        "_type": "numeric"
      },
      "mlym": {
        "_digits": "൦൧൨൩൪൫൬൭൮൯",
        "_type": "numeric"
      },
      "modi": {
        "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
        "_type": "numeric"
      },
      "mong": {
        "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
        "_type": "numeric"
      },
      "mroo": {
        "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
        "_type": "numeric"
      },
      "mtei": {
        "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
        "_type": "numeric"
      },
      "mymr": {
        "_digits": "၀၁၂၃၄၅၆၇၈၉",
        "_type": "numeric"
      },
      "mymrshan": {
        "_digits": "႐႑႒႓႔႕႖႗႘႙",
        "_type": "numeric"
      },
      "mymrtlng": {
        "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
        "_type": "numeric"
      },
      "newa": {
        "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
        "_type": "numeric"
      },
      "nkoo": {
        "_digits": "߀߁߂߃߄߅߆߇߈߉",
        "_type": "numeric"
      },
      "olck": {
        "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
        "_type": "numeric"
      },
      "orya": {
        "_digits": "୦୧୨୩୪୫୬୭୮୯",
        "_type": "numeric"
      },
      "osma": {
        "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
        "_type": "numeric"
      },
      "roman": {
        "_rules": "roman-upper",
        "_type": "algorithmic"
      },
      "romanlow": {
        "_rules": "roman-lower",
        "_type": "algorithmic"
      },
      "saur": {
        "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
        "_type": "numeric"
      },
      "shrd": {
        "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
        "_type": "numeric"
      },
      "sind": {
        "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
        "_type": "numeric"
      },
      "sinh": {
        "_digits": "෦෧෨෩෪෫෬෭෮෯",
        "_type": "numeric"
      },
      "sora": {
        "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
        "_type": "numeric"
      },
      "sund": {
        "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
        "_type": "numeric"
      },
      "takr": {
        "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
        "_type": "numeric"
      },
      "talu": {
        "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
        "_type": "numeric"
      },
      "taml": {
        "_rules": "tamil",
        "_type": "algorithmic"
      },
      "tamldec": {
        "_digits": "௦௧௨௩௪௫௬௭௮௯",
        "_type": "numeric"
      },
      "telu": {
        "_digits": "౦౧౨౩౪౫౬౭౮౯",
        "_type": "numeric"
      },
      "thai": {
        "_digits": "๐๑๒๓๔๕๖๗๘๙",
        "_type": "numeric"
      },
      "tibt": {
        "_digits": "༠༡༢༣༤༥༦༧༨༩",
        "_type": "numeric"
      },
      "tirh": {
        "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
        "_type": "numeric"
      },
      "vaii": {
        "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
        "_type": "numeric"
      },
      "wara": {
        "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
        "_type": "numeric"
      }
    }
  }
}
{
    "supplemental";
    {
        "version";
        {
            "_number";
            "$Revision: 12732 $",
                "_unicodeVersion";
            "9.0.0",
                "_cldrVersion";
            "31";
        }
        "numberingSystems";
        {
            "adlm";
            {
                "_digits";
                "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
                    "_type";
                "numeric";
            }
            "ahom";
            {
                "_digits";
                "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
                    "_type";
                "numeric";
            }
            "arab";
            {
                "_digits";
                "٠١٢٣٤٥٦٧٨٩",
                    "_type";
                "numeric";
            }
            "arabext";
            {
                "_digits";
                "۰۱۲۳۴۵۶۷۸۹",
                    "_type";
                "numeric";
            }
            "armn";
            {
                "_rules";
                "armenian-upper",
                    "_type";
                "algorithmic";
            }
            "armnlow";
            {
                "_rules";
                "armenian-lower",
                    "_type";
                "algorithmic";
            }
            "bali";
            {
                "_digits";
                "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
                    "_type";
                "numeric";
            }
            "beng";
            {
                "_digits";
                "০১২৩৪৫৬৭৮৯",
                    "_type";
                "numeric";
            }
            "bhks";
            {
                "_digits";
                "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
                    "_type";
                "numeric";
            }
            "brah";
            {
                "_digits";
                "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
                    "_type";
                "numeric";
            }
            "cakm";
            {
                "_digits";
                "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
                    "_type";
                "numeric";
            }
            "cham";
            {
                "_digits";
                "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
                    "_type";
                "numeric";
            }
            "cyrl";
            {
                "_rules";
                "cyrillic-lower",
                    "_type";
                "algorithmic";
            }
            "deva";
            {
                "_digits";
                "०१२३४५६७८९",
                    "_type";
                "numeric";
            }
            "ethi";
            {
                "_rules";
                "ethiopic",
                    "_type";
                "algorithmic";
            }
            "fullwide";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "geor";
            {
                "_rules";
                "georgian",
                    "_type";
                "algorithmic";
            }
            "grek";
            {
                "_rules";
                "greek-upper",
                    "_type";
                "algorithmic";
            }
            "greklow";
            {
                "_rules";
                "greek-lower",
                    "_type";
                "algorithmic";
            }
            "gujr";
            {
                "_digits";
                "૦૧૨૩૪૫૬૭૮૯",
                    "_type";
                "numeric";
            }
            "guru";
            {
                "_digits";
                "੦੧੨੩੪੫੬੭੮੯",
                    "_type";
                "numeric";
            }
            "hanidays";
            {
                "_rules";
                "zh/SpelloutRules/spellout-numbering-days",
                    "_type";
                "algorithmic";
            }
            "hanidec";
            {
                "_digits";
                "〇一二三四五六七八九",
                    "_type";
                "numeric";
            }
            "hans";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hansfin";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hant";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hantfin";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hebr";
            {
                "_rules";
                "hebrew",
                    "_type";
                "algorithmic";
            }
            "hmng";
            {
                "_digits";
                "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
                    "_type";
                "numeric";
            }
            "java";
            {
                "_digits";
                "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
                    "_type";
                "numeric";
            }
            "jpan";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "jpanfin";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "kali";
            {
                "_digits";
                "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
                    "_type";
                "numeric";
            }
            "khmr";
            {
                "_digits";
                "០១២៣៤៥៦៧៨៩",
                    "_type";
                "numeric";
            }
            "knda";
            {
                "_digits";
                "೦೧೨೩೪೫೬೭೮೯",
                    "_type";
                "numeric";
            }
            "lana";
            {
                "_digits";
                "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
                    "_type";
                "numeric";
            }
            "lanatham";
            {
                "_digits";
                "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
                    "_type";
                "numeric";
            }
            "laoo";
            {
                "_digits";
                "໐໑໒໓໔໕໖໗໘໙",
                    "_type";
                "numeric";
            }
            "latn";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "lepc";
            {
                "_digits";
                "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
                    "_type";
                "numeric";
            }
            "limb";
            {
                "_digits";
                "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
                    "_type";
                "numeric";
            }
            "mathbold";
            {
                "_digits";
                "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
                    "_type";
                "numeric";
            }
            "mathdbl";
            {
                "_digits";
                "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
                    "_type";
                "numeric";
            }
            "mathmono";
            {
                "_digits";
                "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
                    "_type";
                "numeric";
            }
            "mathsanb";
            {
                "_digits";
                "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
                    "_type";
                "numeric";
            }
            "mathsans";
            {
                "_digits";
                "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
                    "_type";
                "numeric";
            }
            "mlym";
            {
                "_digits";
                "൦൧൨൩൪൫൬൭൮൯",
                    "_type";
                "numeric";
            }
            "modi";
            {
                "_digits";
                "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
                    "_type";
                "numeric";
            }
            "mong";
            {
                "_digits";
                "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
                    "_type";
                "numeric";
            }
            "mroo";
            {
                "_digits";
                "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
                    "_type";
                "numeric";
            }
            "mtei";
            {
                "_digits";
                "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
                    "_type";
                "numeric";
            }
            "mymr";
            {
                "_digits";
                "၀၁၂၃၄၅၆၇၈၉",
                    "_type";
                "numeric";
            }
            "mymrshan";
            {
                "_digits";
                "႐႑႒႓႔႕႖႗႘႙",
                    "_type";
                "numeric";
            }
            "mymrtlng";
            {
                "_digits";
                "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
                    "_type";
                "numeric";
            }
            "newa";
            {
                "_digits";
                "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
                    "_type";
                "numeric";
            }
            "nkoo";
            {
                "_digits";
                "߀߁߂߃߄߅߆߇߈߉",
                    "_type";
                "numeric";
            }
            "olck";
            {
                "_digits";
                "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
                    "_type";
                "numeric";
            }
            "orya";
            {
                "_digits";
                "୦୧୨୩୪୫୬୭୮୯",
                    "_type";
                "numeric";
            }
            "osma";
            {
                "_digits";
                "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
                    "_type";
                "numeric";
            }
            "roman";
            {
                "_rules";
                "roman-upper",
                    "_type";
                "algorithmic";
            }
            "romanlow";
            {
                "_rules";
                "roman-lower",
                    "_type";
                "algorithmic";
            }
            "saur";
            {
                "_digits";
                "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
                    "_type";
                "numeric";
            }
            "shrd";
            {
                "_digits";
                "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
                    "_type";
                "numeric";
            }
            "sind";
            {
                "_digits";
                "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
                    "_type";
                "numeric";
            }
            "sinh";
            {
                "_digits";
                "෦෧෨෩෪෫෬෭෮෯",
                    "_type";
                "numeric";
            }
            "sora";
            {
                "_digits";
                "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
                    "_type";
                "numeric";
            }
            "sund";
            {
                "_digits";
                "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
                    "_type";
                "numeric";
            }
            "takr";
            {
                "_digits";
                "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
                    "_type";
                "numeric";
            }
            "talu";
            {
                "_digits";
                "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
                    "_type";
                "numeric";
            }
            "taml";
            {
                "_rules";
                "tamil",
                    "_type";
                "algorithmic";
            }
            "tamldec";
            {
                "_digits";
                "௦௧௨௩௪௫௬௭௮௯",
                    "_type";
                "numeric";
            }
            "telu";
            {
                "_digits";
                "౦౧౨౩౪౫౬౭౮౯",
                    "_type";
                "numeric";
            }
            "thai";
            {
                "_digits";
                "๐๑๒๓๔๕๖๗๘๙",
                    "_type";
                "numeric";
            }
            "tibt";
            {
                "_digits";
                "༠༡༢༣༤༥༦༧༨༩",
                    "_type";
                "numeric";
            }
            "tirh";
            {
                "_digits";
                "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
                    "_type";
                "numeric";
            }
            "vaii";
            {
                "_digits";
                "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
                    "_type";
                "numeric";
            }
            "wara";
            {
                "_digits";
                "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
                    "_type";
                "numeric";
            }
        }
    }
}
{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31"
        },
        "language": "de"
      },
      "numbers": {
        "defaultNumberingSystem": "latn",
        "otherNumberingSystems": {
          "native": "latn"
        },
        "minimumGroupingDigits": "1",
        "symbols-numberSystem-latn": {
          "decimal": ",",
          "group": ".",
          "list": ";",
          "percentSign": "%",
          "plusSign": "+",
          "minusSign": "-",
          "exponential": "E",
          "superscriptingExponent": "·",
          "perMille": "‰",
          "infinity": "∞",
          "nan": "NaN",
          "timeSeparator": ":"
        },
        "decimalFormats-numberSystem-latn": {
          "standard": "#,##0.###",
          "long": {
            "decimalFormat": {
              "1000-count-one": "0 Tausend",
              "1000-count-other": "0 Tausend",
              "10000-count-one": "00 Tausend",
              "10000-count-other": "00 Tausend",
              "100000-count-one": "000 Tausend",
              "100000-count-other": "000 Tausend",
              "1000000-count-one": "0 Million",
              "1000000-count-other": "0 Millionen",
              "10000000-count-one": "00 Millionen",
              "10000000-count-other": "00 Millionen",
              "100000000-count-one": "000 Millionen",
              "100000000-count-other": "000 Millionen",
              "1000000000-count-one": "0 Milliarde",
              "1000000000-count-other": "0 Milliarden",
              "10000000000-count-one": "00 Milliarden",
              "10000000000-count-other": "00 Milliarden",
              "100000000000-count-one": "000 Milliarden",
              "100000000000-count-other": "000 Milliarden",
              "1000000000000-count-one": "0 Billion",
              "1000000000000-count-other": "0 Billionen",
              "10000000000000-count-one": "00 Billionen",
              "10000000000000-count-other": "00 Billionen",
              "100000000000000-count-one": "000 Billionen",
              "100000000000000-count-other": "000 Billionen"
            }
          },
          "short": {
            "decimalFormat": {
              "1000-count-one": "0",
              "1000-count-other": "0",
              "10000-count-one": "0",
              "10000-count-other": "0",
              "100000-count-one": "0",
              "100000-count-other": "0",
              "1000000-count-one": "0 Mio'.'",
              "1000000-count-other": "0 Mio'.'",
              "10000000-count-one": "00 Mio'.'",
              "10000000-count-other": "00 Mio'.'",
              "100000000-count-one": "000 Mio'.'",
              "100000000-count-other": "000 Mio'.'",
              "1000000000-count-one": "0 Mrd'.'",
              "1000000000-count-other": "0 Mrd'.'",
              "10000000000-count-one": "00 Mrd'.'",
              "10000000000-count-other": "00 Mrd'.'",
              "100000000000-count-one": "000 Mrd'.'",
              "100000000000-count-other": "000 Mrd'.'",
              "1000000000000-count-one": "0 Bio'.'",
              "1000000000000-count-other": "0 Bio'.'",
              "10000000000000-count-one": "00 Bio'.'",
              "10000000000000-count-other": "00 Bio'.'",
              "100000000000000-count-one": "000 Bio'.'",
              "100000000000000-count-other": "000 Bio'.'"
            }
          }
        },
        "scientificFormats-numberSystem-latn": {
          "standard": "#E0"
        },
        "percentFormats-numberSystem-latn": {
          "standard": "#,##0 %"
        },
        "currencyFormats-numberSystem-latn": {
          "currencySpacing": {
            "beforeCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            },
            "afterCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            }
          },
          "standard": "#,##0.00 ¤",
          "accounting": "#,##0.00 ¤",
          "short": {
            "standard": {
              "1000-count-one": "0 Tsd'.' ¤",
              "1000-count-other": "0 Tsd'.' ¤",
              "10000-count-one": "00 Tsd'.' ¤",
              "10000-count-other": "00 Tsd'.' ¤",
              "100000-count-one": "000 Tsd'.' ¤",
              "100000-count-other": "000 Tsd'.' ¤",
              "1000000-count-one": "0 Mio'.' ¤",
              "1000000-count-other": "0 Mio'.' ¤",
              "10000000-count-one": "00 Mio'.' ¤",
              "10000000-count-other": "00 Mio'.' ¤",
              "100000000-count-one": "000 Mio'.' ¤",
              "100000000-count-other": "000 Mio'.' ¤",
              "1000000000-count-one": "0 Mrd'.' ¤",
              "1000000000-count-other": "0 Mrd'.' ¤",
              "10000000000-count-one": "00 Mrd'.' ¤",
              "10000000000-count-other": "00 Mrd'.' ¤",
              "100000000000-count-one": "000 Mrd'.' ¤",
              "100000000000-count-other": "000 Mrd'.' ¤",
              "1000000000000-count-one": "0 Bio'.' ¤",
              "1000000000000-count-other": "0 Bio'.' ¤",
              "10000000000000-count-one": "00 Bio'.' ¤",
              "10000000000000-count-other": "00 Bio'.' ¤",
              "100000000000000-count-one": "000 Bio'.' ¤",
              "100000000000000-count-other": "000 Bio'.' ¤"
            }
          },
          "unitPattern-count-one": "{0} {1}",
          "unitPattern-count-other": "{0} {1}"
        },
        "miscPatterns-numberSystem-latn": {
          "atLeast": "{0}+",
          "range": "{0}–{1}"
        },
        "minimalPairs": {
          "pluralMinimalPairs": "{0} Tag",
          "pluralMinimalPairs": "{0} Tage",
          "other": "{0}. Abzweigung nach rechts nehmen"
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31";
                }
                "language";
                "de";
            }
            "numbers";
            {
                "defaultNumberingSystem";
                "latn",
                    "otherNumberingSystems";
                {
                    "native";
                    "latn";
                }
                "minimumGroupingDigits";
                "1",
                    "symbols-numberSystem-latn";
                {
                    "decimal";
                    ",",
                        "group";
                    ".",
                        "list";
                    ";",
                        "percentSign";
                    "%",
                        "plusSign";
                    "+",
                        "minusSign";
                    "-",
                        "exponential";
                    "E",
                        "superscriptingExponent";
                    "·",
                        "perMille";
                    "‰",
                        "infinity";
                    "∞",
                        "nan";
                    "NaN",
                        "timeSeparator";
                    ":";
                }
                "decimalFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0.###",
                        "long";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "0 Tausend",
                                "1000-count-other";
                            "0 Tausend",
                                "10000-count-one";
                            "00 Tausend",
                                "10000-count-other";
                            "00 Tausend",
                                "100000-count-one";
                            "000 Tausend",
                                "100000-count-other";
                            "000 Tausend",
                                "1000000-count-one";
                            "0 Million",
                                "1000000-count-other";
                            "0 Millionen",
                                "10000000-count-one";
                            "00 Millionen",
                                "10000000-count-other";
                            "00 Millionen",
                                "100000000-count-one";
                            "000 Millionen",
                                "100000000-count-other";
                            "000 Millionen",
                                "1000000000-count-one";
                            "0 Milliarde",
                                "1000000000-count-other";
                            "0 Milliarden",
                                "10000000000-count-one";
                            "00 Milliarden",
                                "10000000000-count-other";
                            "00 Milliarden",
                                "100000000000-count-one";
                            "000 Milliarden",
                                "100000000000-count-other";
                            "000 Milliarden",
                                "1000000000000-count-one";
                            "0 Billion",
                                "1000000000000-count-other";
                            "0 Billionen",
                                "10000000000000-count-one";
                            "00 Billionen",
                                "10000000000000-count-other";
                            "00 Billionen",
                                "100000000000000-count-one";
                            "000 Billionen",
                                "100000000000000-count-other";
                            "000 Billionen";
                        }
                    }
                    "short";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "0",
                                "1000-count-other";
                            "0",
                                "10000-count-one";
                            "0",
                                "10000-count-other";
                            "0",
                                "100000-count-one";
                            "0",
                                "100000-count-other";
                            "0",
                                "1000000-count-one";
                            "0 Mio'.'",
                                "1000000-count-other";
                            "0 Mio'.'",
                                "10000000-count-one";
                            "00 Mio'.'",
                                "10000000-count-other";
                            "00 Mio'.'",
                                "100000000-count-one";
                            "000 Mio'.'",
                                "100000000-count-other";
                            "000 Mio'.'",
                                "1000000000-count-one";
                            "0 Mrd'.'",
                                "1000000000-count-other";
                            "0 Mrd'.'",
                                "10000000000-count-one";
                            "00 Mrd'.'",
                                "10000000000-count-other";
                            "00 Mrd'.'",
                                "100000000000-count-one";
                            "000 Mrd'.'",
                                "100000000000-count-other";
                            "000 Mrd'.'",
                                "1000000000000-count-one";
                            "0 Bio'.'",
                                "1000000000000-count-other";
                            "0 Bio'.'",
                                "10000000000000-count-one";
                            "00 Bio'.'",
                                "10000000000000-count-other";
                            "00 Bio'.'",
                                "100000000000000-count-one";
                            "000 Bio'.'",
                                "100000000000000-count-other";
                            "000 Bio'.'";
                        }
                    }
                }
                "scientificFormats-numberSystem-latn";
                {
                    "standard";
                    "#E0";
                }
                "percentFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0 %";
                }
                "currencyFormats-numberSystem-latn";
                {
                    "currencySpacing";
                    {
                        "beforeCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                        "afterCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                    }
                    "standard";
                    "#,##0.00 ¤",
                        "accounting";
                    "#,##0.00 ¤",
                        "short";
                    {
                        "standard";
                        {
                            "1000-count-one";
                            "0 Tsd'.' ¤",
                                "1000-count-other";
                            "0 Tsd'.' ¤",
                                "10000-count-one";
                            "00 Tsd'.' ¤",
                                "10000-count-other";
                            "00 Tsd'.' ¤",
                                "100000-count-one";
                            "000 Tsd'.' ¤",
                                "100000-count-other";
                            "000 Tsd'.' ¤",
                                "1000000-count-one";
                            "0 Mio'.' ¤",
                                "1000000-count-other";
                            "0 Mio'.' ¤",
                                "10000000-count-one";
                            "00 Mio'.' ¤",
                                "10000000-count-other";
                            "00 Mio'.' ¤",
                                "100000000-count-one";
                            "000 Mio'.' ¤",
                                "100000000-count-other";
                            "000 Mio'.' ¤",
                                "1000000000-count-one";
                            "0 Mrd'.' ¤",
                                "1000000000-count-other";
                            "0 Mrd'.' ¤",
                                "10000000000-count-one";
                            "00 Mrd'.' ¤",
                                "10000000000-count-other";
                            "00 Mrd'.' ¤",
                                "100000000000-count-one";
                            "000 Mrd'.' ¤",
                                "100000000000-count-other";
                            "000 Mrd'.' ¤",
                                "1000000000000-count-one";
                            "0 Bio'.' ¤",
                                "1000000000000-count-other";
                            "0 Bio'.' ¤",
                                "10000000000000-count-one";
                            "00 Bio'.' ¤",
                                "10000000000000-count-other";
                            "00 Bio'.' ¤",
                                "100000000000000-count-one";
                            "000 Bio'.' ¤",
                                "100000000000000-count-other";
                            "000 Bio'.' ¤";
                        }
                    }
                    "unitPattern-count-one";
                    "{0} {1}",
                        "unitPattern-count-other";
                    "{0} {1}";
                }
                "miscPatterns-numberSystem-latn";
                {
                    "atLeast";
                    "{0}+",
                        "range";
                    "{0}–{1}";
                }
                "minimalPairs";
                {
                    "pluralMinimalPairs";
                    "{0} Tag",
                        "pluralMinimalPairs";
                    "{0} Tage",
                        "other";
                    "{0}. Abzweigung nach rechts nehmen";
                }
            }
        }
    }
}
{
  "main": {
    "de": {
      "identity": {
        "version": {
          "_number": "$Revision: 12879 $",
          "_cldrVersion": "30.0.3"
        },
        "language": "de"
      },
      "dates": {
        "timeZoneNames": {
          "hourFormat": "+HH:mm;-HH:mm",
          "gmtFormat": "GMT{0}",
          "gmtZeroFormat": "GMT",
          "regionFormat": "{0} Zeit",
          "regionFormat-type-daylight": "{0} Sommerzeit",
          "regionFormat-type-standard": "{0} Normalzeit",
          "fallbackFormat": "{1} ({0})",
          "zone": {
            "America": {
              "Adak": {
                "exemplarCity": "Adak"
              },
              "Anchorage": {
                "exemplarCity": "Anchorage"
              },
              "Anguilla": {
                "exemplarCity": "Anguilla"
              },
              "Antigua": {
                "exemplarCity": "Antigua"
              },
              "Araguaina": {
                "exemplarCity": "Araguaina"
              },
              "Argentina": {
                "Rio_Gallegos": {
                  "exemplarCity": "Rio Gallegos"
                },
                "San_Juan": {
                  "exemplarCity": "San Juan"
                },
                "Ushuaia": {
                  "exemplarCity": "Ushuaia"
                },
                "La_Rioja": {
                  "exemplarCity": "La Rioja"
                },
                "San_Luis": {
                  "exemplarCity": "San Luis"
                },
                "Salta": {
                  "exemplarCity": "Salta"
                },
                "Tucuman": {
                  "exemplarCity": "Tucuman"
                }
              },
              "Aruba": {
                "exemplarCity": "Aruba"
              },
              "Asuncion": {
                "exemplarCity": "Asunción"
              },
              "Bahia": {
                "exemplarCity": "Bahia"
              },
              "Bahia_Banderas": {
                "exemplarCity": "Bahia Banderas"
              },
              "Barbados": {
                "exemplarCity": "Barbados"
              },
              "Belem": {
                "exemplarCity": "Belem"
              },
              "Belize": {
                "exemplarCity": "Belize"
              },
              "Blanc-Sablon": {
                "exemplarCity": "Blanc-Sablon"
              },
              "Boa_Vista": {
                "exemplarCity": "Boa Vista"
              },
              "Bogota": {
                "exemplarCity": "Bogotá"
              },
              "Boise": {
                "exemplarCity": "Boise"
              },
              "Buenos_Aires": {
                "exemplarCity": "Buenos Aires"
              },
              "Cambridge_Bay": {
                "exemplarCity": "Cambridge Bay"
              },
              "Campo_Grande": {
                "exemplarCity": "Campo Grande"
              },
              "Cancun": {
                "exemplarCity": "Cancún"
              },
              "Caracas": {
                "exemplarCity": "Caracas"
              },
              "Catamarca": {
                "exemplarCity": "Catamarca"
              },
              "Cayenne": {
                "exemplarCity": "Cayenne"
              },
              "Cayman": {
                "exemplarCity": "Kaimaninseln"
              },
              "Chicago": {
                "exemplarCity": "Chicago"
              },
              "Chihuahua": {
                "exemplarCity": "Chihuahua"
              },
              "Coral_Harbour": {
                "exemplarCity": "Atikokan"
              },
              "Cordoba": {
                "exemplarCity": "Córdoba"
              },
              "Costa_Rica": {
                "exemplarCity": "Costa Rica"
              },
              "Creston": {
                "exemplarCity": "Creston"
              },
              "Cuiaba": {
                "exemplarCity": "Cuiaba"
              },
              "Curacao": {
                "exemplarCity": "Curaçao"
              },
              "Danmarkshavn": {
                "exemplarCity": "Danmarkshavn"
              },
              "Dawson": {
                "exemplarCity": "Dawson"
              },
              "Dawson_Creek": {
                "exemplarCity": "Dawson Creek"
              },
              "Denver": {
                "exemplarCity": "Denver"
              },
              "Detroit": {
                "exemplarCity": "Detroit"
              },
              "Dominica": {
                "exemplarCity": "Dominica"
              },
              "Edmonton": {
                "exemplarCity": "Edmonton"
              },
              "Eirunepe": {
                "exemplarCity": "Eirunepe"
              },
              "El_Salvador": {
                "exemplarCity": "El Salvador"
              },
              "Fort_Nelson": {
                "exemplarCity": "Fort Nelson"
              },
              "Fortaleza": {
                "exemplarCity": "Fortaleza"
              },
              "Glace_Bay": {
                "exemplarCity": "Glace Bay"
              },
              "Godthab": {
                "exemplarCity": "Nuuk"
              },
              "Goose_Bay": {
                "exemplarCity": "Goose Bay"
              },
              "Grand_Turk": {
                "exemplarCity": "Grand Turk"
              },
              "Grenada": {
                "exemplarCity": "Grenada"
              },
              "Guadeloupe": {
                "exemplarCity": "Guadeloupe"
              },
              "Guatemala": {
                "exemplarCity": "Guatemala"
              },
              "Guayaquil": {
                "exemplarCity": "Guayaquil"
              },
              "Guyana": {
                "exemplarCity": "Guyana"
              },
              "Halifax": {
                "exemplarCity": "Halifax"
              },
              "Havana": {
                "exemplarCity": "Havanna"
              },
              "Hermosillo": {
                "exemplarCity": "Hermosillo"
              },
              "Indiana": {
                "Vincennes": {
                  "exemplarCity": "Vincennes, Indiana"
                },
                "Petersburg": {
                  "exemplarCity": "Petersburg, Indiana"
                },
                "Tell_City": {
                  "exemplarCity": "Tell City, Indiana"
                },
                "Knox": {
                  "exemplarCity": "Knox, Indiana"
                },
                "Winamac": {
                  "exemplarCity": "Winamac, Indiana"
                },
                "Marengo": {
                  "exemplarCity": "Marengo, Indiana"
                },
                "Vevay": {
                  "exemplarCity": "Vevay, Indiana"
                }
              },
              "Indianapolis": {
                "exemplarCity": "Indianapolis"
              },
              "Inuvik": {
                "exemplarCity": "Inuvik"
              },
              "Iqaluit": {
                "exemplarCity": "Iqaluit"
              },
              "Jamaica": {
                "exemplarCity": "Jamaika"
              },
              "Jujuy": {
                "exemplarCity": "Jujuy"
              },
              "Juneau": {
                "exemplarCity": "Juneau"
              },
              "Kentucky": {
                "Monticello": {
                  "exemplarCity": "Monticello, Kentucky"
                }
              },
              "Kralendijk": {
                "exemplarCity": "Kralendijk"
              },
              "La_Paz": {
                "exemplarCity": "La Paz"
              },
              "Lima": {
                "exemplarCity": "Lima"
              },
              "Los_Angeles": {
                "exemplarCity": "Los Angeles"
              },
              "Louisville": {
                "exemplarCity": "Louisville"
              },
              "Lower_Princes": {
                "exemplarCity": "Lower Prince’s Quarter"
              },
              "Maceio": {
                "exemplarCity": "Maceio"
              },
              "Managua": {
                "exemplarCity": "Managua"
              },
              "Manaus": {
                "exemplarCity": "Manaus"
              },
              "Marigot": {
                "exemplarCity": "Marigot"
              },
              "Martinique": {
                "exemplarCity": "Martinique"
              },
              "Matamoros": {
                "exemplarCity": "Matamoros"
              },
              "Mazatlan": {
                "exemplarCity": "Mazatlan"
              },
              "Mendoza": {
                "exemplarCity": "Mendoza"
              },
              "Menominee": {
                "exemplarCity": "Menominee"
              },
              "Merida": {
                "exemplarCity": "Merida"
              },
              "Metlakatla": {
                "exemplarCity": "Metlakatla"
              },
              "Mexico_City": {
                "exemplarCity": "Mexiko-Stadt"
              },
              "Miquelon": {
                "exemplarCity": "Miquelon"
              },
              "Moncton": {
                "exemplarCity": "Moncton"
              },
              "Monterrey": {
                "exemplarCity": "Monterrey"
              },
              "Montevideo": {
                "exemplarCity": "Montevideo"
              },
              "Montserrat": {
                "exemplarCity": "Montserrat"
              },
              "Nassau": {
                "exemplarCity": "Nassau"
              },
              "New_York": {
                "exemplarCity": "New York"
              },
              "Nipigon": {
                "exemplarCity": "Nipigon"
              },
              "Nome": {
                "exemplarCity": "Nome"
              },
              "Noronha": {
                "exemplarCity": "Noronha"
              },
              "North_Dakota": {
                "Beulah": {
                  "exemplarCity": "Beulah, North Dakota"
                },
                "New_Salem": {
                  "exemplarCity": "New Salem, North Dakota"
                },
                "Center": {
                  "exemplarCity": "Center, North Dakota"
                }
              },
              "Ojinaga": {
                "exemplarCity": "Ojinaga"
              },
              "Panama": {
                "exemplarCity": "Panama"
              },
              "Pangnirtung": {
                "exemplarCity": "Pangnirtung"
              },
              "Paramaribo": {
                "exemplarCity": "Paramaribo"
              },
              "Phoenix": {
                "exemplarCity": "Phoenix"
              },
              "Port-au-Prince": {
                "exemplarCity": "Port-au-Prince"
              },
              "Port_of_Spain": {
                "exemplarCity": "Port of Spain"
              },
              "Porto_Velho": {
                "exemplarCity": "Porto Velho"
              },
              "Puerto_Rico": {
                "exemplarCity": "Puerto Rico"
              },
              "Rainy_River": {
                "exemplarCity": "Rainy River"
              },
              "Rankin_Inlet": {
                "exemplarCity": "Rankin Inlet"
              },
              "Recife": {
                "exemplarCity": "Recife"
              },
              "Regina": {
                "exemplarCity": "Regina"
              },
              "Resolute": {
                "exemplarCity": "Resolute"
              },
              "Rio_Branco": {
                "exemplarCity": "Rio Branco"
              },
              "Santa_Isabel": {
                "exemplarCity": "Santa Isabel"
              },
              "Santarem": {
                "exemplarCity": "Santarem"
              },
              "Santiago": {
                "exemplarCity": "Santiago"
              },
              "Santo_Domingo": {
                "exemplarCity": "Santo Domingo"
              },
              "Sao_Paulo": {
                "exemplarCity": "São Paulo"
              },
              "Scoresbysund": {
                "exemplarCity": "Ittoqqortoormiit"
              },
              "Sitka": {
                "exemplarCity": "Sitka"
              },
              "St_Barthelemy": {
                "exemplarCity": "Saint-Barthélemy"
              },
              "St_Johns": {
                "exemplarCity": "St. John’s"
              },
              "St_Kitts": {
                "exemplarCity": "St. Kitts"
              },
              "St_Lucia": {
                "exemplarCity": "St. Lucia"
              },
              "St_Thomas": {
                "exemplarCity": "St. Thomas"
              },
              "St_Vincent": {
                "exemplarCity": "St. Vincent"
              },
              "Swift_Current": {
                "exemplarCity": "Swift Current"
              },
              "Tegucigalpa": {
                "exemplarCity": "Tegucigalpa"
              },
              "Thule": {
                "exemplarCity": "Thule"
              },
              "Thunder_Bay": {
                "exemplarCity": "Thunder Bay"
              },
              "Tijuana": {
                "exemplarCity": "Tijuana"
              },
              "Toronto": {
                "exemplarCity": "Toronto"
              },
              "Tortola": {
                "exemplarCity": "Tortola"
              },
              "Vancouver": {
                "exemplarCity": "Vancouver"
              },
              "Whitehorse": {
                "exemplarCity": "Whitehorse"
              },
              "Winnipeg": {
                "exemplarCity": "Winnipeg"
              },
              "Yakutat": {
                "exemplarCity": "Yakutat"
              },
              "Yellowknife": {
                "exemplarCity": "Yellowknife"
              }
            },
            "Atlantic": {
              "Azores": {
                "exemplarCity": "Azoren"
              },
              "Bermuda": {
                "exemplarCity": "Bermudas"
              },
              "Canary": {
                "exemplarCity": "Kanaren"
              },
              "Cape_Verde": {
                "exemplarCity": "Cabo Verde"
              },
              "Faeroe": {
                "exemplarCity": "Färöer"
              },
              "Madeira": {
                "exemplarCity": "Madeira"
              },
              "Reykjavik": {
                "exemplarCity": "Reyk­ja­vík"
              },
              "South_Georgia": {
                "exemplarCity": "Südgeorgien"
              },
              "St_Helena": {
                "exemplarCity": "St. Helena"
              },
              "Stanley": {
                "exemplarCity": "Stanley"
              }
            },
            "Europe": {
              "Amsterdam": {
                "exemplarCity": "Amsterdam"
              },
              "Andorra": {
                "exemplarCity": "Andorra"
              },
              "Astrakhan": {
                "exemplarCity": "Astrachan"
              },
              "Athens": {
                "exemplarCity": "Athen"
              },
              "Belgrade": {
                "exemplarCity": "Belgrad"
              },
              "Berlin": {
                "exemplarCity": "Berlin"
              },
              "Bratislava": {
                "exemplarCity": "Bratislava"
              },
              "Brussels": {
                "exemplarCity": "Brüssel"
              },
              "Bucharest": {
                "exemplarCity": "Bukarest"
              },
              "Budapest": {
                "exemplarCity": "Budapest"
              },
              "Busingen": {
                "exemplarCity": "Büsingen"
              },
              "Chisinau": {
                "exemplarCity": "Kischinau"
              },
              "Copenhagen": {
                "exemplarCity": "Kopenhagen"
              },
              "Dublin": {
                "long": {
                  "daylight": "Irische Sommerzeit"
                },
                "exemplarCity": "Dublin"
              },
              "Gibraltar": {
                "exemplarCity": "Gibraltar"
              },
              "Guernsey": {
                "exemplarCity": "Guernsey"
              },
              "Helsinki": {
                "exemplarCity": "Helsinki"
              },
              "Isle_of_Man": {
                "exemplarCity": "Isle of Man"
              },
              "Istanbul": {
                "exemplarCity": "Istanbul"
              },
              "Jersey": {
                "exemplarCity": "Jersey"
              },
              "Kaliningrad": {
                "exemplarCity": "Kaliningrad"
              },
              "Kiev": {
                "exemplarCity": "Kiew"
              },
              "Kirov": {
                "exemplarCity": "Kirow"
              },
              "Lisbon": {
                "exemplarCity": "Lissabon"
              },
              "Ljubljana": {
                "exemplarCity": "Ljubljana"
              },
              "London": {
                "long": {
                  "daylight": "Britische Sommerzeit"
                },
                "exemplarCity": "London"
              },
              "Luxembourg": {
                "exemplarCity": "Luxemburg"
              },
              "Madrid": {
                "exemplarCity": "Madrid"
              },
              "Malta": {
                "exemplarCity": "Malta"
              },
              "Mariehamn": {
                "exemplarCity": "Mariehamn"
              },
              "Minsk": {
                "exemplarCity": "Minsk"
              },
              "Monaco": {
                "exemplarCity": "Monaco"
              },
              "Moscow": {
                "exemplarCity": "Moskau"
              },
              "Oslo": {
                "exemplarCity": "Oslo"
              },
              "Paris": {
                "exemplarCity": "Paris"
              },
              "Podgorica": {
                "exemplarCity": "Podgorica"
              },
              "Prague": {
                "exemplarCity": "Prag"
              },
              "Riga": {
                "exemplarCity": "Riga"
              },
              "Rome": {
                "exemplarCity": "Rom"
              },
              "Samara": {
                "exemplarCity": "Samara"
              },
              "San_Marino": {
                "exemplarCity": "San Marino"
              },
              "Sarajevo": {
                "exemplarCity": "Sarajevo"
              },
              "Simferopol": {
                "exemplarCity": "Simferopol"
              },
              "Skopje": {
                "exemplarCity": "Skopje"
              },
              "Sofia": {
                "exemplarCity": "Sofia"
              },
              "Stockholm": {
                "exemplarCity": "Stockholm"
              },
              "Tallinn": {
                "exemplarCity": "Tallinn"
              },
              "Tirane": {
                "exemplarCity": "Tirana"
              },
              "Ulyanovsk": {
                "exemplarCity": "Uljanowsk"
              },
              "Uzhgorod": {
                "exemplarCity": "Uschgorod"
              },
              "Vaduz": {
                "exemplarCity": "Vaduz"
              },
              "Vatican": {
                "exemplarCity": "Vatikan"
              },
              "Vienna": {
                "exemplarCity": "Wien"
              },
              "Vilnius": {
                "exemplarCity": "Vilnius"
              },
              "Volgograd": {
                "exemplarCity": "Wolgograd"
              },
              "Warsaw": {
                "exemplarCity": "Warschau"
              },
              "Zagreb": {
                "exemplarCity": "Zagreb"
              },
              "Zaporozhye": {
                "exemplarCity": "Saporischja"
              },
              "Zurich": {
                "exemplarCity": "Zürich"
              }
            },
            "Africa": {
              "Abidjan": {
                "exemplarCity": "Abidjan"
              },
              "Accra": {
                "exemplarCity": "Accra"
              },
              "Addis_Ababa": {
                "exemplarCity": "Addis Abeba"
              },
              "Algiers": {
                "exemplarCity": "Algier"
              },
              "Asmera": {
                "exemplarCity": "Asmara"
              },
              "Bamako": {
                "exemplarCity": "Bamako"
              },
              "Bangui": {
                "exemplarCity": "Bangui"
              },
              "Banjul": {
                "exemplarCity": "Banjul"
              },
              "Bissau": {
                "exemplarCity": "Bissau"
              },
              "Blantyre": {
                "exemplarCity": "Blantyre"
              },
              "Brazzaville": {
                "exemplarCity": "Brazzaville"
              },
              "Bujumbura": {
                "exemplarCity": "Bujumbura"
              },
              "Cairo": {
                "exemplarCity": "Kairo"
              },
              "Casablanca": {
                "exemplarCity": "Casablanca"
              },
              "Ceuta": {
                "exemplarCity": "Ceuta"
              },
              "Conakry": {
                "exemplarCity": "Conakry"
              },
              "Dakar": {
                "exemplarCity": "Dakar"
              },
              "Dar_es_Salaam": {
                "exemplarCity": "Daressalam"
              },
              "Djibouti": {
                "exemplarCity": "Dschibuti"
              },
              "Douala": {
                "exemplarCity": "Douala"
              },
              "El_Aaiun": {
                "exemplarCity": "El Aaiún"
              },
              "Freetown": {
                "exemplarCity": "Freetown"
              },
              "Gaborone": {
                "exemplarCity": "Gaborone"
              },
              "Harare": {
                "exemplarCity": "Harare"
              },
              "Johannesburg": {
                "exemplarCity": "Johannesburg"
              },
              "Juba": {
                "exemplarCity": "Juba"
              },
              "Kampala": {
                "exemplarCity": "Kampala"
              },
              "Khartoum": {
                "exemplarCity": "Khartum"
              },
              "Kigali": {
                "exemplarCity": "Kigali"
              },
              "Kinshasa": {
                "exemplarCity": "Kinshasa"
              },
              "Lagos": {
                "exemplarCity": "Lagos"
              },
              "Libreville": {
                "exemplarCity": "Libreville"
              },
              "Lome": {
                "exemplarCity": "Lomé"
              },
              "Luanda": {
                "exemplarCity": "Luanda"
              },
              "Lubumbashi": {
                "exemplarCity": "Lubumbashi"
              },
              "Lusaka": {
                "exemplarCity": "Lusaka"
              },
              "Malabo": {
                "exemplarCity": "Malabo"
              },
              "Maputo": {
                "exemplarCity": "Maputo"
              },
              "Maseru": {
                "exemplarCity": "Maseru"
              },
              "Mbabane": {
                "exemplarCity": "Mbabane"
              },
              "Mogadishu": {
                "exemplarCity": "Mogadischu"
              },
              "Monrovia": {
                "exemplarCity": "Monrovia"
              },
              "Nairobi": {
                "exemplarCity": "Nairobi"
              },
              "Ndjamena": {
                "exemplarCity": "N’Djamena"
              },
              "Niamey": {
                "exemplarCity": "Niamey"
              },
              "Nouakchott": {
                "exemplarCity": "Nouakchott"
              },
              "Ouagadougou": {
                "exemplarCity": "Ouagadougou"
              },
              "Porto-Novo": {
                "exemplarCity": "Porto Novo"
              },
              "Sao_Tome": {
                "exemplarCity": "São Tomé"
              },
              "Tripoli": {
                "exemplarCity": "Tripolis"
              },
              "Tunis": {
                "exemplarCity": "Tunis"
              },
              "Windhoek": {
                "exemplarCity": "Windhoek"
              }
            },
            "Asia": {
              "Aden": {
                "exemplarCity": "Aden"
              },
              "Almaty": {
                "exemplarCity": "Almaty"
              },
              "Amman": {
                "exemplarCity": "Amman"
              },
              "Anadyr": {
                "exemplarCity": "Anadyr"
              },
              "Aqtau": {
                "exemplarCity": "Aqtau"
              },
              "Aqtobe": {
                "exemplarCity": "Aktobe"
              },
              "Ashgabat": {
                "exemplarCity": "Aşgabat"
              },
              "Baghdad": {
                "exemplarCity": "Bagdad"
              },
              "Bahrain": {
                "exemplarCity": "Bahrain"
              },
              "Baku": {
                "exemplarCity": "Baku"
              },
              "Bangkok": {
                "exemplarCity": "Bangkok"
              },
              "Barnaul": {
                "exemplarCity": "Barnaul"
              },
              "Beirut": {
                "exemplarCity": "Beirut"
              },
              "Bishkek": {
                "exemplarCity": "Bischkek"
              },
              "Brunei": {
                "exemplarCity": "Brunei"
              },
              "Calcutta": {
                "exemplarCity": "Kalkutta"
              },
              "Chita": {
                "exemplarCity": "Tschita"
              },
              "Choibalsan": {
                "exemplarCity": "Tschoibalsan"
              },
              "Colombo": {
                "exemplarCity": "Colombo"
              },
              "Damascus": {
                "exemplarCity": "Damaskus"
              },
              "Dhaka": {
                "exemplarCity": "Dhaka"
              },
              "Dili": {
                "exemplarCity": "Dili"
              },
              "Dubai": {
                "exemplarCity": "Dubai"
              },
              "Dushanbe": {
                "exemplarCity": "Duschanbe"
              },
              "Gaza": {
                "exemplarCity": "Gaza"
              },
              "Hebron": {
                "exemplarCity": "Hebron"
              },
              "Hong_Kong": {
                "exemplarCity": "Hongkong"
              },
              "Hovd": {
                "exemplarCity": "Chowd"
              },
              "Irkutsk": {
                "exemplarCity": "Irkutsk"
              },
              "Jakarta": {
                "exemplarCity": "Jakarta"
              },
              "Jayapura": {
                "exemplarCity": "Jayapura"
              },
              "Jerusalem": {
                "exemplarCity": "Jerusalem"
              },
              "Kabul": {
                "exemplarCity": "Kabul"
              },
              "Kamchatka": {
                "exemplarCity": "Kamtschatka"
              },
              "Karachi": {
                "exemplarCity": "Karatschi"
              },
              "Katmandu": {
                "exemplarCity": "Kathmandu"
              },
              "Khandyga": {
                "exemplarCity": "Chandyga"
              },
              "Krasnoyarsk": {
                "exemplarCity": "Krasnojarsk"
              },
              "Kuala_Lumpur": {
                "exemplarCity": "Kuala Lumpur"
              },
              "Kuching": {
                "exemplarCity": "Kuching"
              },
              "Kuwait": {
                "exemplarCity": "Kuwait"
              },
              "Macau": {
                "exemplarCity": "Macao"
              },
              "Magadan": {
                "exemplarCity": "Magadan"
              },
              "Makassar": {
                "exemplarCity": "Makassar"
              },
              "Manila": {
                "exemplarCity": "Manila"
              },
              "Muscat": {
                "exemplarCity": "Maskat"
              },
              "Nicosia": {
                "exemplarCity": "Nikosia"
              },
              "Novokuznetsk": {
                "exemplarCity": "Nowokuznetsk"
              },
              "Novosibirsk": {
                "exemplarCity": "Nowosibirsk"
              },
              "Omsk": {
                "exemplarCity": "Omsk"
              },
              "Oral": {
                "exemplarCity": "Oral"
              },
              "Phnom_Penh": {
                "exemplarCity": "Phnom Penh"
              },
              "Pontianak": {
                "exemplarCity": "Pontianak"
              },
              "Pyongyang": {
                "exemplarCity": "Pjöngjang"
              },
              "Qatar": {
                "exemplarCity": "Katar"
              },
              "Qyzylorda": {
                "exemplarCity": "Qysylorda"
              },
              "Rangoon": {
                "exemplarCity": "Rangun"
              },
              "Riyadh": {
                "exemplarCity": "Riad"
              },
              "Saigon": {
                "exemplarCity": "Ho-Chi-Minh-Stadt"
              },
              "Sakhalin": {
                "exemplarCity": "Sachalin"
              },
              "Samarkand": {
                "exemplarCity": "Samarkand"
              },
              "Seoul": {
                "exemplarCity": "Seoul"
              },
              "Shanghai": {
                "exemplarCity": "Shanghai"
              },
              "Singapore": {
                "exemplarCity": "Singapur"
              },
              "Srednekolymsk": {
                "exemplarCity": "Srednekolymsk"
              },
              "Taipei": {
                "exemplarCity": "Taipeh"
              },
              "Tashkent": {
                "exemplarCity": "Taschkent"
              },
              "Tbilisi": {
                "exemplarCity": "Tiflis"
              },
              "Tehran": {
                "exemplarCity": "Teheran"
              },
              "Thimphu": {
                "exemplarCity": "Thimphu"
              },
              "Tokyo": {
                "exemplarCity": "Tokio"
              },
              "Tomsk": {
                "exemplarCity": "Tomsk"
              },
              "Ulaanbaatar": {
                "exemplarCity": "Ulaanbaatar"
              },
              "Urumqi": {
                "exemplarCity": "Ürümqi"
              },
              "Ust-Nera": {
                "exemplarCity": "Ust-Nera"
              },
              "Vientiane": {
                "exemplarCity": "Vientiane"
              },
              "Vladivostok": {
                "exemplarCity": "Wladiwostok"
              },
              "Yakutsk": {
                "exemplarCity": "Jakutsk"
              },
              "Yekaterinburg": {
                "exemplarCity": "Jekaterinburg"
              },
              "Yerevan": {
                "exemplarCity": "Eriwan"
              }
            },
            "Indian": {
              "Antananarivo": {
                "exemplarCity": "Antananarivo"
              },
              "Chagos": {
                "exemplarCity": "Chagos"
              },
              "Christmas": {
                "exemplarCity": "Weihnachtsinsel"
              },
              "Cocos": {
                "exemplarCity": "Cocos"
              },
              "Comoro": {
                "exemplarCity": "Komoren"
              },
              "Kerguelen": {
                "exemplarCity": "Kerguelen"
              },
              "Mahe": {
                "exemplarCity": "Mahe"
              },
              "Maldives": {
                "exemplarCity": "Malediven"
              },
              "Mauritius": {
                "exemplarCity": "Mauritius"
              },
              "Mayotte": {
                "exemplarCity": "Mayotte"
              },
              "Reunion": {
                "exemplarCity": "Réunion"
              }
            },
            "Australia": {
              "Adelaide": {
                "exemplarCity": "Adelaide"
              },
              "Brisbane": {
                "exemplarCity": "Brisbane"
              },
              "Broken_Hill": {
                "exemplarCity": "Broken Hill"
              },
              "Currie": {
                "exemplarCity": "Currie"
              },
              "Darwin": {
                "exemplarCity": "Darwin"
              },
              "Eucla": {
                "exemplarCity": "Eucla"
              },
              "Hobart": {
                "exemplarCity": "Hobart"
              },
              "Lindeman": {
                "exemplarCity": "Lindeman"
              },
              "Lord_Howe": {
                "exemplarCity": "Lord Howe"
              },
              "Melbourne": {
                "exemplarCity": "Melbourne"
              },
              "Perth": {
                "exemplarCity": "Perth"
              },
              "Sydney": {
                "exemplarCity": "Sydney"
              }
            },
            "Pacific": {
              "Apia": {
                "exemplarCity": "Apia"
              },
              "Auckland": {
                "exemplarCity": "Auckland"
              },
              "Bougainville": {
                "exemplarCity": "Bougainville"
              },
              "Chatham": {
                "exemplarCity": "Chatham"
              },
              "Easter": {
                "exemplarCity": "Osterinsel"
              },
              "Efate": {
                "exemplarCity": "Efate"
              },
              "Enderbury": {
                "exemplarCity": "Enderbury"
              },
              "Fakaofo": {
                "exemplarCity": "Fakaofo"
              },
              "Fiji": {
                "exemplarCity": "Fidschi"
              },
              "Funafuti": {
                "exemplarCity": "Funafuti"
              },
              "Galapagos": {
                "exemplarCity": "Galapagos"
              },
              "Gambier": {
                "exemplarCity": "Gambier"
              },
              "Guadalcanal": {
                "exemplarCity": "Guadalcanal"
              },
              "Guam": {
                "exemplarCity": "Guam"
              },
              "Honolulu": {
                "exemplarCity": "Honolulu"
              },
              "Johnston": {
                "exemplarCity": "Johnston"
              },
              "Kiritimati": {
                "exemplarCity": "Kiritimati"
              },
              "Kosrae": {
                "exemplarCity": "Kosrae"
              },
              "Kwajalein": {
                "exemplarCity": "Kwajalein"
              },
              "Majuro": {
                "exemplarCity": "Majuro"
              },
              "Marquesas": {
                "exemplarCity": "Marquesas"
              },
              "Midway": {
                "exemplarCity": "Midway"
              },
              "Nauru": {
                "exemplarCity": "Nauru"
              },
              "Niue": {
                "exemplarCity": "Niue"
              },
              "Norfolk": {
                "exemplarCity": "Norfolk"
              },
              "Noumea": {
                "exemplarCity": "Noumea"
              },
              "Pago_Pago": {
                "exemplarCity": "Pago Pago"
              },
              "Palau": {
                "exemplarCity": "Palau"
              },
              "Pitcairn": {
                "exemplarCity": "Pitcairn"
              },
              "Ponape": {
                "exemplarCity": "Pohnpei"
              },
              "Port_Moresby": {
                "exemplarCity": "Port Moresby"
              },
              "Rarotonga": {
                "exemplarCity": "Rarotonga"
              },
              "Saipan": {
                "exemplarCity": "Saipan"
              },
              "Tahiti": {
                "exemplarCity": "Tahiti"
              },
              "Tarawa": {
                "exemplarCity": "Tarawa"
              },
              "Tongatapu": {
                "exemplarCity": "Tongatapu"
              },
              "Truk": {
                "exemplarCity": "Chuuk"
              },
              "Wake": {
                "exemplarCity": "Wake"
              },
              "Wallis": {
                "exemplarCity": "Wallis"
              }
            },
            "Arctic": {
              "Longyearbyen": {
                "exemplarCity": "Longyearbyen"
              }
            },
            "Antarctica": {
              "Casey": {
                "exemplarCity": "Casey"
              },
              "Davis": {
                "exemplarCity": "Davis"
              },
              "DumontDUrville": {
                "exemplarCity": "Dumont d’Urville"
              },
              "Macquarie": {
                "exemplarCity": "Macquarie"
              },
              "Mawson": {
                "exemplarCity": "Mawson"
              },
              "McMurdo": {
                "exemplarCity": "McMurdo"
              },
              "Palmer": {
                "exemplarCity": "Palmer"
              },
              "Rothera": {
                "exemplarCity": "Rothera"
              },
              "Syowa": {
                "exemplarCity": "Syowa"
              },
              "Troll": {
                "exemplarCity": "Troll"
              },
              "Vostok": {
                "exemplarCity": "Wostok"
              }
            },
            "Etc": {
              "GMT": {
                "exemplarCity": "GMT"
              },
              "GMT1": {
                "exemplarCity": "GMT+1"
              },
              "GMT10": {
                "exemplarCity": "GMT+10"
              },
              "GMT11": {
                "exemplarCity": "GMT+11"
              },
              "GMT12": {
                "exemplarCity": "GMT+12"
              },
              "GMT2": {
                "exemplarCity": "GMT+2"
              },
              "GMT3": {
                "exemplarCity": "GMT+3"
              },
              "GMT4": {
                "exemplarCity": "GMT+4"
              },
              "GMT5": {
                "exemplarCity": "GMT+5"
              },
              "GMT6": {
                "exemplarCity": "GMT+6"
              },
              "GMT7": {
                "exemplarCity": "GMT+7"
              },
              "GMT8": {
                "exemplarCity": "GMT+8"
              },
              "GMT9": {
                "exemplarCity": "GMT+9"
              },
              "GMT-1": {
                "exemplarCity": "GMT-1"
              },
              "GMT-10": {
                "exemplarCity": "GMT-10"
              },
              "GMT-11": {
                "exemplarCity": "GMT-11"
              },
              "GMT-12": {
                "exemplarCity": "GMT-12"
              },
              "GMT-13": {
                "exemplarCity": "GMT-13"
              },
              "GMT-14": {
                "exemplarCity": "GMT-14"
              },
              "GMT-2": {
                "exemplarCity": "GMT-2"
              },
              "GMT-3": {
                "exemplarCity": "GMT-3"
              },
              "GMT-4": {
                "exemplarCity": "GMT-4"
              },
              "GMT-5": {
                "exemplarCity": "GMT-5"
              },
              "GMT-6": {
                "exemplarCity": "GMT-6"
              },
              "GMT-7": {
                "exemplarCity": "GMT-7"
              },
              "GMT-8": {
                "exemplarCity": "GMT-8"
              },
              "GMT-9": {
                "exemplarCity": "GMT-9"
              },
              "Unknown": {
                "exemplarCity": "Unbekannt"
              }
            }
          },
          "metazone": {
            "Acre": {
              "long": {
                "generic": "Acre-Zeit",
                "standard": "Acre-Normalzeit",
                "daylight": "Acre-Sommerzeit"
              }
            },
            "Afghanistan": {
              "long": {
                "standard": "Afghanistan-Zeit"
              }
            },
            "Africa_Central": {
              "long": {
                "standard": "Zentralafrikanische Zeit"
              }
            },
            "Africa_Eastern": {
              "long": {
                "standard": "Ostafrikanische Zeit"
              }
            },
            "Africa_Southern": {
              "long": {
                "standard": "Südafrikanische Zeit"
              }
            },
            "Africa_Western": {
              "long": {
                "generic": "Westafrikanische Zeit",
                "standard": "Westafrikanische Normalzeit",
                "daylight": "Westafrikanische Sommerzeit"
              }
            },
            "Alaska": {
              "long": {
                "generic": "Alaska-Zeit",
                "standard": "Alaska-Normalzeit",
                "daylight": "Alaska-Sommerzeit"
              }
            },
            "Almaty": {
              "long": {
                "generic": "Almaty-Zeit",
                "standard": "Almaty-Normalzeit",
                "daylight": "Almaty-Sommerzeit"
              }
            },
            "Amazon": {
              "long": {
                "generic": "Amazonas-Zeit",
                "standard": "Amazonas-Normalzeit",
                "daylight": "Amazonas-Sommerzeit"
              }
            },
            "America_Central": {
              "long": {
                "generic": "Nordamerikanische Inlandzeit",
                "standard": "Nordamerikanische Inland-Normalzeit",
                "daylight": "Nordamerikanische Inland-Sommerzeit"
              }
            },
            "America_Eastern": {
              "long": {
                "generic": "Nordamerikanische Ostküstenzeit",
                "standard": "Nordamerikanische Ostküsten-Normalzeit",
                "daylight": "Nordamerikanische Ostküsten-Sommerzeit"
              }
            },
            "America_Mountain": {
              "long": {
                "generic": "Rocky-Mountain-Zeit",
                "standard": "Rocky Mountain-Normalzeit",
                "daylight": "Rocky-Mountain-Sommerzeit"
              }
            },
            "America_Pacific": {
              "long": {
                "generic": "Nordamerikanische Westküstenzeit",
                "standard": "Nordamerikanische Westküsten-Normalzeit",
                "daylight": "Nordamerikanische Westküsten-Sommerzeit"
              }
            },
            "Anadyr": {
              "long": {
                "generic": "Anadyr Zeit",
                "standard": "Anadyr Normalzeit",
                "daylight": "Anadyr Sommerzeit"
              }
            },
            "Apia": {
              "long": {
                "generic": "Apia-Zeit",
                "standard": "Apia-Normalzeit",
                "daylight": "Apia-Sommerzeit"
              }
            },
            "Aqtau": {
              "long": {
                "generic": "Aqtau-Zeit",
                "standard": "Aqtau-Normalzeit",
                "daylight": "Aqtau-Sommerzeit"
              }
            },
            "Aqtobe": {
              "long": {
                "generic": "Aqtöbe-Zeit",
                "standard": "Aqtöbe-Normalzeit",
                "daylight": "Aqtöbe-Sommerzeit"
              }
            },
            "Arabian": {
              "long": {
                "generic": "Arabische Zeit",
                "standard": "Arabische Normalzeit",
                "daylight": "Arabische Sommerzeit"
              }
            },
            "Argentina": {
              "long": {
                "generic": "Argentinische Zeit",
                "standard": "Argentinische Normalzeit",
                "daylight": "Argentinische Sommerzeit"
              }
            },
            "Argentina_Western": {
              "long": {
                "generic": "Westargentinische Zeit",
                "standard": "Westargentinische Normalzeit",
                "daylight": "Westargentinische Sommerzeit"
              }
            },
            "Armenia": {
              "long": {
                "generic": "Armenische Zeit",
                "standard": "Armenische Normalzeit",
                "daylight": "Armenische Sommerzeit"
              }
            },
            "Atlantic": {
              "long": {
                "generic": "Atlantik-Zeit",
                "standard": "Atlantik-Normalzeit",
                "daylight": "Atlantik-Sommerzeit"
              }
            },
            "Australia_Central": {
              "long": {
                "generic": "Zentralaustralische Zeit",
                "standard": "Zentralaustralische Normalzeit",
                "daylight": "Zentralaustralische Sommerzeit"
              }
            },
            "Australia_CentralWestern": {
              "long": {
                "generic": "Zentral-/Westaustralische Zeit",
                "standard": "Zentral-/Westaustralische Normalzeit",
                "daylight": "Zentral-/Westaustralische Sommerzeit"
              }
            },
            "Australia_Eastern": {
              "long": {
                "generic": "Ostaustralische Zeit",
                "standard": "Ostaustralische Normalzeit",
                "daylight": "Ostaustralische Sommerzeit"
              }
            },
            "Australia_Western": {
              "long": {
                "generic": "Westaustralische Zeit",
                "standard": "Westaustralische Normalzeit",
                "daylight": "Westaustralische Sommerzeit"
              }
            },
            "Azerbaijan": {
              "long": {
                "generic": "Aserbaidschanische Zeit",
                "standard": "Aserbeidschanische Normalzeit",
                "daylight": "Aserbaidschanische Sommerzeit"
              }
            },
            "Azores": {
              "long": {
                "generic": "Azoren-Zeit",
                "standard": "Azoren-Normalzeit",
                "daylight": "Azoren-Sommerzeit"
              }
            },
            "Bangladesh": {
              "long": {
                "generic": "Bangladesch-Zeit",
                "standard": "Bangladesch-Normalzeit",
                "daylight": "Bangladesch-Sommerzeit"
              }
            },
            "Bhutan": {
              "long": {
                "standard": "Bhutan-Zeit"
              }
            },
            "Bolivia": {
              "long": {
                "standard": "Bolivianische Zeit"
              }
            },
            "Brasilia": {
              "long": {
                "generic": "Brasília-Zeit",
                "standard": "Brasília-Normalzeit",
                "daylight": "Brasília-Sommerzeit"
              }
            },
            "Brunei": {
              "long": {
                "standard": "Brunei-Zeit"
              }
            },
            "Cape_Verde": {
              "long": {
                "generic": "Cabo-Verde-Zeit",
                "standard": "Cabo-Verde-Normalzeit",
                "daylight": "Cabo-Verde-Sommerzeit"
              }
            },
            "Casey": {
              "long": {
                "standard": "Casey-Zeit"
              }
            },
            "Chamorro": {
              "long": {
                "standard": "Chamorro-Zeit"
              }
            },
            "Chatham": {
              "long": {
                "generic": "Chatham-Zeit",
                "standard": "Chatham-Normalzeit",
                "daylight": "Chatham-Sommerzeit"
              }
            },
            "Chile": {
              "long": {
                "generic": "Chilenische Zeit",
                "standard": "Chilenische Normalzeit",
                "daylight": "Chilenische Sommerzeit"
              }
            },
            "China": {
              "long": {
                "generic": "Chinesische Zeit",
                "standard": "Chinesische Normalzeit",
                "daylight": "Chinesische Sommerzeit"
              }
            },
            "Choibalsan": {
              "long": {
                "generic": "Tschoibalsan-Zeit",
                "standard": "Tschoibalsan-Normalzeit",
                "daylight": "Tschoibalsan-Sommerzeit"
              }
            },
            "Christmas": {
              "long": {
                "standard": "Weihnachtsinsel-Zeit"
              }
            },
            "Cocos": {
              "long": {
                "standard": "Kokosinseln-Zeit"
              }
            },
            "Colombia": {
              "long": {
                "generic": "Kolumbianische Zeit",
                "standard": "Kolumbianische Normalzeit",
                "daylight": "Kolumbianische Sommerzeit"
              }
            },
            "Cook": {
              "long": {
                "generic": "Cookinseln-Zeit",
                "standard": "Cookinseln-Normalzeit",
                "daylight": "Cookinseln-Sommerzeit"
              }
            },
            "Cuba": {
              "long": {
                "generic": "Kubanische Zeit",
                "standard": "Kubanische Normalzeit",
                "daylight": "Kubanische Sommerzeit"
              }
            },
            "Davis": {
              "long": {
                "standard": "Davis-Zeit"
              }
            },
            "DumontDUrville": {
              "long": {
                "standard": "Dumont-d’Urville-Zeit"
              }
            },
            "East_Timor": {
              "long": {
                "standard": "Osttimor-Zeit"
              }
            },
            "Easter": {
              "long": {
                "generic": "Osterinsel-Zeit",
                "standard": "Osterinsel-Normalzeit",
                "daylight": "Osterinsel-Sommerzeit"
              }
            },
            "Ecuador": {
              "long": {
                "standard": "Ecuadorianische Zeit"
              }
            },
            "Europe_Central": {
              "long": {
                "generic": "Mitteleuropäische Zeit",
                "standard": "Mitteleuropäische Normalzeit",
                "daylight": "Mitteleuropäische Sommerzeit"
              },
              "short": {
                "generic": "MEZ",
                "standard": "MEZ",
                "daylight": "MESZ"
              }
            },
            "Europe_Eastern": {
              "long": {
                "generic": "Osteuropäische Zeit",
                "standard": "Osteuropäische Normalzeit",
                "daylight": "Osteuropäische Sommerzeit"
              },
              "short": {
                "generic": "OEZ",
                "standard": "OEZ",
                "daylight": "OESZ"
              }
            },
            "Europe_Further_Eastern": {
              "long": {
                "standard": "Kaliningrader Zeit"
              }
            },
            "Europe_Western": {
              "long": {
                "generic": "Westeuropäische Zeit",
                "standard": "Westeuropäische Normalzeit",
                "daylight": "Westeuropäische Sommerzeit"
              },
              "short": {
                "generic": "WEZ",
                "standard": "WEZ",
                "daylight": "WESZ"
              }
            },
            "Falkland": {
              "long": {
                "generic": "Falklandinseln-Zeit",
                "standard": "Falklandinseln-Normalzeit",
                "daylight": "Falklandinseln-Sommerzeit"
              }
            },
            "Fiji": {
              "long": {
                "generic": "Fidschi-Zeit",
                "standard": "Fidschi-Normalzeit",
                "daylight": "Fidschi-Sommerzeit"
              }
            },
            "French_Guiana": {
              "long": {
                "standard": "Französisch-Guayana-Zeit"
              }
            },
            "French_Southern": {
              "long": {
                "standard": "Französische Süd- und Antarktisgebiete-Zeit"
              }
            },
            "Galapagos": {
              "long": {
                "standard": "Galapagos-Zeit"
              }
            },
            "Gambier": {
              "long": {
                "standard": "Gambier-Zeit"
              }
            },
            "Georgia": {
              "long": {
                "generic": "Georgische Zeit",
                "standard": "Georgische Normalzeit",
                "daylight": "Georgische Sommerzeit"
              }
            },
            "Gilbert_Islands": {
              "long": {
                "standard": "Gilbert-Inseln-Zeit"
              }
            },
            "GMT": {
              "long": {
                "standard": "Mittlere Greenwich-Zeit"
              }
            },
            "Greenland_Eastern": {
              "long": {
                "generic": "Ostgrönland-Zeit",
                "standard": "Ostgrönland-Normalzeit",
                "daylight": "Ostgrönland-Sommerzeit"
              }
            },
            "Greenland_Western": {
              "long": {
                "generic": "Westgrönland-Zeit",
                "standard": "Westgrönland-Normalzeit",
                "daylight": "Westgrönland-Sommerzeit"
              }
            },
            "Guam": {
              "long": {
                "standard": "Guam-Zeit"
              }
            },
            "Gulf": {
              "long": {
                "standard": "Golf-Zeit"
              }
            },
            "Guyana": {
              "long": {
                "standard": "Guyana-Zeit"
              }
            },
            "Hawaii_Aleutian": {
              "long": {
                "generic": "Hawaii-Aleuten-Zeit",
                "standard": "Hawaii-Aleuten-Normalzeit",
                "daylight": "Hawaii-Aleuten-Sommerzeit"
              }
            },
            "Hong_Kong": {
              "long": {
                "generic": "Hongkong-Zeit",
                "standard": "Hongkong-Normalzeit",
                "daylight": "Hongkong-Sommerzeit"
              }
            },
            "Hovd": {
              "long": {
                "generic": "Chowd-Zeit",
                "standard": "Chowd-Normalzeit",
                "daylight": "Chowd-Sommerzeit"
              }
            },
            "India": {
              "long": {
                "standard": "Indische Zeit"
              }
            },
            "Indian_Ocean": {
              "long": {
                "standard": "Indischer Ozean-Zeit"
              }
            },
            "Indochina": {
              "long": {
                "standard": "Indochina-Zeit"
              }
            },
            "Indonesia_Central": {
              "long": {
                "standard": "Zentralindonesische Zeit"
              }
            },
            "Indonesia_Eastern": {
              "long": {
                "standard": "Ostindonesische Zeit"
              }
            },
            "Indonesia_Western": {
              "long": {
                "standard": "Westindonesische Zeit"
              }
            },
            "Iran": {
              "long": {
                "generic": "Iranische Zeit",
                "standard": "Iranische Normalzeit",
                "daylight": "Iranische Sommerzeit"
              }
            },
            "Irkutsk": {
              "long": {
                "generic": "Irkutsk-Zeit",
                "standard": "Irkutsk-Normalzeit",
                "daylight": "Irkutsk-Sommerzeit"
              }
            },
            "Israel": {
              "long": {
                "generic": "Israelische Zeit",
                "standard": "Israelische Normalzeit",
                "daylight": "Israelische Sommerzeit"
              }
            },
            "Japan": {
              "long": {
                "generic": "Japanische Zeit",
                "standard": "Japanische Normalzeit",
                "daylight": "Japanische Sommerzeit"
              }
            },
            "Kamchatka": {
              "long": {
                "generic": "Kamtschatka-Zeit",
                "standard": "Kamtschatka-Normalzeit",
                "daylight": "Kamtschatka-Sommerzeit"
              }
            },
            "Kazakhstan_Eastern": {
              "long": {
                "standard": "Ostkasachische Zeit"
              }
            },
            "Kazakhstan_Western": {
              "long": {
                "standard": "Westkasachische Zeit"
              }
            },
            "Korea": {
              "long": {
                "generic": "Koreanische Zeit",
                "standard": "Koreanische Normalzeit",
                "daylight": "Koreanische Sommerzeit"
              }
            },
            "Kosrae": {
              "long": {
                "standard": "Kosrae-Zeit"
              }
            },
            "Krasnoyarsk": {
              "long": {
                "generic": "Krasnojarsk-Zeit",
                "standard": "Krasnojarsk-Normalzeit",
                "daylight": "Krasnojarsk-Sommerzeit"
              }
            },
            "Kyrgystan": {
              "long": {
                "standard": "Kirgisistan-Zeit"
              }
            },
            "Lanka": {
              "long": {
                "standard": "Sri-Lanka-Zeit"
              }
            },
            "Line_Islands": {
              "long": {
                "standard": "Linieninseln-Zeit"
              }
            },
            "Lord_Howe": {
              "long": {
                "generic": "Lord-Howe-Zeit",
                "standard": "Lord-Howe-Normalzeit",
                "daylight": "Lord-Howe-Sommerzeit"
              }
            },
            "Macau": {
              "long": {
                "generic": "Macau-Zeit",
                "standard": "Macau-Normalzeit",
                "daylight": "Macau-Sommerzeit"
              }
            },
            "Macquarie": {
              "long": {
                "standard": "Macquarieinsel-Zeit"
              }
            },
            "Magadan": {
              "long": {
                "generic": "Magadan-Zeit",
                "standard": "Magadan-Normalzeit",
                "daylight": "Magadan-Sommerzeit"
              }
            },
            "Malaysia": {
              "long": {
                "standard": "Malaysische Zeit"
              }
            },
            "Maldives": {
              "long": {
                "standard": "Malediven-Zeit"
              }
            },
            "Marquesas": {
              "long": {
                "standard": "Marquesas-Zeit"
              }
            },
            "Marshall_Islands": {
              "long": {
                "standard": "Marshallinseln-Zeit"
              }
            },
            "Mauritius": {
              "long": {
                "generic": "Mauritius-Zeit",
                "standard": "Mauritius-Normalzeit",
                "daylight": "Mauritius-Sommerzeit"
              }
            },
            "Mawson": {
              "long": {
                "standard": "Mawson-Zeit"
              }
            },
            "Mexico_Northwest": {
              "long": {
                "generic": "Mexiko Nordwestliche Zone-Zeit",
                "standard": "Mexiko Nordwestliche Zone-Normalzeit",
                "daylight": "Mexiko Nordwestliche Zone-Sommerzeit"
              }
            },
            "Mexico_Pacific": {
              "long": {
                "generic": "Mexiko Pazifikzone-Zeit",
                "standard": "Mexiko Pazifikzone-Normalzeit",
                "daylight": "Mexiko Pazifikzone-Sommerzeit"
              }
            },
            "Mongolia": {
              "long": {
                "generic": "Ulaanbaatar-Zeit",
                "standard": "Ulaanbaatar-Normalzeit",
                "daylight": "Ulaanbaatar-Sommerzeit"
              }
            },
            "Moscow": {
              "long": {
                "generic": "Moskauer Zeit",
                "standard": "Moskauer Normalzeit",
                "daylight": "Moskauer Sommerzeit"
              }
            },
            "Myanmar": {
              "long": {
                "standard": "Myanmar-Zeit"
              }
            },
            "Nauru": {
              "long": {
                "standard": "Nauru-Zeit"
              }
            },
            "Nepal": {
              "long": {
                "standard": "Nepalesische Zeit"
              }
            },
            "New_Caledonia": {
              "long": {
                "generic": "Neukaledonische Zeit",
                "standard": "Neukaledonische Normalzeit",
                "daylight": "Neukaledonische Sommerzeit"
              }
            },
            "New_Zealand": {
              "long": {
                "generic": "Neuseeland-Zeit",
                "standard": "Neuseeland-Normalzeit",
                "daylight": "Neuseeland-Sommerzeit"
              }
            },
            "Newfoundland": {
              "long": {
                "generic": "Neufundland-Zeit",
                "standard": "Neufundland-Normalzeit",
                "daylight": "Neufundland-Sommerzeit"
              }
            },
            "Niue": {
              "long": {
                "standard": "Niue-Zeit"
              }
            },
            "Norfolk": {
              "long": {
                "standard": "Norfolkinsel-Zeit"
              }
            },
            "Noronha": {
              "long": {
                "generic": "Fernando de Noronha-Zeit",
                "standard": "Fernando de Noronha-Normalzeit",
                "daylight": "Fernando de Noronha-Sommerzeit"
              }
            },
            "North_Mariana": {
              "long": {
                "standard": "Nördliche-Marianen-Zeit"
              }
            },
            "Novosibirsk": {
              "long": {
                "generic": "Nowosibirsk-Zeit",
                "standard": "Nowosibirsk-Normalzeit",
                "daylight": "Nowosibirsk-Sommerzeit"
              }
            },
            "Omsk": {
              "long": {
                "generic": "Omsk-Zeit",
                "standard": "Omsk-Normalzeit",
                "daylight": "Omsk-Sommerzeit"
              }
            },
            "Pakistan": {
              "long": {
                "generic": "Pakistanische Zeit",
                "standard": "Pakistanische Normalzeit",
                "daylight": "Pakistanische Sommerzeit"
              }
            },
            "Palau": {
              "long": {
                "standard": "Palau-Zeit"
              }
            },
            "Papua_New_Guinea": {
              "long": {
                "standard": "Papua-Neuguinea-Zeit"
              }
            },
            "Paraguay": {
              "long": {
                "generic": "Paraguayanische Zeit",
                "standard": "Paraguayanische Normalzeit",
                "daylight": "Paraguayanische Sommerzeit"
              }
            },
            "Peru": {
              "long": {
                "generic": "Peruanische Zeit",
                "standard": "Peruanische Normalzeit",
                "daylight": "Peruanische Sommerzeit"
              }
            },
            "Philippines": {
              "long": {
                "generic": "Philippinische Zeit",
                "standard": "Philippinische Normalzeit",
                "daylight": "Philippinische Sommerzeit"
              }
            },
            "Phoenix_Islands": {
              "long": {
                "standard": "Phoenixinseln-Zeit"
              }
            },
            "Pierre_Miquelon": {
              "long": {
                "generic": "Saint-Pierre-und-Miquelon-Zeit",
                "standard": "Saint-Pierre-und-Miquelon-Normalzeit",
                "daylight": "Saint-Pierre-und-Miquelon-Sommerzeit"
              }
            },
            "Pitcairn": {
              "long": {
                "standard": "Pitcairninseln-Zeit"
              }
            },
            "Ponape": {
              "long": {
                "standard": "Ponape-Zeit"
              }
            },
            "Pyongyang": {
              "long": {
                "standard": "Pjöngjang-Zeit"
              }
            },
            "Qyzylorda": {
              "long": {
                "generic": "Quysylorda-Zeit",
                "standard": "Quysylorda-Normalzeit",
                "daylight": "Qysylorda-Sommerzeit"
              }
            },
            "Reunion": {
              "long": {
                "standard": "Réunion-Zeit"
              }
            },
            "Rothera": {
              "long": {
                "standard": "Rothera-Zeit"
              }
            },
            "Sakhalin": {
              "long": {
                "generic": "Sachalin-Zeit",
                "standard": "Sachalin-Normalzeit",
                "daylight": "Sachalin-Sommerzeit"
              }
            },
            "Samara": {
              "long": {
                "generic": "Samara-Zeit",
                "standard": "Samara-Normalzeit",
                "daylight": "Samara-Sommerzeit"
              }
            },
            "Samoa": {
              "long": {
                "generic": "Samoa-Zeit",
                "standard": "Samoa-Normalzeit",
                "daylight": "Samoa-Sommerzeit"
              }
            },
            "Seychelles": {
              "long": {
                "standard": "Seychellen-Zeit"
              }
            },
            "Singapore": {
              "long": {
                "standard": "Singapur-Zeit"
              }
            },
            "Solomon": {
              "long": {
                "standard": "Salomoninseln-Zeit"
              }
            },
            "South_Georgia": {
              "long": {
                "standard": "Südgeorgische Zeit"
              }
            },
            "Suriname": {
              "long": {
                "standard": "Suriname-Zeit"
              }
            },
            "Syowa": {
              "long": {
                "standard": "Syowa-Zeit"
              }
            },
            "Tahiti": {
              "long": {
                "standard": "Tahiti-Zeit"
              }
            },
            "Taipei": {
              "long": {
                "generic": "Taipeh-Zeit",
                "standard": "Taipeh-Normalzeit",
                "daylight": "Taipeh-Sommerzeit"
              }
            },
            "Tajikistan": {
              "long": {
                "standard": "Tadschikistan-Zeit"
              }
            },
            "Tokelau": {
              "long": {
                "standard": "Tokelau-Zeit"
              }
            },
            "Tonga": {
              "long": {
                "generic": "Tonganische Zeit",
                "standard": "Tonganische Normalzeit",
                "daylight": "Tonganische Sommerzeit"
              }
            },
            "Truk": {
              "long": {
                "standard": "Chuuk-Zeit"
              }
            },
            "Turkmenistan": {
              "long": {
                "generic": "Turkmenistan-Zeit",
                "standard": "Turkmenistan-Normalzeit",
                "daylight": "Turkmenistan-Sommerzeit"
              }
            },
            "Tuvalu": {
              "long": {
                "standard": "Tuvalu-Zeit"
              }
            },
            "Uruguay": {
              "long": {
                "generic": "Uruguayanische Zeit",
                "standard": "Uruguyanische Normalzeit",
                "daylight": "Uruguayanische Sommerzeit"
              }
            },
            "Uzbekistan": {
              "long": {
                "generic": "Usbekistan-Zeit",
                "standard": "Usbekistan-Normalzeit",
                "daylight": "Usbekistan-Sommerzeit"
              }
            },
            "Vanuatu": {
              "long": {
                "generic": "Vanuatu-Zeit",
                "standard": "Vanuatu-Normalzeit",
                "daylight": "Vanuatu-Sommerzeit"
              }
            },
            "Venezuela": {
              "long": {
                "standard": "Venezuela-Zeit"
              }
            },
            "Vladivostok": {
              "long": {
                "generic": "Wladiwostok-Zeit",
                "standard": "Wladiwostok-Normalzeit",
                "daylight": "Wladiwostok-Sommerzeit"
              }
            },
            "Volgograd": {
              "long": {
                "generic": "Wolgograd-Zeit",
                "standard": "Wolgograd-Normalzeit",
                "daylight": "Wolgograd-Sommerzeit"
              }
            },
            "Vostok": {
              "long": {
                "standard": "Wostok-Zeit"
              }
            },
            "Wake": {
              "long": {
                "standard": "Wake-Insel-Zeit"
              }
            },
            "Wallis": {
              "long": {
                "standard": "Wallis-und-Futuna-Zeit"
              }
            },
            "Yakutsk": {
              "long": {
                "generic": "Jakutsk-Zeit",
                "standard": "Jakutsk-Normalzeit",
                "daylight": "Jakutsk-Sommerzeit"
              }
            },
            "Yekaterinburg": {
              "long": {
                "generic": "Jekaterinburg-Zeit",
                "standard": "Jekaterinburg-Normalzeit",
                "daylight": "Jekaterinburg-Sommerzeit"
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "de";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 12879 $",
                        "_cldrVersion";
                    "30.0.3";
                }
                "language";
                "de";
            }
            "dates";
            {
                "timeZoneNames";
                {
                    "hourFormat";
                    "+HH:mm;-HH:mm",
                        "gmtFormat";
                    "GMT{0}",
                        "gmtZeroFormat";
                    "GMT",
                        "regionFormat";
                    "{0} Zeit",
                        "regionFormat-type-daylight";
                    "{0} Sommerzeit",
                        "regionFormat-type-standard";
                    "{0} Normalzeit",
                        "fallbackFormat";
                    "{1} ({0})",
                        "zone";
                    {
                        "America";
                        {
                            "Adak";
                            {
                                "exemplarCity";
                                "Adak";
                            }
                            "Anchorage";
                            {
                                "exemplarCity";
                                "Anchorage";
                            }
                            "Anguilla";
                            {
                                "exemplarCity";
                                "Anguilla";
                            }
                            "Antigua";
                            {
                                "exemplarCity";
                                "Antigua";
                            }
                            "Araguaina";
                            {
                                "exemplarCity";
                                "Araguaina";
                            }
                            "Argentina";
                            {
                                "Rio_Gallegos";
                                {
                                    "exemplarCity";
                                    "Rio Gallegos";
                                }
                                "San_Juan";
                                {
                                    "exemplarCity";
                                    "San Juan";
                                }
                                "Ushuaia";
                                {
                                    "exemplarCity";
                                    "Ushuaia";
                                }
                                "La_Rioja";
                                {
                                    "exemplarCity";
                                    "La Rioja";
                                }
                                "San_Luis";
                                {
                                    "exemplarCity";
                                    "San Luis";
                                }
                                "Salta";
                                {
                                    "exemplarCity";
                                    "Salta";
                                }
                                "Tucuman";
                                {
                                    "exemplarCity";
                                    "Tucuman";
                                }
                            }
                            "Aruba";
                            {
                                "exemplarCity";
                                "Aruba";
                            }
                            "Asuncion";
                            {
                                "exemplarCity";
                                "Asunción";
                            }
                            "Bahia";
                            {
                                "exemplarCity";
                                "Bahia";
                            }
                            "Bahia_Banderas";
                            {
                                "exemplarCity";
                                "Bahia Banderas";
                            }
                            "Barbados";
                            {
                                "exemplarCity";
                                "Barbados";
                            }
                            "Belem";
                            {
                                "exemplarCity";
                                "Belem";
                            }
                            "Belize";
                            {
                                "exemplarCity";
                                "Belize";
                            }
                            "Blanc-Sablon";
                            {
                                "exemplarCity";
                                "Blanc-Sablon";
                            }
                            "Boa_Vista";
                            {
                                "exemplarCity";
                                "Boa Vista";
                            }
                            "Bogota";
                            {
                                "exemplarCity";
                                "Bogotá";
                            }
                            "Boise";
                            {
                                "exemplarCity";
                                "Boise";
                            }
                            "Buenos_Aires";
                            {
                                "exemplarCity";
                                "Buenos Aires";
                            }
                            "Cambridge_Bay";
                            {
                                "exemplarCity";
                                "Cambridge Bay";
                            }
                            "Campo_Grande";
                            {
                                "exemplarCity";
                                "Campo Grande";
                            }
                            "Cancun";
                            {
                                "exemplarCity";
                                "Cancún";
                            }
                            "Caracas";
                            {
                                "exemplarCity";
                                "Caracas";
                            }
                            "Catamarca";
                            {
                                "exemplarCity";
                                "Catamarca";
                            }
                            "Cayenne";
                            {
                                "exemplarCity";
                                "Cayenne";
                            }
                            "Cayman";
                            {
                                "exemplarCity";
                                "Kaimaninseln";
                            }
                            "Chicago";
                            {
                                "exemplarCity";
                                "Chicago";
                            }
                            "Chihuahua";
                            {
                                "exemplarCity";
                                "Chihuahua";
                            }
                            "Coral_Harbour";
                            {
                                "exemplarCity";
                                "Atikokan";
                            }
                            "Cordoba";
                            {
                                "exemplarCity";
                                "Córdoba";
                            }
                            "Costa_Rica";
                            {
                                "exemplarCity";
                                "Costa Rica";
                            }
                            "Creston";
                            {
                                "exemplarCity";
                                "Creston";
                            }
                            "Cuiaba";
                            {
                                "exemplarCity";
                                "Cuiaba";
                            }
                            "Curacao";
                            {
                                "exemplarCity";
                                "Curaçao";
                            }
                            "Danmarkshavn";
                            {
                                "exemplarCity";
                                "Danmarkshavn";
                            }
                            "Dawson";
                            {
                                "exemplarCity";
                                "Dawson";
                            }
                            "Dawson_Creek";
                            {
                                "exemplarCity";
                                "Dawson Creek";
                            }
                            "Denver";
                            {
                                "exemplarCity";
                                "Denver";
                            }
                            "Detroit";
                            {
                                "exemplarCity";
                                "Detroit";
                            }
                            "Dominica";
                            {
                                "exemplarCity";
                                "Dominica";
                            }
                            "Edmonton";
                            {
                                "exemplarCity";
                                "Edmonton";
                            }
                            "Eirunepe";
                            {
                                "exemplarCity";
                                "Eirunepe";
                            }
                            "El_Salvador";
                            {
                                "exemplarCity";
                                "El Salvador";
                            }
                            "Fort_Nelson";
                            {
                                "exemplarCity";
                                "Fort Nelson";
                            }
                            "Fortaleza";
                            {
                                "exemplarCity";
                                "Fortaleza";
                            }
                            "Glace_Bay";
                            {
                                "exemplarCity";
                                "Glace Bay";
                            }
                            "Godthab";
                            {
                                "exemplarCity";
                                "Nuuk";
                            }
                            "Goose_Bay";
                            {
                                "exemplarCity";
                                "Goose Bay";
                            }
                            "Grand_Turk";
                            {
                                "exemplarCity";
                                "Grand Turk";
                            }
                            "Grenada";
                            {
                                "exemplarCity";
                                "Grenada";
                            }
                            "Guadeloupe";
                            {
                                "exemplarCity";
                                "Guadeloupe";
                            }
                            "Guatemala";
                            {
                                "exemplarCity";
                                "Guatemala";
                            }
                            "Guayaquil";
                            {
                                "exemplarCity";
                                "Guayaquil";
                            }
                            "Guyana";
                            {
                                "exemplarCity";
                                "Guyana";
                            }
                            "Halifax";
                            {
                                "exemplarCity";
                                "Halifax";
                            }
                            "Havana";
                            {
                                "exemplarCity";
                                "Havanna";
                            }
                            "Hermosillo";
                            {
                                "exemplarCity";
                                "Hermosillo";
                            }
                            "Indiana";
                            {
                                "Vincennes";
                                {
                                    "exemplarCity";
                                    "Vincennes, Indiana";
                                }
                                "Petersburg";
                                {
                                    "exemplarCity";
                                    "Petersburg, Indiana";
                                }
                                "Tell_City";
                                {
                                    "exemplarCity";
                                    "Tell City, Indiana";
                                }
                                "Knox";
                                {
                                    "exemplarCity";
                                    "Knox, Indiana";
                                }
                                "Winamac";
                                {
                                    "exemplarCity";
                                    "Winamac, Indiana";
                                }
                                "Marengo";
                                {
                                    "exemplarCity";
                                    "Marengo, Indiana";
                                }
                                "Vevay";
                                {
                                    "exemplarCity";
                                    "Vevay, Indiana";
                                }
                            }
                            "Indianapolis";
                            {
                                "exemplarCity";
                                "Indianapolis";
                            }
                            "Inuvik";
                            {
                                "exemplarCity";
                                "Inuvik";
                            }
                            "Iqaluit";
                            {
                                "exemplarCity";
                                "Iqaluit";
                            }
                            "Jamaica";
                            {
                                "exemplarCity";
                                "Jamaika";
                            }
                            "Jujuy";
                            {
                                "exemplarCity";
                                "Jujuy";
                            }
                            "Juneau";
                            {
                                "exemplarCity";
                                "Juneau";
                            }
                            "Kentucky";
                            {
                                "Monticello";
                                {
                                    "exemplarCity";
                                    "Monticello, Kentucky";
                                }
                            }
                            "Kralendijk";
                            {
                                "exemplarCity";
                                "Kralendijk";
                            }
                            "La_Paz";
                            {
                                "exemplarCity";
                                "La Paz";
                            }
                            "Lima";
                            {
                                "exemplarCity";
                                "Lima";
                            }
                            "Los_Angeles";
                            {
                                "exemplarCity";
                                "Los Angeles";
                            }
                            "Louisville";
                            {
                                "exemplarCity";
                                "Louisville";
                            }
                            "Lower_Princes";
                            {
                                "exemplarCity";
                                "Lower Prince’s Quarter";
                            }
                            "Maceio";
                            {
                                "exemplarCity";
                                "Maceio";
                            }
                            "Managua";
                            {
                                "exemplarCity";
                                "Managua";
                            }
                            "Manaus";
                            {
                                "exemplarCity";
                                "Manaus";
                            }
                            "Marigot";
                            {
                                "exemplarCity";
                                "Marigot";
                            }
                            "Martinique";
                            {
                                "exemplarCity";
                                "Martinique";
                            }
                            "Matamoros";
                            {
                                "exemplarCity";
                                "Matamoros";
                            }
                            "Mazatlan";
                            {
                                "exemplarCity";
                                "Mazatlan";
                            }
                            "Mendoza";
                            {
                                "exemplarCity";
                                "Mendoza";
                            }
                            "Menominee";
                            {
                                "exemplarCity";
                                "Menominee";
                            }
                            "Merida";
                            {
                                "exemplarCity";
                                "Merida";
                            }
                            "Metlakatla";
                            {
                                "exemplarCity";
                                "Metlakatla";
                            }
                            "Mexico_City";
                            {
                                "exemplarCity";
                                "Mexiko-Stadt";
                            }
                            "Miquelon";
                            {
                                "exemplarCity";
                                "Miquelon";
                            }
                            "Moncton";
                            {
                                "exemplarCity";
                                "Moncton";
                            }
                            "Monterrey";
                            {
                                "exemplarCity";
                                "Monterrey";
                            }
                            "Montevideo";
                            {
                                "exemplarCity";
                                "Montevideo";
                            }
                            "Montserrat";
                            {
                                "exemplarCity";
                                "Montserrat";
                            }
                            "Nassau";
                            {
                                "exemplarCity";
                                "Nassau";
                            }
                            "New_York";
                            {
                                "exemplarCity";
                                "New York";
                            }
                            "Nipigon";
                            {
                                "exemplarCity";
                                "Nipigon";
                            }
                            "Nome";
                            {
                                "exemplarCity";
                                "Nome";
                            }
                            "Noronha";
                            {
                                "exemplarCity";
                                "Noronha";
                            }
                            "North_Dakota";
                            {
                                "Beulah";
                                {
                                    "exemplarCity";
                                    "Beulah, North Dakota";
                                }
                                "New_Salem";
                                {
                                    "exemplarCity";
                                    "New Salem, North Dakota";
                                }
                                "Center";
                                {
                                    "exemplarCity";
                                    "Center, North Dakota";
                                }
                            }
                            "Ojinaga";
                            {
                                "exemplarCity";
                                "Ojinaga";
                            }
                            "Panama";
                            {
                                "exemplarCity";
                                "Panama";
                            }
                            "Pangnirtung";
                            {
                                "exemplarCity";
                                "Pangnirtung";
                            }
                            "Paramaribo";
                            {
                                "exemplarCity";
                                "Paramaribo";
                            }
                            "Phoenix";
                            {
                                "exemplarCity";
                                "Phoenix";
                            }
                            "Port-au-Prince";
                            {
                                "exemplarCity";
                                "Port-au-Prince";
                            }
                            "Port_of_Spain";
                            {
                                "exemplarCity";
                                "Port of Spain";
                            }
                            "Porto_Velho";
                            {
                                "exemplarCity";
                                "Porto Velho";
                            }
                            "Puerto_Rico";
                            {
                                "exemplarCity";
                                "Puerto Rico";
                            }
                            "Rainy_River";
                            {
                                "exemplarCity";
                                "Rainy River";
                            }
                            "Rankin_Inlet";
                            {
                                "exemplarCity";
                                "Rankin Inlet";
                            }
                            "Recife";
                            {
                                "exemplarCity";
                                "Recife";
                            }
                            "Regina";
                            {
                                "exemplarCity";
                                "Regina";
                            }
                            "Resolute";
                            {
                                "exemplarCity";
                                "Resolute";
                            }
                            "Rio_Branco";
                            {
                                "exemplarCity";
                                "Rio Branco";
                            }
                            "Santa_Isabel";
                            {
                                "exemplarCity";
                                "Santa Isabel";
                            }
                            "Santarem";
                            {
                                "exemplarCity";
                                "Santarem";
                            }
                            "Santiago";
                            {
                                "exemplarCity";
                                "Santiago";
                            }
                            "Santo_Domingo";
                            {
                                "exemplarCity";
                                "Santo Domingo";
                            }
                            "Sao_Paulo";
                            {
                                "exemplarCity";
                                "São Paulo";
                            }
                            "Scoresbysund";
                            {
                                "exemplarCity";
                                "Ittoqqortoormiit";
                            }
                            "Sitka";
                            {
                                "exemplarCity";
                                "Sitka";
                            }
                            "St_Barthelemy";
                            {
                                "exemplarCity";
                                "Saint-Barthélemy";
                            }
                            "St_Johns";
                            {
                                "exemplarCity";
                                "St. John’s";
                            }
                            "St_Kitts";
                            {
                                "exemplarCity";
                                "St. Kitts";
                            }
                            "St_Lucia";
                            {
                                "exemplarCity";
                                "St. Lucia";
                            }
                            "St_Thomas";
                            {
                                "exemplarCity";
                                "St. Thomas";
                            }
                            "St_Vincent";
                            {
                                "exemplarCity";
                                "St. Vincent";
                            }
                            "Swift_Current";
                            {
                                "exemplarCity";
                                "Swift Current";
                            }
                            "Tegucigalpa";
                            {
                                "exemplarCity";
                                "Tegucigalpa";
                            }
                            "Thule";
                            {
                                "exemplarCity";
                                "Thule";
                            }
                            "Thunder_Bay";
                            {
                                "exemplarCity";
                                "Thunder Bay";
                            }
                            "Tijuana";
                            {
                                "exemplarCity";
                                "Tijuana";
                            }
                            "Toronto";
                            {
                                "exemplarCity";
                                "Toronto";
                            }
                            "Tortola";
                            {
                                "exemplarCity";
                                "Tortola";
                            }
                            "Vancouver";
                            {
                                "exemplarCity";
                                "Vancouver";
                            }
                            "Whitehorse";
                            {
                                "exemplarCity";
                                "Whitehorse";
                            }
                            "Winnipeg";
                            {
                                "exemplarCity";
                                "Winnipeg";
                            }
                            "Yakutat";
                            {
                                "exemplarCity";
                                "Yakutat";
                            }
                            "Yellowknife";
                            {
                                "exemplarCity";
                                "Yellowknife";
                            }
                        }
                        "Atlantic";
                        {
                            "Azores";
                            {
                                "exemplarCity";
                                "Azoren";
                            }
                            "Bermuda";
                            {
                                "exemplarCity";
                                "Bermudas";
                            }
                            "Canary";
                            {
                                "exemplarCity";
                                "Kanaren";
                            }
                            "Cape_Verde";
                            {
                                "exemplarCity";
                                "Cabo Verde";
                            }
                            "Faeroe";
                            {
                                "exemplarCity";
                                "Färöer";
                            }
                            "Madeira";
                            {
                                "exemplarCity";
                                "Madeira";
                            }
                            "Reykjavik";
                            {
                                "exemplarCity";
                                "Reyk­ja­vík";
                            }
                            "South_Georgia";
                            {
                                "exemplarCity";
                                "Südgeorgien";
                            }
                            "St_Helena";
                            {
                                "exemplarCity";
                                "St. Helena";
                            }
                            "Stanley";
                            {
                                "exemplarCity";
                                "Stanley";
                            }
                        }
                        "Europe";
                        {
                            "Amsterdam";
                            {
                                "exemplarCity";
                                "Amsterdam";
                            }
                            "Andorra";
                            {
                                "exemplarCity";
                                "Andorra";
                            }
                            "Astrakhan";
                            {
                                "exemplarCity";
                                "Astrachan";
                            }
                            "Athens";
                            {
                                "exemplarCity";
                                "Athen";
                            }
                            "Belgrade";
                            {
                                "exemplarCity";
                                "Belgrad";
                            }
                            "Berlin";
                            {
                                "exemplarCity";
                                "Berlin";
                            }
                            "Bratislava";
                            {
                                "exemplarCity";
                                "Bratislava";
                            }
                            "Brussels";
                            {
                                "exemplarCity";
                                "Brüssel";
                            }
                            "Bucharest";
                            {
                                "exemplarCity";
                                "Bukarest";
                            }
                            "Budapest";
                            {
                                "exemplarCity";
                                "Budapest";
                            }
                            "Busingen";
                            {
                                "exemplarCity";
                                "Büsingen";
                            }
                            "Chisinau";
                            {
                                "exemplarCity";
                                "Kischinau";
                            }
                            "Copenhagen";
                            {
                                "exemplarCity";
                                "Kopenhagen";
                            }
                            "Dublin";
                            {
                                "long";
                                {
                                    "daylight";
                                    "Irische Sommerzeit";
                                }
                                "exemplarCity";
                                "Dublin";
                            }
                            "Gibraltar";
                            {
                                "exemplarCity";
                                "Gibraltar";
                            }
                            "Guernsey";
                            {
                                "exemplarCity";
                                "Guernsey";
                            }
                            "Helsinki";
                            {
                                "exemplarCity";
                                "Helsinki";
                            }
                            "Isle_of_Man";
                            {
                                "exemplarCity";
                                "Isle of Man";
                            }
                            "Istanbul";
                            {
                                "exemplarCity";
                                "Istanbul";
                            }
                            "Jersey";
                            {
                                "exemplarCity";
                                "Jersey";
                            }
                            "Kaliningrad";
                            {
                                "exemplarCity";
                                "Kaliningrad";
                            }
                            "Kiev";
                            {
                                "exemplarCity";
                                "Kiew";
                            }
                            "Kirov";
                            {
                                "exemplarCity";
                                "Kirow";
                            }
                            "Lisbon";
                            {
                                "exemplarCity";
                                "Lissabon";
                            }
                            "Ljubljana";
                            {
                                "exemplarCity";
                                "Ljubljana";
                            }
                            "London";
                            {
                                "long";
                                {
                                    "daylight";
                                    "Britische Sommerzeit";
                                }
                                "exemplarCity";
                                "London";
                            }
                            "Luxembourg";
                            {
                                "exemplarCity";
                                "Luxemburg";
                            }
                            "Madrid";
                            {
                                "exemplarCity";
                                "Madrid";
                            }
                            "Malta";
                            {
                                "exemplarCity";
                                "Malta";
                            }
                            "Mariehamn";
                            {
                                "exemplarCity";
                                "Mariehamn";
                            }
                            "Minsk";
                            {
                                "exemplarCity";
                                "Minsk";
                            }
                            "Monaco";
                            {
                                "exemplarCity";
                                "Monaco";
                            }
                            "Moscow";
                            {
                                "exemplarCity";
                                "Moskau";
                            }
                            "Oslo";
                            {
                                "exemplarCity";
                                "Oslo";
                            }
                            "Paris";
                            {
                                "exemplarCity";
                                "Paris";
                            }
                            "Podgorica";
                            {
                                "exemplarCity";
                                "Podgorica";
                            }
                            "Prague";
                            {
                                "exemplarCity";
                                "Prag";
                            }
                            "Riga";
                            {
                                "exemplarCity";
                                "Riga";
                            }
                            "Rome";
                            {
                                "exemplarCity";
                                "Rom";
                            }
                            "Samara";
                            {
                                "exemplarCity";
                                "Samara";
                            }
                            "San_Marino";
                            {
                                "exemplarCity";
                                "San Marino";
                            }
                            "Sarajevo";
                            {
                                "exemplarCity";
                                "Sarajevo";
                            }
                            "Simferopol";
                            {
                                "exemplarCity";
                                "Simferopol";
                            }
                            "Skopje";
                            {
                                "exemplarCity";
                                "Skopje";
                            }
                            "Sofia";
                            {
                                "exemplarCity";
                                "Sofia";
                            }
                            "Stockholm";
                            {
                                "exemplarCity";
                                "Stockholm";
                            }
                            "Tallinn";
                            {
                                "exemplarCity";
                                "Tallinn";
                            }
                            "Tirane";
                            {
                                "exemplarCity";
                                "Tirana";
                            }
                            "Ulyanovsk";
                            {
                                "exemplarCity";
                                "Uljanowsk";
                            }
                            "Uzhgorod";
                            {
                                "exemplarCity";
                                "Uschgorod";
                            }
                            "Vaduz";
                            {
                                "exemplarCity";
                                "Vaduz";
                            }
                            "Vatican";
                            {
                                "exemplarCity";
                                "Vatikan";
                            }
                            "Vienna";
                            {
                                "exemplarCity";
                                "Wien";
                            }
                            "Vilnius";
                            {
                                "exemplarCity";
                                "Vilnius";
                            }
                            "Volgograd";
                            {
                                "exemplarCity";
                                "Wolgograd";
                            }
                            "Warsaw";
                            {
                                "exemplarCity";
                                "Warschau";
                            }
                            "Zagreb";
                            {
                                "exemplarCity";
                                "Zagreb";
                            }
                            "Zaporozhye";
                            {
                                "exemplarCity";
                                "Saporischja";
                            }
                            "Zurich";
                            {
                                "exemplarCity";
                                "Zürich";
                            }
                        }
                        "Africa";
                        {
                            "Abidjan";
                            {
                                "exemplarCity";
                                "Abidjan";
                            }
                            "Accra";
                            {
                                "exemplarCity";
                                "Accra";
                            }
                            "Addis_Ababa";
                            {
                                "exemplarCity";
                                "Addis Abeba";
                            }
                            "Algiers";
                            {
                                "exemplarCity";
                                "Algier";
                            }
                            "Asmera";
                            {
                                "exemplarCity";
                                "Asmara";
                            }
                            "Bamako";
                            {
                                "exemplarCity";
                                "Bamako";
                            }
                            "Bangui";
                            {
                                "exemplarCity";
                                "Bangui";
                            }
                            "Banjul";
                            {
                                "exemplarCity";
                                "Banjul";
                            }
                            "Bissau";
                            {
                                "exemplarCity";
                                "Bissau";
                            }
                            "Blantyre";
                            {
                                "exemplarCity";
                                "Blantyre";
                            }
                            "Brazzaville";
                            {
                                "exemplarCity";
                                "Brazzaville";
                            }
                            "Bujumbura";
                            {
                                "exemplarCity";
                                "Bujumbura";
                            }
                            "Cairo";
                            {
                                "exemplarCity";
                                "Kairo";
                            }
                            "Casablanca";
                            {
                                "exemplarCity";
                                "Casablanca";
                            }
                            "Ceuta";
                            {
                                "exemplarCity";
                                "Ceuta";
                            }
                            "Conakry";
                            {
                                "exemplarCity";
                                "Conakry";
                            }
                            "Dakar";
                            {
                                "exemplarCity";
                                "Dakar";
                            }
                            "Dar_es_Salaam";
                            {
                                "exemplarCity";
                                "Daressalam";
                            }
                            "Djibouti";
                            {
                                "exemplarCity";
                                "Dschibuti";
                            }
                            "Douala";
                            {
                                "exemplarCity";
                                "Douala";
                            }
                            "El_Aaiun";
                            {
                                "exemplarCity";
                                "El Aaiún";
                            }
                            "Freetown";
                            {
                                "exemplarCity";
                                "Freetown";
                            }
                            "Gaborone";
                            {
                                "exemplarCity";
                                "Gaborone";
                            }
                            "Harare";
                            {
                                "exemplarCity";
                                "Harare";
                            }
                            "Johannesburg";
                            {
                                "exemplarCity";
                                "Johannesburg";
                            }
                            "Juba";
                            {
                                "exemplarCity";
                                "Juba";
                            }
                            "Kampala";
                            {
                                "exemplarCity";
                                "Kampala";
                            }
                            "Khartoum";
                            {
                                "exemplarCity";
                                "Khartum";
                            }
                            "Kigali";
                            {
                                "exemplarCity";
                                "Kigali";
                            }
                            "Kinshasa";
                            {
                                "exemplarCity";
                                "Kinshasa";
                            }
                            "Lagos";
                            {
                                "exemplarCity";
                                "Lagos";
                            }
                            "Libreville";
                            {
                                "exemplarCity";
                                "Libreville";
                            }
                            "Lome";
                            {
                                "exemplarCity";
                                "Lomé";
                            }
                            "Luanda";
                            {
                                "exemplarCity";
                                "Luanda";
                            }
                            "Lubumbashi";
                            {
                                "exemplarCity";
                                "Lubumbashi";
                            }
                            "Lusaka";
                            {
                                "exemplarCity";
                                "Lusaka";
                            }
                            "Malabo";
                            {
                                "exemplarCity";
                                "Malabo";
                            }
                            "Maputo";
                            {
                                "exemplarCity";
                                "Maputo";
                            }
                            "Maseru";
                            {
                                "exemplarCity";
                                "Maseru";
                            }
                            "Mbabane";
                            {
                                "exemplarCity";
                                "Mbabane";
                            }
                            "Mogadishu";
                            {
                                "exemplarCity";
                                "Mogadischu";
                            }
                            "Monrovia";
                            {
                                "exemplarCity";
                                "Monrovia";
                            }
                            "Nairobi";
                            {
                                "exemplarCity";
                                "Nairobi";
                            }
                            "Ndjamena";
                            {
                                "exemplarCity";
                                "N’Djamena";
                            }
                            "Niamey";
                            {
                                "exemplarCity";
                                "Niamey";
                            }
                            "Nouakchott";
                            {
                                "exemplarCity";
                                "Nouakchott";
                            }
                            "Ouagadougou";
                            {
                                "exemplarCity";
                                "Ouagadougou";
                            }
                            "Porto-Novo";
                            {
                                "exemplarCity";
                                "Porto Novo";
                            }
                            "Sao_Tome";
                            {
                                "exemplarCity";
                                "São Tomé";
                            }
                            "Tripoli";
                            {
                                "exemplarCity";
                                "Tripolis";
                            }
                            "Tunis";
                            {
                                "exemplarCity";
                                "Tunis";
                            }
                            "Windhoek";
                            {
                                "exemplarCity";
                                "Windhoek";
                            }
                        }
                        "Asia";
                        {
                            "Aden";
                            {
                                "exemplarCity";
                                "Aden";
                            }
                            "Almaty";
                            {
                                "exemplarCity";
                                "Almaty";
                            }
                            "Amman";
                            {
                                "exemplarCity";
                                "Amman";
                            }
                            "Anadyr";
                            {
                                "exemplarCity";
                                "Anadyr";
                            }
                            "Aqtau";
                            {
                                "exemplarCity";
                                "Aqtau";
                            }
                            "Aqtobe";
                            {
                                "exemplarCity";
                                "Aktobe";
                            }
                            "Ashgabat";
                            {
                                "exemplarCity";
                                "Aşgabat";
                            }
                            "Baghdad";
                            {
                                "exemplarCity";
                                "Bagdad";
                            }
                            "Bahrain";
                            {
                                "exemplarCity";
                                "Bahrain";
                            }
                            "Baku";
                            {
                                "exemplarCity";
                                "Baku";
                            }
                            "Bangkok";
                            {
                                "exemplarCity";
                                "Bangkok";
                            }
                            "Barnaul";
                            {
                                "exemplarCity";
                                "Barnaul";
                            }
                            "Beirut";
                            {
                                "exemplarCity";
                                "Beirut";
                            }
                            "Bishkek";
                            {
                                "exemplarCity";
                                "Bischkek";
                            }
                            "Brunei";
                            {
                                "exemplarCity";
                                "Brunei";
                            }
                            "Calcutta";
                            {
                                "exemplarCity";
                                "Kalkutta";
                            }
                            "Chita";
                            {
                                "exemplarCity";
                                "Tschita";
                            }
                            "Choibalsan";
                            {
                                "exemplarCity";
                                "Tschoibalsan";
                            }
                            "Colombo";
                            {
                                "exemplarCity";
                                "Colombo";
                            }
                            "Damascus";
                            {
                                "exemplarCity";
                                "Damaskus";
                            }
                            "Dhaka";
                            {
                                "exemplarCity";
                                "Dhaka";
                            }
                            "Dili";
                            {
                                "exemplarCity";
                                "Dili";
                            }
                            "Dubai";
                            {
                                "exemplarCity";
                                "Dubai";
                            }
                            "Dushanbe";
                            {
                                "exemplarCity";
                                "Duschanbe";
                            }
                            "Gaza";
                            {
                                "exemplarCity";
                                "Gaza";
                            }
                            "Hebron";
                            {
                                "exemplarCity";
                                "Hebron";
                            }
                            "Hong_Kong";
                            {
                                "exemplarCity";
                                "Hongkong";
                            }
                            "Hovd";
                            {
                                "exemplarCity";
                                "Chowd";
                            }
                            "Irkutsk";
                            {
                                "exemplarCity";
                                "Irkutsk";
                            }
                            "Jakarta";
                            {
                                "exemplarCity";
                                "Jakarta";
                            }
                            "Jayapura";
                            {
                                "exemplarCity";
                                "Jayapura";
                            }
                            "Jerusalem";
                            {
                                "exemplarCity";
                                "Jerusalem";
                            }
                            "Kabul";
                            {
                                "exemplarCity";
                                "Kabul";
                            }
                            "Kamchatka";
                            {
                                "exemplarCity";
                                "Kamtschatka";
                            }
                            "Karachi";
                            {
                                "exemplarCity";
                                "Karatschi";
                            }
                            "Katmandu";
                            {
                                "exemplarCity";
                                "Kathmandu";
                            }
                            "Khandyga";
                            {
                                "exemplarCity";
                                "Chandyga";
                            }
                            "Krasnoyarsk";
                            {
                                "exemplarCity";
                                "Krasnojarsk";
                            }
                            "Kuala_Lumpur";
                            {
                                "exemplarCity";
                                "Kuala Lumpur";
                            }
                            "Kuching";
                            {
                                "exemplarCity";
                                "Kuching";
                            }
                            "Kuwait";
                            {
                                "exemplarCity";
                                "Kuwait";
                            }
                            "Macau";
                            {
                                "exemplarCity";
                                "Macao";
                            }
                            "Magadan";
                            {
                                "exemplarCity";
                                "Magadan";
                            }
                            "Makassar";
                            {
                                "exemplarCity";
                                "Makassar";
                            }
                            "Manila";
                            {
                                "exemplarCity";
                                "Manila";
                            }
                            "Muscat";
                            {
                                "exemplarCity";
                                "Maskat";
                            }
                            "Nicosia";
                            {
                                "exemplarCity";
                                "Nikosia";
                            }
                            "Novokuznetsk";
                            {
                                "exemplarCity";
                                "Nowokuznetsk";
                            }
                            "Novosibirsk";
                            {
                                "exemplarCity";
                                "Nowosibirsk";
                            }
                            "Omsk";
                            {
                                "exemplarCity";
                                "Omsk";
                            }
                            "Oral";
                            {
                                "exemplarCity";
                                "Oral";
                            }
                            "Phnom_Penh";
                            {
                                "exemplarCity";
                                "Phnom Penh";
                            }
                            "Pontianak";
                            {
                                "exemplarCity";
                                "Pontianak";
                            }
                            "Pyongyang";
                            {
                                "exemplarCity";
                                "Pjöngjang";
                            }
                            "Qatar";
                            {
                                "exemplarCity";
                                "Katar";
                            }
                            "Qyzylorda";
                            {
                                "exemplarCity";
                                "Qysylorda";
                            }
                            "Rangoon";
                            {
                                "exemplarCity";
                                "Rangun";
                            }
                            "Riyadh";
                            {
                                "exemplarCity";
                                "Riad";
                            }
                            "Saigon";
                            {
                                "exemplarCity";
                                "Ho-Chi-Minh-Stadt";
                            }
                            "Sakhalin";
                            {
                                "exemplarCity";
                                "Sachalin";
                            }
                            "Samarkand";
                            {
                                "exemplarCity";
                                "Samarkand";
                            }
                            "Seoul";
                            {
                                "exemplarCity";
                                "Seoul";
                            }
                            "Shanghai";
                            {
                                "exemplarCity";
                                "Shanghai";
                            }
                            "Singapore";
                            {
                                "exemplarCity";
                                "Singapur";
                            }
                            "Srednekolymsk";
                            {
                                "exemplarCity";
                                "Srednekolymsk";
                            }
                            "Taipei";
                            {
                                "exemplarCity";
                                "Taipeh";
                            }
                            "Tashkent";
                            {
                                "exemplarCity";
                                "Taschkent";
                            }
                            "Tbilisi";
                            {
                                "exemplarCity";
                                "Tiflis";
                            }
                            "Tehran";
                            {
                                "exemplarCity";
                                "Teheran";
                            }
                            "Thimphu";
                            {
                                "exemplarCity";
                                "Thimphu";
                            }
                            "Tokyo";
                            {
                                "exemplarCity";
                                "Tokio";
                            }
                            "Tomsk";
                            {
                                "exemplarCity";
                                "Tomsk";
                            }
                            "Ulaanbaatar";
                            {
                                "exemplarCity";
                                "Ulaanbaatar";
                            }
                            "Urumqi";
                            {
                                "exemplarCity";
                                "Ürümqi";
                            }
                            "Ust-Nera";
                            {
                                "exemplarCity";
                                "Ust-Nera";
                            }
                            "Vientiane";
                            {
                                "exemplarCity";
                                "Vientiane";
                            }
                            "Vladivostok";
                            {
                                "exemplarCity";
                                "Wladiwostok";
                            }
                            "Yakutsk";
                            {
                                "exemplarCity";
                                "Jakutsk";
                            }
                            "Yekaterinburg";
                            {
                                "exemplarCity";
                                "Jekaterinburg";
                            }
                            "Yerevan";
                            {
                                "exemplarCity";
                                "Eriwan";
                            }
                        }
                        "Indian";
                        {
                            "Antananarivo";
                            {
                                "exemplarCity";
                                "Antananarivo";
                            }
                            "Chagos";
                            {
                                "exemplarCity";
                                "Chagos";
                            }
                            "Christmas";
                            {
                                "exemplarCity";
                                "Weihnachtsinsel";
                            }
                            "Cocos";
                            {
                                "exemplarCity";
                                "Cocos";
                            }
                            "Comoro";
                            {
                                "exemplarCity";
                                "Komoren";
                            }
                            "Kerguelen";
                            {
                                "exemplarCity";
                                "Kerguelen";
                            }
                            "Mahe";
                            {
                                "exemplarCity";
                                "Mahe";
                            }
                            "Maldives";
                            {
                                "exemplarCity";
                                "Malediven";
                            }
                            "Mauritius";
                            {
                                "exemplarCity";
                                "Mauritius";
                            }
                            "Mayotte";
                            {
                                "exemplarCity";
                                "Mayotte";
                            }
                            "Reunion";
                            {
                                "exemplarCity";
                                "Réunion";
                            }
                        }
                        "Australia";
                        {
                            "Adelaide";
                            {
                                "exemplarCity";
                                "Adelaide";
                            }
                            "Brisbane";
                            {
                                "exemplarCity";
                                "Brisbane";
                            }
                            "Broken_Hill";
                            {
                                "exemplarCity";
                                "Broken Hill";
                            }
                            "Currie";
                            {
                                "exemplarCity";
                                "Currie";
                            }
                            "Darwin";
                            {
                                "exemplarCity";
                                "Darwin";
                            }
                            "Eucla";
                            {
                                "exemplarCity";
                                "Eucla";
                            }
                            "Hobart";
                            {
                                "exemplarCity";
                                "Hobart";
                            }
                            "Lindeman";
                            {
                                "exemplarCity";
                                "Lindeman";
                            }
                            "Lord_Howe";
                            {
                                "exemplarCity";
                                "Lord Howe";
                            }
                            "Melbourne";
                            {
                                "exemplarCity";
                                "Melbourne";
                            }
                            "Perth";
                            {
                                "exemplarCity";
                                "Perth";
                            }
                            "Sydney";
                            {
                                "exemplarCity";
                                "Sydney";
                            }
                        }
                        "Pacific";
                        {
                            "Apia";
                            {
                                "exemplarCity";
                                "Apia";
                            }
                            "Auckland";
                            {
                                "exemplarCity";
                                "Auckland";
                            }
                            "Bougainville";
                            {
                                "exemplarCity";
                                "Bougainville";
                            }
                            "Chatham";
                            {
                                "exemplarCity";
                                "Chatham";
                            }
                            "Easter";
                            {
                                "exemplarCity";
                                "Osterinsel";
                            }
                            "Efate";
                            {
                                "exemplarCity";
                                "Efate";
                            }
                            "Enderbury";
                            {
                                "exemplarCity";
                                "Enderbury";
                            }
                            "Fakaofo";
                            {
                                "exemplarCity";
                                "Fakaofo";
                            }
                            "Fiji";
                            {
                                "exemplarCity";
                                "Fidschi";
                            }
                            "Funafuti";
                            {
                                "exemplarCity";
                                "Funafuti";
                            }
                            "Galapagos";
                            {
                                "exemplarCity";
                                "Galapagos";
                            }
                            "Gambier";
                            {
                                "exemplarCity";
                                "Gambier";
                            }
                            "Guadalcanal";
                            {
                                "exemplarCity";
                                "Guadalcanal";
                            }
                            "Guam";
                            {
                                "exemplarCity";
                                "Guam";
                            }
                            "Honolulu";
                            {
                                "exemplarCity";
                                "Honolulu";
                            }
                            "Johnston";
                            {
                                "exemplarCity";
                                "Johnston";
                            }
                            "Kiritimati";
                            {
                                "exemplarCity";
                                "Kiritimati";
                            }
                            "Kosrae";
                            {
                                "exemplarCity";
                                "Kosrae";
                            }
                            "Kwajalein";
                            {
                                "exemplarCity";
                                "Kwajalein";
                            }
                            "Majuro";
                            {
                                "exemplarCity";
                                "Majuro";
                            }
                            "Marquesas";
                            {
                                "exemplarCity";
                                "Marquesas";
                            }
                            "Midway";
                            {
                                "exemplarCity";
                                "Midway";
                            }
                            "Nauru";
                            {
                                "exemplarCity";
                                "Nauru";
                            }
                            "Niue";
                            {
                                "exemplarCity";
                                "Niue";
                            }
                            "Norfolk";
                            {
                                "exemplarCity";
                                "Norfolk";
                            }
                            "Noumea";
                            {
                                "exemplarCity";
                                "Noumea";
                            }
                            "Pago_Pago";
                            {
                                "exemplarCity";
                                "Pago Pago";
                            }
                            "Palau";
                            {
                                "exemplarCity";
                                "Palau";
                            }
                            "Pitcairn";
                            {
                                "exemplarCity";
                                "Pitcairn";
                            }
                            "Ponape";
                            {
                                "exemplarCity";
                                "Pohnpei";
                            }
                            "Port_Moresby";
                            {
                                "exemplarCity";
                                "Port Moresby";
                            }
                            "Rarotonga";
                            {
                                "exemplarCity";
                                "Rarotonga";
                            }
                            "Saipan";
                            {
                                "exemplarCity";
                                "Saipan";
                            }
                            "Tahiti";
                            {
                                "exemplarCity";
                                "Tahiti";
                            }
                            "Tarawa";
                            {
                                "exemplarCity";
                                "Tarawa";
                            }
                            "Tongatapu";
                            {
                                "exemplarCity";
                                "Tongatapu";
                            }
                            "Truk";
                            {
                                "exemplarCity";
                                "Chuuk";
                            }
                            "Wake";
                            {
                                "exemplarCity";
                                "Wake";
                            }
                            "Wallis";
                            {
                                "exemplarCity";
                                "Wallis";
                            }
                        }
                        "Arctic";
                        {
                            "Longyearbyen";
                            {
                                "exemplarCity";
                                "Longyearbyen";
                            }
                        }
                        "Antarctica";
                        {
                            "Casey";
                            {
                                "exemplarCity";
                                "Casey";
                            }
                            "Davis";
                            {
                                "exemplarCity";
                                "Davis";
                            }
                            "DumontDUrville";
                            {
                                "exemplarCity";
                                "Dumont d’Urville";
                            }
                            "Macquarie";
                            {
                                "exemplarCity";
                                "Macquarie";
                            }
                            "Mawson";
                            {
                                "exemplarCity";
                                "Mawson";
                            }
                            "McMurdo";
                            {
                                "exemplarCity";
                                "McMurdo";
                            }
                            "Palmer";
                            {
                                "exemplarCity";
                                "Palmer";
                            }
                            "Rothera";
                            {
                                "exemplarCity";
                                "Rothera";
                            }
                            "Syowa";
                            {
                                "exemplarCity";
                                "Syowa";
                            }
                            "Troll";
                            {
                                "exemplarCity";
                                "Troll";
                            }
                            "Vostok";
                            {
                                "exemplarCity";
                                "Wostok";
                            }
                        }
                        "Etc";
                        {
                            "GMT";
                            {
                                "exemplarCity";
                                "GMT";
                            }
                            "GMT1";
                            {
                                "exemplarCity";
                                "GMT+1";
                            }
                            "GMT10";
                            {
                                "exemplarCity";
                                "GMT+10";
                            }
                            "GMT11";
                            {
                                "exemplarCity";
                                "GMT+11";
                            }
                            "GMT12";
                            {
                                "exemplarCity";
                                "GMT+12";
                            }
                            "GMT2";
                            {
                                "exemplarCity";
                                "GMT+2";
                            }
                            "GMT3";
                            {
                                "exemplarCity";
                                "GMT+3";
                            }
                            "GMT4";
                            {
                                "exemplarCity";
                                "GMT+4";
                            }
                            "GMT5";
                            {
                                "exemplarCity";
                                "GMT+5";
                            }
                            "GMT6";
                            {
                                "exemplarCity";
                                "GMT+6";
                            }
                            "GMT7";
                            {
                                "exemplarCity";
                                "GMT+7";
                            }
                            "GMT8";
                            {
                                "exemplarCity";
                                "GMT+8";
                            }
                            "GMT9";
                            {
                                "exemplarCity";
                                "GMT+9";
                            }
                            "GMT-1";
                            {
                                "exemplarCity";
                                "GMT-1";
                            }
                            "GMT-10";
                            {
                                "exemplarCity";
                                "GMT-10";
                            }
                            "GMT-11";
                            {
                                "exemplarCity";
                                "GMT-11";
                            }
                            "GMT-12";
                            {
                                "exemplarCity";
                                "GMT-12";
                            }
                            "GMT-13";
                            {
                                "exemplarCity";
                                "GMT-13";
                            }
                            "GMT-14";
                            {
                                "exemplarCity";
                                "GMT-14";
                            }
                            "GMT-2";
                            {
                                "exemplarCity";
                                "GMT-2";
                            }
                            "GMT-3";
                            {
                                "exemplarCity";
                                "GMT-3";
                            }
                            "GMT-4";
                            {
                                "exemplarCity";
                                "GMT-4";
                            }
                            "GMT-5";
                            {
                                "exemplarCity";
                                "GMT-5";
                            }
                            "GMT-6";
                            {
                                "exemplarCity";
                                "GMT-6";
                            }
                            "GMT-7";
                            {
                                "exemplarCity";
                                "GMT-7";
                            }
                            "GMT-8";
                            {
                                "exemplarCity";
                                "GMT-8";
                            }
                            "GMT-9";
                            {
                                "exemplarCity";
                                "GMT-9";
                            }
                            "Unknown";
                            {
                                "exemplarCity";
                                "Unbekannt";
                            }
                        }
                    }
                    "metazone";
                    {
                        "Acre";
                        {
                            "long";
                            {
                                "generic";
                                "Acre-Zeit",
                                    "standard";
                                "Acre-Normalzeit",
                                    "daylight";
                                "Acre-Sommerzeit";
                            }
                        }
                        "Afghanistan";
                        {
                            "long";
                            {
                                "standard";
                                "Afghanistan-Zeit";
                            }
                        }
                        "Africa_Central";
                        {
                            "long";
                            {
                                "standard";
                                "Zentralafrikanische Zeit";
                            }
                        }
                        "Africa_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Ostafrikanische Zeit";
                            }
                        }
                        "Africa_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "Südafrikanische Zeit";
                            }
                        }
                        "Africa_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westafrikanische Zeit",
                                    "standard";
                                "Westafrikanische Normalzeit",
                                    "daylight";
                                "Westafrikanische Sommerzeit";
                            }
                        }
                        "Alaska";
                        {
                            "long";
                            {
                                "generic";
                                "Alaska-Zeit",
                                    "standard";
                                "Alaska-Normalzeit",
                                    "daylight";
                                "Alaska-Sommerzeit";
                            }
                        }
                        "Almaty";
                        {
                            "long";
                            {
                                "generic";
                                "Almaty-Zeit",
                                    "standard";
                                "Almaty-Normalzeit",
                                    "daylight";
                                "Almaty-Sommerzeit";
                            }
                        }
                        "Amazon";
                        {
                            "long";
                            {
                                "generic";
                                "Amazonas-Zeit",
                                    "standard";
                                "Amazonas-Normalzeit",
                                    "daylight";
                                "Amazonas-Sommerzeit";
                            }
                        }
                        "America_Central";
                        {
                            "long";
                            {
                                "generic";
                                "Nordamerikanische Inlandzeit",
                                    "standard";
                                "Nordamerikanische Inland-Normalzeit",
                                    "daylight";
                                "Nordamerikanische Inland-Sommerzeit";
                            }
                        }
                        "America_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Nordamerikanische Ostküstenzeit",
                                    "standard";
                                "Nordamerikanische Ostküsten-Normalzeit",
                                    "daylight";
                                "Nordamerikanische Ostküsten-Sommerzeit";
                            }
                        }
                        "America_Mountain";
                        {
                            "long";
                            {
                                "generic";
                                "Rocky-Mountain-Zeit",
                                    "standard";
                                "Rocky Mountain-Normalzeit",
                                    "daylight";
                                "Rocky-Mountain-Sommerzeit";
                            }
                        }
                        "America_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "Nordamerikanische Westküstenzeit",
                                    "standard";
                                "Nordamerikanische Westküsten-Normalzeit",
                                    "daylight";
                                "Nordamerikanische Westküsten-Sommerzeit";
                            }
                        }
                        "Anadyr";
                        {
                            "long";
                            {
                                "generic";
                                "Anadyr Zeit",
                                    "standard";
                                "Anadyr Normalzeit",
                                    "daylight";
                                "Anadyr Sommerzeit";
                            }
                        }
                        "Apia";
                        {
                            "long";
                            {
                                "generic";
                                "Apia-Zeit",
                                    "standard";
                                "Apia-Normalzeit",
                                    "daylight";
                                "Apia-Sommerzeit";
                            }
                        }
                        "Aqtau";
                        {
                            "long";
                            {
                                "generic";
                                "Aqtau-Zeit",
                                    "standard";
                                "Aqtau-Normalzeit",
                                    "daylight";
                                "Aqtau-Sommerzeit";
                            }
                        }
                        "Aqtobe";
                        {
                            "long";
                            {
                                "generic";
                                "Aqtöbe-Zeit",
                                    "standard";
                                "Aqtöbe-Normalzeit",
                                    "daylight";
                                "Aqtöbe-Sommerzeit";
                            }
                        }
                        "Arabian";
                        {
                            "long";
                            {
                                "generic";
                                "Arabische Zeit",
                                    "standard";
                                "Arabische Normalzeit",
                                    "daylight";
                                "Arabische Sommerzeit";
                            }
                        }
                        "Argentina";
                        {
                            "long";
                            {
                                "generic";
                                "Argentinische Zeit",
                                    "standard";
                                "Argentinische Normalzeit",
                                    "daylight";
                                "Argentinische Sommerzeit";
                            }
                        }
                        "Argentina_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westargentinische Zeit",
                                    "standard";
                                "Westargentinische Normalzeit",
                                    "daylight";
                                "Westargentinische Sommerzeit";
                            }
                        }
                        "Armenia";
                        {
                            "long";
                            {
                                "generic";
                                "Armenische Zeit",
                                    "standard";
                                "Armenische Normalzeit",
                                    "daylight";
                                "Armenische Sommerzeit";
                            }
                        }
                        "Atlantic";
                        {
                            "long";
                            {
                                "generic";
                                "Atlantik-Zeit",
                                    "standard";
                                "Atlantik-Normalzeit",
                                    "daylight";
                                "Atlantik-Sommerzeit";
                            }
                        }
                        "Australia_Central";
                        {
                            "long";
                            {
                                "generic";
                                "Zentralaustralische Zeit",
                                    "standard";
                                "Zentralaustralische Normalzeit",
                                    "daylight";
                                "Zentralaustralische Sommerzeit";
                            }
                        }
                        "Australia_CentralWestern";
                        {
                            "long";
                            {
                                "generic";
                                "Zentral-/Westaustralische Zeit",
                                    "standard";
                                "Zentral-/Westaustralische Normalzeit",
                                    "daylight";
                                "Zentral-/Westaustralische Sommerzeit";
                            }
                        }
                        "Australia_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Ostaustralische Zeit",
                                    "standard";
                                "Ostaustralische Normalzeit",
                                    "daylight";
                                "Ostaustralische Sommerzeit";
                            }
                        }
                        "Australia_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westaustralische Zeit",
                                    "standard";
                                "Westaustralische Normalzeit",
                                    "daylight";
                                "Westaustralische Sommerzeit";
                            }
                        }
                        "Azerbaijan";
                        {
                            "long";
                            {
                                "generic";
                                "Aserbaidschanische Zeit",
                                    "standard";
                                "Aserbeidschanische Normalzeit",
                                    "daylight";
                                "Aserbaidschanische Sommerzeit";
                            }
                        }
                        "Azores";
                        {
                            "long";
                            {
                                "generic";
                                "Azoren-Zeit",
                                    "standard";
                                "Azoren-Normalzeit",
                                    "daylight";
                                "Azoren-Sommerzeit";
                            }
                        }
                        "Bangladesh";
                        {
                            "long";
                            {
                                "generic";
                                "Bangladesch-Zeit",
                                    "standard";
                                "Bangladesch-Normalzeit",
                                    "daylight";
                                "Bangladesch-Sommerzeit";
                            }
                        }
                        "Bhutan";
                        {
                            "long";
                            {
                                "standard";
                                "Bhutan-Zeit";
                            }
                        }
                        "Bolivia";
                        {
                            "long";
                            {
                                "standard";
                                "Bolivianische Zeit";
                            }
                        }
                        "Brasilia";
                        {
                            "long";
                            {
                                "generic";
                                "Brasília-Zeit",
                                    "standard";
                                "Brasília-Normalzeit",
                                    "daylight";
                                "Brasília-Sommerzeit";
                            }
                        }
                        "Brunei";
                        {
                            "long";
                            {
                                "standard";
                                "Brunei-Zeit";
                            }
                        }
                        "Cape_Verde";
                        {
                            "long";
                            {
                                "generic";
                                "Cabo-Verde-Zeit",
                                    "standard";
                                "Cabo-Verde-Normalzeit",
                                    "daylight";
                                "Cabo-Verde-Sommerzeit";
                            }
                        }
                        "Casey";
                        {
                            "long";
                            {
                                "standard";
                                "Casey-Zeit";
                            }
                        }
                        "Chamorro";
                        {
                            "long";
                            {
                                "standard";
                                "Chamorro-Zeit";
                            }
                        }
                        "Chatham";
                        {
                            "long";
                            {
                                "generic";
                                "Chatham-Zeit",
                                    "standard";
                                "Chatham-Normalzeit",
                                    "daylight";
                                "Chatham-Sommerzeit";
                            }
                        }
                        "Chile";
                        {
                            "long";
                            {
                                "generic";
                                "Chilenische Zeit",
                                    "standard";
                                "Chilenische Normalzeit",
                                    "daylight";
                                "Chilenische Sommerzeit";
                            }
                        }
                        "China";
                        {
                            "long";
                            {
                                "generic";
                                "Chinesische Zeit",
                                    "standard";
                                "Chinesische Normalzeit",
                                    "daylight";
                                "Chinesische Sommerzeit";
                            }
                        }
                        "Choibalsan";
                        {
                            "long";
                            {
                                "generic";
                                "Tschoibalsan-Zeit",
                                    "standard";
                                "Tschoibalsan-Normalzeit",
                                    "daylight";
                                "Tschoibalsan-Sommerzeit";
                            }
                        }
                        "Christmas";
                        {
                            "long";
                            {
                                "standard";
                                "Weihnachtsinsel-Zeit";
                            }
                        }
                        "Cocos";
                        {
                            "long";
                            {
                                "standard";
                                "Kokosinseln-Zeit";
                            }
                        }
                        "Colombia";
                        {
                            "long";
                            {
                                "generic";
                                "Kolumbianische Zeit",
                                    "standard";
                                "Kolumbianische Normalzeit",
                                    "daylight";
                                "Kolumbianische Sommerzeit";
                            }
                        }
                        "Cook";
                        {
                            "long";
                            {
                                "generic";
                                "Cookinseln-Zeit",
                                    "standard";
                                "Cookinseln-Normalzeit",
                                    "daylight";
                                "Cookinseln-Sommerzeit";
                            }
                        }
                        "Cuba";
                        {
                            "long";
                            {
                                "generic";
                                "Kubanische Zeit",
                                    "standard";
                                "Kubanische Normalzeit",
                                    "daylight";
                                "Kubanische Sommerzeit";
                            }
                        }
                        "Davis";
                        {
                            "long";
                            {
                                "standard";
                                "Davis-Zeit";
                            }
                        }
                        "DumontDUrville";
                        {
                            "long";
                            {
                                "standard";
                                "Dumont-d’Urville-Zeit";
                            }
                        }
                        "East_Timor";
                        {
                            "long";
                            {
                                "standard";
                                "Osttimor-Zeit";
                            }
                        }
                        "Easter";
                        {
                            "long";
                            {
                                "generic";
                                "Osterinsel-Zeit",
                                    "standard";
                                "Osterinsel-Normalzeit",
                                    "daylight";
                                "Osterinsel-Sommerzeit";
                            }
                        }
                        "Ecuador";
                        {
                            "long";
                            {
                                "standard";
                                "Ecuadorianische Zeit";
                            }
                        }
                        "Europe_Central";
                        {
                            "long";
                            {
                                "generic";
                                "Mitteleuropäische Zeit",
                                    "standard";
                                "Mitteleuropäische Normalzeit",
                                    "daylight";
                                "Mitteleuropäische Sommerzeit";
                            }
                            "short";
                            {
                                "generic";
                                "MEZ",
                                    "standard";
                                "MEZ",
                                    "daylight";
                                "MESZ";
                            }
                        }
                        "Europe_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Osteuropäische Zeit",
                                    "standard";
                                "Osteuropäische Normalzeit",
                                    "daylight";
                                "Osteuropäische Sommerzeit";
                            }
                            "short";
                            {
                                "generic";
                                "OEZ",
                                    "standard";
                                "OEZ",
                                    "daylight";
                                "OESZ";
                            }
                        }
                        "Europe_Further_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Kaliningrader Zeit";
                            }
                        }
                        "Europe_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westeuropäische Zeit",
                                    "standard";
                                "Westeuropäische Normalzeit",
                                    "daylight";
                                "Westeuropäische Sommerzeit";
                            }
                            "short";
                            {
                                "generic";
                                "WEZ",
                                    "standard";
                                "WEZ",
                                    "daylight";
                                "WESZ";
                            }
                        }
                        "Falkland";
                        {
                            "long";
                            {
                                "generic";
                                "Falklandinseln-Zeit",
                                    "standard";
                                "Falklandinseln-Normalzeit",
                                    "daylight";
                                "Falklandinseln-Sommerzeit";
                            }
                        }
                        "Fiji";
                        {
                            "long";
                            {
                                "generic";
                                "Fidschi-Zeit",
                                    "standard";
                                "Fidschi-Normalzeit",
                                    "daylight";
                                "Fidschi-Sommerzeit";
                            }
                        }
                        "French_Guiana";
                        {
                            "long";
                            {
                                "standard";
                                "Französisch-Guayana-Zeit";
                            }
                        }
                        "French_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "Französische Süd- und Antarktisgebiete-Zeit";
                            }
                        }
                        "Galapagos";
                        {
                            "long";
                            {
                                "standard";
                                "Galapagos-Zeit";
                            }
                        }
                        "Gambier";
                        {
                            "long";
                            {
                                "standard";
                                "Gambier-Zeit";
                            }
                        }
                        "Georgia";
                        {
                            "long";
                            {
                                "generic";
                                "Georgische Zeit",
                                    "standard";
                                "Georgische Normalzeit",
                                    "daylight";
                                "Georgische Sommerzeit";
                            }
                        }
                        "Gilbert_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Gilbert-Inseln-Zeit";
                            }
                        }
                        "GMT";
                        {
                            "long";
                            {
                                "standard";
                                "Mittlere Greenwich-Zeit";
                            }
                        }
                        "Greenland_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "Ostgrönland-Zeit",
                                    "standard";
                                "Ostgrönland-Normalzeit",
                                    "daylight";
                                "Ostgrönland-Sommerzeit";
                            }
                        }
                        "Greenland_Western";
                        {
                            "long";
                            {
                                "generic";
                                "Westgrönland-Zeit",
                                    "standard";
                                "Westgrönland-Normalzeit",
                                    "daylight";
                                "Westgrönland-Sommerzeit";
                            }
                        }
                        "Guam";
                        {
                            "long";
                            {
                                "standard";
                                "Guam-Zeit";
                            }
                        }
                        "Gulf";
                        {
                            "long";
                            {
                                "standard";
                                "Golf-Zeit";
                            }
                        }
                        "Guyana";
                        {
                            "long";
                            {
                                "standard";
                                "Guyana-Zeit";
                            }
                        }
                        "Hawaii_Aleutian";
                        {
                            "long";
                            {
                                "generic";
                                "Hawaii-Aleuten-Zeit",
                                    "standard";
                                "Hawaii-Aleuten-Normalzeit",
                                    "daylight";
                                "Hawaii-Aleuten-Sommerzeit";
                            }
                        }
                        "Hong_Kong";
                        {
                            "long";
                            {
                                "generic";
                                "Hongkong-Zeit",
                                    "standard";
                                "Hongkong-Normalzeit",
                                    "daylight";
                                "Hongkong-Sommerzeit";
                            }
                        }
                        "Hovd";
                        {
                            "long";
                            {
                                "generic";
                                "Chowd-Zeit",
                                    "standard";
                                "Chowd-Normalzeit",
                                    "daylight";
                                "Chowd-Sommerzeit";
                            }
                        }
                        "India";
                        {
                            "long";
                            {
                                "standard";
                                "Indische Zeit";
                            }
                        }
                        "Indian_Ocean";
                        {
                            "long";
                            {
                                "standard";
                                "Indischer Ozean-Zeit";
                            }
                        }
                        "Indochina";
                        {
                            "long";
                            {
                                "standard";
                                "Indochina-Zeit";
                            }
                        }
                        "Indonesia_Central";
                        {
                            "long";
                            {
                                "standard";
                                "Zentralindonesische Zeit";
                            }
                        }
                        "Indonesia_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Ostindonesische Zeit";
                            }
                        }
                        "Indonesia_Western";
                        {
                            "long";
                            {
                                "standard";
                                "Westindonesische Zeit";
                            }
                        }
                        "Iran";
                        {
                            "long";
                            {
                                "generic";
                                "Iranische Zeit",
                                    "standard";
                                "Iranische Normalzeit",
                                    "daylight";
                                "Iranische Sommerzeit";
                            }
                        }
                        "Irkutsk";
                        {
                            "long";
                            {
                                "generic";
                                "Irkutsk-Zeit",
                                    "standard";
                                "Irkutsk-Normalzeit",
                                    "daylight";
                                "Irkutsk-Sommerzeit";
                            }
                        }
                        "Israel";
                        {
                            "long";
                            {
                                "generic";
                                "Israelische Zeit",
                                    "standard";
                                "Israelische Normalzeit",
                                    "daylight";
                                "Israelische Sommerzeit";
                            }
                        }
                        "Japan";
                        {
                            "long";
                            {
                                "generic";
                                "Japanische Zeit",
                                    "standard";
                                "Japanische Normalzeit",
                                    "daylight";
                                "Japanische Sommerzeit";
                            }
                        }
                        "Kamchatka";
                        {
                            "long";
                            {
                                "generic";
                                "Kamtschatka-Zeit",
                                    "standard";
                                "Kamtschatka-Normalzeit",
                                    "daylight";
                                "Kamtschatka-Sommerzeit";
                            }
                        }
                        "Kazakhstan_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "Ostkasachische Zeit";
                            }
                        }
                        "Kazakhstan_Western";
                        {
                            "long";
                            {
                                "standard";
                                "Westkasachische Zeit";
                            }
                        }
                        "Korea";
                        {
                            "long";
                            {
                                "generic";
                                "Koreanische Zeit",
                                    "standard";
                                "Koreanische Normalzeit",
                                    "daylight";
                                "Koreanische Sommerzeit";
                            }
                        }
                        "Kosrae";
                        {
                            "long";
                            {
                                "standard";
                                "Kosrae-Zeit";
                            }
                        }
                        "Krasnoyarsk";
                        {
                            "long";
                            {
                                "generic";
                                "Krasnojarsk-Zeit",
                                    "standard";
                                "Krasnojarsk-Normalzeit",
                                    "daylight";
                                "Krasnojarsk-Sommerzeit";
                            }
                        }
                        "Kyrgystan";
                        {
                            "long";
                            {
                                "standard";
                                "Kirgisistan-Zeit";
                            }
                        }
                        "Lanka";
                        {
                            "long";
                            {
                                "standard";
                                "Sri-Lanka-Zeit";
                            }
                        }
                        "Line_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Linieninseln-Zeit";
                            }
                        }
                        "Lord_Howe";
                        {
                            "long";
                            {
                                "generic";
                                "Lord-Howe-Zeit",
                                    "standard";
                                "Lord-Howe-Normalzeit",
                                    "daylight";
                                "Lord-Howe-Sommerzeit";
                            }
                        }
                        "Macau";
                        {
                            "long";
                            {
                                "generic";
                                "Macau-Zeit",
                                    "standard";
                                "Macau-Normalzeit",
                                    "daylight";
                                "Macau-Sommerzeit";
                            }
                        }
                        "Macquarie";
                        {
                            "long";
                            {
                                "standard";
                                "Macquarieinsel-Zeit";
                            }
                        }
                        "Magadan";
                        {
                            "long";
                            {
                                "generic";
                                "Magadan-Zeit",
                                    "standard";
                                "Magadan-Normalzeit",
                                    "daylight";
                                "Magadan-Sommerzeit";
                            }
                        }
                        "Malaysia";
                        {
                            "long";
                            {
                                "standard";
                                "Malaysische Zeit";
                            }
                        }
                        "Maldives";
                        {
                            "long";
                            {
                                "standard";
                                "Malediven-Zeit";
                            }
                        }
                        "Marquesas";
                        {
                            "long";
                            {
                                "standard";
                                "Marquesas-Zeit";
                            }
                        }
                        "Marshall_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Marshallinseln-Zeit";
                            }
                        }
                        "Mauritius";
                        {
                            "long";
                            {
                                "generic";
                                "Mauritius-Zeit",
                                    "standard";
                                "Mauritius-Normalzeit",
                                    "daylight";
                                "Mauritius-Sommerzeit";
                            }
                        }
                        "Mawson";
                        {
                            "long";
                            {
                                "standard";
                                "Mawson-Zeit";
                            }
                        }
                        "Mexico_Northwest";
                        {
                            "long";
                            {
                                "generic";
                                "Mexiko Nordwestliche Zone-Zeit",
                                    "standard";
                                "Mexiko Nordwestliche Zone-Normalzeit",
                                    "daylight";
                                "Mexiko Nordwestliche Zone-Sommerzeit";
                            }
                        }
                        "Mexico_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "Mexiko Pazifikzone-Zeit",
                                    "standard";
                                "Mexiko Pazifikzone-Normalzeit",
                                    "daylight";
                                "Mexiko Pazifikzone-Sommerzeit";
                            }
                        }
                        "Mongolia";
                        {
                            "long";
                            {
                                "generic";
                                "Ulaanbaatar-Zeit",
                                    "standard";
                                "Ulaanbaatar-Normalzeit",
                                    "daylight";
                                "Ulaanbaatar-Sommerzeit";
                            }
                        }
                        "Moscow";
                        {
                            "long";
                            {
                                "generic";
                                "Moskauer Zeit",
                                    "standard";
                                "Moskauer Normalzeit",
                                    "daylight";
                                "Moskauer Sommerzeit";
                            }
                        }
                        "Myanmar";
                        {
                            "long";
                            {
                                "standard";
                                "Myanmar-Zeit";
                            }
                        }
                        "Nauru";
                        {
                            "long";
                            {
                                "standard";
                                "Nauru-Zeit";
                            }
                        }
                        "Nepal";
                        {
                            "long";
                            {
                                "standard";
                                "Nepalesische Zeit";
                            }
                        }
                        "New_Caledonia";
                        {
                            "long";
                            {
                                "generic";
                                "Neukaledonische Zeit",
                                    "standard";
                                "Neukaledonische Normalzeit",
                                    "daylight";
                                "Neukaledonische Sommerzeit";
                            }
                        }
                        "New_Zealand";
                        {
                            "long";
                            {
                                "generic";
                                "Neuseeland-Zeit",
                                    "standard";
                                "Neuseeland-Normalzeit",
                                    "daylight";
                                "Neuseeland-Sommerzeit";
                            }
                        }
                        "Newfoundland";
                        {
                            "long";
                            {
                                "generic";
                                "Neufundland-Zeit",
                                    "standard";
                                "Neufundland-Normalzeit",
                                    "daylight";
                                "Neufundland-Sommerzeit";
                            }
                        }
                        "Niue";
                        {
                            "long";
                            {
                                "standard";
                                "Niue-Zeit";
                            }
                        }
                        "Norfolk";
                        {
                            "long";
                            {
                                "standard";
                                "Norfolkinsel-Zeit";
                            }
                        }
                        "Noronha";
                        {
                            "long";
                            {
                                "generic";
                                "Fernando de Noronha-Zeit",
                                    "standard";
                                "Fernando de Noronha-Normalzeit",
                                    "daylight";
                                "Fernando de Noronha-Sommerzeit";
                            }
                        }
                        "North_Mariana";
                        {
                            "long";
                            {
                                "standard";
                                "Nördliche-Marianen-Zeit";
                            }
                        }
                        "Novosibirsk";
                        {
                            "long";
                            {
                                "generic";
                                "Nowosibirsk-Zeit",
                                    "standard";
                                "Nowosibirsk-Normalzeit",
                                    "daylight";
                                "Nowosibirsk-Sommerzeit";
                            }
                        }
                        "Omsk";
                        {
                            "long";
                            {
                                "generic";
                                "Omsk-Zeit",
                                    "standard";
                                "Omsk-Normalzeit",
                                    "daylight";
                                "Omsk-Sommerzeit";
                            }
                        }
                        "Pakistan";
                        {
                            "long";
                            {
                                "generic";
                                "Pakistanische Zeit",
                                    "standard";
                                "Pakistanische Normalzeit",
                                    "daylight";
                                "Pakistanische Sommerzeit";
                            }
                        }
                        "Palau";
                        {
                            "long";
                            {
                                "standard";
                                "Palau-Zeit";
                            }
                        }
                        "Papua_New_Guinea";
                        {
                            "long";
                            {
                                "standard";
                                "Papua-Neuguinea-Zeit";
                            }
                        }
                        "Paraguay";
                        {
                            "long";
                            {
                                "generic";
                                "Paraguayanische Zeit",
                                    "standard";
                                "Paraguayanische Normalzeit",
                                    "daylight";
                                "Paraguayanische Sommerzeit";
                            }
                        }
                        "Peru";
                        {
                            "long";
                            {
                                "generic";
                                "Peruanische Zeit",
                                    "standard";
                                "Peruanische Normalzeit",
                                    "daylight";
                                "Peruanische Sommerzeit";
                            }
                        }
                        "Philippines";
                        {
                            "long";
                            {
                                "generic";
                                "Philippinische Zeit",
                                    "standard";
                                "Philippinische Normalzeit",
                                    "daylight";
                                "Philippinische Sommerzeit";
                            }
                        }
                        "Phoenix_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "Phoenixinseln-Zeit";
                            }
                        }
                        "Pierre_Miquelon";
                        {
                            "long";
                            {
                                "generic";
                                "Saint-Pierre-und-Miquelon-Zeit",
                                    "standard";
                                "Saint-Pierre-und-Miquelon-Normalzeit",
                                    "daylight";
                                "Saint-Pierre-und-Miquelon-Sommerzeit";
                            }
                        }
                        "Pitcairn";
                        {
                            "long";
                            {
                                "standard";
                                "Pitcairninseln-Zeit";
                            }
                        }
                        "Ponape";
                        {
                            "long";
                            {
                                "standard";
                                "Ponape-Zeit";
                            }
                        }
                        "Pyongyang";
                        {
                            "long";
                            {
                                "standard";
                                "Pjöngjang-Zeit";
                            }
                        }
                        "Qyzylorda";
                        {
                            "long";
                            {
                                "generic";
                                "Quysylorda-Zeit",
                                    "standard";
                                "Quysylorda-Normalzeit",
                                    "daylight";
                                "Qysylorda-Sommerzeit";
                            }
                        }
                        "Reunion";
                        {
                            "long";
                            {
                                "standard";
                                "Réunion-Zeit";
                            }
                        }
                        "Rothera";
                        {
                            "long";
                            {
                                "standard";
                                "Rothera-Zeit";
                            }
                        }
                        "Sakhalin";
                        {
                            "long";
                            {
                                "generic";
                                "Sachalin-Zeit",
                                    "standard";
                                "Sachalin-Normalzeit",
                                    "daylight";
                                "Sachalin-Sommerzeit";
                            }
                        }
                        "Samara";
                        {
                            "long";
                            {
                                "generic";
                                "Samara-Zeit",
                                    "standard";
                                "Samara-Normalzeit",
                                    "daylight";
                                "Samara-Sommerzeit";
                            }
                        }
                        "Samoa";
                        {
                            "long";
                            {
                                "generic";
                                "Samoa-Zeit",
                                    "standard";
                                "Samoa-Normalzeit",
                                    "daylight";
                                "Samoa-Sommerzeit";
                            }
                        }
                        "Seychelles";
                        {
                            "long";
                            {
                                "standard";
                                "Seychellen-Zeit";
                            }
                        }
                        "Singapore";
                        {
                            "long";
                            {
                                "standard";
                                "Singapur-Zeit";
                            }
                        }
                        "Solomon";
                        {
                            "long";
                            {
                                "standard";
                                "Salomoninseln-Zeit";
                            }
                        }
                        "South_Georgia";
                        {
                            "long";
                            {
                                "standard";
                                "Südgeorgische Zeit";
                            }
                        }
                        "Suriname";
                        {
                            "long";
                            {
                                "standard";
                                "Suriname-Zeit";
                            }
                        }
                        "Syowa";
                        {
                            "long";
                            {
                                "standard";
                                "Syowa-Zeit";
                            }
                        }
                        "Tahiti";
                        {
                            "long";
                            {
                                "standard";
                                "Tahiti-Zeit";
                            }
                        }
                        "Taipei";
                        {
                            "long";
                            {
                                "generic";
                                "Taipeh-Zeit",
                                    "standard";
                                "Taipeh-Normalzeit",
                                    "daylight";
                                "Taipeh-Sommerzeit";
                            }
                        }
                        "Tajikistan";
                        {
                            "long";
                            {
                                "standard";
                                "Tadschikistan-Zeit";
                            }
                        }
                        "Tokelau";
                        {
                            "long";
                            {
                                "standard";
                                "Tokelau-Zeit";
                            }
                        }
                        "Tonga";
                        {
                            "long";
                            {
                                "generic";
                                "Tonganische Zeit",
                                    "standard";
                                "Tonganische Normalzeit",
                                    "daylight";
                                "Tonganische Sommerzeit";
                            }
                        }
                        "Truk";
                        {
                            "long";
                            {
                                "standard";
                                "Chuuk-Zeit";
                            }
                        }
                        "Turkmenistan";
                        {
                            "long";
                            {
                                "generic";
                                "Turkmenistan-Zeit",
                                    "standard";
                                "Turkmenistan-Normalzeit",
                                    "daylight";
                                "Turkmenistan-Sommerzeit";
                            }
                        }
                        "Tuvalu";
                        {
                            "long";
                            {
                                "standard";
                                "Tuvalu-Zeit";
                            }
                        }
                        "Uruguay";
                        {
                            "long";
                            {
                                "generic";
                                "Uruguayanische Zeit",
                                    "standard";
                                "Uruguyanische Normalzeit",
                                    "daylight";
                                "Uruguayanische Sommerzeit";
                            }
                        }
                        "Uzbekistan";
                        {
                            "long";
                            {
                                "generic";
                                "Usbekistan-Zeit",
                                    "standard";
                                "Usbekistan-Normalzeit",
                                    "daylight";
                                "Usbekistan-Sommerzeit";
                            }
                        }
                        "Vanuatu";
                        {
                            "long";
                            {
                                "generic";
                                "Vanuatu-Zeit",
                                    "standard";
                                "Vanuatu-Normalzeit",
                                    "daylight";
                                "Vanuatu-Sommerzeit";
                            }
                        }
                        "Venezuela";
                        {
                            "long";
                            {
                                "standard";
                                "Venezuela-Zeit";
                            }
                        }
                        "Vladivostok";
                        {
                            "long";
                            {
                                "generic";
                                "Wladiwostok-Zeit",
                                    "standard";
                                "Wladiwostok-Normalzeit",
                                    "daylight";
                                "Wladiwostok-Sommerzeit";
                            }
                        }
                        "Volgograd";
                        {
                            "long";
                            {
                                "generic";
                                "Wolgograd-Zeit",
                                    "standard";
                                "Wolgograd-Normalzeit",
                                    "daylight";
                                "Wolgograd-Sommerzeit";
                            }
                        }
                        "Vostok";
                        {
                            "long";
                            {
                                "standard";
                                "Wostok-Zeit";
                            }
                        }
                        "Wake";
                        {
                            "long";
                            {
                                "standard";
                                "Wake-Insel-Zeit";
                            }
                        }
                        "Wallis";
                        {
                            "long";
                            {
                                "standard";
                                "Wallis-und-Futuna-Zeit";
                            }
                        }
                        "Yakutsk";
                        {
                            "long";
                            {
                                "generic";
                                "Jakutsk-Zeit",
                                    "standard";
                                "Jakutsk-Normalzeit",
                                    "daylight";
                                "Jakutsk-Sommerzeit";
                            }
                        }
                        "Yekaterinburg";
                        {
                            "long";
                            {
                                "generic";
                                "Jekaterinburg-Zeit",
                                    "standard";
                                "Jekaterinburg-Normalzeit",
                                    "daylight";
                                "Jekaterinburg-Sommerzeit";
                            }
                        }
                    }
                }
            }
        }
    }
}

Right-To-Left

The DateRangePicker supports right-to-left functionality for languages like Arabic, Hebrew, etc. To display the text in the right-to-left direction, use enableRtl property.

The following code example demonstrates the DateRangePicker component in Hebrew culture and also explains how to set the localized text to the placeholder using load method of L10n class.

[Class-component]

{
  "main": {
    "he": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31.0.1"
        },
        "language": "he"
      },
      "dates": {
        "calendars": {
          "gregorian": {
            "months": {
              "format": {
                "abbreviated": {
                  "1": "ינו׳",
                  "2": "פבר׳",
                  "3": "מרץ",
                  "4": "אפר׳",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוג׳",
                  "9": "ספט׳",
                  "10": "אוק׳",
                  "11": "נוב׳",
                  "12": "דצמ׳"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4",
                  "5": "5",
                  "6": "6",
                  "7": "7",
                  "8": "8",
                  "9": "9",
                  "10": "10",
                  "11": "11",
                  "12": "12"
                },
                "wide": {
                  "1": "ינואר",
                  "2": "פברואר",
                  "3": "מרץ",
                  "4": "אפריל",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוגוסט",
                  "9": "ספטמבר",
                  "10": "אוקטובר",
                  "11": "נובמבר",
                  "12": "דצמבר"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "ינו׳",
                  "2": "פבר׳",
                  "3": "מרץ",
                  "4": "אפר׳",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוג׳",
                  "9": "ספט׳",
                  "10": "אוק׳",
                  "11": "נוב׳",
                  "12": "דצמ׳"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4",
                  "5": "5",
                  "6": "6",
                  "7": "7",
                  "8": "8",
                  "9": "9",
                  "10": "10",
                  "11": "11",
                  "12": "12"
                },
                "wide": {
                  "1": "ינואר",
                  "2": "פברואר",
                  "3": "מרץ",
                  "4": "אפריל",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוגוסט",
                  "9": "ספטמבר",
                  "10": "אוקטובר",
                  "11": "נובמבר",
                  "12": "דצמבר"
                }
              }
            },
            "days": {
              "format": {
                "abbreviated": {
                  "sun": "יום א׳",
                  "mon": "יום ב׳",
                  "tue": "יום ג׳",
                  "wed": "יום ד׳",
                  "thu": "יום ה׳",
                  "fri": "יום ו׳",
                  "sat": "שבת"
                },
                "narrow": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "short": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "wide": {
                  "sun": "יום ראשון",
                  "mon": "יום שני",
                  "tue": "יום שלישי",
                  "wed": "יום רביעי",
                  "thu": "יום חמישי",
                  "fri": "יום שישי",
                  "sat": "יום שבת"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "sun": "יום א׳",
                  "mon": "יום ב׳",
                  "tue": "יום ג׳",
                  "wed": "יום ד׳",
                  "thu": "יום ה׳",
                  "fri": "יום ו׳",
                  "sat": "שבת"
                },
                "narrow": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "short": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "wide": {
                  "sun": "יום ראשון",
                  "mon": "יום שני",
                  "tue": "יום שלישי",
                  "wed": "יום רביעי",
                  "thu": "יום חמישי",
                  "fri": "יום שישי",
                  "sat": "יום שבת"
                }
              }
            },
            "quarters": {
              "format": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "רבעון 1",
                  "2": "רבעון 2",
                  "3": "רבעון 3",
                  "4": "רבעון 4"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "רבעון 1",
                  "2": "רבעון 2",
                  "3": "רבעון 3",
                  "4": "רבעון 4"
                }
              }
            },
            "dayPeriods": {
              "format": {
                "abbreviated": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "narrow": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "wide": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "narrow": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "wide": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                }
              }
            },
            "eras": {
              "eraNames": {
                "0": "לפני הספירה",
                "0-alt-variant": "לפנה״ס",
                "1": "לספירה",
                "1-alt-variant": "CE"
              },
              "eraAbbr": {
                "0": "לפנה״ס",
                "0-alt-variant": "BCE",
                "1": "לספירה",
                "1-alt-variant": "CE"
              },
              "eraNarrow": {
                "0": "לפנה״ס",
                "0-alt-variant": "BCE",
                "1": "לספירה",
                "1-alt-variant": "CE"
              }
            },
            "dateFormats": {
              "full": "EEEE, d בMMMM y",
              "long": "d בMMMM y",
              "medium": "d בMMM y",
              "short": "d.M.y"
            },
            "timeFormats": {
              "full": "H:mm:ss zzzz",
              "long": "H:mm:ss z",
              "medium": "H:mm:ss",
              "short": "H:mm"
            },
            "dateTimeFormats": {
              "full": "{1} בשעה {0}",
              "long": "{1} בשעה {0}",
              "medium": "{1}, {0}",
              "short": "{1}, {0}",
              "availableFormats": {
                "d": "d",
                "E": "ccc",
                "Ed": "E ה-d",
                "Ehm": "E h:mm a",
                "EHm": "E H:mm",
                "Ehms": "E h:mm:ss a",
                "EHms": "E H:mm:ss",
                "Gy": "y G",
                "GyMMM": "MMM y G",
                "GyMMMd": "d בMMM y G",
                "GyMMMEd": "E, d בMMM y G",
                "h": "‏h a",
                "H": "H",
                "hm": "h:mm a",
                "Hm": "H:mm",
                "hms": "h:mm:ss a",
                "Hms": "H:mm:ss",
                "hmsv": "h:mm:ss a v",
                "Hmsv": "HH:mm:ss v",
                "hmv": "h:mm a v",
                "Hmv": "HH:mm v",
                "M": "L",
                "Md": "d.M",
                "MEd": "E, d.M",
                "MMM": "LLL",
                "MMMd": "d בMMM",
                "MMMEd": "E, d בMMM",
                "MMMMd": "d בMMMM",
                "MMMMW-count-one": "שבוע W בMMM",
                "MMMMW-count-two": "שבוע W בMMM",
                "MMMMW-count-many": "שבוע W בMMM",
                "MMMMW-count-other": "שבוע W בMMM",
                "ms": "mm:ss",
                "y": "y",
                "yM": "M.y",
                "yMd": "d.M.y",
                "yMEd": "E, d.M.y",
                "yMM": "M.y",
                "yMMM": "MMM y",
                "yMMMd": "d בMMM y",
                "yMMMEd": "E, d בMMM y",
                "yMMMM": "MMMM y",
                "yQQQ": "QQQ y",
                "yQQQQ": "QQQQ y",
                "yw-count-one": "שבוע w בשנת y",
                "yw-count-two": "שבוע w בשנת y",
                "yw-count-many": "שבוע w בשנת y",
                "yw-count-other": "שבוע w בשנת y"
              },
              "appendItems": {
                "Day": "{0} ({2}: {1})",
                "Day-Of-Week": "{0} {1}",
                "Era": "{1} {0}",
                "Hour": "{0} ({2}: {1})",
                "Minute": "{0} ({2}: {1})",
                "Month": "{0} ({2}: {1})",
                "Quarter": "{0} ({2}: {1})",
                "Second": "{0} ({2}: {1})",
                "Timezone": "{0} {1}",
                "Week": "{0} ({2}: {1})",
                "Year": "{1} {0}"
              },
              "intervalFormats": {
                "intervalFormatFallback": "{0} – {1}",
                "d": {
                  "d": "d–d"
                },
                "h": {
                  "a": "h a – h a",
                  "h": "h–h a"
                },
                "H": {
                  "H": "H–H"
                },
                "hm": {
                  "a": "h:mm a – h:mm a",
                  "h": "h:mm–h:mm a",
                  "m": "h:mm–h:mm a"
                },
                "Hm": {
                  "H": "H:mm–H:mm",
                  "m": "H:mm–H:mm"
                },
                "hmv": {
                  "a": "h:mm a – h:mm a v",
                  "h": "h:mm–h:mm a v",
                  "m": "h:mm–h:mm a v"
                },
                "Hmv": {
                  "H": "H:mm–H:mm v",
                  "m": "H:mm–H:mm v"
                },
                "hv": {
                  "a": "h a – h a v",
                  "h": "h–h a v"
                },
                "Hv": {
                  "H": "H–H v"
                },
                "M": {
                  "M": "M–M"
                },
                "Md": {
                  "d": "d.M–d.M",
                  "M": "d.M–d.M"
                },
                "MEd": {
                  "d": "EEEE d.M–EEEE d.M",
                  "M": "EEEE d.M – EEEE d.M"
                },
                "MMM": {
                  "M": "MMM–MMM"
                },
                "MMMd": {
                  "d": "d–d בMMM",
                  "M": "d בMMM–d בMMM"
                },
                "MMMEd": {
                  "d": "EEEE, d בMMM – EEEE, d בMMM",
                  "M": "EEEE, d בMMM – EEEE, d בMMM"
                },
                "MMMM": {
                  "M": "LLLL–LLLL"
                },
                "y": {
                  "y": "y–y"
                },
                "yM": {
                  "M": "M.y–M.y",
                  "y": "M.y‏–M.y"
                },
                "yMd": {
                  "d": "dd.M.y – dd.M.y",
                  "M": "d.M.y – d.M.y",
                  "y": "d.M.y – d.M.y"
                },
                "yMEd": {
                  "d": "EEEE d.M.y – EEEE d.M.y",
                  "M": "EEEE d.M.y – EEEE d.M.y",
                  "y": "EEEE d.M.y – EEEE d.M.y"
                },
                "yMMM": {
                  "M": "MMM–MMM y",
                  "y": "MMM y – MMM y"
                },
                "yMMMd": {
                  "d": "d–d בMMM y",
                  "M": "d MMM – d MMM y",
                  "y": "d MMM y – d MMM y"
                },
                "yMMMEd": {
                  "d": "EEEE d MMM – EEEE d MMM y",
                  "M": "EEEE d MMM – EEEE d MMM y",
                  "y": "EEEE d MMM y – EEEE d MMM y"
                },
                "yMMMM": {
                  "M": "MMMM–MMMM y",
                  "y": "MMMM y–MMMM y"
                }
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "he";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31.0.1";
                }
                "language";
                "he";
            }
            "dates";
            {
                "calendars";
                {
                    "gregorian";
                    {
                        "months";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "ינו׳",
                                        "2";
                                    "פבר׳",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפר׳",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוג׳",
                                        "9";
                                    "ספט׳",
                                        "10";
                                    "אוק׳",
                                        "11";
                                    "נוב׳",
                                        "12";
                                    "דצמ׳";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4",
                                        "5";
                                    "5",
                                        "6";
                                    "6",
                                        "7";
                                    "7",
                                        "8";
                                    "8",
                                        "9";
                                    "9",
                                        "10";
                                    "10",
                                        "11";
                                    "11",
                                        "12";
                                    "12";
                                }
                                "wide";
                                {
                                    "1";
                                    "ינואר",
                                        "2";
                                    "פברואר",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפריל",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוגוסט",
                                        "9";
                                    "ספטמבר",
                                        "10";
                                    "אוקטובר",
                                        "11";
                                    "נובמבר",
                                        "12";
                                    "דצמבר";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "ינו׳",
                                        "2";
                                    "פבר׳",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפר׳",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוג׳",
                                        "9";
                                    "ספט׳",
                                        "10";
                                    "אוק׳",
                                        "11";
                                    "נוב׳",
                                        "12";
                                    "דצמ׳";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4",
                                        "5";
                                    "5",
                                        "6";
                                    "6",
                                        "7";
                                    "7",
                                        "8";
                                    "8",
                                        "9";
                                    "9",
                                        "10";
                                    "10",
                                        "11";
                                    "11",
                                        "12";
                                    "12";
                                }
                                "wide";
                                {
                                    "1";
                                    "ינואר",
                                        "2";
                                    "פברואר",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפריל",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוגוסט",
                                        "9";
                                    "ספטמבר",
                                        "10";
                                    "אוקטובר",
                                        "11";
                                    "נובמבר",
                                        "12";
                                    "דצמבר";
                                }
                            }
                        }
                        "days";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "יום א׳",
                                        "mon";
                                    "יום ב׳",
                                        "tue";
                                    "יום ג׳",
                                        "wed";
                                    "יום ד׳",
                                        "thu";
                                    "יום ה׳",
                                        "fri";
                                    "יום ו׳",
                                        "sat";
                                    "שבת";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "short";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "wide";
                                {
                                    "sun";
                                    "יום ראשון",
                                        "mon";
                                    "יום שני",
                                        "tue";
                                    "יום שלישי",
                                        "wed";
                                    "יום רביעי",
                                        "thu";
                                    "יום חמישי",
                                        "fri";
                                    "יום שישי",
                                        "sat";
                                    "יום שבת";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "יום א׳",
                                        "mon";
                                    "יום ב׳",
                                        "tue";
                                    "יום ג׳",
                                        "wed";
                                    "יום ד׳",
                                        "thu";
                                    "יום ה׳",
                                        "fri";
                                    "יום ו׳",
                                        "sat";
                                    "שבת";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "short";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "wide";
                                {
                                    "sun";
                                    "יום ראשון",
                                        "mon";
                                    "יום שני",
                                        "tue";
                                    "יום שלישי",
                                        "wed";
                                    "יום רביעי",
                                        "thu";
                                    "יום חמישי",
                                        "fri";
                                    "יום שישי",
                                        "sat";
                                    "יום שבת";
                                }
                            }
                        }
                        "quarters";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "רבעון 1",
                                        "2";
                                    "רבעון 2",
                                        "3";
                                    "רבעון 3",
                                        "4";
                                    "רבעון 4";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "רבעון 1",
                                        "2";
                                    "רבעון 2",
                                        "3";
                                    "רבעון 3",
                                        "4";
                                    "רבעון 4";
                                }
                            }
                        }
                        "dayPeriods";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                            }
                        }
                        "eras";
                        {
                            "eraNames";
                            {
                                "0";
                                "לפני הספירה",
                                    "0-alt-variant";
                                "לפנה״ס",
                                    "1";
                                "לספירה",
                                    "1-alt-variant";
                                "CE";
                            }
                            "eraAbbr";
                            {
                                "0";
                                "לפנה״ס",
                                    "0-alt-variant";
                                "BCE",
                                    "1";
                                "לספירה",
                                    "1-alt-variant";
                                "CE";
                            }
                            "eraNarrow";
                            {
                                "0";
                                "לפנה״ס",
                                    "0-alt-variant";
                                "BCE",
                                    "1";
                                "לספירה",
                                    "1-alt-variant";
                                "CE";
                            }
                        }
                        "dateFormats";
                        {
                            "full";
                            "EEEE, d בMMMM y",
                                "long";
                            "d בMMMM y",
                                "medium";
                            "d בMMM y",
                                "short";
                            "d.M.y";
                        }
                        "timeFormats";
                        {
                            "full";
                            "H:mm:ss zzzz",
                                "long";
                            "H:mm:ss z",
                                "medium";
                            "H:mm:ss",
                                "short";
                            "H:mm";
                        }
                        "dateTimeFormats";
                        {
                            "full";
                            "{1} בשעה {0}",
                                "long";
                            "{1} בשעה {0}",
                                "medium";
                            "{1}, {0}",
                                "short";
                            "{1}, {0}",
                                "availableFormats";
                            {
                                "d";
                                "d",
                                    "E";
                                "ccc",
                                    "Ed";
                                "E ה-d",
                                    "Ehm";
                                "E h:mm a",
                                    "EHm";
                                "E H:mm",
                                    "Ehms";
                                "E h:mm:ss a",
                                    "EHms";
                                "E H:mm:ss",
                                    "Gy";
                                "y G",
                                    "GyMMM";
                                "MMM y G",
                                    "GyMMMd";
                                "d בMMM y G",
                                    "GyMMMEd";
                                "E, d בMMM y G",
                                    "h";
                                "‏h a",
                                    "H";
                                "H",
                                    "hm";
                                "h:mm a",
                                    "Hm";
                                "H:mm",
                                    "hms";
                                "h:mm:ss a",
                                    "Hms";
                                "H:mm:ss",
                                    "hmsv";
                                "h:mm:ss a v",
                                    "Hmsv";
                                "HH:mm:ss v",
                                    "hmv";
                                "h:mm a v",
                                    "Hmv";
                                "HH:mm v",
                                    "M";
                                "L",
                                    "Md";
                                "d.M",
                                    "MEd";
                                "E, d.M",
                                    "MMM";
                                "LLL",
                                    "MMMd";
                                "d בMMM",
                                    "MMMEd";
                                "E, d בMMM",
                                    "MMMMd";
                                "d בMMMM",
                                    "MMMMW-count-one";
                                "שבוע W בMMM",
                                    "MMMMW-count-two";
                                "שבוע W בMMM",
                                    "MMMMW-count-many";
                                "שבוע W בMMM",
                                    "MMMMW-count-other";
                                "שבוע W בMMM",
                                    "ms";
                                "mm:ss",
                                    "y";
                                "y",
                                    "yM";
                                "M.y",
                                    "yMd";
                                "d.M.y",
                                    "yMEd";
                                "E, d.M.y",
                                    "yMM";
                                "M.y",
                                    "yMMM";
                                "MMM y",
                                    "yMMMd";
                                "d בMMM y",
                                    "yMMMEd";
                                "E, d בMMM y",
                                    "yMMMM";
                                "MMMM y",
                                    "yQQQ";
                                "QQQ y",
                                    "yQQQQ";
                                "QQQQ y",
                                    "yw-count-one";
                                "שבוע w בשנת y",
                                    "yw-count-two";
                                "שבוע w בשנת y",
                                    "yw-count-many";
                                "שבוע w בשנת y",
                                    "yw-count-other";
                                "שבוע w בשנת y";
                            }
                            "appendItems";
                            {
                                "Day";
                                "{0} ({2}: {1})",
                                    "Day-Of-Week";
                                "{0} {1}",
                                    "Era";
                                "{1} {0}",
                                    "Hour";
                                "{0} ({2}: {1})",
                                    "Minute";
                                "{0} ({2}: {1})",
                                    "Month";
                                "{0} ({2}: {1})",
                                    "Quarter";
                                "{0} ({2}: {1})",
                                    "Second";
                                "{0} ({2}: {1})",
                                    "Timezone";
                                "{0} {1}",
                                    "Week";
                                "{0} ({2}: {1})",
                                    "Year";
                                "{1} {0}";
                            }
                            "intervalFormats";
                            {
                                "intervalFormatFallback";
                                "{0} – {1}",
                                    "d";
                                {
                                    "d";
                                    "d–d";
                                }
                                "h";
                                {
                                    "a";
                                    "h a – h a",
                                        "h";
                                    "h–h a";
                                }
                                "H";
                                {
                                    "H";
                                    "H–H";
                                }
                                "hm";
                                {
                                    "a";
                                    "h:mm a – h:mm a",
                                        "h";
                                    "h:mm–h:mm a",
                                        "m";
                                    "h:mm–h:mm a";
                                }
                                "Hm";
                                {
                                    "H";
                                    "H:mm–H:mm",
                                        "m";
                                    "H:mm–H:mm";
                                }
                                "hmv";
                                {
                                    "a";
                                    "h:mm a – h:mm a v",
                                        "h";
                                    "h:mm–h:mm a v",
                                        "m";
                                    "h:mm–h:mm a v";
                                }
                                "Hmv";
                                {
                                    "H";
                                    "H:mm–H:mm v",
                                        "m";
                                    "H:mm–H:mm v";
                                }
                                "hv";
                                {
                                    "a";
                                    "h a – h a v",
                                        "h";
                                    "h–h a v";
                                }
                                "Hv";
                                {
                                    "H";
                                    "H–H v";
                                }
                                "M";
                                {
                                    "M";
                                    "M–M";
                                }
                                "Md";
                                {
                                    "d";
                                    "d.M–d.M",
                                        "M";
                                    "d.M–d.M";
                                }
                                "MEd";
                                {
                                    "d";
                                    "EEEE d.M–EEEE d.M",
                                        "M";
                                    "EEEE d.M – EEEE d.M";
                                }
                                "MMM";
                                {
                                    "M";
                                    "MMM–MMM";
                                }
                                "MMMd";
                                {
                                    "d";
                                    "d–d בMMM",
                                        "M";
                                    "d בMMM–d בMMM";
                                }
                                "MMMEd";
                                {
                                    "d";
                                    "EEEE, d בMMM – EEEE, d בMMM",
                                        "M";
                                    "EEEE, d בMMM – EEEE, d בMMM";
                                }
                                "MMMM";
                                {
                                    "M";
                                    "LLLL–LLLL";
                                }
                                "y";
                                {
                                    "y";
                                    "y–y";
                                }
                                "yM";
                                {
                                    "M";
                                    "M.y–M.y",
                                        "y";
                                    "M.y‏–M.y";
                                }
                                "yMd";
                                {
                                    "d";
                                    "dd.M.y – dd.M.y",
                                        "M";
                                    "d.M.y – d.M.y",
                                        "y";
                                    "d.M.y – d.M.y";
                                }
                                "yMEd";
                                {
                                    "d";
                                    "EEEE d.M.y – EEEE d.M.y",
                                        "M";
                                    "EEEE d.M.y – EEEE d.M.y",
                                        "y";
                                    "EEEE d.M.y – EEEE d.M.y";
                                }
                                "yMMM";
                                {
                                    "M";
                                    "MMM–MMM y",
                                        "y";
                                    "MMM y – MMM y";
                                }
                                "yMMMd";
                                {
                                    "d";
                                    "d–d בMMM y",
                                        "M";
                                    "d MMM – d MMM y",
                                        "y";
                                    "d MMM y – d MMM y";
                                }
                                "yMMMEd";
                                {
                                    "d";
                                    "EEEE d MMM – EEEE d MMM y",
                                        "M";
                                    "EEEE d MMM – EEEE d MMM y",
                                        "y";
                                    "EEEE d MMM y – EEEE d MMM y";
                                }
                                "yMMMM";
                                {
                                    "M";
                                    "MMMM–MMMM y",
                                        "y";
                                    "MMMM y–MMMM y";
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as heTimeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, heTimeZoneNames);
L10n.load({
    'he': {
        'daterangepicker': {
            applyText: 'להחיל טקסט',
            cancelText: 'בטל טקסט',
            customRange: 'טווח מותאם אישית',
            days: 'أימים',
            endLabel: 'ח',
            placeholder: 'בחר טווח',
            selectedDays: 'ימים נבחרים',
            startLabel: 'תווית התחלה'
        }
    }
});
//import the datrangeepicker component
class App extends React.Component {
    render() {
        return <DateRangePickerComponent id="daterangepicker" locale='he' enableRtl={true}/>;
    }
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';

//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as heTimeZoneNames from './timeZoneNames.json';

loadCldr(numberingSystems, gregorian, numbers, heTimeZoneNames);

L10n.load({
  'he': {
    'daterangepicker': {
      applyText: 'להחיל טקסט',
      cancelText: 'בטל טקסט',
      customRange: 'טווח מותאם אישית',
      days: 'أימים',
      endLabel: 'ח',
      placeholder: 'בחר טווח',
      selectedDays: 'ימים נבחרים',
      startLabel: 'תווית התחלה'
    }
  }
});
//import the datrangeepicker component
class App extends React.Component<{}, {}> {

    render() {
        return <DateRangePickerComponent id="daterangepicker" locale='he' enableRtl={true} />
    }
};
ReactDOM.render(<App />, document.getElementById('element'));
{
  "supplemental": {
    "version": {
      "_number": "$Revision: 12732 $",
      "_unicodeVersion": "9.0.0",
      "_cldrVersion": "31"
    },
    "numberingSystems": {
      "adlm": {
        "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
        "_type": "numeric"
      },
      "ahom": {
        "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
        "_type": "numeric"
      },
      "arab": {
        "_digits": "٠١٢٣٤٥٦٧٨٩",
        "_type": "numeric"
      },
      "arabext": {
        "_digits": "۰۱۲۳۴۵۶۷۸۹",
        "_type": "numeric"
      },
      "armn": {
        "_rules": "armenian-upper",
        "_type": "algorithmic"
      },
      "armnlow": {
        "_rules": "armenian-lower",
        "_type": "algorithmic"
      },
      "bali": {
        "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
        "_type": "numeric"
      },
      "beng": {
        "_digits": "০১২৩৪৫৬৭৮৯",
        "_type": "numeric"
      },
      "bhks": {
        "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
        "_type": "numeric"
      },
      "brah": {
        "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
        "_type": "numeric"
      },
      "cakm": {
        "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
        "_type": "numeric"
      },
      "cham": {
        "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
        "_type": "numeric"
      },
      "cyrl": {
        "_rules": "cyrillic-lower",
        "_type": "algorithmic"
      },
      "deva": {
        "_digits": "०१२३४५६७८९",
        "_type": "numeric"
      },
      "ethi": {
        "_rules": "ethiopic",
        "_type": "algorithmic"
      },
      "fullwide": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "geor": {
        "_rules": "georgian",
        "_type": "algorithmic"
      },
      "grek": {
        "_rules": "greek-upper",
        "_type": "algorithmic"
      },
      "greklow": {
        "_rules": "greek-lower",
        "_type": "algorithmic"
      },
      "gujr": {
        "_digits": "૦૧૨૩૪૫૬૭૮૯",
        "_type": "numeric"
      },
      "guru": {
        "_digits": "੦੧੨੩੪੫੬੭੮੯",
        "_type": "numeric"
      },
      "hanidays": {
        "_rules": "zh/SpelloutRules/spellout-numbering-days",
        "_type": "algorithmic"
      },
      "hanidec": {
        "_digits": "〇一二三四五六七八九",
        "_type": "numeric"
      },
      "hans": {
        "_rules": "zh/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hansfin": {
        "_rules": "zh/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hant": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hantfin": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hebr": {
        "_rules": "hebrew",
        "_type": "algorithmic"
      },
      "hmng": {
        "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
        "_type": "numeric"
      },
      "java": {
        "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
        "_type": "numeric"
      },
      "jpan": {
        "_rules": "ja/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "jpanfin": {
        "_rules": "ja/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "kali": {
        "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
        "_type": "numeric"
      },
      "khmr": {
        "_digits": "០១២៣៤៥៦៧៨៩",
        "_type": "numeric"
      },
      "knda": {
        "_digits": "೦೧೨೩೪೫೬೭೮೯",
        "_type": "numeric"
      },
      "lana": {
        "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
        "_type": "numeric"
      },
      "lanatham": {
        "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
        "_type": "numeric"
      },
      "laoo": {
        "_digits": "໐໑໒໓໔໕໖໗໘໙",
        "_type": "numeric"
      },
      "latn": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "lepc": {
        "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
        "_type": "numeric"
      },
      "limb": {
        "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
        "_type": "numeric"
      },
      "mathbold": {
        "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
        "_type": "numeric"
      },
      "mathdbl": {
        "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
        "_type": "numeric"
      },
      "mathmono": {
        "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
        "_type": "numeric"
      },
      "mathsanb": {
        "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
        "_type": "numeric"
      },
      "mathsans": {
        "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
        "_type": "numeric"
      },
      "mlym": {
        "_digits": "൦൧൨൩൪൫൬൭൮൯",
        "_type": "numeric"
      },
      "modi": {
        "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
        "_type": "numeric"
      },
      "mong": {
        "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
        "_type": "numeric"
      },
      "mroo": {
        "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
        "_type": "numeric"
      },
      "mtei": {
        "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
        "_type": "numeric"
      },
      "mymr": {
        "_digits": "၀၁၂၃၄၅၆၇၈၉",
        "_type": "numeric"
      },
      "mymrshan": {
        "_digits": "႐႑႒႓႔႕႖႗႘႙",
        "_type": "numeric"
      },
      "mymrtlng": {
        "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
        "_type": "numeric"
      },
      "newa": {
        "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
        "_type": "numeric"
      },
      "nkoo": {
        "_digits": "߀߁߂߃߄߅߆߇߈߉",
        "_type": "numeric"
      },
      "olck": {
        "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
        "_type": "numeric"
      },
      "orya": {
        "_digits": "୦୧୨୩୪୫୬୭୮୯",
        "_type": "numeric"
      },
      "osma": {
        "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
        "_type": "numeric"
      },
      "roman": {
        "_rules": "roman-upper",
        "_type": "algorithmic"
      },
      "romanlow": {
        "_rules": "roman-lower",
        "_type": "algorithmic"
      },
      "saur": {
        "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
        "_type": "numeric"
      },
      "shrd": {
        "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
        "_type": "numeric"
      },
      "sind": {
        "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
        "_type": "numeric"
      },
      "sinh": {
        "_digits": "෦෧෨෩෪෫෬෭෮෯",
        "_type": "numeric"
      },
      "sora": {
        "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
        "_type": "numeric"
      },
      "sund": {
        "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
        "_type": "numeric"
      },
      "takr": {
        "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
        "_type": "numeric"
      },
      "talu": {
        "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
        "_type": "numeric"
      },
      "taml": {
        "_rules": "tamil",
        "_type": "algorithmic"
      },
      "tamldec": {
        "_digits": "௦௧௨௩௪௫௬௭௮௯",
        "_type": "numeric"
      },
      "telu": {
        "_digits": "౦౧౨౩౪౫౬౭౮౯",
        "_type": "numeric"
      },
      "thai": {
        "_digits": "๐๑๒๓๔๕๖๗๘๙",
        "_type": "numeric"
      },
      "tibt": {
        "_digits": "༠༡༢༣༤༥༦༧༨༩",
        "_type": "numeric"
      },
      "tirh": {
        "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
        "_type": "numeric"
      },
      "vaii": {
        "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
        "_type": "numeric"
      },
      "wara": {
        "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
        "_type": "numeric"
      }
    }
  }
}
{
    "supplemental";
    {
        "version";
        {
            "_number";
            "$Revision: 12732 $",
                "_unicodeVersion";
            "9.0.0",
                "_cldrVersion";
            "31";
        }
        "numberingSystems";
        {
            "adlm";
            {
                "_digits";
                "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
                    "_type";
                "numeric";
            }
            "ahom";
            {
                "_digits";
                "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
                    "_type";
                "numeric";
            }
            "arab";
            {
                "_digits";
                "٠١٢٣٤٥٦٧٨٩",
                    "_type";
                "numeric";
            }
            "arabext";
            {
                "_digits";
                "۰۱۲۳۴۵۶۷۸۹",
                    "_type";
                "numeric";
            }
            "armn";
            {
                "_rules";
                "armenian-upper",
                    "_type";
                "algorithmic";
            }
            "armnlow";
            {
                "_rules";
                "armenian-lower",
                    "_type";
                "algorithmic";
            }
            "bali";
            {
                "_digits";
                "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
                    "_type";
                "numeric";
            }
            "beng";
            {
                "_digits";
                "০১২৩৪৫৬৭৮৯",
                    "_type";
                "numeric";
            }
            "bhks";
            {
                "_digits";
                "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
                    "_type";
                "numeric";
            }
            "brah";
            {
                "_digits";
                "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
                    "_type";
                "numeric";
            }
            "cakm";
            {
                "_digits";
                "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
                    "_type";
                "numeric";
            }
            "cham";
            {
                "_digits";
                "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
                    "_type";
                "numeric";
            }
            "cyrl";
            {
                "_rules";
                "cyrillic-lower",
                    "_type";
                "algorithmic";
            }
            "deva";
            {
                "_digits";
                "०१२३४५६७८९",
                    "_type";
                "numeric";
            }
            "ethi";
            {
                "_rules";
                "ethiopic",
                    "_type";
                "algorithmic";
            }
            "fullwide";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "geor";
            {
                "_rules";
                "georgian",
                    "_type";
                "algorithmic";
            }
            "grek";
            {
                "_rules";
                "greek-upper",
                    "_type";
                "algorithmic";
            }
            "greklow";
            {
                "_rules";
                "greek-lower",
                    "_type";
                "algorithmic";
            }
            "gujr";
            {
                "_digits";
                "૦૧૨૩૪૫૬૭૮૯",
                    "_type";
                "numeric";
            }
            "guru";
            {
                "_digits";
                "੦੧੨੩੪੫੬੭੮੯",
                    "_type";
                "numeric";
            }
            "hanidays";
            {
                "_rules";
                "zh/SpelloutRules/spellout-numbering-days",
                    "_type";
                "algorithmic";
            }
            "hanidec";
            {
                "_digits";
                "〇一二三四五六七八九",
                    "_type";
                "numeric";
            }
            "hans";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hansfin";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hant";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hantfin";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hebr";
            {
                "_rules";
                "hebrew",
                    "_type";
                "algorithmic";
            }
            "hmng";
            {
                "_digits";
                "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
                    "_type";
                "numeric";
            }
            "java";
            {
                "_digits";
                "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
                    "_type";
                "numeric";
            }
            "jpan";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "jpanfin";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "kali";
            {
                "_digits";
                "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
                    "_type";
                "numeric";
            }
            "khmr";
            {
                "_digits";
                "០១២៣៤៥៦៧៨៩",
                    "_type";
                "numeric";
            }
            "knda";
            {
                "_digits";
                "೦೧೨೩೪೫೬೭೮೯",
                    "_type";
                "numeric";
            }
            "lana";
            {
                "_digits";
                "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
                    "_type";
                "numeric";
            }
            "lanatham";
            {
                "_digits";
                "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
                    "_type";
                "numeric";
            }
            "laoo";
            {
                "_digits";
                "໐໑໒໓໔໕໖໗໘໙",
                    "_type";
                "numeric";
            }
            "latn";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "lepc";
            {
                "_digits";
                "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
                    "_type";
                "numeric";
            }
            "limb";
            {
                "_digits";
                "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
                    "_type";
                "numeric";
            }
            "mathbold";
            {
                "_digits";
                "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
                    "_type";
                "numeric";
            }
            "mathdbl";
            {
                "_digits";
                "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
                    "_type";
                "numeric";
            }
            "mathmono";
            {
                "_digits";
                "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
                    "_type";
                "numeric";
            }
            "mathsanb";
            {
                "_digits";
                "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
                    "_type";
                "numeric";
            }
            "mathsans";
            {
                "_digits";
                "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
                    "_type";
                "numeric";
            }
            "mlym";
            {
                "_digits";
                "൦൧൨൩൪൫൬൭൮൯",
                    "_type";
                "numeric";
            }
            "modi";
            {
                "_digits";
                "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
                    "_type";
                "numeric";
            }
            "mong";
            {
                "_digits";
                "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
                    "_type";
                "numeric";
            }
            "mroo";
            {
                "_digits";
                "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
                    "_type";
                "numeric";
            }
            "mtei";
            {
                "_digits";
                "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
                    "_type";
                "numeric";
            }
            "mymr";
            {
                "_digits";
                "၀၁၂၃၄၅၆၇၈၉",
                    "_type";
                "numeric";
            }
            "mymrshan";
            {
                "_digits";
                "႐႑႒႓႔႕႖႗႘႙",
                    "_type";
                "numeric";
            }
            "mymrtlng";
            {
                "_digits";
                "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
                    "_type";
                "numeric";
            }
            "newa";
            {
                "_digits";
                "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
                    "_type";
                "numeric";
            }
            "nkoo";
            {
                "_digits";
                "߀߁߂߃߄߅߆߇߈߉",
                    "_type";
                "numeric";
            }
            "olck";
            {
                "_digits";
                "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
                    "_type";
                "numeric";
            }
            "orya";
            {
                "_digits";
                "୦୧୨୩୪୫୬୭୮୯",
                    "_type";
                "numeric";
            }
            "osma";
            {
                "_digits";
                "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
                    "_type";
                "numeric";
            }
            "roman";
            {
                "_rules";
                "roman-upper",
                    "_type";
                "algorithmic";
            }
            "romanlow";
            {
                "_rules";
                "roman-lower",
                    "_type";
                "algorithmic";
            }
            "saur";
            {
                "_digits";
                "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
                    "_type";
                "numeric";
            }
            "shrd";
            {
                "_digits";
                "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
                    "_type";
                "numeric";
            }
            "sind";
            {
                "_digits";
                "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
                    "_type";
                "numeric";
            }
            "sinh";
            {
                "_digits";
                "෦෧෨෩෪෫෬෭෮෯",
                    "_type";
                "numeric";
            }
            "sora";
            {
                "_digits";
                "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
                    "_type";
                "numeric";
            }
            "sund";
            {
                "_digits";
                "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
                    "_type";
                "numeric";
            }
            "takr";
            {
                "_digits";
                "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
                    "_type";
                "numeric";
            }
            "talu";
            {
                "_digits";
                "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
                    "_type";
                "numeric";
            }
            "taml";
            {
                "_rules";
                "tamil",
                    "_type";
                "algorithmic";
            }
            "tamldec";
            {
                "_digits";
                "௦௧௨௩௪௫௬௭௮௯",
                    "_type";
                "numeric";
            }
            "telu";
            {
                "_digits";
                "౦౧౨౩౪౫౬౭౮౯",
                    "_type";
                "numeric";
            }
            "thai";
            {
                "_digits";
                "๐๑๒๓๔๕๖๗๘๙",
                    "_type";
                "numeric";
            }
            "tibt";
            {
                "_digits";
                "༠༡༢༣༤༥༦༧༨༩",
                    "_type";
                "numeric";
            }
            "tirh";
            {
                "_digits";
                "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
                    "_type";
                "numeric";
            }
            "vaii";
            {
                "_digits";
                "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
                    "_type";
                "numeric";
            }
            "wara";
            {
                "_digits";
                "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
                    "_type";
                "numeric";
            }
        }
    }
}
{
  "main": {
    "he": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31.0.1"
        },
        "language": "he"
      },
      "numbers": {
        "defaultNumberingSystem": "latn",
        "otherNumberingSystems": {
          "native": "latn",
          "traditional": "hebr"
        },
        "minimumGroupingDigits": "1",
        "symbols-numberSystem-latn": {
          "decimal": ".",
          "group": ",",
          "list": ";",
          "percentSign": "%",
          "plusSign": "‎+",
          "minusSign": "‎-",
          "exponential": "E",
          "superscriptingExponent": "×",
          "perMille": "‰",
          "infinity": "∞",
          "nan": "NaN",
          "timeSeparator": ":"
        },
        "decimalFormats-numberSystem-latn": {
          "standard": "#,##0.###",
          "long": {
            "decimalFormat": {
              "1000-count-one": "‏0 אלף",
              "1000-count-two": "‏0 אלף",
              "1000-count-many": "‏0 אלף",
              "1000-count-other": "‏0 אלף",
              "10000-count-one": "‏00 אלף",
              "10000-count-two": "‏00 אלף",
              "10000-count-many": "‏00 אלף",
              "10000-count-other": "‏00 אלף",
              "100000-count-one": "‏000 אלף",
              "100000-count-two": "‏000 אלף",
              "100000-count-many": "‏000 אלף",
              "100000-count-other": "‏000 אלף",
              "1000000-count-one": "‏0 מיליון",
              "1000000-count-two": "‏0 מיליון",
              "1000000-count-many": "‏0 מיליון",
              "1000000-count-other": "‏0 מיליון",
              "10000000-count-one": "‏00 מיליון",
              "10000000-count-two": "‏00 מיליון",
              "10000000-count-many": "‏00 מיליון",
              "10000000-count-other": "‏00 מיליון",
              "100000000-count-one": "‏000 מיליון",
              "100000000-count-two": "‏000 מיליון",
              "100000000-count-many": "‏000 מיליון",
              "100000000-count-other": "‏000 מיליון",
              "1000000000-count-one": "‏0 מיליארד",
              "1000000000-count-two": "‏0 מיליארד",
              "1000000000-count-many": "‏0 מיליארד",
              "1000000000-count-other": "‏0 מיליארד",
              "10000000000-count-one": "‏00 מיליארד",
              "10000000000-count-two": "‏00 מיליארד",
              "10000000000-count-many": "‏00 מיליארד",
              "10000000000-count-other": "‏00 מיליארד",
              "100000000000-count-one": "‏000 מיליארד",
              "100000000000-count-two": "‏000 מיליארד",
              "100000000000-count-many": "‏000 מיליארד",
              "100000000000-count-other": "‏000 מיליארד",
              "1000000000000-count-one": "‏0 טריליון",
              "1000000000000-count-two": "‏0 טריליון",
              "1000000000000-count-many": "‏0 טריליון",
              "1000000000000-count-other": "‏0 טריליון",
              "10000000000000-count-one": "‏00 טריליון",
              "10000000000000-count-two": "‏00 טריליון",
              "10000000000000-count-many": "‏00 טריליון",
              "10000000000000-count-other": "‏00 טריליון",
              "100000000000000-count-one": "‏000 טריליון",
              "100000000000000-count-two": "‏000 טריליון",
              "100000000000000-count-many": "‏000 טריליון",
              "100000000000000-count-other": "‏000 טריליון"
            }
          },
          "short": {
            "decimalFormat": {
              "1000-count-one": "0K",
              "1000-count-two": "0K",
              "1000-count-many": "0K",
              "1000-count-other": "0K",
              "10000-count-one": "00K",
              "10000-count-two": "00K",
              "10000-count-many": "00K",
              "10000-count-other": "00K",
              "100000-count-one": "000K",
              "100000-count-two": "000K",
              "100000-count-many": "000K",
              "100000-count-other": "000K",
              "1000000-count-one": "0M",
              "1000000-count-two": "0M",
              "1000000-count-many": "0M",
              "1000000-count-other": "0M",
              "10000000-count-one": "00M",
              "10000000-count-two": "00M",
              "10000000-count-many": "00M",
              "10000000-count-other": "00M",
              "100000000-count-one": "000M",
              "100000000-count-two": "000M",
              "100000000-count-many": "000M",
              "100000000-count-other": "000M",
              "1000000000-count-one": "0B",
              "1000000000-count-two": "0B",
              "1000000000-count-many": "0B",
              "1000000000-count-other": "0B",
              "10000000000-count-one": "00B",
              "10000000000-count-two": "00B",
              "10000000000-count-many": "00B",
              "10000000000-count-other": "00B",
              "100000000000-count-one": "000B",
              "100000000000-count-two": "000B",
              "100000000000-count-many": "000B",
              "100000000000-count-other": "000B",
              "1000000000000-count-one": "0T",
              "1000000000000-count-two": "0T",
              "1000000000000-count-many": "0T",
              "1000000000000-count-other": "0T",
              "10000000000000-count-one": "00T",
              "10000000000000-count-two": "00T",
              "10000000000000-count-many": "00T",
              "10000000000000-count-other": "00T",
              "100000000000000-count-one": "000T",
              "100000000000000-count-two": "000T",
              "100000000000000-count-many": "000T",
              "100000000000000-count-other": "000T"
            }
          }
        },
        "scientificFormats-numberSystem-latn": {
          "standard": "#E0"
        },
        "percentFormats-numberSystem-latn": {
          "standard": "#,##0%"
        },
        "currencyFormats-numberSystem-latn": {
          "currencySpacing": {
            "beforeCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            },
            "afterCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            }
          },
          "standard": "‏#,##0.00 ¤;‏-#,##0.00 ¤",
          "accounting": "#,##0.00 ¤",
          "short": {
            "standard": {
              "1000-count-one": "¤ 0K",
              "1000-count-two": "¤ 0K",
              "1000-count-many": "¤0K",
              "1000-count-other": "¤ 0K",
              "10000-count-one": "¤00K",
              "10000-count-two": "¤00K",
              "10000-count-many": "¤00K",
              "10000-count-other": "¤ 00K",
              "100000-count-one": "¤000K",
              "100000-count-two": "¤000K",
              "100000-count-many": "¤000K",
              "100000-count-other": "¤000K",
              "1000000-count-one": "¤0M",
              "1000000-count-two": "¤0M",
              "1000000-count-many": "¤0M",
              "1000000-count-other": "¤0M",
              "10000000-count-one": "¤00M",
              "10000000-count-two": "¤00M",
              "10000000-count-many": "¤00M",
              "10000000-count-other": "¤00M",
              "100000000-count-one": "¤000M",
              "100000000-count-two": "¤000M",
              "100000000-count-many": "¤000M",
              "100000000-count-other": "¤000M",
              "1000000000-count-one": "¤0B",
              "1000000000-count-two": "¤0B",
              "1000000000-count-many": "¤0B",
              "1000000000-count-other": "¤0B",
              "10000000000-count-one": "¤00B",
              "10000000000-count-two": "¤00B",
              "10000000000-count-many": "¤00B",
              "10000000000-count-other": "¤00B",
              "100000000000-count-one": "¤000B",
              "100000000000-count-two": "¤000B",
              "100000000000-count-many": "¤000B",
              "100000000000-count-other": "¤000B",
              "1000000000000-count-one": "¤0T",
              "1000000000000-count-two": "¤0T",
              "1000000000000-count-many": "¤0T",
              "1000000000000-count-other": "¤0T",
              "10000000000000-count-one": "¤00T",
              "10000000000000-count-two": "¤00T",
              "10000000000000-count-many": "¤00T",
              "10000000000000-count-other": "¤00T",
              "100000000000000-count-one": "¤000T",
              "100000000000000-count-two": "¤000T",
              "100000000000000-count-many": "¤000T",
              "100000000000000-count-other": "¤000T"
            }
          },
          "unitPattern-count-one": "{0} {1}",
          "unitPattern-count-two": "{0} {1}",
          "unitPattern-count-many": "{0} {1}",
          "unitPattern-count-other": "{0} {1}"
        },
        "miscPatterns-numberSystem-latn": {
          "atLeast": "⩾{0}+",
          "range": "{0}–{1}"
        },
        "minimalPairs": {
          "pluralMinimalPairs": "שנה",
          "pluralMinimalPairs": "שנתיים",
          "pluralMinimalPairs": "{0} שנה",
          "pluralMinimalPairs": "{0} שנים",
          "other": "פנה ימינה בפנייה ה-{0}"
        }
      }
    }
  }
}
{
    "main";
    {
        "he";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31.0.1";
                }
                "language";
                "he";
            }
            "numbers";
            {
                "defaultNumberingSystem";
                "latn",
                    "otherNumberingSystems";
                {
                    "native";
                    "latn",
                        "traditional";
                    "hebr";
                }
                "minimumGroupingDigits";
                "1",
                    "symbols-numberSystem-latn";
                {
                    "decimal";
                    ".",
                        "group";
                    ",",
                        "list";
                    ";",
                        "percentSign";
                    "%",
                        "plusSign";
                    "‎+",
                        "minusSign";
                    "‎-",
                        "exponential";
                    "E",
                        "superscriptingExponent";
                    "×",
                        "perMille";
                    "‰",
                        "infinity";
                    "∞",
                        "nan";
                    "NaN",
                        "timeSeparator";
                    ":";
                }
                "decimalFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0.###",
                        "long";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "‏0 אלף",
                                "1000-count-two";
                            "‏0 אלף",
                                "1000-count-many";
                            "‏0 אלף",
                                "1000-count-other";
                            "‏0 אלף",
                                "10000-count-one";
                            "‏00 אלף",
                                "10000-count-two";
                            "‏00 אלף",
                                "10000-count-many";
                            "‏00 אלף",
                                "10000-count-other";
                            "‏00 אלף",
                                "100000-count-one";
                            "‏000 אלף",
                                "100000-count-two";
                            "‏000 אלף",
                                "100000-count-many";
                            "‏000 אלף",
                                "100000-count-other";
                            "‏000 אלף",
                                "1000000-count-one";
                            "‏0 מיליון",
                                "1000000-count-two";
                            "‏0 מיליון",
                                "1000000-count-many";
                            "‏0 מיליון",
                                "1000000-count-other";
                            "‏0 מיליון",
                                "10000000-count-one";
                            "‏00 מיליון",
                                "10000000-count-two";
                            "‏00 מיליון",
                                "10000000-count-many";
                            "‏00 מיליון",
                                "10000000-count-other";
                            "‏00 מיליון",
                                "100000000-count-one";
                            "‏000 מיליון",
                                "100000000-count-two";
                            "‏000 מיליון",
                                "100000000-count-many";
                            "‏000 מיליון",
                                "100000000-count-other";
                            "‏000 מיליון",
                                "1000000000-count-one";
                            "‏0 מיליארד",
                                "1000000000-count-two";
                            "‏0 מיליארד",
                                "1000000000-count-many";
                            "‏0 מיליארד",
                                "1000000000-count-other";
                            "‏0 מיליארד",
                                "10000000000-count-one";
                            "‏00 מיליארד",
                                "10000000000-count-two";
                            "‏00 מיליארד",
                                "10000000000-count-many";
                            "‏00 מיליארד",
                                "10000000000-count-other";
                            "‏00 מיליארד",
                                "100000000000-count-one";
                            "‏000 מיליארד",
                                "100000000000-count-two";
                            "‏000 מיליארד",
                                "100000000000-count-many";
                            "‏000 מיליארד",
                                "100000000000-count-other";
                            "‏000 מיליארד",
                                "1000000000000-count-one";
                            "‏0 טריליון",
                                "1000000000000-count-two";
                            "‏0 טריליון",
                                "1000000000000-count-many";
                            "‏0 טריליון",
                                "1000000000000-count-other";
                            "‏0 טריליון",
                                "10000000000000-count-one";
                            "‏00 טריליון",
                                "10000000000000-count-two";
                            "‏00 טריליון",
                                "10000000000000-count-many";
                            "‏00 טריליון",
                                "10000000000000-count-other";
                            "‏00 טריליון",
                                "100000000000000-count-one";
                            "‏000 טריליון",
                                "100000000000000-count-two";
                            "‏000 טריליון",
                                "100000000000000-count-many";
                            "‏000 טריליון",
                                "100000000000000-count-other";
                            "‏000 טריליון";
                        }
                    }
                    "short";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "0K",
                                "1000-count-two";
                            "0K",
                                "1000-count-many";
                            "0K",
                                "1000-count-other";
                            "0K",
                                "10000-count-one";
                            "00K",
                                "10000-count-two";
                            "00K",
                                "10000-count-many";
                            "00K",
                                "10000-count-other";
                            "00K",
                                "100000-count-one";
                            "000K",
                                "100000-count-two";
                            "000K",
                                "100000-count-many";
                            "000K",
                                "100000-count-other";
                            "000K",
                                "1000000-count-one";
                            "0M",
                                "1000000-count-two";
                            "0M",
                                "1000000-count-many";
                            "0M",
                                "1000000-count-other";
                            "0M",
                                "10000000-count-one";
                            "00M",
                                "10000000-count-two";
                            "00M",
                                "10000000-count-many";
                            "00M",
                                "10000000-count-other";
                            "00M",
                                "100000000-count-one";
                            "000M",
                                "100000000-count-two";
                            "000M",
                                "100000000-count-many";
                            "000M",
                                "100000000-count-other";
                            "000M",
                                "1000000000-count-one";
                            "0B",
                                "1000000000-count-two";
                            "0B",
                                "1000000000-count-many";
                            "0B",
                                "1000000000-count-other";
                            "0B",
                                "10000000000-count-one";
                            "00B",
                                "10000000000-count-two";
                            "00B",
                                "10000000000-count-many";
                            "00B",
                                "10000000000-count-other";
                            "00B",
                                "100000000000-count-one";
                            "000B",
                                "100000000000-count-two";
                            "000B",
                                "100000000000-count-many";
                            "000B",
                                "100000000000-count-other";
                            "000B",
                                "1000000000000-count-one";
                            "0T",
                                "1000000000000-count-two";
                            "0T",
                                "1000000000000-count-many";
                            "0T",
                                "1000000000000-count-other";
                            "0T",
                                "10000000000000-count-one";
                            "00T",
                                "10000000000000-count-two";
                            "00T",
                                "10000000000000-count-many";
                            "00T",
                                "10000000000000-count-other";
                            "00T",
                                "100000000000000-count-one";
                            "000T",
                                "100000000000000-count-two";
                            "000T",
                                "100000000000000-count-many";
                            "000T",
                                "100000000000000-count-other";
                            "000T";
                        }
                    }
                }
                "scientificFormats-numberSystem-latn";
                {
                    "standard";
                    "#E0";
                }
                "percentFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0%";
                }
                "currencyFormats-numberSystem-latn";
                {
                    "currencySpacing";
                    {
                        "beforeCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                        "afterCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                    }
                    "standard";
                    "‏#,##0.00 ¤;‏-#,##0.00 ¤",
                        "accounting";
                    "#,##0.00 ¤",
                        "short";
                    {
                        "standard";
                        {
                            "1000-count-one";
                            "¤ 0K",
                                "1000-count-two";
                            "¤ 0K",
                                "1000-count-many";
                            "¤0K",
                                "1000-count-other";
                            "¤ 0K",
                                "10000-count-one";
                            "¤00K",
                                "10000-count-two";
                            "¤00K",
                                "10000-count-many";
                            "¤00K",
                                "10000-count-other";
                            "¤ 00K",
                                "100000-count-one";
                            "¤000K",
                                "100000-count-two";
                            "¤000K",
                                "100000-count-many";
                            "¤000K",
                                "100000-count-other";
                            "¤000K",
                                "1000000-count-one";
                            "¤0M",
                                "1000000-count-two";
                            "¤0M",
                                "1000000-count-many";
                            "¤0M",
                                "1000000-count-other";
                            "¤0M",
                                "10000000-count-one";
                            "¤00M",
                                "10000000-count-two";
                            "¤00M",
                                "10000000-count-many";
                            "¤00M",
                                "10000000-count-other";
                            "¤00M",
                                "100000000-count-one";
                            "¤000M",
                                "100000000-count-two";
                            "¤000M",
                                "100000000-count-many";
                            "¤000M",
                                "100000000-count-other";
                            "¤000M",
                                "1000000000-count-one";
                            "¤0B",
                                "1000000000-count-two";
                            "¤0B",
                                "1000000000-count-many";
                            "¤0B",
                                "1000000000-count-other";
                            "¤0B",
                                "10000000000-count-one";
                            "¤00B",
                                "10000000000-count-two";
                            "¤00B",
                                "10000000000-count-many";
                            "¤00B",
                                "10000000000-count-other";
                            "¤00B",
                                "100000000000-count-one";
                            "¤000B",
                                "100000000000-count-two";
                            "¤000B",
                                "100000000000-count-many";
                            "¤000B",
                                "100000000000-count-other";
                            "¤000B",
                                "1000000000000-count-one";
                            "¤0T",
                                "1000000000000-count-two";
                            "¤0T",
                                "1000000000000-count-many";
                            "¤0T",
                                "1000000000000-count-other";
                            "¤0T",
                                "10000000000000-count-one";
                            "¤00T",
                                "10000000000000-count-two";
                            "¤00T",
                                "10000000000000-count-many";
                            "¤00T",
                                "10000000000000-count-other";
                            "¤00T",
                                "100000000000000-count-one";
                            "¤000T",
                                "100000000000000-count-two";
                            "¤000T",
                                "100000000000000-count-many";
                            "¤000T",
                                "100000000000000-count-other";
                            "¤000T";
                        }
                    }
                    "unitPattern-count-one";
                    "{0} {1}",
                        "unitPattern-count-two";
                    "{0} {1}",
                        "unitPattern-count-many";
                    "{0} {1}",
                        "unitPattern-count-other";
                    "{0} {1}";
                }
                "miscPatterns-numberSystem-latn";
                {
                    "atLeast";
                    "⩾{0}+",
                        "range";
                    "{0}–{1}";
                }
                "minimalPairs";
                {
                    "pluralMinimalPairs";
                    "שנה",
                        "pluralMinimalPairs";
                    "שנתיים",
                        "pluralMinimalPairs";
                    "{0} שנה",
                        "pluralMinimalPairs";
                    "{0} שנים",
                        "other";
                    "פנה ימינה בפנייה ה-{0}";
                }
            }
        }
    }
}
{
  "main": {
    "he": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31.0.1"
        },
        "language": "he"
      },
      "dates": {
        "timeZoneNames": {
          "hourFormat": "‎+HH:mm;-HH:mm‎",
          "gmtFormat": "GMT{0}‎",
          "gmtZeroFormat": "GMT",
          "regionFormat": "שעון {0}",
          "regionFormat-type-daylight": "שעון {0} (קיץ)",
          "regionFormat-type-standard": "שעון {0} (חורף)",
          "fallbackFormat": "{1} ({0})",
          "zone": {
            "America": {
              "Adak": {
                "exemplarCity": "אדאק"
              },
              "Anchorage": {
                "exemplarCity": "אנקורג׳"
              },
              "Anguilla": {
                "exemplarCity": "אנגווילה"
              },
              "Antigua": {
                "exemplarCity": "אנטיגואה"
              },
              "Araguaina": {
                "exemplarCity": "אראגואינה"
              },
              "Argentina": {
                "Rio_Gallegos": {
                  "exemplarCity": "ריו גאייגוס"
                },
                "San_Juan": {
                  "exemplarCity": "סן חואן"
                },
                "Ushuaia": {
                  "exemplarCity": "אושוואיה"
                },
                "La_Rioja": {
                  "exemplarCity": "לה ריוחה"
                },
                "San_Luis": {
                  "exemplarCity": "סן לואיס"
                },
                "Salta": {
                  "exemplarCity": "סלטה"
                },
                "Tucuman": {
                  "exemplarCity": "טוקומן"
                }
              },
              "Aruba": {
                "exemplarCity": "ארובה"
              },
              "Asuncion": {
                "exemplarCity": "אסונסיון"
              },
              "Bahia": {
                "exemplarCity": "באהיה"
              },
              "Bahia_Banderas": {
                "exemplarCity": "באהיה בנדרס"
              },
              "Barbados": {
                "exemplarCity": "ברבדוס"
              },
              "Belem": {
                "exemplarCity": "בלם"
              },
              "Belize": {
                "exemplarCity": "בליז"
              },
              "Blanc-Sablon": {
                "exemplarCity": "בלאן-סבלון"
              },
              "Boa_Vista": {
                "exemplarCity": "בואה ויסטה"
              },
              "Bogota": {
                "exemplarCity": "בוגוטה"
              },
              "Boise": {
                "exemplarCity": "בויסי"
              },
              "Buenos_Aires": {
                "exemplarCity": "בואנוס איירס"
              },
              "Cambridge_Bay": {
                "exemplarCity": "קיימברידג׳ ביי"
              },
              "Campo_Grande": {
                "exemplarCity": "קמפו גרנדה"
              },
              "Cancun": {
                "exemplarCity": "קנקון"
              },
              "Caracas": {
                "exemplarCity": "קראקס"
              },
              "Catamarca": {
                "exemplarCity": "קטמרקה"
              },
              "Cayenne": {
                "exemplarCity": "קאיין"
              },
              "Cayman": {
                "exemplarCity": "קיימן"
              },
              "Chicago": {
                "exemplarCity": "שיקגו"
              },
              "Chihuahua": {
                "exemplarCity": "צ׳יוואווה"
              },
              "Coral_Harbour": {
                "exemplarCity": "אטיקוקן"
              },
              "Cordoba": {
                "exemplarCity": "קורדובה"
              },
              "Costa_Rica": {
                "exemplarCity": "קוסטה ריקה"
              },
              "Creston": {
                "exemplarCity": "קרסטון"
              },
              "Cuiaba": {
                "exemplarCity": "קויאבה"
              },
              "Curacao": {
                "exemplarCity": "קוראסאו"
              },
              "Danmarkshavn": {
                "exemplarCity": "דנמרקסהוון"
              },
              "Dawson": {
                "exemplarCity": "דוסון"
              },
              "Dawson_Creek": {
                "exemplarCity": "דוסון קריק"
              },
              "Denver": {
                "exemplarCity": "דנוור"
              },
              "Detroit": {
                "exemplarCity": "דטרויט"
              },
              "Dominica": {
                "exemplarCity": "דומיניקה"
              },
              "Edmonton": {
                "exemplarCity": "אדמונטון"
              },
              "Eirunepe": {
                "exemplarCity": "אירונפי"
              },
              "El_Salvador": {
                "exemplarCity": "אל סלבדור"
              },
              "Fort_Nelson": {
                "exemplarCity": "פורט נלסון"
              },
              "Fortaleza": {
                "exemplarCity": "פורטאלזה"
              },
              "Glace_Bay": {
                "exemplarCity": "גלייס ביי"
              },
              "Godthab": {
                "exemplarCity": "נואוק"
              },
              "Goose_Bay": {
                "exemplarCity": "גוס ביי"
              },
              "Grand_Turk": {
                "exemplarCity": "גרנד טורק"
              },
              "Grenada": {
                "exemplarCity": "גרנדה"
              },
              "Guadeloupe": {
                "exemplarCity": "גואדלופ"
              },
              "Guatemala": {
                "exemplarCity": "גואטמלה"
              },
              "Guayaquil": {
                "exemplarCity": "גואיאקיל"
              },
              "Guyana": {
                "exemplarCity": "גיאנה"
              },
              "Halifax": {
                "exemplarCity": "הליפקס"
              },
              "Havana": {
                "exemplarCity": "הוואנה"
              },
              "Hermosillo": {
                "exemplarCity": "הרמוסיו"
              },
              "Indiana": {
                "Vincennes": {
                  "exemplarCity": "וינסנס, אינדיאנה"
                },
                "Petersburg": {
                  "exemplarCity": "פיטרסבורג, אינדיאנה"
                },
                "Tell_City": {
                  "exemplarCity": "טל סיטי, אינדיאנה"
                },
                "Knox": {
                  "exemplarCity": "נוקס, אינדיאנה"
                },
                "Winamac": {
                  "exemplarCity": "וינמאק, אינדיאנה"
                },
                "Marengo": {
                  "exemplarCity": "מרנגו, אינדיאנה"
                },
                "Vevay": {
                  "exemplarCity": "ויוואיי, אינדיאנה"
                }
              },
              "Indianapolis": {
                "exemplarCity": "אינדיאנפוליס"
              },
              "Inuvik": {
                "exemplarCity": "אינוויק"
              },
              "Iqaluit": {
                "exemplarCity": "איקלואיט"
              },
              "Jamaica": {
                "exemplarCity": "ג׳מייקה"
              },
              "Jujuy": {
                "exemplarCity": "חוחוי"
              },
              "Juneau": {
                "exemplarCity": "ג׳ונו"
              },
              "Kentucky": {
                "Monticello": {
                  "exemplarCity": "מונטיצ׳לו, קנטאקי"
                }
              },
              "Kralendijk": {
                "exemplarCity": "קרלנדייק"
              },
              "La_Paz": {
                "exemplarCity": "לה פאס"
              },
              "Lima": {
                "exemplarCity": "לימה"
              },
              "Los_Angeles": {
                "exemplarCity": "לוס אנג׳לס"
              },
              "Louisville": {
                "exemplarCity": "לואיוויל"
              },
              "Lower_Princes": {
                "exemplarCity": "לואוור פרינסס קוורטר"
              },
              "Maceio": {
                "exemplarCity": "מסייאו"
              },
              "Managua": {
                "exemplarCity": "מנגואה"
              },
              "Manaus": {
                "exemplarCity": "מנאוס"
              },
              "Marigot": {
                "exemplarCity": "מריגו"
              },
              "Martinique": {
                "exemplarCity": "מרטיניק"
              },
              "Matamoros": {
                "exemplarCity": "מטמורוס"
              },
              "Mazatlan": {
                "exemplarCity": "מזטלן"
              },
              "Mendoza": {
                "exemplarCity": "מנדוזה"
              },
              "Menominee": {
                "exemplarCity": "מנומיני"
              },
              "Merida": {
                "exemplarCity": "מרידה"
              },
              "Metlakatla": {
                "exemplarCity": "מטלקטלה"
              },
              "Mexico_City": {
                "exemplarCity": "מקסיקו סיטי"
              },
              "Miquelon": {
                "exemplarCity": "מיקלון"
              },
              "Moncton": {
                "exemplarCity": "מונקטון"
              },
              "Monterrey": {
                "exemplarCity": "מונטריי"
              },
              "Montevideo": {
                "exemplarCity": "מונטווידאו"
              },
              "Montserrat": {
                "exemplarCity": "מונסראט"
              },
              "Nassau": {
                "exemplarCity": "נסאו"
              },
              "New_York": {
                "exemplarCity": "ניו יורק"
              },
              "Nipigon": {
                "exemplarCity": "ניפיגון"
              },
              "Nome": {
                "exemplarCity": "נום"
              },
              "Noronha": {
                "exemplarCity": "נורוניה"
              },
              "North_Dakota": {
                "Beulah": {
                  "exemplarCity": "ביולה, צפון דקוטה"
                },
                "New_Salem": {
                  "exemplarCity": "ניו סיילם, צפון דקוטה"
                },
                "Center": {
                  "exemplarCity": "סנטר, צפון דקוטה"
                }
              },
              "Ojinaga": {
                "exemplarCity": "אוג׳ינאגה"
              },
              "Panama": {
                "exemplarCity": "פנמה"
              },
              "Pangnirtung": {
                "exemplarCity": "פנגנירטונג"
              },
              "Paramaribo": {
                "exemplarCity": "פרמריבו"
              },
              "Phoenix": {
                "exemplarCity": "פיניקס"
              },
              "Port-au-Prince": {
                "exemplarCity": "פורט או פראנס"
              },
              "Port_of_Spain": {
                "exemplarCity": "פורט אוף ספיין"
              },
              "Porto_Velho": {
                "exemplarCity": "פורטו וליו"
              },
              "Puerto_Rico": {
                "exemplarCity": "פוארטו ריקו"
              },
              "Rainy_River": {
                "exemplarCity": "רייני ריבר"
              },
              "Rankin_Inlet": {
                "exemplarCity": "רנקין אינלט"
              },
              "Recife": {
                "exemplarCity": "רסיפה"
              },
              "Regina": {
                "exemplarCity": "רג׳ינה"
              },
              "Resolute": {
                "exemplarCity": "רזולוט"
              },
              "Rio_Branco": {
                "exemplarCity": "ריו ברנקו"
              },
              "Santa_Isabel": {
                "exemplarCity": "סנטה איסבל"
              },
              "Santarem": {
                "exemplarCity": "סנטרם"
              },
              "Santiago": {
                "exemplarCity": "סנטיאגו"
              },
              "Santo_Domingo": {
                "exemplarCity": "סנטו דומינגו"
              },
              "Sao_Paulo": {
                "exemplarCity": "סאו פאולו"
              },
              "Scoresbysund": {
                "exemplarCity": "סקורסביסונד"
              },
              "Sitka": {
                "exemplarCity": "סיטקה"
              },
              "St_Barthelemy": {
                "exemplarCity": "סנט ברתלמי"
              },
              "St_Johns": {
                "exemplarCity": "סנט ג׳ונס"
              },
              "St_Kitts": {
                "exemplarCity": "סנט קיטס"
              },
              "St_Lucia": {
                "exemplarCity": "סנט לוסיה"
              },
              "St_Thomas": {
                "exemplarCity": "סנט תומאס"
              },
              "St_Vincent": {
                "exemplarCity": "סנט וינסנט"
              },
              "Swift_Current": {
                "exemplarCity": "סוויפט קרנט"
              },
              "Tegucigalpa": {
                "exemplarCity": "טגוסיגלפה"
              },
              "Thule": {
                "exemplarCity": "תולה"
              },
              "Thunder_Bay": {
                "exemplarCity": "ת׳אנדר ביי"
              },
              "Tijuana": {
                "exemplarCity": "טיחואנה"
              },
              "Toronto": {
                "exemplarCity": "טורונטו"
              },
              "Tortola": {
                "exemplarCity": "טורטולה"
              },
              "Vancouver": {
                "exemplarCity": "ונקובר"
              },
              "Whitehorse": {
                "exemplarCity": "ווייטהורס"
              },
              "Winnipeg": {
                "exemplarCity": "וויניפג"
              },
              "Yakutat": {
                "exemplarCity": "יקוטאט"
              },
              "Yellowknife": {
                "exemplarCity": "ילונייף"
              }
            },
            "Atlantic": {
              "Azores": {
                "exemplarCity": "האיים האזוריים"
              },
              "Bermuda": {
                "exemplarCity": "ברמודה"
              },
              "Canary": {
                "exemplarCity": "האיים הקנריים"
              },
              "Cape_Verde": {
                "exemplarCity": "כף ורדה"
              },
              "Faeroe": {
                "exemplarCity": "פארו"
              },
              "Madeira": {
                "exemplarCity": "מדיירה"
              },
              "Reykjavik": {
                "exemplarCity": "רייקיאוויק"
              },
              "South_Georgia": {
                "exemplarCity": "דרום ג׳ורג׳יה"
              },
              "St_Helena": {
                "exemplarCity": "סנט הלנה"
              },
              "Stanley": {
                "exemplarCity": "סטנלי"
              }
            },
            "Europe": {
              "Amsterdam": {
                "exemplarCity": "אמסטרדם"
              },
              "Andorra": {
                "exemplarCity": "אנדורה"
              },
              "Astrakhan": {
                "exemplarCity": "אסטרחן"
              },
              "Athens": {
                "exemplarCity": "אתונה"
              },
              "Belgrade": {
                "exemplarCity": "בלגרד"
              },
              "Berlin": {
                "exemplarCity": "ברלין"
              },
              "Bratislava": {
                "exemplarCity": "ברטיסלבה"
              },
              "Brussels": {
                "exemplarCity": "בריסל"
              },
              "Bucharest": {
                "exemplarCity": "בוקרשט"
              },
              "Budapest": {
                "exemplarCity": "בודפשט"
              },
              "Busingen": {
                "exemplarCity": "ביזינגן"
              },
              "Chisinau": {
                "exemplarCity": "קישינב"
              },
              "Copenhagen": {
                "exemplarCity": "קופנהגן"
              },
              "Dublin": {
                "long": {
                  "daylight": "שעון קיץ אירלנד"
                },
                "exemplarCity": "דבלין"
              },
              "Gibraltar": {
                "exemplarCity": "גיברלטר"
              },
              "Guernsey": {
                "exemplarCity": "גרנזי"
              },
              "Helsinki": {
                "exemplarCity": "הלסינקי"
              },
              "Isle_of_Man": {
                "exemplarCity": "האי מאן"
              },
              "Istanbul": {
                "exemplarCity": "איסטנבול"
              },
              "Jersey": {
                "exemplarCity": "ג׳רזי"
              },
              "Kaliningrad": {
                "exemplarCity": "קלינינגרד"
              },
              "Kiev": {
                "exemplarCity": "קייב"
              },
              "Kirov": {
                "exemplarCity": "קירוב"
              },
              "Lisbon": {
                "exemplarCity": "ליסבון"
              },
              "Ljubljana": {
                "exemplarCity": "לובליאנה"
              },
              "London": {
                "long": {
                  "daylight": "שעון קיץ בריטניה"
                },
                "exemplarCity": "לונדון"
              },
              "Luxembourg": {
                "exemplarCity": "לוקסמבורג"
              },
              "Madrid": {
                "exemplarCity": "מדריד"
              },
              "Malta": {
                "exemplarCity": "מלטה"
              },
              "Mariehamn": {
                "exemplarCity": "מרייהאמן"
              },
              "Minsk": {
                "exemplarCity": "מינסק"
              },
              "Monaco": {
                "exemplarCity": "מונקו"
              },
              "Moscow": {
                "exemplarCity": "מוסקבה"
              },
              "Oslo": {
                "exemplarCity": "אוסלו"
              },
              "Paris": {
                "exemplarCity": "פריז"
              },
              "Podgorica": {
                "exemplarCity": "פודגוריצה"
              },
              "Prague": {
                "exemplarCity": "פראג"
              },
              "Riga": {
                "exemplarCity": "ריגה"
              },
              "Rome": {
                "exemplarCity": "רומא"
              },
              "Samara": {
                "exemplarCity": "סמרה"
              },
              "San_Marino": {
                "exemplarCity": "סן מרינו"
              },
              "Sarajevo": {
                "exemplarCity": "סרייבו"
              },
              "Simferopol": {
                "exemplarCity": "סימפרופול"
              },
              "Skopje": {
                "exemplarCity": "סקופיה"
              },
              "Sofia": {
                "exemplarCity": "סופיה"
              },
              "Stockholm": {
                "exemplarCity": "שטוקהולם"
              },
              "Tallinn": {
                "exemplarCity": "טאלין"
              },
              "Tirane": {
                "exemplarCity": "טירנה"
              },
              "Ulyanovsk": {
                "exemplarCity": "אוליאנובסק"
              },
              "Uzhgorod": {
                "exemplarCity": "אוז׳הורוד"
              },
              "Vaduz": {
                "exemplarCity": "ואדוץ"
              },
              "Vatican": {
                "exemplarCity": "הוותיקן"
              },
              "Vienna": {
                "exemplarCity": "וינה"
              },
              "Vilnius": {
                "exemplarCity": "וילנה"
              },
              "Volgograd": {
                "exemplarCity": "וולגוגרד"
              },
              "Warsaw": {
                "exemplarCity": "ורשה"
              },
              "Zagreb": {
                "exemplarCity": "זאגרב"
              },
              "Zaporozhye": {
                "exemplarCity": "זפורוז׳יה"
              },
              "Zurich": {
                "exemplarCity": "ציריך"
              }
            },
            "Africa": {
              "Abidjan": {
                "exemplarCity": "אביג׳אן"
              },
              "Accra": {
                "exemplarCity": "אקרה"
              },
              "Addis_Ababa": {
                "exemplarCity": "אדיס אבבה"
              },
              "Algiers": {
                "exemplarCity": "אלג׳יר"
              },
              "Asmera": {
                "exemplarCity": "אסמרה"
              },
              "Bamako": {
                "exemplarCity": "במאקו"
              },
              "Bangui": {
                "exemplarCity": "בנגואי"
              },
              "Banjul": {
                "exemplarCity": "בנג׳ול"
              },
              "Bissau": {
                "exemplarCity": "ביסאו"
              },
              "Blantyre": {
                "exemplarCity": "בלנטיר"
              },
              "Brazzaville": {
                "exemplarCity": "ברזוויל"
              },
              "Bujumbura": {
                "exemplarCity": "בוג׳ומבורה"
              },
              "Cairo": {
                "exemplarCity": "קהיר"
              },
              "Casablanca": {
                "exemplarCity": "קזבלנקה"
              },
              "Ceuta": {
                "exemplarCity": "סאוטה"
              },
              "Conakry": {
                "exemplarCity": "קונאקרי"
              },
              "Dakar": {
                "exemplarCity": "דקאר"
              },
              "Dar_es_Salaam": {
                "exemplarCity": "דאר א-סלאם"
              },
              "Djibouti": {
                "exemplarCity": "ג׳יבוטי"
              },
              "Douala": {
                "exemplarCity": "דואלה"
              },
              "El_Aaiun": {
                "exemplarCity": "אל עיון"
              },
              "Freetown": {
                "exemplarCity": "פריטאון"
              },
              "Gaborone": {
                "exemplarCity": "גבורונה"
              },
              "Harare": {
                "exemplarCity": "הרארה"
              },
              "Johannesburg": {
                "exemplarCity": "יוהנסבורג"
              },
              "Juba": {
                "exemplarCity": "ג׳ובה"
              },
              "Kampala": {
                "exemplarCity": "קמפאלה"
              },
              "Khartoum": {
                "exemplarCity": "חרטום"
              },
              "Kigali": {
                "exemplarCity": "קיגלי"
              },
              "Kinshasa": {
                "exemplarCity": "קינשסה"
              },
              "Lagos": {
                "exemplarCity": "לגוס"
              },
              "Libreville": {
                "exemplarCity": "ליברוויל"
              },
              "Lome": {
                "exemplarCity": "לומה"
              },
              "Luanda": {
                "exemplarCity": "לואנדה"
              },
              "Lubumbashi": {
                "exemplarCity": "לובומבאשי"
              },
              "Lusaka": {
                "exemplarCity": "לוסקה"
              },
              "Malabo": {
                "exemplarCity": "מלבו"
              },
              "Maputo": {
                "exemplarCity": "מאפוטו"
              },
              "Maseru": {
                "exemplarCity": "מסרו"
              },
              "Mbabane": {
                "exemplarCity": "אמבאבאנה"
              },
              "Mogadishu": {
                "exemplarCity": "מוגדישו"
              },
              "Monrovia": {
                "exemplarCity": "מונרוביה"
              },
              "Nairobi": {
                "exemplarCity": "ניירובי"
              },
              "Ndjamena": {
                "exemplarCity": "נג׳מנה"
              },
              "Niamey": {
                "exemplarCity": "ניאמיי"
              },
              "Nouakchott": {
                "exemplarCity": "נואקצ׳וט"
              },
              "Ouagadougou": {
                "exemplarCity": "וואגאדוגו"
              },
              "Porto-Novo": {
                "exemplarCity": "פורטו נובו"
              },
              "Sao_Tome": {
                "exemplarCity": "סאו טומה"
              },
              "Tripoli": {
                "exemplarCity": "טריפולי"
              },
              "Tunis": {
                "exemplarCity": "תוניס"
              },
              "Windhoek": {
                "exemplarCity": "וינדהוק"
              }
            },
            "Asia": {
              "Aden": {
                "exemplarCity": "עדן"
              },
              "Almaty": {
                "exemplarCity": "אלמאטי"
              },
              "Amman": {
                "exemplarCity": "עמאן"
              },
              "Anadyr": {
                "exemplarCity": "אנדיר"
              },
              "Aqtau": {
                "exemplarCity": "אקטאו"
              },
              "Aqtobe": {
                "exemplarCity": "אקטובה"
              },
              "Ashgabat": {
                "exemplarCity": "אשגבט"
              },
              "Baghdad": {
                "exemplarCity": "בגדד"
              },
              "Bahrain": {
                "exemplarCity": "בחריין"
              },
              "Baku": {
                "exemplarCity": "באקו"
              },
              "Bangkok": {
                "exemplarCity": "בנגקוק"
              },
              "Barnaul": {
                "exemplarCity": "ברנאול"
              },
              "Beirut": {
                "exemplarCity": "ביירות"
              },
              "Bishkek": {
                "exemplarCity": "בישקק"
              },
              "Brunei": {
                "exemplarCity": "ברוניי"
              },
              "Calcutta": {
                "exemplarCity": "קולקטה"
              },
              "Chita": {
                "exemplarCity": "צ׳יטה"
              },
              "Choibalsan": {
                "exemplarCity": "צ׳ויבלסן"
              },
              "Colombo": {
                "exemplarCity": "קולומבו"
              },
              "Damascus": {
                "exemplarCity": "דמשק"
              },
              "Dhaka": {
                "exemplarCity": "דאקה"
              },
              "Dili": {
                "exemplarCity": "דילי"
              },
              "Dubai": {
                "exemplarCity": "דובאי"
              },
              "Dushanbe": {
                "exemplarCity": "דושנבה"
              },
              "Gaza": {
                "exemplarCity": "עזה"
              },
              "Hebron": {
                "exemplarCity": "חברון"
              },
              "Hong_Kong": {
                "exemplarCity": "הונג קונג"
              },
              "Hovd": {
                "exemplarCity": "חובד"
              },
              "Irkutsk": {
                "exemplarCity": "אירקוטסק"
              },
              "Jakarta": {
                "exemplarCity": "ג׳קרטה"
              },
              "Jayapura": {
                "exemplarCity": "ג׳איאפורה"
              },
              "Jerusalem": {
                "exemplarCity": "ירושלים"
              },
              "Kabul": {
                "exemplarCity": "קאבול"
              },
              "Kamchatka": {
                "exemplarCity": "קמצ׳טקה"
              },
              "Karachi": {
                "exemplarCity": "קראצ׳י"
              },
              "Katmandu": {
                "exemplarCity": "קטמנדו"
              },
              "Khandyga": {
                "exemplarCity": "חנדיגה"
              },
              "Krasnoyarsk": {
                "exemplarCity": "קרסנויארסק"
              },
              "Kuala_Lumpur": {
                "exemplarCity": "קואלה לומפור"
              },
              "Kuching": {
                "exemplarCity": "קוצ׳ינג"
              },
              "Kuwait": {
                "exemplarCity": "כווית"
              },
              "Macau": {
                "exemplarCity": "מקאו"
              },
              "Magadan": {
                "exemplarCity": "מגדן"
              },
              "Makassar": {
                "exemplarCity": "מאקאסאר"
              },
              "Manila": {
                "exemplarCity": "מנילה"
              },
              "Muscat": {
                "exemplarCity": "מוסקט"
              },
              "Nicosia": {
                "exemplarCity": "ניקוסיה"
              },
              "Novokuznetsk": {
                "exemplarCity": "נובוקוזנטסק"
              },
              "Novosibirsk": {
                "exemplarCity": "נובוסיבירסק"
              },
              "Omsk": {
                "exemplarCity": "אומסק"
              },
              "Oral": {
                "exemplarCity": "אורל"
              },
              "Phnom_Penh": {
                "exemplarCity": "פנום פן"
              },
              "Pontianak": {
                "exemplarCity": "פונטיאנק"
              },
              "Pyongyang": {
                "exemplarCity": "פיונגיאנג"
              },
              "Qatar": {
                "exemplarCity": "קטאר"
              },
              "Qyzylorda": {
                "exemplarCity": "קיזילורדה"
              },
              "Rangoon": {
                "exemplarCity": "רנגון"
              },
              "Riyadh": {
                "exemplarCity": "ריאד"
              },
              "Saigon": {
                "exemplarCity": "הו צ׳י מין סיטי"
              },
              "Sakhalin": {
                "exemplarCity": "סחלין"
              },
              "Samarkand": {
                "exemplarCity": "סמרקנד"
              },
              "Seoul": {
                "exemplarCity": "סיאול"
              },
              "Shanghai": {
                "exemplarCity": "שנחאי"
              },
              "Singapore": {
                "exemplarCity": "סינגפור"
              },
              "Srednekolymsk": {
                "exemplarCity": "סרדנייקולימסק"
              },
              "Taipei": {
                "exemplarCity": "טאיפיי"
              },
              "Tashkent": {
                "exemplarCity": "טשקנט"
              },
              "Tbilisi": {
                "exemplarCity": "טביליסי"
              },
              "Tehran": {
                "exemplarCity": "טהרן"
              },
              "Thimphu": {
                "exemplarCity": "טהימפהו"
              },
              "Tokyo": {
                "exemplarCity": "טוקיו"
              },
              "Tomsk": {
                "exemplarCity": "טומסק"
              },
              "Ulaanbaatar": {
                "exemplarCity": "אולאאנבטאר"
              },
              "Urumqi": {
                "exemplarCity": "אורומקי"
              },
              "Ust-Nera": {
                "exemplarCity": "אוסט-נרה"
              },
              "Vientiane": {
                "exemplarCity": "האנוי"
              },
              "Vladivostok": {
                "exemplarCity": "ולדיווסטוק"
              },
              "Yakutsk": {
                "exemplarCity": "יקוטסק"
              },
              "Yekaterinburg": {
                "exemplarCity": "יקטרינבורג"
              },
              "Yerevan": {
                "exemplarCity": "ירוואן"
              }
            },
            "Indian": {
              "Antananarivo": {
                "exemplarCity": "אנטננריבו"
              },
              "Chagos": {
                "exemplarCity": "צ׳אגוס"
              },
              "Christmas": {
                "exemplarCity": "האי כריסטמס"
              },
              "Cocos": {
                "exemplarCity": "קוקוס"
              },
              "Comoro": {
                "exemplarCity": "קומורו"
              },
              "Kerguelen": {
                "exemplarCity": "קרגוולן"
              },
              "Mahe": {
                "exemplarCity": "מהא"
              },
              "Maldives": {
                "exemplarCity": "האיים המלדיביים"
              },
              "Mauritius": {
                "exemplarCity": "מאוריציוס"
              },
              "Mayotte": {
                "exemplarCity": "מאיוט"
              },
              "Reunion": {
                "exemplarCity": "ראוניון"
              }
            },
            "Australia": {
              "Adelaide": {
                "exemplarCity": "אדלייד"
              },
              "Brisbane": {
                "exemplarCity": "בריסביין"
              },
              "Broken_Hill": {
                "exemplarCity": "ברוקן היל"
              },
              "Currie": {
                "exemplarCity": "קרי"
              },
              "Darwin": {
                "exemplarCity": "דרווין"
              },
              "Eucla": {
                "exemplarCity": "יוקלה"
              },
              "Hobart": {
                "exemplarCity": "הוברט"
              },
              "Lindeman": {
                "exemplarCity": "לינדמן"
              },
              "Lord_Howe": {
                "exemplarCity": "אי הלורד האו"
              },
              "Melbourne": {
                "exemplarCity": "מלבורן"
              },
              "Perth": {
                "exemplarCity": "פרת׳"
              },
              "Sydney": {
                "exemplarCity": "סידני"
              }
            },
            "Pacific": {
              "Apia": {
                "exemplarCity": "אפיה"
              },
              "Auckland": {
                "exemplarCity": "אוקלנד"
              },
              "Bougainville": {
                "exemplarCity": "בוגנוויל"
              },
              "Chatham": {
                "exemplarCity": "צ׳אטהאם"
              },
              "Easter": {
                "exemplarCity": "אי הפסחא"
              },
              "Efate": {
                "exemplarCity": "אפטה"
              },
              "Enderbury": {
                "exemplarCity": "אנדרבורי"
              },
              "Fakaofo": {
                "exemplarCity": "פקאופו"
              },
              "Fiji": {
                "exemplarCity": "פיג׳י"
              },
              "Funafuti": {
                "exemplarCity": "פונפוטי"
              },
              "Galapagos": {
                "exemplarCity": "גלפאגוס"
              },
              "Gambier": {
                "exemplarCity": "איי גמבייה"
              },
              "Guadalcanal": {
                "exemplarCity": "גוודלקנאל"
              },
              "Guam": {
                "exemplarCity": "גואם"
              },
              "Honolulu": {
                "exemplarCity": "הונולולו"
              },
              "Johnston": {
                "exemplarCity": "ג׳ונסטון"
              },
              "Kiritimati": {
                "exemplarCity": "קיריטימאטי"
              },
              "Kosrae": {
                "exemplarCity": "קוסרה"
              },
              "Kwajalein": {
                "exemplarCity": "קוואג׳ליין"
              },
              "Majuro": {
                "exemplarCity": "מאג׳ורו"
              },
              "Marquesas": {
                "exemplarCity": "איי מרקיז"
              },
              "Midway": {
                "exemplarCity": "מידוויי"
              },
              "Nauru": {
                "exemplarCity": "נאורו"
              },
              "Niue": {
                "exemplarCity": "ניואה"
              },
              "Norfolk": {
                "exemplarCity": "נורפוק"
              },
              "Noumea": {
                "exemplarCity": "נומאה"
              },
              "Pago_Pago": {
                "exemplarCity": "פאגו פאגו"
              },
              "Palau": {
                "exemplarCity": "פלאו"
              },
              "Pitcairn": {
                "exemplarCity": "פיטקרן"
              },
              "Ponape": {
                "exemplarCity": "פונפיי"
              },
              "Port_Moresby": {
                "exemplarCity": "פורט מורסבי"
              },
              "Rarotonga": {
                "exemplarCity": "רארוטונגה"
              },
              "Saipan": {
                "exemplarCity": "סאיפאן"
              },
              "Tahiti": {
                "exemplarCity": "טהיטי"
              },
              "Tarawa": {
                "exemplarCity": "טאראווה"
              },
              "Tongatapu": {
                "exemplarCity": "טונגטאפו"
              },
              "Truk": {
                "exemplarCity": "צ׳וק"
              },
              "Wake": {
                "exemplarCity": "וייק"
              },
              "Wallis": {
                "exemplarCity": "ווליס"
              }
            },
            "Arctic": {
              "Longyearbyen": {
                "exemplarCity": "לונגיירבין"
              }
            },
            "Antarctica": {
              "Casey": {
                "exemplarCity": "קאסיי"
              },
              "Davis": {
                "exemplarCity": "דיוויס"
              },
              "DumontDUrville": {
                "exemplarCity": "דומון ד׳אורוויל"
              },
              "Macquarie": {
                "exemplarCity": "מקרי"
              },
              "Mawson": {
                "exemplarCity": "מוסון"
              },
              "McMurdo": {
                "exemplarCity": "מק-מרדו"
              },
              "Palmer": {
                "exemplarCity": "פאלמר"
              },
              "Rothera": {
                "exemplarCity": "רות׳רה"
              },
              "Syowa": {
                "exemplarCity": "סיוואה"
              },
              "Troll": {
                "exemplarCity": "טרול"
              },
              "Vostok": {
                "exemplarCity": "ווסטוק"
              }
            },
            "Etc": {
              "GMT": {
                "exemplarCity": "GMT"
              },
              "GMT1": {
                "exemplarCity": "GMT+1"
              },
              "GMT10": {
                "exemplarCity": "GMT+10"
              },
              "GMT11": {
                "exemplarCity": "GMT+11"
              },
              "GMT12": {
                "exemplarCity": "GMT+12"
              },
              "GMT2": {
                "exemplarCity": "GMT+2"
              },
              "GMT3": {
                "exemplarCity": "GMT+3"
              },
              "GMT4": {
                "exemplarCity": "GMT+4"
              },
              "GMT5": {
                "exemplarCity": "GMT+5"
              },
              "GMT6": {
                "exemplarCity": "GMT+6"
              },
              "GMT7": {
                "exemplarCity": "GMT+7"
              },
              "GMT8": {
                "exemplarCity": "GMT+8"
              },
              "GMT9": {
                "exemplarCity": "GMT+9"
              },
              "GMT-1": {
                "exemplarCity": "GMT-1"
              },
              "GMT-10": {
                "exemplarCity": "GMT-10"
              },
              "GMT-11": {
                "exemplarCity": "GMT-11"
              },
              "GMT-12": {
                "exemplarCity": "GMT-12"
              },
              "GMT-13": {
                "exemplarCity": "GMT-13"
              },
              "GMT-14": {
                "exemplarCity": "GMT-14"
              },
              "GMT-2": {
                "exemplarCity": "GMT-2"
              },
              "GMT-3": {
                "exemplarCity": "GMT-3"
              },
              "GMT-4": {
                "exemplarCity": "GMT-4"
              },
              "GMT-5": {
                "exemplarCity": "GMT-5"
              },
              "GMT-6": {
                "exemplarCity": "GMT-6"
              },
              "GMT-7": {
                "exemplarCity": "GMT-7"
              },
              "GMT-8": {
                "exemplarCity": "GMT-8"
              },
              "GMT-9": {
                "exemplarCity": "GMT-9"
              },
              "UTC": {
                "long": {
                  "standard": "זמן אוניברסלי מתואם"
                },
                "short": {
                  "standard": "UTC"
                },
                "exemplarCity": "UTC"
              },
              "Unknown": {
                "exemplarCity": "עיר לא ידועה"
              }
            }
          },
          "metazone": {
            "Afghanistan": {
              "long": {
                "standard": "שעון אפגניסטן"
              }
            },
            "Africa_Central": {
              "long": {
                "standard": "שעון מרכז אפריקה"
              }
            },
            "Africa_Eastern": {
              "long": {
                "standard": "שעון מזרח אפריקה"
              }
            },
            "Africa_Southern": {
              "long": {
                "standard": "שעון דרום אפריקה"
              }
            },
            "Africa_Western": {
              "long": {
                "generic": "שעון מערב אפריקה",
                "standard": "שעון מערב אפריקה (חורף)",
                "daylight": "שעון מערב אפריקה (קיץ)"
              }
            },
            "Alaska": {
              "long": {
                "generic": "שעון אלסקה",
                "standard": "שעון אלסקה (חורף)",
                "daylight": "שעון אלסקה (קיץ)"
              }
            },
            "Amazon": {
              "long": {
                "generic": "שעון אמזונס",
                "standard": "שעון אמזונס (חורף)",
                "daylight": "שעון אמזונס (קיץ)"
              }
            },
            "America_Central": {
              "long": {
                "generic": "שעון מרכז ארה״ב",
                "standard": "שעון מרכז ארה״ב (חורף)",
                "daylight": "שעון מרכז ארה״ב (קיץ)"
              }
            },
            "America_Eastern": {
              "long": {
                "generic": "שעון החוף המזרחי",
                "standard": "שעון החוף המזרחי (חורף)",
                "daylight": "שעון החוף המזרחי (קיץ)"
              }
            },
            "America_Mountain": {
              "long": {
                "generic": "שעון אזור ההרים בארה״ב",
                "standard": "שעון אזור ההרים בארה״ב (חורף)",
                "daylight": "שעון אזור ההרים בארה״ב (קיץ)"
              }
            },
            "America_Pacific": {
              "long": {
                "generic": "שעון מערב ארה״ב",
                "standard": "שעון מערב ארה״ב (חורף)",
                "daylight": "שעון מערב ארה״ב (קיץ)"
              }
            },
            "Anadyr": {
              "long": {
                "generic": "שעון אנדיר",
                "standard": "שעון רגיל אנדיר",
                "daylight": "שעון קיץ אנדיר"
              }
            },
            "Apia": {
              "long": {
                "generic": "שעון אפיה",
                "standard": "שעון אפיה (חורף)",
                "daylight": "שעון אפיה (קיץ)"
              }
            },
            "Arabian": {
              "long": {
                "generic": "שעון חצי האי ערב",
                "standard": "שעון חצי האי ערב (חורף)",
                "daylight": "שעון חצי האי ערב (קיץ)"
              }
            },
            "Argentina": {
              "long": {
                "generic": "שעון ארגנטינה",
                "standard": "שעון ארגנטינה (חורף)",
                "daylight": "שעון ארגנטינה (קיץ)"
              }
            },
            "Argentina_Western": {
              "long": {
                "generic": "שעון מערב ארגנטינה",
                "standard": "שעון מערב ארגנטינה (חורף)",
                "daylight": "שעון מערב ארגנטינה (קיץ)"
              }
            },
            "Armenia": {
              "long": {
                "generic": "שעון ארמניה",
                "standard": "שעון ארמניה (חורף)",
                "daylight": "שעון ארמניה (קיץ)"
              }
            },
            "Atlantic": {
              "long": {
                "generic": "שעון האוקיינוס האטלנטי",
                "standard": "שעון האוקיינוס האטלנטי (חורף)",
                "daylight": "שעון האוקיינוס האטלנטי (קיץ)"
              }
            },
            "Australia_Central": {
              "long": {
                "generic": "שעון מרכז אוסטרליה",
                "standard": "שעון מרכז אוסטרליה (חורף)",
                "daylight": "שעון מרכז אוסטרליה (קיץ)"
              }
            },
            "Australia_CentralWestern": {
              "long": {
                "generic": "שעון מרכז-מערב אוסטרליה",
                "standard": "שעון מרכז-מערב אוסטרליה (חורף)",
                "daylight": "שעון מרכז-מערב אוסטרליה (קיץ)"
              }
            },
            "Australia_Eastern": {
              "long": {
                "generic": "שעון מזרח אוסטרליה",
                "standard": "שעון מזרח אוסטרליה (חורף)",
                "daylight": "שעון מזרח אוסטרליה (קיץ)"
              }
            },
            "Australia_Western": {
              "long": {
                "generic": "שעון מערב אוסטרליה",
                "standard": "שעון מערב אוסטרליה (חורף)",
                "daylight": "שעון מערב אוסטרליה (קיץ)"
              }
            },
            "Azerbaijan": {
              "long": {
                "generic": "שעון אזרבייג׳אן",
                "standard": "שעון אזרבייג׳אן (חורף)",
                "daylight": "שעון אזרבייג׳אן (קיץ)"
              }
            },
            "Azores": {
              "long": {
                "generic": "שעון האיים האזוריים",
                "standard": "שעון האיים האזוריים (חורף)",
                "daylight": "שעון האיים האזוריים (קיץ)"
              }
            },
            "Bangladesh": {
              "long": {
                "generic": "שעון בנגלדש",
                "standard": "שעון בנגלדש (חורף)",
                "daylight": "שעון בנגלדש (קיץ)"
              }
            },
            "Bhutan": {
              "long": {
                "standard": "שעון בהוטן"
              }
            },
            "Bolivia": {
              "long": {
                "standard": "שעון בוליביה"
              }
            },
            "Brasilia": {
              "long": {
                "generic": "שעון ברזיליה",
                "standard": "שעון ברזיליה (חורף)",
                "daylight": "שעון ברזיליה (קיץ)"
              }
            },
            "Brunei": {
              "long": {
                "standard": "שעון ברוניי דארוסלאם"
              }
            },
            "Cape_Verde": {
              "long": {
                "generic": "שעון כף ורדה",
                "standard": "שעון כף ורדה (חורף)",
                "daylight": "שעון כף ורדה (קיץ)"
              }
            },
            "Chamorro": {
              "long": {
                "standard": "שעון צ׳אמורו"
              }
            },
            "Chatham": {
              "long": {
                "generic": "שעון צ׳טהאם",
                "standard": "שעון צ׳טהאם (חורף)",
                "daylight": "שעון צ׳טהאם (קיץ)"
              }
            },
            "Chile": {
              "long": {
                "generic": "שעון צ׳ילה",
                "standard": "שעון צ׳ילה (חורף)",
                "daylight": "שעון צ׳ילה (קיץ)"
              }
            },
            "China": {
              "long": {
                "generic": "שעון סין",
                "standard": "שעון סין (חורף)",
                "daylight": "שעון סין (קיץ)"
              }
            },
            "Choibalsan": {
              "long": {
                "generic": "שעון צ׳ויבלסן",
                "standard": "שעון צ׳ויבלסן (חורף)",
                "daylight": "שעון צ׳ויבלסן (קיץ)"
              }
            },
            "Christmas": {
              "long": {
                "standard": "שעון האי כריסטמס"
              }
            },
            "Cocos": {
              "long": {
                "standard": "שעון איי קוקוס"
              }
            },
            "Colombia": {
              "long": {
                "generic": "שעון קולומביה",
                "standard": "שעון קולומביה (חורף)",
                "daylight": "שעון קולומביה (קיץ)"
              }
            },
            "Cook": {
              "long": {
                "generic": "שעון איי קוק",
                "standard": "שעון איי קוק (חורף)",
                "daylight": "שעון איי קוק (מחצית הקיץ)"
              }
            },
            "Cuba": {
              "long": {
                "generic": "שעון קובה",
                "standard": "שעון קובה (חורף)",
                "daylight": "שעון קובה (קיץ)"
              }
            },
            "Davis": {
              "long": {
                "standard": "שעון דיוויס"
              }
            },
            "DumontDUrville": {
              "long": {
                "standard": "שעון דומון ד׳אורוויל"
              }
            },
            "East_Timor": {
              "long": {
                "standard": "שעון מזרח טימור"
              }
            },
            "Easter": {
              "long": {
                "generic": "שעון אי הפסחא",
                "standard": "שעון אי הפסחא (חורף)",
                "daylight": "שעון אי הפסחא (קיץ)"
              }
            },
            "Ecuador": {
              "long": {
                "standard": "שעון אקוודור"
              }
            },
            "Europe_Central": {
              "long": {
                "generic": "שעון מרכז אירופה",
                "standard": "שעון מרכז אירופה (חורף)",
                "daylight": "שעון מרכז אירופה (קיץ)"
              }
            },
            "Europe_Eastern": {
              "long": {
                "generic": "שעון מזרח אירופה",
                "standard": "שעון מזרח אירופה (חורף)",
                "daylight": "שעון מזרח אירופה (קיץ)"
              }
            },
            "Europe_Further_Eastern": {
              "long": {
                "standard": "שעון מינסק"
              }
            },
            "Europe_Western": {
              "long": {
                "generic": "שעון מערב אירופה",
                "standard": "שעון מערב אירופה (חורף)",
                "daylight": "שעון מערב אירופה (קיץ)"
              }
            },
            "Falkland": {
              "long": {
                "generic": "שעון איי פוקלנד",
                "standard": "שעון איי פוקלנד (חורף)",
                "daylight": "שעון איי פוקלנד (קיץ)"
              }
            },
            "Fiji": {
              "long": {
                "generic": "שעון פיג׳י",
                "standard": "שעון פיג׳י (חורף)",
                "daylight": "שעון פיג׳י (קיץ)"
              }
            },
            "French_Guiana": {
              "long": {
                "standard": "שעון גיאנה הצרפתית"
              }
            },
            "French_Southern": {
              "long": {
                "standard": "שעון הארצות הדרומיות והאנטארקטיות של צרפת"
              }
            },
            "Galapagos": {
              "long": {
                "standard": "שעון איי גלאפגוס"
              }
            },
            "Gambier": {
              "long": {
                "standard": "שעון איי גמבייה"
              }
            },
            "Georgia": {
              "long": {
                "generic": "שעון גאורגיה",
                "standard": "שעון גאורגיה (חורף)",
                "daylight": "שעון גאורגיה (קיץ)"
              }
            },
            "Gilbert_Islands": {
              "long": {
                "standard": "שעון איי גילברט"
              }
            },
            "GMT": {
              "long": {
                "standard": "שעון גריניץ׳‏"
              }
            },
            "Greenland_Eastern": {
              "long": {
                "generic": "שעון מזרח גרינלנד",
                "standard": "שעון מזרח גרינלנד (חורף)",
                "daylight": "שעון מזרח גרינלנד (קיץ)"
              }
            },
            "Greenland_Western": {
              "long": {
                "generic": "שעון מערב גרינלנד",
                "standard": "שעון מערב גרינלנד (חורף)",
                "daylight": "שעון מערב גרינלנד (קיץ)"
              }
            },
            "Gulf": {
              "long": {
                "standard": "שעון מדינות המפרץ"
              }
            },
            "Guyana": {
              "long": {
                "standard": "שעון גיאנה"
              }
            },
            "Hawaii_Aleutian": {
              "long": {
                "generic": "שעון האיים האלאוטיים הוואי",
                "standard": "שעון האיים האלאוטיים הוואי (חורף)",
                "daylight": "שעון האיים האלאוטיים הוואי (קיץ)"
              }
            },
            "Hong_Kong": {
              "long": {
                "generic": "שעון הונג קונג",
                "standard": "שעון הונג קונג (חורף)",
                "daylight": "שעון הונג קונג (קיץ)"
              }
            },
            "Hovd": {
              "long": {
                "generic": "שעון חובד",
                "standard": "שעון חובד (חורף)",
                "daylight": "שעון חובד (קיץ)"
              }
            },
            "India": {
              "long": {
                "standard": "שעון הודו"
              }
            },
            "Indian_Ocean": {
              "long": {
                "standard": "שעון האוקיינוס ההודי"
              }
            },
            "Indochina": {
              "long": {
                "standard": "שעון הודו-סין"
              }
            },
            "Indonesia_Central": {
              "long": {
                "standard": "שעון מרכז אינדונזיה"
              }
            },
            "Indonesia_Eastern": {
              "long": {
                "standard": "שעון מזרח אינדונזיה"
              }
            },
            "Indonesia_Western": {
              "long": {
                "standard": "שעון מערב אינדונזיה"
              }
            },
            "Iran": {
              "long": {
                "generic": "שעון איראן",
                "standard": "שעון איראן (חורף)",
                "daylight": "שעון איראן (קיץ)"
              }
            },
            "Irkutsk": {
              "long": {
                "generic": "שעון אירקוטסק",
                "standard": "שעון אירקוטסק (חורף)",
                "daylight": "שעון אירקוסטק (קיץ)"
              }
            },
            "Israel": {
              "long": {
                "generic": "שעון ישראל",
                "standard": "שעון ישראל (חורף)",
                "daylight": "שעון ישראל (קיץ)"
              }
            },
            "Japan": {
              "long": {
                "generic": "שעון יפן",
                "standard": "שעון יפן (חורף)",
                "daylight": "שעון יפן (קיץ)"
              }
            },
            "Kamchatka": {
              "long": {
                "generic": "שעון פטרופבלובסק-קמצ׳טסקי",
                "standard": "שעון רגיל פטרופבלובסק-קמצ׳טסקי",
                "daylight": "שעון קיץ פטרופבלובסק-קמצ׳טסקי"
              }
            },
            "Kazakhstan_Eastern": {
              "long": {
                "standard": "שעון מזרח קזחסטן"
              }
            },
            "Kazakhstan_Western": {
              "long": {
                "standard": "שעון מערב קזחסטן"
              }
            },
            "Korea": {
              "long": {
                "generic": "שעון קוריאה",
                "standard": "שעון קוריאה (חורף)",
                "daylight": "שעון קוריאה (קיץ)"
              }
            },
            "Kosrae": {
              "long": {
                "standard": "שעון קוסראה"
              }
            },
            "Krasnoyarsk": {
              "long": {
                "generic": "שעון קרסנויארסק",
                "standard": "שעון קרסנויארסק (חורף)",
                "daylight": "שעון קרסנויארסק (קיץ)"
              }
            },
            "Kyrgystan": {
              "long": {
                "standard": "שעון קירגיזסטן"
              }
            },
            "Line_Islands": {
              "long": {
                "standard": "שעון איי ליין"
              }
            },
            "Lord_Howe": {
              "long": {
                "generic": "שעון אי הלורד האו",
                "standard": "שעון אי הלורד האו (חורף)",
                "daylight": "שעון אי הלורד האו (קיץ)"
              }
            },
            "Macau": {
              "long": {
                "generic": "שעון מקאו",
                "standard": "שעון חורף מקאו",
                "daylight": "שעון קיץ מקאו"
              }
            },
            "Macquarie": {
              "long": {
                "standard": "שעון מקווארי"
              }
            },
            "Magadan": {
              "long": {
                "generic": "שעון מגדן",
                "standard": "שעון מגדן (חורף)",
                "daylight": "שעון מגדן (קיץ)"
              }
            },
            "Malaysia": {
              "long": {
                "standard": "שעון מלזיה"
              }
            },
            "Maldives": {
              "long": {
                "standard": "שעון האיים המלדיביים"
              }
            },
            "Marquesas": {
              "long": {
                "standard": "שעון איי מרקיז"
              }
            },
            "Marshall_Islands": {
              "long": {
                "standard": "שעון איי מרשל"
              }
            },
            "Mauritius": {
              "long": {
                "generic": "שעון מאוריציוס",
                "standard": "שעון מאוריציוס (חורף)",
                "daylight": "שעון מאוריציוס (קיץ)"
              }
            },
            "Mawson": {
              "long": {
                "standard": "שעון מאוסון"
              }
            },
            "Mexico_Northwest": {
              "long": {
                "generic": "שעון צפון-מערב מקסיקו",
                "standard": "שעון צפון-מערב מקסיקו (חורף)",
                "daylight": "שעון צפון-מערב מקסיקו (קיץ)"
              }
            },
            "Mexico_Pacific": {
              "long": {
                "generic": "שעון מערב מקסיקו",
                "standard": "שעון מערב מקסיקו (חורף)",
                "daylight": "שעון מערב מקסיקו (קיץ)"
              }
            },
            "Mongolia": {
              "long": {
                "generic": "שעון אולן בטור",
                "standard": "שעון אולן בטור (חורף)",
                "daylight": "שעון אולן בטור (קיץ)"
              }
            },
            "Moscow": {
              "long": {
                "generic": "שעון מוסקבה",
                "standard": "שעון מוסקבה (חורף)",
                "daylight": "שעון מוסקבה (קיץ)"
              }
            },
            "Myanmar": {
              "long": {
                "standard": "שעון מיאנמר"
              }
            },
            "Nauru": {
              "long": {
                "standard": "שעון נאורו"
              }
            },
            "Nepal": {
              "long": {
                "standard": "שעון נפאל"
              }
            },
            "New_Caledonia": {
              "long": {
                "generic": "שעון קלדוניה החדשה",
                "standard": "שעון קלדוניה החדשה (חורף)",
                "daylight": "שעון קלדוניה החדשה (קיץ)"
              }
            },
            "New_Zealand": {
              "long": {
                "generic": "שעון ניו זילנד",
                "standard": "שעון ניו זילנד (חורף)",
                "daylight": "שעון ניו זילנד (קיץ)"
              }
            },
            "Newfoundland": {
              "long": {
                "generic": "שעון ניופאונדלנד",
                "standard": "שעון ניופאונדלנד (חורף)",
                "daylight": "שעון ניופאונדלנד (קיץ)"
              }
            },
            "Niue": {
              "long": {
                "standard": "שעון ניואה"
              }
            },
            "Norfolk": {
              "long": {
                "standard": "שעון האי נורפוק"
              }
            },
            "Noronha": {
              "long": {
                "generic": "שעון פרננדו די נורוניה",
                "standard": "שעון פרננדו די נורוניה (חורף)",
                "daylight": "שעון פרננדו די נורוניה (קיץ)"
              }
            },
            "Novosibirsk": {
              "long": {
                "generic": "שעון נובוסיבירסק",
                "standard": "שעון נובוסיבירסק (חורף)",
                "daylight": "שעון נובוסיבירסק (קיץ)"
              }
            },
            "Omsk": {
              "long": {
                "generic": "שעון אומסק",
                "standard": "שעון אומסק (חורף)",
                "daylight": "שעון אומסק (קיץ)"
              }
            },
            "Pakistan": {
              "long": {
                "generic": "שעון פקיסטן",
                "standard": "שעון פקיסטן (חורף)",
                "daylight": "שעון פקיסטן (קיץ)"
              }
            },
            "Palau": {
              "long": {
                "standard": "שעון פלאו"
              }
            },
            "Papua_New_Guinea": {
              "long": {
                "standard": "שעון פפואה גיניאה החדשה"
              }
            },
            "Paraguay": {
              "long": {
                "generic": "שעון פרגוואי",
                "standard": "שעון פרגוואי (חורף)",
                "daylight": "שעון פרגוואי (קיץ)"
              }
            },
            "Peru": {
              "long": {
                "generic": "שעון פרו",
                "standard": "שעון פרו (חורף)",
                "daylight": "שעון פרו (קיץ)"
              }
            },
            "Philippines": {
              "long": {
                "generic": "שעון הפיליפינים",
                "standard": "שעון הפיליפינים (חורף)",
                "daylight": "שעון הפיליפינים (קיץ)"
              }
            },
            "Phoenix_Islands": {
              "long": {
                "standard": "שעון איי פיניקס"
              }
            },
            "Pierre_Miquelon": {
              "long": {
                "generic": "שעון סנט פייר ומיקלון",
                "standard": "שעון סנט פייר ומיקלון (חורף)",
                "daylight": "שעון סנט פייר ומיקלון (קיץ)"
              }
            },
            "Pitcairn": {
              "long": {
                "standard": "שעון פיטקרן"
              }
            },
            "Ponape": {
              "long": {
                "standard": "שעון פונאפי"
              }
            },
            "Pyongyang": {
              "long": {
                "standard": "שעון פיונגיאנג"
              }
            },
            "Reunion": {
              "long": {
                "standard": "שעון ראוניון"
              }
            },
            "Rothera": {
              "long": {
                "standard": "שעון רות׳רה"
              }
            },
            "Sakhalin": {
              "long": {
                "generic": "שעון סחלין",
                "standard": "שעון סחלין (חורף)",
                "daylight": "שעון סחלין (קיץ)"
              }
            },
            "Samara": {
              "long": {
                "generic": "שעון סמרה",
                "standard": "שעון רגיל סמרה",
                "daylight": "שעון קיץ סמרה"
              }
            },
            "Samoa": {
              "long": {
                "generic": "שעון סמואה",
                "standard": "שעון סמואה (חורף)",
                "daylight": "שעון סמואה (קיץ)"
              }
            },
            "Seychelles": {
              "long": {
                "standard": "שעון איי סיישל"
              }
            },
            "Singapore": {
              "long": {
                "standard": "שעון סינגפור"
              }
            },
            "Solomon": {
              "long": {
                "standard": "שעון איי שלמה"
              }
            },
            "South_Georgia": {
              "long": {
                "standard": "שעון דרום ג׳ורג׳יה"
              }
            },
            "Suriname": {
              "long": {
                "standard": "שעון סורינאם"
              }
            },
            "Syowa": {
              "long": {
                "standard": "שעון סייווה"
              }
            },
            "Tahiti": {
              "long": {
                "standard": "שעון טהיטי"
              }
            },
            "Taipei": {
              "long": {
                "generic": "שעון טאיפיי",
                "standard": "שעון טאיפיי (חורף)",
                "daylight": "שעון טאיפיי (קיץ)"
              }
            },
            "Tajikistan": {
              "long": {
                "standard": "שעון טג׳יקיסטן"
              }
            },
            "Tokelau": {
              "long": {
                "standard": "שעון טוקלאו"
              }
            },
            "Tonga": {
              "long": {
                "generic": "שעון טונגה",
                "standard": "שעון טונגה (חורף)",
                "daylight": "שעון טונגה (קיץ)"
              }
            },
            "Truk": {
              "long": {
                "standard": "שעון צ׳וק"
              }
            },
            "Turkmenistan": {
              "long": {
                "generic": "שעון טורקמניסטן",
                "standard": "שעון טורקמניסטן (חורף)",
                "daylight": "שעון טורקמניסטן (קיץ)"
              }
            },
            "Tuvalu": {
              "long": {
                "standard": "שעון טובאלו"
              }
            },
            "Uruguay": {
              "long": {
                "generic": "שעון אורוגוואי",
                "standard": "שעון אורוגוואי (חורף)",
                "daylight": "שעון אורוגוואי (קיץ)"
              }
            },
            "Uzbekistan": {
              "long": {
                "generic": "שעון אוזבקיסטן",
                "standard": "שעון אוזבקיסטן (חורף)",
                "daylight": "שעון אוזבקיסטן (קיץ)"
              }
            },
            "Vanuatu": {
              "long": {
                "generic": "שעון ונואטו",
                "standard": "שעון ונואטו (חורף)",
                "daylight": "שעון ונואטו (קיץ)"
              }
            },
            "Venezuela": {
              "long": {
                "standard": "שעון ונצואלה"
              }
            },
            "Vladivostok": {
              "long": {
                "generic": "שעון ולדיווסטוק",
                "standard": "שעון ולדיווסטוק (חורף)",
                "daylight": "שעון ולדיווסטוק (קיץ)"
              }
            },
            "Volgograd": {
              "long": {
                "generic": "שעון וולגוגרד",
                "standard": "שעון וולגוגרד (חורף)",
                "daylight": "שעון וולגוגרד (קיץ)"
              }
            },
            "Vostok": {
              "long": {
                "standard": "שעון ווסטוק"
              }
            },
            "Wake": {
              "long": {
                "standard": "שעון האי וייק"
              }
            },
            "Wallis": {
              "long": {
                "standard": "שעון וואליס ופוטונה"
              }
            },
            "Yakutsk": {
              "long": {
                "generic": "שעון יקוטסק",
                "standard": "שעון יקוטסק (חורף)",
                "daylight": "שעון יקוטסק (קיץ)"
              }
            },
            "Yekaterinburg": {
              "long": {
                "generic": "שעון יקטרינבורג",
                "standard": "שעון יקטרינבורג (חורף)",
                "daylight": "שעון יקטרינבורג (קיץ)"
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "he";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31.0.1";
                }
                "language";
                "he";
            }
            "dates";
            {
                "timeZoneNames";
                {
                    "hourFormat";
                    "‎+HH:mm;-HH:mm‎",
                        "gmtFormat";
                    "GMT{0}‎",
                        "gmtZeroFormat";
                    "GMT",
                        "regionFormat";
                    "שעון {0}",
                        "regionFormat-type-daylight";
                    "שעון {0} (קיץ)",
                        "regionFormat-type-standard";
                    "שעון {0} (חורף)",
                        "fallbackFormat";
                    "{1} ({0})",
                        "zone";
                    {
                        "America";
                        {
                            "Adak";
                            {
                                "exemplarCity";
                                "אדאק";
                            }
                            "Anchorage";
                            {
                                "exemplarCity";
                                "אנקורג׳";
                            }
                            "Anguilla";
                            {
                                "exemplarCity";
                                "אנגווילה";
                            }
                            "Antigua";
                            {
                                "exemplarCity";
                                "אנטיגואה";
                            }
                            "Araguaina";
                            {
                                "exemplarCity";
                                "אראגואינה";
                            }
                            "Argentina";
                            {
                                "Rio_Gallegos";
                                {
                                    "exemplarCity";
                                    "ריו גאייגוס";
                                }
                                "San_Juan";
                                {
                                    "exemplarCity";
                                    "סן חואן";
                                }
                                "Ushuaia";
                                {
                                    "exemplarCity";
                                    "אושוואיה";
                                }
                                "La_Rioja";
                                {
                                    "exemplarCity";
                                    "לה ריוחה";
                                }
                                "San_Luis";
                                {
                                    "exemplarCity";
                                    "סן לואיס";
                                }
                                "Salta";
                                {
                                    "exemplarCity";
                                    "סלטה";
                                }
                                "Tucuman";
                                {
                                    "exemplarCity";
                                    "טוקומן";
                                }
                            }
                            "Aruba";
                            {
                                "exemplarCity";
                                "ארובה";
                            }
                            "Asuncion";
                            {
                                "exemplarCity";
                                "אסונסיון";
                            }
                            "Bahia";
                            {
                                "exemplarCity";
                                "באהיה";
                            }
                            "Bahia_Banderas";
                            {
                                "exemplarCity";
                                "באהיה בנדרס";
                            }
                            "Barbados";
                            {
                                "exemplarCity";
                                "ברבדוס";
                            }
                            "Belem";
                            {
                                "exemplarCity";
                                "בלם";
                            }
                            "Belize";
                            {
                                "exemplarCity";
                                "בליז";
                            }
                            "Blanc-Sablon";
                            {
                                "exemplarCity";
                                "בלאן-סבלון";
                            }
                            "Boa_Vista";
                            {
                                "exemplarCity";
                                "בואה ויסטה";
                            }
                            "Bogota";
                            {
                                "exemplarCity";
                                "בוגוטה";
                            }
                            "Boise";
                            {
                                "exemplarCity";
                                "בויסי";
                            }
                            "Buenos_Aires";
                            {
                                "exemplarCity";
                                "בואנוס איירס";
                            }
                            "Cambridge_Bay";
                            {
                                "exemplarCity";
                                "קיימברידג׳ ביי";
                            }
                            "Campo_Grande";
                            {
                                "exemplarCity";
                                "קמפו גרנדה";
                            }
                            "Cancun";
                            {
                                "exemplarCity";
                                "קנקון";
                            }
                            "Caracas";
                            {
                                "exemplarCity";
                                "קראקס";
                            }
                            "Catamarca";
                            {
                                "exemplarCity";
                                "קטמרקה";
                            }
                            "Cayenne";
                            {
                                "exemplarCity";
                                "קאיין";
                            }
                            "Cayman";
                            {
                                "exemplarCity";
                                "קיימן";
                            }
                            "Chicago";
                            {
                                "exemplarCity";
                                "שיקגו";
                            }
                            "Chihuahua";
                            {
                                "exemplarCity";
                                "צ׳יוואווה";
                            }
                            "Coral_Harbour";
                            {
                                "exemplarCity";
                                "אטיקוקן";
                            }
                            "Cordoba";
                            {
                                "exemplarCity";
                                "קורדובה";
                            }
                            "Costa_Rica";
                            {
                                "exemplarCity";
                                "קוסטה ריקה";
                            }
                            "Creston";
                            {
                                "exemplarCity";
                                "קרסטון";
                            }
                            "Cuiaba";
                            {
                                "exemplarCity";
                                "קויאבה";
                            }
                            "Curacao";
                            {
                                "exemplarCity";
                                "קוראסאו";
                            }
                            "Danmarkshavn";
                            {
                                "exemplarCity";
                                "דנמרקסהוון";
                            }
                            "Dawson";
                            {
                                "exemplarCity";
                                "דוסון";
                            }
                            "Dawson_Creek";
                            {
                                "exemplarCity";
                                "דוסון קריק";
                            }
                            "Denver";
                            {
                                "exemplarCity";
                                "דנוור";
                            }
                            "Detroit";
                            {
                                "exemplarCity";
                                "דטרויט";
                            }
                            "Dominica";
                            {
                                "exemplarCity";
                                "דומיניקה";
                            }
                            "Edmonton";
                            {
                                "exemplarCity";
                                "אדמונטון";
                            }
                            "Eirunepe";
                            {
                                "exemplarCity";
                                "אירונפי";
                            }
                            "El_Salvador";
                            {
                                "exemplarCity";
                                "אל סלבדור";
                            }
                            "Fort_Nelson";
                            {
                                "exemplarCity";
                                "פורט נלסון";
                            }
                            "Fortaleza";
                            {
                                "exemplarCity";
                                "פורטאלזה";
                            }
                            "Glace_Bay";
                            {
                                "exemplarCity";
                                "גלייס ביי";
                            }
                            "Godthab";
                            {
                                "exemplarCity";
                                "נואוק";
                            }
                            "Goose_Bay";
                            {
                                "exemplarCity";
                                "גוס ביי";
                            }
                            "Grand_Turk";
                            {
                                "exemplarCity";
                                "גרנד טורק";
                            }
                            "Grenada";
                            {
                                "exemplarCity";
                                "גרנדה";
                            }
                            "Guadeloupe";
                            {
                                "exemplarCity";
                                "גואדלופ";
                            }
                            "Guatemala";
                            {
                                "exemplarCity";
                                "גואטמלה";
                            }
                            "Guayaquil";
                            {
                                "exemplarCity";
                                "גואיאקיל";
                            }
                            "Guyana";
                            {
                                "exemplarCity";
                                "גיאנה";
                            }
                            "Halifax";
                            {
                                "exemplarCity";
                                "הליפקס";
                            }
                            "Havana";
                            {
                                "exemplarCity";
                                "הוואנה";
                            }
                            "Hermosillo";
                            {
                                "exemplarCity";
                                "הרמוסיו";
                            }
                            "Indiana";
                            {
                                "Vincennes";
                                {
                                    "exemplarCity";
                                    "וינסנס, אינדיאנה";
                                }
                                "Petersburg";
                                {
                                    "exemplarCity";
                                    "פיטרסבורג, אינדיאנה";
                                }
                                "Tell_City";
                                {
                                    "exemplarCity";
                                    "טל סיטי, אינדיאנה";
                                }
                                "Knox";
                                {
                                    "exemplarCity";
                                    "נוקס, אינדיאנה";
                                }
                                "Winamac";
                                {
                                    "exemplarCity";
                                    "וינמאק, אינדיאנה";
                                }
                                "Marengo";
                                {
                                    "exemplarCity";
                                    "מרנגו, אינדיאנה";
                                }
                                "Vevay";
                                {
                                    "exemplarCity";
                                    "ויוואיי, אינדיאנה";
                                }
                            }
                            "Indianapolis";
                            {
                                "exemplarCity";
                                "אינדיאנפוליס";
                            }
                            "Inuvik";
                            {
                                "exemplarCity";
                                "אינוויק";
                            }
                            "Iqaluit";
                            {
                                "exemplarCity";
                                "איקלואיט";
                            }
                            "Jamaica";
                            {
                                "exemplarCity";
                                "ג׳מייקה";
                            }
                            "Jujuy";
                            {
                                "exemplarCity";
                                "חוחוי";
                            }
                            "Juneau";
                            {
                                "exemplarCity";
                                "ג׳ונו";
                            }
                            "Kentucky";
                            {
                                "Monticello";
                                {
                                    "exemplarCity";
                                    "מונטיצ׳לו, קנטאקי";
                                }
                            }
                            "Kralendijk";
                            {
                                "exemplarCity";
                                "קרלנדייק";
                            }
                            "La_Paz";
                            {
                                "exemplarCity";
                                "לה פאס";
                            }
                            "Lima";
                            {
                                "exemplarCity";
                                "לימה";
                            }
                            "Los_Angeles";
                            {
                                "exemplarCity";
                                "לוס אנג׳לס";
                            }
                            "Louisville";
                            {
                                "exemplarCity";
                                "לואיוויל";
                            }
                            "Lower_Princes";
                            {
                                "exemplarCity";
                                "לואוור פרינסס קוורטר";
                            }
                            "Maceio";
                            {
                                "exemplarCity";
                                "מסייאו";
                            }
                            "Managua";
                            {
                                "exemplarCity";
                                "מנגואה";
                            }
                            "Manaus";
                            {
                                "exemplarCity";
                                "מנאוס";
                            }
                            "Marigot";
                            {
                                "exemplarCity";
                                "מריגו";
                            }
                            "Martinique";
                            {
                                "exemplarCity";
                                "מרטיניק";
                            }
                            "Matamoros";
                            {
                                "exemplarCity";
                                "מטמורוס";
                            }
                            "Mazatlan";
                            {
                                "exemplarCity";
                                "מזטלן";
                            }
                            "Mendoza";
                            {
                                "exemplarCity";
                                "מנדוזה";
                            }
                            "Menominee";
                            {
                                "exemplarCity";
                                "מנומיני";
                            }
                            "Merida";
                            {
                                "exemplarCity";
                                "מרידה";
                            }
                            "Metlakatla";
                            {
                                "exemplarCity";
                                "מטלקטלה";
                            }
                            "Mexico_City";
                            {
                                "exemplarCity";
                                "מקסיקו סיטי";
                            }
                            "Miquelon";
                            {
                                "exemplarCity";
                                "מיקלון";
                            }
                            "Moncton";
                            {
                                "exemplarCity";
                                "מונקטון";
                            }
                            "Monterrey";
                            {
                                "exemplarCity";
                                "מונטריי";
                            }
                            "Montevideo";
                            {
                                "exemplarCity";
                                "מונטווידאו";
                            }
                            "Montserrat";
                            {
                                "exemplarCity";
                                "מונסראט";
                            }
                            "Nassau";
                            {
                                "exemplarCity";
                                "נסאו";
                            }
                            "New_York";
                            {
                                "exemplarCity";
                                "ניו יורק";
                            }
                            "Nipigon";
                            {
                                "exemplarCity";
                                "ניפיגון";
                            }
                            "Nome";
                            {
                                "exemplarCity";
                                "נום";
                            }
                            "Noronha";
                            {
                                "exemplarCity";
                                "נורוניה";
                            }
                            "North_Dakota";
                            {
                                "Beulah";
                                {
                                    "exemplarCity";
                                    "ביולה, צפון דקוטה";
                                }
                                "New_Salem";
                                {
                                    "exemplarCity";
                                    "ניו סיילם, צפון דקוטה";
                                }
                                "Center";
                                {
                                    "exemplarCity";
                                    "סנטר, צפון דקוטה";
                                }
                            }
                            "Ojinaga";
                            {
                                "exemplarCity";
                                "אוג׳ינאגה";
                            }
                            "Panama";
                            {
                                "exemplarCity";
                                "פנמה";
                            }
                            "Pangnirtung";
                            {
                                "exemplarCity";
                                "פנגנירטונג";
                            }
                            "Paramaribo";
                            {
                                "exemplarCity";
                                "פרמריבו";
                            }
                            "Phoenix";
                            {
                                "exemplarCity";
                                "פיניקס";
                            }
                            "Port-au-Prince";
                            {
                                "exemplarCity";
                                "פורט או פראנס";
                            }
                            "Port_of_Spain";
                            {
                                "exemplarCity";
                                "פורט אוף ספיין";
                            }
                            "Porto_Velho";
                            {
                                "exemplarCity";
                                "פורטו וליו";
                            }
                            "Puerto_Rico";
                            {
                                "exemplarCity";
                                "פוארטו ריקו";
                            }
                            "Rainy_River";
                            {
                                "exemplarCity";
                                "רייני ריבר";
                            }
                            "Rankin_Inlet";
                            {
                                "exemplarCity";
                                "רנקין אינלט";
                            }
                            "Recife";
                            {
                                "exemplarCity";
                                "רסיפה";
                            }
                            "Regina";
                            {
                                "exemplarCity";
                                "רג׳ינה";
                            }
                            "Resolute";
                            {
                                "exemplarCity";
                                "רזולוט";
                            }
                            "Rio_Branco";
                            {
                                "exemplarCity";
                                "ריו ברנקו";
                            }
                            "Santa_Isabel";
                            {
                                "exemplarCity";
                                "סנטה איסבל";
                            }
                            "Santarem";
                            {
                                "exemplarCity";
                                "סנטרם";
                            }
                            "Santiago";
                            {
                                "exemplarCity";
                                "סנטיאגו";
                            }
                            "Santo_Domingo";
                            {
                                "exemplarCity";
                                "סנטו דומינגו";
                            }
                            "Sao_Paulo";
                            {
                                "exemplarCity";
                                "סאו פאולו";
                            }
                            "Scoresbysund";
                            {
                                "exemplarCity";
                                "סקורסביסונד";
                            }
                            "Sitka";
                            {
                                "exemplarCity";
                                "סיטקה";
                            }
                            "St_Barthelemy";
                            {
                                "exemplarCity";
                                "סנט ברתלמי";
                            }
                            "St_Johns";
                            {
                                "exemplarCity";
                                "סנט ג׳ונס";
                            }
                            "St_Kitts";
                            {
                                "exemplarCity";
                                "סנט קיטס";
                            }
                            "St_Lucia";
                            {
                                "exemplarCity";
                                "סנט לוסיה";
                            }
                            "St_Thomas";
                            {
                                "exemplarCity";
                                "סנט תומאס";
                            }
                            "St_Vincent";
                            {
                                "exemplarCity";
                                "סנט וינסנט";
                            }
                            "Swift_Current";
                            {
                                "exemplarCity";
                                "סוויפט קרנט";
                            }
                            "Tegucigalpa";
                            {
                                "exemplarCity";
                                "טגוסיגלפה";
                            }
                            "Thule";
                            {
                                "exemplarCity";
                                "תולה";
                            }
                            "Thunder_Bay";
                            {
                                "exemplarCity";
                                "ת׳אנדר ביי";
                            }
                            "Tijuana";
                            {
                                "exemplarCity";
                                "טיחואנה";
                            }
                            "Toronto";
                            {
                                "exemplarCity";
                                "טורונטו";
                            }
                            "Tortola";
                            {
                                "exemplarCity";
                                "טורטולה";
                            }
                            "Vancouver";
                            {
                                "exemplarCity";
                                "ונקובר";
                            }
                            "Whitehorse";
                            {
                                "exemplarCity";
                                "ווייטהורס";
                            }
                            "Winnipeg";
                            {
                                "exemplarCity";
                                "וויניפג";
                            }
                            "Yakutat";
                            {
                                "exemplarCity";
                                "יקוטאט";
                            }
                            "Yellowknife";
                            {
                                "exemplarCity";
                                "ילונייף";
                            }
                        }
                        "Atlantic";
                        {
                            "Azores";
                            {
                                "exemplarCity";
                                "האיים האזוריים";
                            }
                            "Bermuda";
                            {
                                "exemplarCity";
                                "ברמודה";
                            }
                            "Canary";
                            {
                                "exemplarCity";
                                "האיים הקנריים";
                            }
                            "Cape_Verde";
                            {
                                "exemplarCity";
                                "כף ורדה";
                            }
                            "Faeroe";
                            {
                                "exemplarCity";
                                "פארו";
                            }
                            "Madeira";
                            {
                                "exemplarCity";
                                "מדיירה";
                            }
                            "Reykjavik";
                            {
                                "exemplarCity";
                                "רייקיאוויק";
                            }
                            "South_Georgia";
                            {
                                "exemplarCity";
                                "דרום ג׳ורג׳יה";
                            }
                            "St_Helena";
                            {
                                "exemplarCity";
                                "סנט הלנה";
                            }
                            "Stanley";
                            {
                                "exemplarCity";
                                "סטנלי";
                            }
                        }
                        "Europe";
                        {
                            "Amsterdam";
                            {
                                "exemplarCity";
                                "אמסטרדם";
                            }
                            "Andorra";
                            {
                                "exemplarCity";
                                "אנדורה";
                            }
                            "Astrakhan";
                            {
                                "exemplarCity";
                                "אסטרחן";
                            }
                            "Athens";
                            {
                                "exemplarCity";
                                "אתונה";
                            }
                            "Belgrade";
                            {
                                "exemplarCity";
                                "בלגרד";
                            }
                            "Berlin";
                            {
                                "exemplarCity";
                                "ברלין";
                            }
                            "Bratislava";
                            {
                                "exemplarCity";
                                "ברטיסלבה";
                            }
                            "Brussels";
                            {
                                "exemplarCity";
                                "בריסל";
                            }
                            "Bucharest";
                            {
                                "exemplarCity";
                                "בוקרשט";
                            }
                            "Budapest";
                            {
                                "exemplarCity";
                                "בודפשט";
                            }
                            "Busingen";
                            {
                                "exemplarCity";
                                "ביזינגן";
                            }
                            "Chisinau";
                            {
                                "exemplarCity";
                                "קישינב";
                            }
                            "Copenhagen";
                            {
                                "exemplarCity";
                                "קופנהגן";
                            }
                            "Dublin";
                            {
                                "long";
                                {
                                    "daylight";
                                    "שעון קיץ אירלנד";
                                }
                                "exemplarCity";
                                "דבלין";
                            }
                            "Gibraltar";
                            {
                                "exemplarCity";
                                "גיברלטר";
                            }
                            "Guernsey";
                            {
                                "exemplarCity";
                                "גרנזי";
                            }
                            "Helsinki";
                            {
                                "exemplarCity";
                                "הלסינקי";
                            }
                            "Isle_of_Man";
                            {
                                "exemplarCity";
                                "האי מאן";
                            }
                            "Istanbul";
                            {
                                "exemplarCity";
                                "איסטנבול";
                            }
                            "Jersey";
                            {
                                "exemplarCity";
                                "ג׳רזי";
                            }
                            "Kaliningrad";
                            {
                                "exemplarCity";
                                "קלינינגרד";
                            }
                            "Kiev";
                            {
                                "exemplarCity";
                                "קייב";
                            }
                            "Kirov";
                            {
                                "exemplarCity";
                                "קירוב";
                            }
                            "Lisbon";
                            {
                                "exemplarCity";
                                "ליסבון";
                            }
                            "Ljubljana";
                            {
                                "exemplarCity";
                                "לובליאנה";
                            }
                            "London";
                            {
                                "long";
                                {
                                    "daylight";
                                    "שעון קיץ בריטניה";
                                }
                                "exemplarCity";
                                "לונדון";
                            }
                            "Luxembourg";
                            {
                                "exemplarCity";
                                "לוקסמבורג";
                            }
                            "Madrid";
                            {
                                "exemplarCity";
                                "מדריד";
                            }
                            "Malta";
                            {
                                "exemplarCity";
                                "מלטה";
                            }
                            "Mariehamn";
                            {
                                "exemplarCity";
                                "מרייהאמן";
                            }
                            "Minsk";
                            {
                                "exemplarCity";
                                "מינסק";
                            }
                            "Monaco";
                            {
                                "exemplarCity";
                                "מונקו";
                            }
                            "Moscow";
                            {
                                "exemplarCity";
                                "מוסקבה";
                            }
                            "Oslo";
                            {
                                "exemplarCity";
                                "אוסלו";
                            }
                            "Paris";
                            {
                                "exemplarCity";
                                "פריז";
                            }
                            "Podgorica";
                            {
                                "exemplarCity";
                                "פודגוריצה";
                            }
                            "Prague";
                            {
                                "exemplarCity";
                                "פראג";
                            }
                            "Riga";
                            {
                                "exemplarCity";
                                "ריגה";
                            }
                            "Rome";
                            {
                                "exemplarCity";
                                "רומא";
                            }
                            "Samara";
                            {
                                "exemplarCity";
                                "סמרה";
                            }
                            "San_Marino";
                            {
                                "exemplarCity";
                                "סן מרינו";
                            }
                            "Sarajevo";
                            {
                                "exemplarCity";
                                "סרייבו";
                            }
                            "Simferopol";
                            {
                                "exemplarCity";
                                "סימפרופול";
                            }
                            "Skopje";
                            {
                                "exemplarCity";
                                "סקופיה";
                            }
                            "Sofia";
                            {
                                "exemplarCity";
                                "סופיה";
                            }
                            "Stockholm";
                            {
                                "exemplarCity";
                                "שטוקהולם";
                            }
                            "Tallinn";
                            {
                                "exemplarCity";
                                "טאלין";
                            }
                            "Tirane";
                            {
                                "exemplarCity";
                                "טירנה";
                            }
                            "Ulyanovsk";
                            {
                                "exemplarCity";
                                "אוליאנובסק";
                            }
                            "Uzhgorod";
                            {
                                "exemplarCity";
                                "אוז׳הורוד";
                            }
                            "Vaduz";
                            {
                                "exemplarCity";
                                "ואדוץ";
                            }
                            "Vatican";
                            {
                                "exemplarCity";
                                "הוותיקן";
                            }
                            "Vienna";
                            {
                                "exemplarCity";
                                "וינה";
                            }
                            "Vilnius";
                            {
                                "exemplarCity";
                                "וילנה";
                            }
                            "Volgograd";
                            {
                                "exemplarCity";
                                "וולגוגרד";
                            }
                            "Warsaw";
                            {
                                "exemplarCity";
                                "ורשה";
                            }
                            "Zagreb";
                            {
                                "exemplarCity";
                                "זאגרב";
                            }
                            "Zaporozhye";
                            {
                                "exemplarCity";
                                "זפורוז׳יה";
                            }
                            "Zurich";
                            {
                                "exemplarCity";
                                "ציריך";
                            }
                        }
                        "Africa";
                        {
                            "Abidjan";
                            {
                                "exemplarCity";
                                "אביג׳אן";
                            }
                            "Accra";
                            {
                                "exemplarCity";
                                "אקרה";
                            }
                            "Addis_Ababa";
                            {
                                "exemplarCity";
                                "אדיס אבבה";
                            }
                            "Algiers";
                            {
                                "exemplarCity";
                                "אלג׳יר";
                            }
                            "Asmera";
                            {
                                "exemplarCity";
                                "אסמרה";
                            }
                            "Bamako";
                            {
                                "exemplarCity";
                                "במאקו";
                            }
                            "Bangui";
                            {
                                "exemplarCity";
                                "בנגואי";
                            }
                            "Banjul";
                            {
                                "exemplarCity";
                                "בנג׳ול";
                            }
                            "Bissau";
                            {
                                "exemplarCity";
                                "ביסאו";
                            }
                            "Blantyre";
                            {
                                "exemplarCity";
                                "בלנטיר";
                            }
                            "Brazzaville";
                            {
                                "exemplarCity";
                                "ברזוויל";
                            }
                            "Bujumbura";
                            {
                                "exemplarCity";
                                "בוג׳ומבורה";
                            }
                            "Cairo";
                            {
                                "exemplarCity";
                                "קהיר";
                            }
                            "Casablanca";
                            {
                                "exemplarCity";
                                "קזבלנקה";
                            }
                            "Ceuta";
                            {
                                "exemplarCity";
                                "סאוטה";
                            }
                            "Conakry";
                            {
                                "exemplarCity";
                                "קונאקרי";
                            }
                            "Dakar";
                            {
                                "exemplarCity";
                                "דקאר";
                            }
                            "Dar_es_Salaam";
                            {
                                "exemplarCity";
                                "דאר א-סלאם";
                            }
                            "Djibouti";
                            {
                                "exemplarCity";
                                "ג׳יבוטי";
                            }
                            "Douala";
                            {
                                "exemplarCity";
                                "דואלה";
                            }
                            "El_Aaiun";
                            {
                                "exemplarCity";
                                "אל עיון";
                            }
                            "Freetown";
                            {
                                "exemplarCity";
                                "פריטאון";
                            }
                            "Gaborone";
                            {
                                "exemplarCity";
                                "גבורונה";
                            }
                            "Harare";
                            {
                                "exemplarCity";
                                "הרארה";
                            }
                            "Johannesburg";
                            {
                                "exemplarCity";
                                "יוהנסבורג";
                            }
                            "Juba";
                            {
                                "exemplarCity";
                                "ג׳ובה";
                            }
                            "Kampala";
                            {
                                "exemplarCity";
                                "קמפאלה";
                            }
                            "Khartoum";
                            {
                                "exemplarCity";
                                "חרטום";
                            }
                            "Kigali";
                            {
                                "exemplarCity";
                                "קיגלי";
                            }
                            "Kinshasa";
                            {
                                "exemplarCity";
                                "קינשסה";
                            }
                            "Lagos";
                            {
                                "exemplarCity";
                                "לגוס";
                            }
                            "Libreville";
                            {
                                "exemplarCity";
                                "ליברוויל";
                            }
                            "Lome";
                            {
                                "exemplarCity";
                                "לומה";
                            }
                            "Luanda";
                            {
                                "exemplarCity";
                                "לואנדה";
                            }
                            "Lubumbashi";
                            {
                                "exemplarCity";
                                "לובומבאשי";
                            }
                            "Lusaka";
                            {
                                "exemplarCity";
                                "לוסקה";
                            }
                            "Malabo";
                            {
                                "exemplarCity";
                                "מלבו";
                            }
                            "Maputo";
                            {
                                "exemplarCity";
                                "מאפוטו";
                            }
                            "Maseru";
                            {
                                "exemplarCity";
                                "מסרו";
                            }
                            "Mbabane";
                            {
                                "exemplarCity";
                                "אמבאבאנה";
                            }
                            "Mogadishu";
                            {
                                "exemplarCity";
                                "מוגדישו";
                            }
                            "Monrovia";
                            {
                                "exemplarCity";
                                "מונרוביה";
                            }
                            "Nairobi";
                            {
                                "exemplarCity";
                                "ניירובי";
                            }
                            "Ndjamena";
                            {
                                "exemplarCity";
                                "נג׳מנה";
                            }
                            "Niamey";
                            {
                                "exemplarCity";
                                "ניאמיי";
                            }
                            "Nouakchott";
                            {
                                "exemplarCity";
                                "נואקצ׳וט";
                            }
                            "Ouagadougou";
                            {
                                "exemplarCity";
                                "וואגאדוגו";
                            }
                            "Porto-Novo";
                            {
                                "exemplarCity";
                                "פורטו נובו";
                            }
                            "Sao_Tome";
                            {
                                "exemplarCity";
                                "סאו טומה";
                            }
                            "Tripoli";
                            {
                                "exemplarCity";
                                "טריפולי";
                            }
                            "Tunis";
                            {
                                "exemplarCity";
                                "תוניס";
                            }
                            "Windhoek";
                            {
                                "exemplarCity";
                                "וינדהוק";
                            }
                        }
                        "Asia";
                        {
                            "Aden";
                            {
                                "exemplarCity";
                                "עדן";
                            }
                            "Almaty";
                            {
                                "exemplarCity";
                                "אלמאטי";
                            }
                            "Amman";
                            {
                                "exemplarCity";
                                "עמאן";
                            }
                            "Anadyr";
                            {
                                "exemplarCity";
                                "אנדיר";
                            }
                            "Aqtau";
                            {
                                "exemplarCity";
                                "אקטאו";
                            }
                            "Aqtobe";
                            {
                                "exemplarCity";
                                "אקטובה";
                            }
                            "Ashgabat";
                            {
                                "exemplarCity";
                                "אשגבט";
                            }
                            "Baghdad";
                            {
                                "exemplarCity";
                                "בגדד";
                            }
                            "Bahrain";
                            {
                                "exemplarCity";
                                "בחריין";
                            }
                            "Baku";
                            {
                                "exemplarCity";
                                "באקו";
                            }
                            "Bangkok";
                            {
                                "exemplarCity";
                                "בנגקוק";
                            }
                            "Barnaul";
                            {
                                "exemplarCity";
                                "ברנאול";
                            }
                            "Beirut";
                            {
                                "exemplarCity";
                                "ביירות";
                            }
                            "Bishkek";
                            {
                                "exemplarCity";
                                "בישקק";
                            }
                            "Brunei";
                            {
                                "exemplarCity";
                                "ברוניי";
                            }
                            "Calcutta";
                            {
                                "exemplarCity";
                                "קולקטה";
                            }
                            "Chita";
                            {
                                "exemplarCity";
                                "צ׳יטה";
                            }
                            "Choibalsan";
                            {
                                "exemplarCity";
                                "צ׳ויבלסן";
                            }
                            "Colombo";
                            {
                                "exemplarCity";
                                "קולומבו";
                            }
                            "Damascus";
                            {
                                "exemplarCity";
                                "דמשק";
                            }
                            "Dhaka";
                            {
                                "exemplarCity";
                                "דאקה";
                            }
                            "Dili";
                            {
                                "exemplarCity";
                                "דילי";
                            }
                            "Dubai";
                            {
                                "exemplarCity";
                                "דובאי";
                            }
                            "Dushanbe";
                            {
                                "exemplarCity";
                                "דושנבה";
                            }
                            "Gaza";
                            {
                                "exemplarCity";
                                "עזה";
                            }
                            "Hebron";
                            {
                                "exemplarCity";
                                "חברון";
                            }
                            "Hong_Kong";
                            {
                                "exemplarCity";
                                "הונג קונג";
                            }
                            "Hovd";
                            {
                                "exemplarCity";
                                "חובד";
                            }
                            "Irkutsk";
                            {
                                "exemplarCity";
                                "אירקוטסק";
                            }
                            "Jakarta";
                            {
                                "exemplarCity";
                                "ג׳קרטה";
                            }
                            "Jayapura";
                            {
                                "exemplarCity";
                                "ג׳איאפורה";
                            }
                            "Jerusalem";
                            {
                                "exemplarCity";
                                "ירושלים";
                            }
                            "Kabul";
                            {
                                "exemplarCity";
                                "קאבול";
                            }
                            "Kamchatka";
                            {
                                "exemplarCity";
                                "קמצ׳טקה";
                            }
                            "Karachi";
                            {
                                "exemplarCity";
                                "קראצ׳י";
                            }
                            "Katmandu";
                            {
                                "exemplarCity";
                                "קטמנדו";
                            }
                            "Khandyga";
                            {
                                "exemplarCity";
                                "חנדיגה";
                            }
                            "Krasnoyarsk";
                            {
                                "exemplarCity";
                                "קרסנויארסק";
                            }
                            "Kuala_Lumpur";
                            {
                                "exemplarCity";
                                "קואלה לומפור";
                            }
                            "Kuching";
                            {
                                "exemplarCity";
                                "קוצ׳ינג";
                            }
                            "Kuwait";
                            {
                                "exemplarCity";
                                "כווית";
                            }
                            "Macau";
                            {
                                "exemplarCity";
                                "מקאו";
                            }
                            "Magadan";
                            {
                                "exemplarCity";
                                "מגדן";
                            }
                            "Makassar";
                            {
                                "exemplarCity";
                                "מאקאסאר";
                            }
                            "Manila";
                            {
                                "exemplarCity";
                                "מנילה";
                            }
                            "Muscat";
                            {
                                "exemplarCity";
                                "מוסקט";
                            }
                            "Nicosia";
                            {
                                "exemplarCity";
                                "ניקוסיה";
                            }
                            "Novokuznetsk";
                            {
                                "exemplarCity";
                                "נובוקוזנטסק";
                            }
                            "Novosibirsk";
                            {
                                "exemplarCity";
                                "נובוסיבירסק";
                            }
                            "Omsk";
                            {
                                "exemplarCity";
                                "אומסק";
                            }
                            "Oral";
                            {
                                "exemplarCity";
                                "אורל";
                            }
                            "Phnom_Penh";
                            {
                                "exemplarCity";
                                "פנום פן";
                            }
                            "Pontianak";
                            {
                                "exemplarCity";
                                "פונטיאנק";
                            }
                            "Pyongyang";
                            {
                                "exemplarCity";
                                "פיונגיאנג";
                            }
                            "Qatar";
                            {
                                "exemplarCity";
                                "קטאר";
                            }
                            "Qyzylorda";
                            {
                                "exemplarCity";
                                "קיזילורדה";
                            }
                            "Rangoon";
                            {
                                "exemplarCity";
                                "רנגון";
                            }
                            "Riyadh";
                            {
                                "exemplarCity";
                                "ריאד";
                            }
                            "Saigon";
                            {
                                "exemplarCity";
                                "הו צ׳י מין סיטי";
                            }
                            "Sakhalin";
                            {
                                "exemplarCity";
                                "סחלין";
                            }
                            "Samarkand";
                            {
                                "exemplarCity";
                                "סמרקנד";
                            }
                            "Seoul";
                            {
                                "exemplarCity";
                                "סיאול";
                            }
                            "Shanghai";
                            {
                                "exemplarCity";
                                "שנחאי";
                            }
                            "Singapore";
                            {
                                "exemplarCity";
                                "סינגפור";
                            }
                            "Srednekolymsk";
                            {
                                "exemplarCity";
                                "סרדנייקולימסק";
                            }
                            "Taipei";
                            {
                                "exemplarCity";
                                "טאיפיי";
                            }
                            "Tashkent";
                            {
                                "exemplarCity";
                                "טשקנט";
                            }
                            "Tbilisi";
                            {
                                "exemplarCity";
                                "טביליסי";
                            }
                            "Tehran";
                            {
                                "exemplarCity";
                                "טהרן";
                            }
                            "Thimphu";
                            {
                                "exemplarCity";
                                "טהימפהו";
                            }
                            "Tokyo";
                            {
                                "exemplarCity";
                                "טוקיו";
                            }
                            "Tomsk";
                            {
                                "exemplarCity";
                                "טומסק";
                            }
                            "Ulaanbaatar";
                            {
                                "exemplarCity";
                                "אולאאנבטאר";
                            }
                            "Urumqi";
                            {
                                "exemplarCity";
                                "אורומקי";
                            }
                            "Ust-Nera";
                            {
                                "exemplarCity";
                                "אוסט-נרה";
                            }
                            "Vientiane";
                            {
                                "exemplarCity";
                                "האנוי";
                            }
                            "Vladivostok";
                            {
                                "exemplarCity";
                                "ולדיווסטוק";
                            }
                            "Yakutsk";
                            {
                                "exemplarCity";
                                "יקוטסק";
                            }
                            "Yekaterinburg";
                            {
                                "exemplarCity";
                                "יקטרינבורג";
                            }
                            "Yerevan";
                            {
                                "exemplarCity";
                                "ירוואן";
                            }
                        }
                        "Indian";
                        {
                            "Antananarivo";
                            {
                                "exemplarCity";
                                "אנטננריבו";
                            }
                            "Chagos";
                            {
                                "exemplarCity";
                                "צ׳אגוס";
                            }
                            "Christmas";
                            {
                                "exemplarCity";
                                "האי כריסטמס";
                            }
                            "Cocos";
                            {
                                "exemplarCity";
                                "קוקוס";
                            }
                            "Comoro";
                            {
                                "exemplarCity";
                                "קומורו";
                            }
                            "Kerguelen";
                            {
                                "exemplarCity";
                                "קרגוולן";
                            }
                            "Mahe";
                            {
                                "exemplarCity";
                                "מהא";
                            }
                            "Maldives";
                            {
                                "exemplarCity";
                                "האיים המלדיביים";
                            }
                            "Mauritius";
                            {
                                "exemplarCity";
                                "מאוריציוס";
                            }
                            "Mayotte";
                            {
                                "exemplarCity";
                                "מאיוט";
                            }
                            "Reunion";
                            {
                                "exemplarCity";
                                "ראוניון";
                            }
                        }
                        "Australia";
                        {
                            "Adelaide";
                            {
                                "exemplarCity";
                                "אדלייד";
                            }
                            "Brisbane";
                            {
                                "exemplarCity";
                                "בריסביין";
                            }
                            "Broken_Hill";
                            {
                                "exemplarCity";
                                "ברוקן היל";
                            }
                            "Currie";
                            {
                                "exemplarCity";
                                "קרי";
                            }
                            "Darwin";
                            {
                                "exemplarCity";
                                "דרווין";
                            }
                            "Eucla";
                            {
                                "exemplarCity";
                                "יוקלה";
                            }
                            "Hobart";
                            {
                                "exemplarCity";
                                "הוברט";
                            }
                            "Lindeman";
                            {
                                "exemplarCity";
                                "לינדמן";
                            }
                            "Lord_Howe";
                            {
                                "exemplarCity";
                                "אי הלורד האו";
                            }
                            "Melbourne";
                            {
                                "exemplarCity";
                                "מלבורן";
                            }
                            "Perth";
                            {
                                "exemplarCity";
                                "פרת׳";
                            }
                            "Sydney";
                            {
                                "exemplarCity";
                                "סידני";
                            }
                        }
                        "Pacific";
                        {
                            "Apia";
                            {
                                "exemplarCity";
                                "אפיה";
                            }
                            "Auckland";
                            {
                                "exemplarCity";
                                "אוקלנד";
                            }
                            "Bougainville";
                            {
                                "exemplarCity";
                                "בוגנוויל";
                            }
                            "Chatham";
                            {
                                "exemplarCity";
                                "צ׳אטהאם";
                            }
                            "Easter";
                            {
                                "exemplarCity";
                                "אי הפסחא";
                            }
                            "Efate";
                            {
                                "exemplarCity";
                                "אפטה";
                            }
                            "Enderbury";
                            {
                                "exemplarCity";
                                "אנדרבורי";
                            }
                            "Fakaofo";
                            {
                                "exemplarCity";
                                "פקאופו";
                            }
                            "Fiji";
                            {
                                "exemplarCity";
                                "פיג׳י";
                            }
                            "Funafuti";
                            {
                                "exemplarCity";
                                "פונפוטי";
                            }
                            "Galapagos";
                            {
                                "exemplarCity";
                                "גלפאגוס";
                            }
                            "Gambier";
                            {
                                "exemplarCity";
                                "איי גמבייה";
                            }
                            "Guadalcanal";
                            {
                                "exemplarCity";
                                "גוודלקנאל";
                            }
                            "Guam";
                            {
                                "exemplarCity";
                                "גואם";
                            }
                            "Honolulu";
                            {
                                "exemplarCity";
                                "הונולולו";
                            }
                            "Johnston";
                            {
                                "exemplarCity";
                                "ג׳ונסטון";
                            }
                            "Kiritimati";
                            {
                                "exemplarCity";
                                "קיריטימאטי";
                            }
                            "Kosrae";
                            {
                                "exemplarCity";
                                "קוסרה";
                            }
                            "Kwajalein";
                            {
                                "exemplarCity";
                                "קוואג׳ליין";
                            }
                            "Majuro";
                            {
                                "exemplarCity";
                                "מאג׳ורו";
                            }
                            "Marquesas";
                            {
                                "exemplarCity";
                                "איי מרקיז";
                            }
                            "Midway";
                            {
                                "exemplarCity";
                                "מידוויי";
                            }
                            "Nauru";
                            {
                                "exemplarCity";
                                "נאורו";
                            }
                            "Niue";
                            {
                                "exemplarCity";
                                "ניואה";
                            }
                            "Norfolk";
                            {
                                "exemplarCity";
                                "נורפוק";
                            }
                            "Noumea";
                            {
                                "exemplarCity";
                                "נומאה";
                            }
                            "Pago_Pago";
                            {
                                "exemplarCity";
                                "פאגו פאגו";
                            }
                            "Palau";
                            {
                                "exemplarCity";
                                "פלאו";
                            }
                            "Pitcairn";
                            {
                                "exemplarCity";
                                "פיטקרן";
                            }
                            "Ponape";
                            {
                                "exemplarCity";
                                "פונפיי";
                            }
                            "Port_Moresby";
                            {
                                "exemplarCity";
                                "פורט מורסבי";
                            }
                            "Rarotonga";
                            {
                                "exemplarCity";
                                "רארוטונגה";
                            }
                            "Saipan";
                            {
                                "exemplarCity";
                                "סאיפאן";
                            }
                            "Tahiti";
                            {
                                "exemplarCity";
                                "טהיטי";
                            }
                            "Tarawa";
                            {
                                "exemplarCity";
                                "טאראווה";
                            }
                            "Tongatapu";
                            {
                                "exemplarCity";
                                "טונגטאפו";
                            }
                            "Truk";
                            {
                                "exemplarCity";
                                "צ׳וק";
                            }
                            "Wake";
                            {
                                "exemplarCity";
                                "וייק";
                            }
                            "Wallis";
                            {
                                "exemplarCity";
                                "ווליס";
                            }
                        }
                        "Arctic";
                        {
                            "Longyearbyen";
                            {
                                "exemplarCity";
                                "לונגיירבין";
                            }
                        }
                        "Antarctica";
                        {
                            "Casey";
                            {
                                "exemplarCity";
                                "קאסיי";
                            }
                            "Davis";
                            {
                                "exemplarCity";
                                "דיוויס";
                            }
                            "DumontDUrville";
                            {
                                "exemplarCity";
                                "דומון ד׳אורוויל";
                            }
                            "Macquarie";
                            {
                                "exemplarCity";
                                "מקרי";
                            }
                            "Mawson";
                            {
                                "exemplarCity";
                                "מוסון";
                            }
                            "McMurdo";
                            {
                                "exemplarCity";
                                "מק-מרדו";
                            }
                            "Palmer";
                            {
                                "exemplarCity";
                                "פאלמר";
                            }
                            "Rothera";
                            {
                                "exemplarCity";
                                "רות׳רה";
                            }
                            "Syowa";
                            {
                                "exemplarCity";
                                "סיוואה";
                            }
                            "Troll";
                            {
                                "exemplarCity";
                                "טרול";
                            }
                            "Vostok";
                            {
                                "exemplarCity";
                                "ווסטוק";
                            }
                        }
                        "Etc";
                        {
                            "GMT";
                            {
                                "exemplarCity";
                                "GMT";
                            }
                            "GMT1";
                            {
                                "exemplarCity";
                                "GMT+1";
                            }
                            "GMT10";
                            {
                                "exemplarCity";
                                "GMT+10";
                            }
                            "GMT11";
                            {
                                "exemplarCity";
                                "GMT+11";
                            }
                            "GMT12";
                            {
                                "exemplarCity";
                                "GMT+12";
                            }
                            "GMT2";
                            {
                                "exemplarCity";
                                "GMT+2";
                            }
                            "GMT3";
                            {
                                "exemplarCity";
                                "GMT+3";
                            }
                            "GMT4";
                            {
                                "exemplarCity";
                                "GMT+4";
                            }
                            "GMT5";
                            {
                                "exemplarCity";
                                "GMT+5";
                            }
                            "GMT6";
                            {
                                "exemplarCity";
                                "GMT+6";
                            }
                            "GMT7";
                            {
                                "exemplarCity";
                                "GMT+7";
                            }
                            "GMT8";
                            {
                                "exemplarCity";
                                "GMT+8";
                            }
                            "GMT9";
                            {
                                "exemplarCity";
                                "GMT+9";
                            }
                            "GMT-1";
                            {
                                "exemplarCity";
                                "GMT-1";
                            }
                            "GMT-10";
                            {
                                "exemplarCity";
                                "GMT-10";
                            }
                            "GMT-11";
                            {
                                "exemplarCity";
                                "GMT-11";
                            }
                            "GMT-12";
                            {
                                "exemplarCity";
                                "GMT-12";
                            }
                            "GMT-13";
                            {
                                "exemplarCity";
                                "GMT-13";
                            }
                            "GMT-14";
                            {
                                "exemplarCity";
                                "GMT-14";
                            }
                            "GMT-2";
                            {
                                "exemplarCity";
                                "GMT-2";
                            }
                            "GMT-3";
                            {
                                "exemplarCity";
                                "GMT-3";
                            }
                            "GMT-4";
                            {
                                "exemplarCity";
                                "GMT-4";
                            }
                            "GMT-5";
                            {
                                "exemplarCity";
                                "GMT-5";
                            }
                            "GMT-6";
                            {
                                "exemplarCity";
                                "GMT-6";
                            }
                            "GMT-7";
                            {
                                "exemplarCity";
                                "GMT-7";
                            }
                            "GMT-8";
                            {
                                "exemplarCity";
                                "GMT-8";
                            }
                            "GMT-9";
                            {
                                "exemplarCity";
                                "GMT-9";
                            }
                            "UTC";
                            {
                                "long";
                                {
                                    "standard";
                                    "זמן אוניברסלי מתואם";
                                }
                                "short";
                                {
                                    "standard";
                                    "UTC";
                                }
                                "exemplarCity";
                                "UTC";
                            }
                            "Unknown";
                            {
                                "exemplarCity";
                                "עיר לא ידועה";
                            }
                        }
                    }
                    "metazone";
                    {
                        "Afghanistan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון אפגניסטן";
                            }
                        }
                        "Africa_Central";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מרכז אפריקה";
                            }
                        }
                        "Africa_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח אפריקה";
                            }
                        }
                        "Africa_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דרום אפריקה";
                            }
                        }
                        "Africa_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב אפריקה",
                                    "standard";
                                "שעון מערב אפריקה (חורף)",
                                    "daylight";
                                "שעון מערב אפריקה (קיץ)";
                            }
                        }
                        "Alaska";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אלסקה",
                                    "standard";
                                "שעון אלסקה (חורף)",
                                    "daylight";
                                "שעון אלסקה (קיץ)";
                            }
                        }
                        "Amazon";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אמזונס",
                                    "standard";
                                "שעון אמזונס (חורף)",
                                    "daylight";
                                "שעון אמזונס (קיץ)";
                            }
                        }
                        "America_Central";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז ארה״ב",
                                    "standard";
                                "שעון מרכז ארה״ב (חורף)",
                                    "daylight";
                                "שעון מרכז ארה״ב (קיץ)";
                            }
                        }
                        "America_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון החוף המזרחי",
                                    "standard";
                                "שעון החוף המזרחי (חורף)",
                                    "daylight";
                                "שעון החוף המזרחי (קיץ)";
                            }
                        }
                        "America_Mountain";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אזור ההרים בארה״ב",
                                    "standard";
                                "שעון אזור ההרים בארה״ב (חורף)",
                                    "daylight";
                                "שעון אזור ההרים בארה״ב (קיץ)";
                            }
                        }
                        "America_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב ארה״ב",
                                    "standard";
                                "שעון מערב ארה״ב (חורף)",
                                    "daylight";
                                "שעון מערב ארה״ב (קיץ)";
                            }
                        }
                        "Anadyr";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אנדיר",
                                    "standard";
                                "שעון רגיל אנדיר",
                                    "daylight";
                                "שעון קיץ אנדיר";
                            }
                        }
                        "Apia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אפיה",
                                    "standard";
                                "שעון אפיה (חורף)",
                                    "daylight";
                                "שעון אפיה (קיץ)";
                            }
                        }
                        "Arabian";
                        {
                            "long";
                            {
                                "generic";
                                "שעון חצי האי ערב",
                                    "standard";
                                "שעון חצי האי ערב (חורף)",
                                    "daylight";
                                "שעון חצי האי ערב (קיץ)";
                            }
                        }
                        "Argentina";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ארגנטינה",
                                    "standard";
                                "שעון ארגנטינה (חורף)",
                                    "daylight";
                                "שעון ארגנטינה (קיץ)";
                            }
                        }
                        "Argentina_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב ארגנטינה",
                                    "standard";
                                "שעון מערב ארגנטינה (חורף)",
                                    "daylight";
                                "שעון מערב ארגנטינה (קיץ)";
                            }
                        }
                        "Armenia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ארמניה",
                                    "standard";
                                "שעון ארמניה (חורף)",
                                    "daylight";
                                "שעון ארמניה (קיץ)";
                            }
                        }
                        "Atlantic";
                        {
                            "long";
                            {
                                "generic";
                                "שעון האוקיינוס האטלנטי",
                                    "standard";
                                "שעון האוקיינוס האטלנטי (חורף)",
                                    "daylight";
                                "שעון האוקיינוס האטלנטי (קיץ)";
                            }
                        }
                        "Australia_Central";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז אוסטרליה",
                                    "standard";
                                "שעון מרכז אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מרכז אוסטרליה (קיץ)";
                            }
                        }
                        "Australia_CentralWestern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז-מערב אוסטרליה",
                                    "standard";
                                "שעון מרכז-מערב אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מרכז-מערב אוסטרליה (קיץ)";
                            }
                        }
                        "Australia_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מזרח אוסטרליה",
                                    "standard";
                                "שעון מזרח אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מזרח אוסטרליה (קיץ)";
                            }
                        }
                        "Australia_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב אוסטרליה",
                                    "standard";
                                "שעון מערב אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מערב אוסטרליה (קיץ)";
                            }
                        }
                        "Azerbaijan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אזרבייג׳אן",
                                    "standard";
                                "שעון אזרבייג׳אן (חורף)",
                                    "daylight";
                                "שעון אזרבייג׳אן (קיץ)";
                            }
                        }
                        "Azores";
                        {
                            "long";
                            {
                                "generic";
                                "שעון האיים האזוריים",
                                    "standard";
                                "שעון האיים האזוריים (חורף)",
                                    "daylight";
                                "שעון האיים האזוריים (קיץ)";
                            }
                        }
                        "Bangladesh";
                        {
                            "long";
                            {
                                "generic";
                                "שעון בנגלדש",
                                    "standard";
                                "שעון בנגלדש (חורף)",
                                    "daylight";
                                "שעון בנגלדש (קיץ)";
                            }
                        }
                        "Bhutan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון בהוטן";
                            }
                        }
                        "Bolivia";
                        {
                            "long";
                            {
                                "standard";
                                "שעון בוליביה";
                            }
                        }
                        "Brasilia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ברזיליה",
                                    "standard";
                                "שעון ברזיליה (חורף)",
                                    "daylight";
                                "שעון ברזיליה (קיץ)";
                            }
                        }
                        "Brunei";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ברוניי דארוסלאם";
                            }
                        }
                        "Cape_Verde";
                        {
                            "long";
                            {
                                "generic";
                                "שעון כף ורדה",
                                    "standard";
                                "שעון כף ורדה (חורף)",
                                    "daylight";
                                "שעון כף ורדה (קיץ)";
                            }
                        }
                        "Chamorro";
                        {
                            "long";
                            {
                                "standard";
                                "שעון צ׳אמורו";
                            }
                        }
                        "Chatham";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צ׳טהאם",
                                    "standard";
                                "שעון צ׳טהאם (חורף)",
                                    "daylight";
                                "שעון צ׳טהאם (קיץ)";
                            }
                        }
                        "Chile";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צ׳ילה",
                                    "standard";
                                "שעון צ׳ילה (חורף)",
                                    "daylight";
                                "שעון צ׳ילה (קיץ)";
                            }
                        }
                        "China";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סין",
                                    "standard";
                                "שעון סין (חורף)",
                                    "daylight";
                                "שעון סין (קיץ)";
                            }
                        }
                        "Choibalsan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צ׳ויבלסן",
                                    "standard";
                                "שעון צ׳ויבלסן (חורף)",
                                    "daylight";
                                "שעון צ׳ויבלסן (קיץ)";
                            }
                        }
                        "Christmas";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האי כריסטמס";
                            }
                        }
                        "Cocos";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי קוקוס";
                            }
                        }
                        "Colombia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קולומביה",
                                    "standard";
                                "שעון קולומביה (חורף)",
                                    "daylight";
                                "שעון קולומביה (קיץ)";
                            }
                        }
                        "Cook";
                        {
                            "long";
                            {
                                "generic";
                                "שעון איי קוק",
                                    "standard";
                                "שעון איי קוק (חורף)",
                                    "daylight";
                                "שעון איי קוק (מחצית הקיץ)";
                            }
                        }
                        "Cuba";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קובה",
                                    "standard";
                                "שעון קובה (חורף)",
                                    "daylight";
                                "שעון קובה (קיץ)";
                            }
                        }
                        "Davis";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דיוויס";
                            }
                        }
                        "DumontDUrville";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דומון ד׳אורוויל";
                            }
                        }
                        "East_Timor";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח טימור";
                            }
                        }
                        "Easter";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אי הפסחא",
                                    "standard";
                                "שעון אי הפסחא (חורף)",
                                    "daylight";
                                "שעון אי הפסחא (קיץ)";
                            }
                        }
                        "Ecuador";
                        {
                            "long";
                            {
                                "standard";
                                "שעון אקוודור";
                            }
                        }
                        "Europe_Central";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז אירופה",
                                    "standard";
                                "שעון מרכז אירופה (חורף)",
                                    "daylight";
                                "שעון מרכז אירופה (קיץ)";
                            }
                        }
                        "Europe_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מזרח אירופה",
                                    "standard";
                                "שעון מזרח אירופה (חורף)",
                                    "daylight";
                                "שעון מזרח אירופה (קיץ)";
                            }
                        }
                        "Europe_Further_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מינסק";
                            }
                        }
                        "Europe_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב אירופה",
                                    "standard";
                                "שעון מערב אירופה (חורף)",
                                    "daylight";
                                "שעון מערב אירופה (קיץ)";
                            }
                        }
                        "Falkland";
                        {
                            "long";
                            {
                                "generic";
                                "שעון איי פוקלנד",
                                    "standard";
                                "שעון איי פוקלנד (חורף)",
                                    "daylight";
                                "שעון איי פוקלנד (קיץ)";
                            }
                        }
                        "Fiji";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פיג׳י",
                                    "standard";
                                "שעון פיג׳י (חורף)",
                                    "daylight";
                                "שעון פיג׳י (קיץ)";
                            }
                        }
                        "French_Guiana";
                        {
                            "long";
                            {
                                "standard";
                                "שעון גיאנה הצרפתית";
                            }
                        }
                        "French_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון הארצות הדרומיות והאנטארקטיות של צרפת";
                            }
                        }
                        "Galapagos";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי גלאפגוס";
                            }
                        }
                        "Gambier";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי גמבייה";
                            }
                        }
                        "Georgia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון גאורגיה",
                                    "standard";
                                "שעון גאורגיה (חורף)",
                                    "daylight";
                                "שעון גאורגיה (קיץ)";
                            }
                        }
                        "Gilbert_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי גילברט";
                            }
                        }
                        "GMT";
                        {
                            "long";
                            {
                                "standard";
                                "שעון גריניץ׳‏";
                            }
                        }
                        "Greenland_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מזרח גרינלנד",
                                    "standard";
                                "שעון מזרח גרינלנד (חורף)",
                                    "daylight";
                                "שעון מזרח גרינלנד (קיץ)";
                            }
                        }
                        "Greenland_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב גרינלנד",
                                    "standard";
                                "שעון מערב גרינלנד (חורף)",
                                    "daylight";
                                "שעון מערב גרינלנד (קיץ)";
                            }
                        }
                        "Gulf";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מדינות המפרץ";
                            }
                        }
                        "Guyana";
                        {
                            "long";
                            {
                                "standard";
                                "שעון גיאנה";
                            }
                        }
                        "Hawaii_Aleutian";
                        {
                            "long";
                            {
                                "generic";
                                "שעון האיים האלאוטיים הוואי",
                                    "standard";
                                "שעון האיים האלאוטיים הוואי (חורף)",
                                    "daylight";
                                "שעון האיים האלאוטיים הוואי (קיץ)";
                            }
                        }
                        "Hong_Kong";
                        {
                            "long";
                            {
                                "generic";
                                "שעון הונג קונג",
                                    "standard";
                                "שעון הונג קונג (חורף)",
                                    "daylight";
                                "שעון הונג קונג (קיץ)";
                            }
                        }
                        "Hovd";
                        {
                            "long";
                            {
                                "generic";
                                "שעון חובד",
                                    "standard";
                                "שעון חובד (חורף)",
                                    "daylight";
                                "שעון חובד (קיץ)";
                            }
                        }
                        "India";
                        {
                            "long";
                            {
                                "standard";
                                "שעון הודו";
                            }
                        }
                        "Indian_Ocean";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האוקיינוס ההודי";
                            }
                        }
                        "Indochina";
                        {
                            "long";
                            {
                                "standard";
                                "שעון הודו-סין";
                            }
                        }
                        "Indonesia_Central";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מרכז אינדונזיה";
                            }
                        }
                        "Indonesia_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח אינדונזיה";
                            }
                        }
                        "Indonesia_Western";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מערב אינדונזיה";
                            }
                        }
                        "Iran";
                        {
                            "long";
                            {
                                "generic";
                                "שעון איראן",
                                    "standard";
                                "שעון איראן (חורף)",
                                    "daylight";
                                "שעון איראן (קיץ)";
                            }
                        }
                        "Irkutsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אירקוטסק",
                                    "standard";
                                "שעון אירקוטסק (חורף)",
                                    "daylight";
                                "שעון אירקוסטק (קיץ)";
                            }
                        }
                        "Israel";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ישראל",
                                    "standard";
                                "שעון ישראל (חורף)",
                                    "daylight";
                                "שעון ישראל (קיץ)";
                            }
                        }
                        "Japan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון יפן",
                                    "standard";
                                "שעון יפן (חורף)",
                                    "daylight";
                                "שעון יפן (קיץ)";
                            }
                        }
                        "Kamchatka";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פטרופבלובסק-קמצ׳טסקי",
                                    "standard";
                                "שעון רגיל פטרופבלובסק-קמצ׳טסקי",
                                    "daylight";
                                "שעון קיץ פטרופבלובסק-קמצ׳טסקי";
                            }
                        }
                        "Kazakhstan_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח קזחסטן";
                            }
                        }
                        "Kazakhstan_Western";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מערב קזחסטן";
                            }
                        }
                        "Korea";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קוריאה",
                                    "standard";
                                "שעון קוריאה (חורף)",
                                    "daylight";
                                "שעון קוריאה (קיץ)";
                            }
                        }
                        "Kosrae";
                        {
                            "long";
                            {
                                "standard";
                                "שעון קוסראה";
                            }
                        }
                        "Krasnoyarsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קרסנויארסק",
                                    "standard";
                                "שעון קרסנויארסק (חורף)",
                                    "daylight";
                                "שעון קרסנויארסק (קיץ)";
                            }
                        }
                        "Kyrgystan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון קירגיזסטן";
                            }
                        }
                        "Line_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי ליין";
                            }
                        }
                        "Lord_Howe";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אי הלורד האו",
                                    "standard";
                                "שעון אי הלורד האו (חורף)",
                                    "daylight";
                                "שעון אי הלורד האו (קיץ)";
                            }
                        }
                        "Macau";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מקאו",
                                    "standard";
                                "שעון חורף מקאו",
                                    "daylight";
                                "שעון קיץ מקאו";
                            }
                        }
                        "Macquarie";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מקווארי";
                            }
                        }
                        "Magadan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מגדן",
                                    "standard";
                                "שעון מגדן (חורף)",
                                    "daylight";
                                "שעון מגדן (קיץ)";
                            }
                        }
                        "Malaysia";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מלזיה";
                            }
                        }
                        "Maldives";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האיים המלדיביים";
                            }
                        }
                        "Marquesas";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי מרקיז";
                            }
                        }
                        "Marshall_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי מרשל";
                            }
                        }
                        "Mauritius";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מאוריציוס",
                                    "standard";
                                "שעון מאוריציוס (חורף)",
                                    "daylight";
                                "שעון מאוריציוס (קיץ)";
                            }
                        }
                        "Mawson";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מאוסון";
                            }
                        }
                        "Mexico_Northwest";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צפון-מערב מקסיקו",
                                    "standard";
                                "שעון צפון-מערב מקסיקו (חורף)",
                                    "daylight";
                                "שעון צפון-מערב מקסיקו (קיץ)";
                            }
                        }
                        "Mexico_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב מקסיקו",
                                    "standard";
                                "שעון מערב מקסיקו (חורף)",
                                    "daylight";
                                "שעון מערב מקסיקו (קיץ)";
                            }
                        }
                        "Mongolia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אולן בטור",
                                    "standard";
                                "שעון אולן בטור (חורף)",
                                    "daylight";
                                "שעון אולן בטור (קיץ)";
                            }
                        }
                        "Moscow";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מוסקבה",
                                    "standard";
                                "שעון מוסקבה (חורף)",
                                    "daylight";
                                "שעון מוסקבה (קיץ)";
                            }
                        }
                        "Myanmar";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מיאנמר";
                            }
                        }
                        "Nauru";
                        {
                            "long";
                            {
                                "standard";
                                "שעון נאורו";
                            }
                        }
                        "Nepal";
                        {
                            "long";
                            {
                                "standard";
                                "שעון נפאל";
                            }
                        }
                        "New_Caledonia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קלדוניה החדשה",
                                    "standard";
                                "שעון קלדוניה החדשה (חורף)",
                                    "daylight";
                                "שעון קלדוניה החדשה (קיץ)";
                            }
                        }
                        "New_Zealand";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ניו זילנד",
                                    "standard";
                                "שעון ניו זילנד (חורף)",
                                    "daylight";
                                "שעון ניו זילנד (קיץ)";
                            }
                        }
                        "Newfoundland";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ניופאונדלנד",
                                    "standard";
                                "שעון ניופאונדלנד (חורף)",
                                    "daylight";
                                "שעון ניופאונדלנד (קיץ)";
                            }
                        }
                        "Niue";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ניואה";
                            }
                        }
                        "Norfolk";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האי נורפוק";
                            }
                        }
                        "Noronha";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פרננדו די נורוניה",
                                    "standard";
                                "שעון פרננדו די נורוניה (חורף)",
                                    "daylight";
                                "שעון פרננדו די נורוניה (קיץ)";
                            }
                        }
                        "Novosibirsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון נובוסיבירסק",
                                    "standard";
                                "שעון נובוסיבירסק (חורף)",
                                    "daylight";
                                "שעון נובוסיבירסק (קיץ)";
                            }
                        }
                        "Omsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אומסק",
                                    "standard";
                                "שעון אומסק (חורף)",
                                    "daylight";
                                "שעון אומסק (קיץ)";
                            }
                        }
                        "Pakistan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פקיסטן",
                                    "standard";
                                "שעון פקיסטן (חורף)",
                                    "daylight";
                                "שעון פקיסטן (קיץ)";
                            }
                        }
                        "Palau";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פלאו";
                            }
                        }
                        "Papua_New_Guinea";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פפואה גיניאה החדשה";
                            }
                        }
                        "Paraguay";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פרגוואי",
                                    "standard";
                                "שעון פרגוואי (חורף)",
                                    "daylight";
                                "שעון פרגוואי (קיץ)";
                            }
                        }
                        "Peru";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פרו",
                                    "standard";
                                "שעון פרו (חורף)",
                                    "daylight";
                                "שעון פרו (קיץ)";
                            }
                        }
                        "Philippines";
                        {
                            "long";
                            {
                                "generic";
                                "שעון הפיליפינים",
                                    "standard";
                                "שעון הפיליפינים (חורף)",
                                    "daylight";
                                "שעון הפיליפינים (קיץ)";
                            }
                        }
                        "Phoenix_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי פיניקס";
                            }
                        }
                        "Pierre_Miquelon";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סנט פייר ומיקלון",
                                    "standard";
                                "שעון סנט פייר ומיקלון (חורף)",
                                    "daylight";
                                "שעון סנט פייר ומיקלון (קיץ)";
                            }
                        }
                        "Pitcairn";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פיטקרן";
                            }
                        }
                        "Ponape";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פונאפי";
                            }
                        }
                        "Pyongyang";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פיונגיאנג";
                            }
                        }
                        "Reunion";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ראוניון";
                            }
                        }
                        "Rothera";
                        {
                            "long";
                            {
                                "standard";
                                "שעון רות׳רה";
                            }
                        }
                        "Sakhalin";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סחלין",
                                    "standard";
                                "שעון סחלין (חורף)",
                                    "daylight";
                                "שעון סחלין (קיץ)";
                            }
                        }
                        "Samara";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סמרה",
                                    "standard";
                                "שעון רגיל סמרה",
                                    "daylight";
                                "שעון קיץ סמרה";
                            }
                        }
                        "Samoa";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סמואה",
                                    "standard";
                                "שעון סמואה (חורף)",
                                    "daylight";
                                "שעון סמואה (קיץ)";
                            }
                        }
                        "Seychelles";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי סיישל";
                            }
                        }
                        "Singapore";
                        {
                            "long";
                            {
                                "standard";
                                "שעון סינגפור";
                            }
                        }
                        "Solomon";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי שלמה";
                            }
                        }
                        "South_Georgia";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דרום ג׳ורג׳יה";
                            }
                        }
                        "Suriname";
                        {
                            "long";
                            {
                                "standard";
                                "שעון סורינאם";
                            }
                        }
                        "Syowa";
                        {
                            "long";
                            {
                                "standard";
                                "שעון סייווה";
                            }
                        }
                        "Tahiti";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טהיטי";
                            }
                        }
                        "Taipei";
                        {
                            "long";
                            {
                                "generic";
                                "שעון טאיפיי",
                                    "standard";
                                "שעון טאיפיי (חורף)",
                                    "daylight";
                                "שעון טאיפיי (קיץ)";
                            }
                        }
                        "Tajikistan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טג׳יקיסטן";
                            }
                        }
                        "Tokelau";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טוקלאו";
                            }
                        }
                        "Tonga";
                        {
                            "long";
                            {
                                "generic";
                                "שעון טונגה",
                                    "standard";
                                "שעון טונגה (חורף)",
                                    "daylight";
                                "שעון טונגה (קיץ)";
                            }
                        }
                        "Truk";
                        {
                            "long";
                            {
                                "standard";
                                "שעון צ׳וק";
                            }
                        }
                        "Turkmenistan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון טורקמניסטן",
                                    "standard";
                                "שעון טורקמניסטן (חורף)",
                                    "daylight";
                                "שעון טורקמניסטן (קיץ)";
                            }
                        }
                        "Tuvalu";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טובאלו";
                            }
                        }
                        "Uruguay";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אורוגוואי",
                                    "standard";
                                "שעון אורוגוואי (חורף)",
                                    "daylight";
                                "שעון אורוגוואי (קיץ)";
                            }
                        }
                        "Uzbekistan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אוזבקיסטן",
                                    "standard";
                                "שעון אוזבקיסטן (חורף)",
                                    "daylight";
                                "שעון אוזבקיסטן (קיץ)";
                            }
                        }
                        "Vanuatu";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ונואטו",
                                    "standard";
                                "שעון ונואטו (חורף)",
                                    "daylight";
                                "שעון ונואטו (קיץ)";
                            }
                        }
                        "Venezuela";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ונצואלה";
                            }
                        }
                        "Vladivostok";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ולדיווסטוק",
                                    "standard";
                                "שעון ולדיווסטוק (חורף)",
                                    "daylight";
                                "שעון ולדיווסטוק (קיץ)";
                            }
                        }
                        "Volgograd";
                        {
                            "long";
                            {
                                "generic";
                                "שעון וולגוגרד",
                                    "standard";
                                "שעון וולגוגרד (חורף)",
                                    "daylight";
                                "שעון וולגוגרד (קיץ)";
                            }
                        }
                        "Vostok";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ווסטוק";
                            }
                        }
                        "Wake";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האי וייק";
                            }
                        }
                        "Wallis";
                        {
                            "long";
                            {
                                "standard";
                                "שעון וואליס ופוטונה";
                            }
                        }
                        "Yakutsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון יקוטסק",
                                    "standard";
                                "שעון יקוטסק (חורף)",
                                    "daylight";
                                "שעון יקוטסק (קיץ)";
                            }
                        }
                        "Yekaterinburg";
                        {
                            "long";
                            {
                                "generic";
                                "שעון יקטרינבורג",
                                    "standard";
                                "שעון יקטרינבורג (חורף)",
                                    "daylight";
                                "שעון יקטרינבורג (קיץ)";
                            }
                        }
                    }
                }
            }
        }
    }
}

[Functional-component]

{
  "main": {
    "he": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31.0.1"
        },
        "language": "he"
      },
      "dates": {
        "calendars": {
          "gregorian": {
            "months": {
              "format": {
                "abbreviated": {
                  "1": "ינו׳",
                  "2": "פבר׳",
                  "3": "מרץ",
                  "4": "אפר׳",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוג׳",
                  "9": "ספט׳",
                  "10": "אוק׳",
                  "11": "נוב׳",
                  "12": "דצמ׳"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4",
                  "5": "5",
                  "6": "6",
                  "7": "7",
                  "8": "8",
                  "9": "9",
                  "10": "10",
                  "11": "11",
                  "12": "12"
                },
                "wide": {
                  "1": "ינואר",
                  "2": "פברואר",
                  "3": "מרץ",
                  "4": "אפריל",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוגוסט",
                  "9": "ספטמבר",
                  "10": "אוקטובר",
                  "11": "נובמבר",
                  "12": "דצמבר"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "ינו׳",
                  "2": "פבר׳",
                  "3": "מרץ",
                  "4": "אפר׳",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוג׳",
                  "9": "ספט׳",
                  "10": "אוק׳",
                  "11": "נוב׳",
                  "12": "דצמ׳"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4",
                  "5": "5",
                  "6": "6",
                  "7": "7",
                  "8": "8",
                  "9": "9",
                  "10": "10",
                  "11": "11",
                  "12": "12"
                },
                "wide": {
                  "1": "ינואר",
                  "2": "פברואר",
                  "3": "מרץ",
                  "4": "אפריל",
                  "5": "מאי",
                  "6": "יוני",
                  "7": "יולי",
                  "8": "אוגוסט",
                  "9": "ספטמבר",
                  "10": "אוקטובר",
                  "11": "נובמבר",
                  "12": "דצמבר"
                }
              }
            },
            "days": {
              "format": {
                "abbreviated": {
                  "sun": "יום א׳",
                  "mon": "יום ב׳",
                  "tue": "יום ג׳",
                  "wed": "יום ד׳",
                  "thu": "יום ה׳",
                  "fri": "יום ו׳",
                  "sat": "שבת"
                },
                "narrow": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "short": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "wide": {
                  "sun": "יום ראשון",
                  "mon": "יום שני",
                  "tue": "יום שלישי",
                  "wed": "יום רביעי",
                  "thu": "יום חמישי",
                  "fri": "יום שישי",
                  "sat": "יום שבת"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "sun": "יום א׳",
                  "mon": "יום ב׳",
                  "tue": "יום ג׳",
                  "wed": "יום ד׳",
                  "thu": "יום ה׳",
                  "fri": "יום ו׳",
                  "sat": "שבת"
                },
                "narrow": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "short": {
                  "sun": "א׳",
                  "mon": "ב׳",
                  "tue": "ג׳",
                  "wed": "ד׳",
                  "thu": "ה׳",
                  "fri": "ו׳",
                  "sat": "ש׳"
                },
                "wide": {
                  "sun": "יום ראשון",
                  "mon": "יום שני",
                  "tue": "יום שלישי",
                  "wed": "יום רביעי",
                  "thu": "יום חמישי",
                  "fri": "יום שישי",
                  "sat": "יום שבת"
                }
              }
            },
            "quarters": {
              "format": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "רבעון 1",
                  "2": "רבעון 2",
                  "3": "רבעון 3",
                  "4": "רבעון 4"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "1": "Q1",
                  "2": "Q2",
                  "3": "Q3",
                  "4": "Q4"
                },
                "narrow": {
                  "1": "1",
                  "2": "2",
                  "3": "3",
                  "4": "4"
                },
                "wide": {
                  "1": "רבעון 1",
                  "2": "רבעון 2",
                  "3": "רבעון 3",
                  "4": "רבעון 4"
                }
              }
            },
            "dayPeriods": {
              "format": {
                "abbreviated": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "narrow": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "wide": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                }
              },
              "stand-alone": {
                "abbreviated": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "narrow": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                },
                "wide": {
                  "midnight": "חצות",
                  "am": "לפנה״צ",
                  "pm": "אחה״צ",
                  "morning1": "בוקר",
                  "afternoon1": "צהריים",
                  "afternoon2": "אחר הצהריים",
                  "evening1": "ערב",
                  "night1": "לילה",
                  "night2": "לפנות בוקר"
                }
              }
            },
            "eras": {
              "eraNames": {
                "0": "לפני הספירה",
                "0-alt-variant": "לפנה״ס",
                "1": "לספירה",
                "1-alt-variant": "CE"
              },
              "eraAbbr": {
                "0": "לפנה״ס",
                "0-alt-variant": "BCE",
                "1": "לספירה",
                "1-alt-variant": "CE"
              },
              "eraNarrow": {
                "0": "לפנה״ס",
                "0-alt-variant": "BCE",
                "1": "לספירה",
                "1-alt-variant": "CE"
              }
            },
            "dateFormats": {
              "full": "EEEE, d בMMMM y",
              "long": "d בMMMM y",
              "medium": "d בMMM y",
              "short": "d.M.y"
            },
            "timeFormats": {
              "full": "H:mm:ss zzzz",
              "long": "H:mm:ss z",
              "medium": "H:mm:ss",
              "short": "H:mm"
            },
            "dateTimeFormats": {
              "full": "{1} בשעה {0}",
              "long": "{1} בשעה {0}",
              "medium": "{1}, {0}",
              "short": "{1}, {0}",
              "availableFormats": {
                "d": "d",
                "E": "ccc",
                "Ed": "E ה-d",
                "Ehm": "E h:mm a",
                "EHm": "E H:mm",
                "Ehms": "E h:mm:ss a",
                "EHms": "E H:mm:ss",
                "Gy": "y G",
                "GyMMM": "MMM y G",
                "GyMMMd": "d בMMM y G",
                "GyMMMEd": "E, d בMMM y G",
                "h": "‏h a",
                "H": "H",
                "hm": "h:mm a",
                "Hm": "H:mm",
                "hms": "h:mm:ss a",
                "Hms": "H:mm:ss",
                "hmsv": "h:mm:ss a v",
                "Hmsv": "HH:mm:ss v",
                "hmv": "h:mm a v",
                "Hmv": "HH:mm v",
                "M": "L",
                "Md": "d.M",
                "MEd": "E, d.M",
                "MMM": "LLL",
                "MMMd": "d בMMM",
                "MMMEd": "E, d בMMM",
                "MMMMd": "d בMMMM",
                "MMMMW-count-one": "שבוע W בMMM",
                "MMMMW-count-two": "שבוע W בMMM",
                "MMMMW-count-many": "שבוע W בMMM",
                "MMMMW-count-other": "שבוע W בMMM",
                "ms": "mm:ss",
                "y": "y",
                "yM": "M.y",
                "yMd": "d.M.y",
                "yMEd": "E, d.M.y",
                "yMM": "M.y",
                "yMMM": "MMM y",
                "yMMMd": "d בMMM y",
                "yMMMEd": "E, d בMMM y",
                "yMMMM": "MMMM y",
                "yQQQ": "QQQ y",
                "yQQQQ": "QQQQ y",
                "yw-count-one": "שבוע w בשנת y",
                "yw-count-two": "שבוע w בשנת y",
                "yw-count-many": "שבוע w בשנת y",
                "yw-count-other": "שבוע w בשנת y"
              },
              "appendItems": {
                "Day": "{0} ({2}: {1})",
                "Day-Of-Week": "{0} {1}",
                "Era": "{1} {0}",
                "Hour": "{0} ({2}: {1})",
                "Minute": "{0} ({2}: {1})",
                "Month": "{0} ({2}: {1})",
                "Quarter": "{0} ({2}: {1})",
                "Second": "{0} ({2}: {1})",
                "Timezone": "{0} {1}",
                "Week": "{0} ({2}: {1})",
                "Year": "{1} {0}"
              },
              "intervalFormats": {
                "intervalFormatFallback": "{0} – {1}",
                "d": {
                  "d": "d–d"
                },
                "h": {
                  "a": "h a – h a",
                  "h": "h–h a"
                },
                "H": {
                  "H": "H–H"
                },
                "hm": {
                  "a": "h:mm a – h:mm a",
                  "h": "h:mm–h:mm a",
                  "m": "h:mm–h:mm a"
                },
                "Hm": {
                  "H": "H:mm–H:mm",
                  "m": "H:mm–H:mm"
                },
                "hmv": {
                  "a": "h:mm a – h:mm a v",
                  "h": "h:mm–h:mm a v",
                  "m": "h:mm–h:mm a v"
                },
                "Hmv": {
                  "H": "H:mm–H:mm v",
                  "m": "H:mm–H:mm v"
                },
                "hv": {
                  "a": "h a – h a v",
                  "h": "h–h a v"
                },
                "Hv": {
                  "H": "H–H v"
                },
                "M": {
                  "M": "M–M"
                },
                "Md": {
                  "d": "d.M–d.M",
                  "M": "d.M–d.M"
                },
                "MEd": {
                  "d": "EEEE d.M–EEEE d.M",
                  "M": "EEEE d.M – EEEE d.M"
                },
                "MMM": {
                  "M": "MMM–MMM"
                },
                "MMMd": {
                  "d": "d–d בMMM",
                  "M": "d בMMM–d בMMM"
                },
                "MMMEd": {
                  "d": "EEEE, d בMMM – EEEE, d בMMM",
                  "M": "EEEE, d בMMM – EEEE, d בMMM"
                },
                "MMMM": {
                  "M": "LLLL–LLLL"
                },
                "y": {
                  "y": "y–y"
                },
                "yM": {
                  "M": "M.y–M.y",
                  "y": "M.y‏–M.y"
                },
                "yMd": {
                  "d": "dd.M.y – dd.M.y",
                  "M": "d.M.y – d.M.y",
                  "y": "d.M.y – d.M.y"
                },
                "yMEd": {
                  "d": "EEEE d.M.y – EEEE d.M.y",
                  "M": "EEEE d.M.y – EEEE d.M.y",
                  "y": "EEEE d.M.y – EEEE d.M.y"
                },
                "yMMM": {
                  "M": "MMM–MMM y",
                  "y": "MMM y – MMM y"
                },
                "yMMMd": {
                  "d": "d–d בMMM y",
                  "M": "d MMM – d MMM y",
                  "y": "d MMM y – d MMM y"
                },
                "yMMMEd": {
                  "d": "EEEE d MMM – EEEE d MMM y",
                  "M": "EEEE d MMM – EEEE d MMM y",
                  "y": "EEEE d MMM y – EEEE d MMM y"
                },
                "yMMMM": {
                  "M": "MMMM–MMMM y",
                  "y": "MMMM y–MMMM y"
                }
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "he";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31.0.1";
                }
                "language";
                "he";
            }
            "dates";
            {
                "calendars";
                {
                    "gregorian";
                    {
                        "months";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "ינו׳",
                                        "2";
                                    "פבר׳",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפר׳",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוג׳",
                                        "9";
                                    "ספט׳",
                                        "10";
                                    "אוק׳",
                                        "11";
                                    "נוב׳",
                                        "12";
                                    "דצמ׳";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4",
                                        "5";
                                    "5",
                                        "6";
                                    "6",
                                        "7";
                                    "7",
                                        "8";
                                    "8",
                                        "9";
                                    "9",
                                        "10";
                                    "10",
                                        "11";
                                    "11",
                                        "12";
                                    "12";
                                }
                                "wide";
                                {
                                    "1";
                                    "ינואר",
                                        "2";
                                    "פברואר",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפריל",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוגוסט",
                                        "9";
                                    "ספטמבר",
                                        "10";
                                    "אוקטובר",
                                        "11";
                                    "נובמבר",
                                        "12";
                                    "דצמבר";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "ינו׳",
                                        "2";
                                    "פבר׳",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפר׳",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוג׳",
                                        "9";
                                    "ספט׳",
                                        "10";
                                    "אוק׳",
                                        "11";
                                    "נוב׳",
                                        "12";
                                    "דצמ׳";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4",
                                        "5";
                                    "5",
                                        "6";
                                    "6",
                                        "7";
                                    "7",
                                        "8";
                                    "8",
                                        "9";
                                    "9",
                                        "10";
                                    "10",
                                        "11";
                                    "11",
                                        "12";
                                    "12";
                                }
                                "wide";
                                {
                                    "1";
                                    "ינואר",
                                        "2";
                                    "פברואר",
                                        "3";
                                    "מרץ",
                                        "4";
                                    "אפריל",
                                        "5";
                                    "מאי",
                                        "6";
                                    "יוני",
                                        "7";
                                    "יולי",
                                        "8";
                                    "אוגוסט",
                                        "9";
                                    "ספטמבר",
                                        "10";
                                    "אוקטובר",
                                        "11";
                                    "נובמבר",
                                        "12";
                                    "דצמבר";
                                }
                            }
                        }
                        "days";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "יום א׳",
                                        "mon";
                                    "יום ב׳",
                                        "tue";
                                    "יום ג׳",
                                        "wed";
                                    "יום ד׳",
                                        "thu";
                                    "יום ה׳",
                                        "fri";
                                    "יום ו׳",
                                        "sat";
                                    "שבת";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "short";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "wide";
                                {
                                    "sun";
                                    "יום ראשון",
                                        "mon";
                                    "יום שני",
                                        "tue";
                                    "יום שלישי",
                                        "wed";
                                    "יום רביעי",
                                        "thu";
                                    "יום חמישי",
                                        "fri";
                                    "יום שישי",
                                        "sat";
                                    "יום שבת";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "sun";
                                    "יום א׳",
                                        "mon";
                                    "יום ב׳",
                                        "tue";
                                    "יום ג׳",
                                        "wed";
                                    "יום ד׳",
                                        "thu";
                                    "יום ה׳",
                                        "fri";
                                    "יום ו׳",
                                        "sat";
                                    "שבת";
                                }
                                "narrow";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "short";
                                {
                                    "sun";
                                    "א׳",
                                        "mon";
                                    "ב׳",
                                        "tue";
                                    "ג׳",
                                        "wed";
                                    "ד׳",
                                        "thu";
                                    "ה׳",
                                        "fri";
                                    "ו׳",
                                        "sat";
                                    "ש׳";
                                }
                                "wide";
                                {
                                    "sun";
                                    "יום ראשון",
                                        "mon";
                                    "יום שני",
                                        "tue";
                                    "יום שלישי",
                                        "wed";
                                    "יום רביעי",
                                        "thu";
                                    "יום חמישי",
                                        "fri";
                                    "יום שישי",
                                        "sat";
                                    "יום שבת";
                                }
                            }
                        }
                        "quarters";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "רבעון 1",
                                        "2";
                                    "רבעון 2",
                                        "3";
                                    "רבעון 3",
                                        "4";
                                    "רבעון 4";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "1";
                                    "Q1",
                                        "2";
                                    "Q2",
                                        "3";
                                    "Q3",
                                        "4";
                                    "Q4";
                                }
                                "narrow";
                                {
                                    "1";
                                    "1",
                                        "2";
                                    "2",
                                        "3";
                                    "3",
                                        "4";
                                    "4";
                                }
                                "wide";
                                {
                                    "1";
                                    "רבעון 1",
                                        "2";
                                    "רבעון 2",
                                        "3";
                                    "רבעון 3",
                                        "4";
                                    "רבעון 4";
                                }
                            }
                        }
                        "dayPeriods";
                        {
                            "format";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                            }
                            "stand-alone";
                            {
                                "abbreviated";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "narrow";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                                "wide";
                                {
                                    "midnight";
                                    "חצות",
                                        "am";
                                    "לפנה״צ",
                                        "pm";
                                    "אחה״צ",
                                        "morning1";
                                    "בוקר",
                                        "afternoon1";
                                    "צהריים",
                                        "afternoon2";
                                    "אחר הצהריים",
                                        "evening1";
                                    "ערב",
                                        "night1";
                                    "לילה",
                                        "night2";
                                    "לפנות בוקר";
                                }
                            }
                        }
                        "eras";
                        {
                            "eraNames";
                            {
                                "0";
                                "לפני הספירה",
                                    "0-alt-variant";
                                "לפנה״ס",
                                    "1";
                                "לספירה",
                                    "1-alt-variant";
                                "CE";
                            }
                            "eraAbbr";
                            {
                                "0";
                                "לפנה״ס",
                                    "0-alt-variant";
                                "BCE",
                                    "1";
                                "לספירה",
                                    "1-alt-variant";
                                "CE";
                            }
                            "eraNarrow";
                            {
                                "0";
                                "לפנה״ס",
                                    "0-alt-variant";
                                "BCE",
                                    "1";
                                "לספירה",
                                    "1-alt-variant";
                                "CE";
                            }
                        }
                        "dateFormats";
                        {
                            "full";
                            "EEEE, d בMMMM y",
                                "long";
                            "d בMMMM y",
                                "medium";
                            "d בMMM y",
                                "short";
                            "d.M.y";
                        }
                        "timeFormats";
                        {
                            "full";
                            "H:mm:ss zzzz",
                                "long";
                            "H:mm:ss z",
                                "medium";
                            "H:mm:ss",
                                "short";
                            "H:mm";
                        }
                        "dateTimeFormats";
                        {
                            "full";
                            "{1} בשעה {0}",
                                "long";
                            "{1} בשעה {0}",
                                "medium";
                            "{1}, {0}",
                                "short";
                            "{1}, {0}",
                                "availableFormats";
                            {
                                "d";
                                "d",
                                    "E";
                                "ccc",
                                    "Ed";
                                "E ה-d",
                                    "Ehm";
                                "E h:mm a",
                                    "EHm";
                                "E H:mm",
                                    "Ehms";
                                "E h:mm:ss a",
                                    "EHms";
                                "E H:mm:ss",
                                    "Gy";
                                "y G",
                                    "GyMMM";
                                "MMM y G",
                                    "GyMMMd";
                                "d בMMM y G",
                                    "GyMMMEd";
                                "E, d בMMM y G",
                                    "h";
                                "‏h a",
                                    "H";
                                "H",
                                    "hm";
                                "h:mm a",
                                    "Hm";
                                "H:mm",
                                    "hms";
                                "h:mm:ss a",
                                    "Hms";
                                "H:mm:ss",
                                    "hmsv";
                                "h:mm:ss a v",
                                    "Hmsv";
                                "HH:mm:ss v",
                                    "hmv";
                                "h:mm a v",
                                    "Hmv";
                                "HH:mm v",
                                    "M";
                                "L",
                                    "Md";
                                "d.M",
                                    "MEd";
                                "E, d.M",
                                    "MMM";
                                "LLL",
                                    "MMMd";
                                "d בMMM",
                                    "MMMEd";
                                "E, d בMMM",
                                    "MMMMd";
                                "d בMMMM",
                                    "MMMMW-count-one";
                                "שבוע W בMMM",
                                    "MMMMW-count-two";
                                "שבוע W בMMM",
                                    "MMMMW-count-many";
                                "שבוע W בMMM",
                                    "MMMMW-count-other";
                                "שבוע W בMMM",
                                    "ms";
                                "mm:ss",
                                    "y";
                                "y",
                                    "yM";
                                "M.y",
                                    "yMd";
                                "d.M.y",
                                    "yMEd";
                                "E, d.M.y",
                                    "yMM";
                                "M.y",
                                    "yMMM";
                                "MMM y",
                                    "yMMMd";
                                "d בMMM y",
                                    "yMMMEd";
                                "E, d בMMM y",
                                    "yMMMM";
                                "MMMM y",
                                    "yQQQ";
                                "QQQ y",
                                    "yQQQQ";
                                "QQQQ y",
                                    "yw-count-one";
                                "שבוע w בשנת y",
                                    "yw-count-two";
                                "שבוע w בשנת y",
                                    "yw-count-many";
                                "שבוע w בשנת y",
                                    "yw-count-other";
                                "שבוע w בשנת y";
                            }
                            "appendItems";
                            {
                                "Day";
                                "{0} ({2}: {1})",
                                    "Day-Of-Week";
                                "{0} {1}",
                                    "Era";
                                "{1} {0}",
                                    "Hour";
                                "{0} ({2}: {1})",
                                    "Minute";
                                "{0} ({2}: {1})",
                                    "Month";
                                "{0} ({2}: {1})",
                                    "Quarter";
                                "{0} ({2}: {1})",
                                    "Second";
                                "{0} ({2}: {1})",
                                    "Timezone";
                                "{0} {1}",
                                    "Week";
                                "{0} ({2}: {1})",
                                    "Year";
                                "{1} {0}";
                            }
                            "intervalFormats";
                            {
                                "intervalFormatFallback";
                                "{0} – {1}",
                                    "d";
                                {
                                    "d";
                                    "d–d";
                                }
                                "h";
                                {
                                    "a";
                                    "h a – h a",
                                        "h";
                                    "h–h a";
                                }
                                "H";
                                {
                                    "H";
                                    "H–H";
                                }
                                "hm";
                                {
                                    "a";
                                    "h:mm a – h:mm a",
                                        "h";
                                    "h:mm–h:mm a",
                                        "m";
                                    "h:mm–h:mm a";
                                }
                                "Hm";
                                {
                                    "H";
                                    "H:mm–H:mm",
                                        "m";
                                    "H:mm–H:mm";
                                }
                                "hmv";
                                {
                                    "a";
                                    "h:mm a – h:mm a v",
                                        "h";
                                    "h:mm–h:mm a v",
                                        "m";
                                    "h:mm–h:mm a v";
                                }
                                "Hmv";
                                {
                                    "H";
                                    "H:mm–H:mm v",
                                        "m";
                                    "H:mm–H:mm v";
                                }
                                "hv";
                                {
                                    "a";
                                    "h a – h a v",
                                        "h";
                                    "h–h a v";
                                }
                                "Hv";
                                {
                                    "H";
                                    "H–H v";
                                }
                                "M";
                                {
                                    "M";
                                    "M–M";
                                }
                                "Md";
                                {
                                    "d";
                                    "d.M–d.M",
                                        "M";
                                    "d.M–d.M";
                                }
                                "MEd";
                                {
                                    "d";
                                    "EEEE d.M–EEEE d.M",
                                        "M";
                                    "EEEE d.M – EEEE d.M";
                                }
                                "MMM";
                                {
                                    "M";
                                    "MMM–MMM";
                                }
                                "MMMd";
                                {
                                    "d";
                                    "d–d בMMM",
                                        "M";
                                    "d בMMM–d בMMM";
                                }
                                "MMMEd";
                                {
                                    "d";
                                    "EEEE, d בMMM – EEEE, d בMMM",
                                        "M";
                                    "EEEE, d בMMM – EEEE, d בMMM";
                                }
                                "MMMM";
                                {
                                    "M";
                                    "LLLL–LLLL";
                                }
                                "y";
                                {
                                    "y";
                                    "y–y";
                                }
                                "yM";
                                {
                                    "M";
                                    "M.y–M.y",
                                        "y";
                                    "M.y‏–M.y";
                                }
                                "yMd";
                                {
                                    "d";
                                    "dd.M.y – dd.M.y",
                                        "M";
                                    "d.M.y – d.M.y",
                                        "y";
                                    "d.M.y – d.M.y";
                                }
                                "yMEd";
                                {
                                    "d";
                                    "EEEE d.M.y – EEEE d.M.y",
                                        "M";
                                    "EEEE d.M.y – EEEE d.M.y",
                                        "y";
                                    "EEEE d.M.y – EEEE d.M.y";
                                }
                                "yMMM";
                                {
                                    "M";
                                    "MMM–MMM y",
                                        "y";
                                    "MMM y – MMM y";
                                }
                                "yMMMd";
                                {
                                    "d";
                                    "d–d בMMM y",
                                        "M";
                                    "d MMM – d MMM y",
                                        "y";
                                    "d MMM y – d MMM y";
                                }
                                "yMMMEd";
                                {
                                    "d";
                                    "EEEE d MMM – EEEE d MMM y",
                                        "M";
                                    "EEEE d MMM – EEEE d MMM y",
                                        "y";
                                    "EEEE d MMM y – EEEE d MMM y";
                                }
                                "yMMMM";
                                {
                                    "M";
                                    "MMMM–MMMM y",
                                        "y";
                                    "MMMM y–MMMM y";
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as heTimeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, heTimeZoneNames);
L10n.load({
    'he': {
        'daterangepicker': {
            applyText: 'להחיל טקסט',
            cancelText: 'בטל טקסט',
            customRange: 'טווח מותאם אישית',
            days: 'أימים',
            endLabel: 'ח',
            placeholder: 'בחר טווח',
            selectedDays: 'ימים נבחרים',
            startLabel: 'תווית התחלה'
        }
    }
});
//import the datrangeepicker component
function App() {
    return <DateRangePickerComponent id="daterangepicker" locale='he' enableRtl={true}/>;
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//Load the L10n, loadCldr from ej2-base
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';

//load the CLDR data files.
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as heTimeZoneNames from './timeZoneNames.json';

loadCldr(numberingSystems, gregorian, numbers, heTimeZoneNames);

L10n.load({
  'he': {
    'daterangepicker': {
      applyText: 'להחיל טקסט',
      cancelText: 'בטל טקסט',
      customRange: 'טווח מותאם אישית',
      days: 'أימים',
      endLabel: 'ח',
      placeholder: 'בחר טווח',
      selectedDays: 'ימים נבחרים',
      startLabel: 'תווית התחלה'
    }
  }
});
//import the datrangeepicker component
function App() {
    return <DateRangePickerComponent id="daterangepicker" locale='he' enableRtl={true} />
};
ReactDOM.render(<App />, document.getElementById('element'));
{
  "supplemental": {
    "version": {
      "_number": "$Revision: 12732 $",
      "_unicodeVersion": "9.0.0",
      "_cldrVersion": "31"
    },
    "numberingSystems": {
      "adlm": {
        "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
        "_type": "numeric"
      },
      "ahom": {
        "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
        "_type": "numeric"
      },
      "arab": {
        "_digits": "٠١٢٣٤٥٦٧٨٩",
        "_type": "numeric"
      },
      "arabext": {
        "_digits": "۰۱۲۳۴۵۶۷۸۹",
        "_type": "numeric"
      },
      "armn": {
        "_rules": "armenian-upper",
        "_type": "algorithmic"
      },
      "armnlow": {
        "_rules": "armenian-lower",
        "_type": "algorithmic"
      },
      "bali": {
        "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
        "_type": "numeric"
      },
      "beng": {
        "_digits": "০১২৩৪৫৬৭৮৯",
        "_type": "numeric"
      },
      "bhks": {
        "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
        "_type": "numeric"
      },
      "brah": {
        "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
        "_type": "numeric"
      },
      "cakm": {
        "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
        "_type": "numeric"
      },
      "cham": {
        "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
        "_type": "numeric"
      },
      "cyrl": {
        "_rules": "cyrillic-lower",
        "_type": "algorithmic"
      },
      "deva": {
        "_digits": "०१२३४५६७८९",
        "_type": "numeric"
      },
      "ethi": {
        "_rules": "ethiopic",
        "_type": "algorithmic"
      },
      "fullwide": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "geor": {
        "_rules": "georgian",
        "_type": "algorithmic"
      },
      "grek": {
        "_rules": "greek-upper",
        "_type": "algorithmic"
      },
      "greklow": {
        "_rules": "greek-lower",
        "_type": "algorithmic"
      },
      "gujr": {
        "_digits": "૦૧૨૩૪૫૬૭૮૯",
        "_type": "numeric"
      },
      "guru": {
        "_digits": "੦੧੨੩੪੫੬੭੮੯",
        "_type": "numeric"
      },
      "hanidays": {
        "_rules": "zh/SpelloutRules/spellout-numbering-days",
        "_type": "algorithmic"
      },
      "hanidec": {
        "_digits": "〇一二三四五六七八九",
        "_type": "numeric"
      },
      "hans": {
        "_rules": "zh/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hansfin": {
        "_rules": "zh/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hant": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "hantfin": {
        "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "hebr": {
        "_rules": "hebrew",
        "_type": "algorithmic"
      },
      "hmng": {
        "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
        "_type": "numeric"
      },
      "java": {
        "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
        "_type": "numeric"
      },
      "jpan": {
        "_rules": "ja/SpelloutRules/spellout-cardinal",
        "_type": "algorithmic"
      },
      "jpanfin": {
        "_rules": "ja/SpelloutRules/spellout-cardinal-financial",
        "_type": "algorithmic"
      },
      "kali": {
        "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
        "_type": "numeric"
      },
      "khmr": {
        "_digits": "០១២៣៤៥៦៧៨៩",
        "_type": "numeric"
      },
      "knda": {
        "_digits": "೦೧೨೩೪೫೬೭೮೯",
        "_type": "numeric"
      },
      "lana": {
        "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
        "_type": "numeric"
      },
      "lanatham": {
        "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
        "_type": "numeric"
      },
      "laoo": {
        "_digits": "໐໑໒໓໔໕໖໗໘໙",
        "_type": "numeric"
      },
      "latn": {
        "_digits": "0123456789",
        "_type": "numeric"
      },
      "lepc": {
        "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
        "_type": "numeric"
      },
      "limb": {
        "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
        "_type": "numeric"
      },
      "mathbold": {
        "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
        "_type": "numeric"
      },
      "mathdbl": {
        "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
        "_type": "numeric"
      },
      "mathmono": {
        "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
        "_type": "numeric"
      },
      "mathsanb": {
        "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
        "_type": "numeric"
      },
      "mathsans": {
        "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
        "_type": "numeric"
      },
      "mlym": {
        "_digits": "൦൧൨൩൪൫൬൭൮൯",
        "_type": "numeric"
      },
      "modi": {
        "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
        "_type": "numeric"
      },
      "mong": {
        "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
        "_type": "numeric"
      },
      "mroo": {
        "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
        "_type": "numeric"
      },
      "mtei": {
        "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
        "_type": "numeric"
      },
      "mymr": {
        "_digits": "၀၁၂၃၄၅၆၇၈၉",
        "_type": "numeric"
      },
      "mymrshan": {
        "_digits": "႐႑႒႓႔႕႖႗႘႙",
        "_type": "numeric"
      },
      "mymrtlng": {
        "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
        "_type": "numeric"
      },
      "newa": {
        "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
        "_type": "numeric"
      },
      "nkoo": {
        "_digits": "߀߁߂߃߄߅߆߇߈߉",
        "_type": "numeric"
      },
      "olck": {
        "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
        "_type": "numeric"
      },
      "orya": {
        "_digits": "୦୧୨୩୪୫୬୭୮୯",
        "_type": "numeric"
      },
      "osma": {
        "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
        "_type": "numeric"
      },
      "roman": {
        "_rules": "roman-upper",
        "_type": "algorithmic"
      },
      "romanlow": {
        "_rules": "roman-lower",
        "_type": "algorithmic"
      },
      "saur": {
        "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
        "_type": "numeric"
      },
      "shrd": {
        "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
        "_type": "numeric"
      },
      "sind": {
        "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
        "_type": "numeric"
      },
      "sinh": {
        "_digits": "෦෧෨෩෪෫෬෭෮෯",
        "_type": "numeric"
      },
      "sora": {
        "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
        "_type": "numeric"
      },
      "sund": {
        "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
        "_type": "numeric"
      },
      "takr": {
        "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
        "_type": "numeric"
      },
      "talu": {
        "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
        "_type": "numeric"
      },
      "taml": {
        "_rules": "tamil",
        "_type": "algorithmic"
      },
      "tamldec": {
        "_digits": "௦௧௨௩௪௫௬௭௮௯",
        "_type": "numeric"
      },
      "telu": {
        "_digits": "౦౧౨౩౪౫౬౭౮౯",
        "_type": "numeric"
      },
      "thai": {
        "_digits": "๐๑๒๓๔๕๖๗๘๙",
        "_type": "numeric"
      },
      "tibt": {
        "_digits": "༠༡༢༣༤༥༦༧༨༩",
        "_type": "numeric"
      },
      "tirh": {
        "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
        "_type": "numeric"
      },
      "vaii": {
        "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
        "_type": "numeric"
      },
      "wara": {
        "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
        "_type": "numeric"
      }
    }
  }
}
{
    "supplemental";
    {
        "version";
        {
            "_number";
            "$Revision: 12732 $",
                "_unicodeVersion";
            "9.0.0",
                "_cldrVersion";
            "31";
        }
        "numberingSystems";
        {
            "adlm";
            {
                "_digits";
                "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
                    "_type";
                "numeric";
            }
            "ahom";
            {
                "_digits";
                "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
                    "_type";
                "numeric";
            }
            "arab";
            {
                "_digits";
                "٠١٢٣٤٥٦٧٨٩",
                    "_type";
                "numeric";
            }
            "arabext";
            {
                "_digits";
                "۰۱۲۳۴۵۶۷۸۹",
                    "_type";
                "numeric";
            }
            "armn";
            {
                "_rules";
                "armenian-upper",
                    "_type";
                "algorithmic";
            }
            "armnlow";
            {
                "_rules";
                "armenian-lower",
                    "_type";
                "algorithmic";
            }
            "bali";
            {
                "_digits";
                "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
                    "_type";
                "numeric";
            }
            "beng";
            {
                "_digits";
                "০১২৩৪৫৬৭৮৯",
                    "_type";
                "numeric";
            }
            "bhks";
            {
                "_digits";
                "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
                    "_type";
                "numeric";
            }
            "brah";
            {
                "_digits";
                "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
                    "_type";
                "numeric";
            }
            "cakm";
            {
                "_digits";
                "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
                    "_type";
                "numeric";
            }
            "cham";
            {
                "_digits";
                "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
                    "_type";
                "numeric";
            }
            "cyrl";
            {
                "_rules";
                "cyrillic-lower",
                    "_type";
                "algorithmic";
            }
            "deva";
            {
                "_digits";
                "०१२३४५६७८९",
                    "_type";
                "numeric";
            }
            "ethi";
            {
                "_rules";
                "ethiopic",
                    "_type";
                "algorithmic";
            }
            "fullwide";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "geor";
            {
                "_rules";
                "georgian",
                    "_type";
                "algorithmic";
            }
            "grek";
            {
                "_rules";
                "greek-upper",
                    "_type";
                "algorithmic";
            }
            "greklow";
            {
                "_rules";
                "greek-lower",
                    "_type";
                "algorithmic";
            }
            "gujr";
            {
                "_digits";
                "૦૧૨૩૪૫૬૭૮૯",
                    "_type";
                "numeric";
            }
            "guru";
            {
                "_digits";
                "੦੧੨੩੪੫੬੭੮੯",
                    "_type";
                "numeric";
            }
            "hanidays";
            {
                "_rules";
                "zh/SpelloutRules/spellout-numbering-days",
                    "_type";
                "algorithmic";
            }
            "hanidec";
            {
                "_digits";
                "〇一二三四五六七八九",
                    "_type";
                "numeric";
            }
            "hans";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hansfin";
            {
                "_rules";
                "zh/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hant";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "hantfin";
            {
                "_rules";
                "zh_Hant/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "hebr";
            {
                "_rules";
                "hebrew",
                    "_type";
                "algorithmic";
            }
            "hmng";
            {
                "_digits";
                "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
                    "_type";
                "numeric";
            }
            "java";
            {
                "_digits";
                "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
                    "_type";
                "numeric";
            }
            "jpan";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal",
                    "_type";
                "algorithmic";
            }
            "jpanfin";
            {
                "_rules";
                "ja/SpelloutRules/spellout-cardinal-financial",
                    "_type";
                "algorithmic";
            }
            "kali";
            {
                "_digits";
                "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
                    "_type";
                "numeric";
            }
            "khmr";
            {
                "_digits";
                "០១២៣៤៥៦៧៨៩",
                    "_type";
                "numeric";
            }
            "knda";
            {
                "_digits";
                "೦೧೨೩೪೫೬೭೮೯",
                    "_type";
                "numeric";
            }
            "lana";
            {
                "_digits";
                "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
                    "_type";
                "numeric";
            }
            "lanatham";
            {
                "_digits";
                "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
                    "_type";
                "numeric";
            }
            "laoo";
            {
                "_digits";
                "໐໑໒໓໔໕໖໗໘໙",
                    "_type";
                "numeric";
            }
            "latn";
            {
                "_digits";
                "0123456789",
                    "_type";
                "numeric";
            }
            "lepc";
            {
                "_digits";
                "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
                    "_type";
                "numeric";
            }
            "limb";
            {
                "_digits";
                "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
                    "_type";
                "numeric";
            }
            "mathbold";
            {
                "_digits";
                "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
                    "_type";
                "numeric";
            }
            "mathdbl";
            {
                "_digits";
                "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
                    "_type";
                "numeric";
            }
            "mathmono";
            {
                "_digits";
                "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
                    "_type";
                "numeric";
            }
            "mathsanb";
            {
                "_digits";
                "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
                    "_type";
                "numeric";
            }
            "mathsans";
            {
                "_digits";
                "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
                    "_type";
                "numeric";
            }
            "mlym";
            {
                "_digits";
                "൦൧൨൩൪൫൬൭൮൯",
                    "_type";
                "numeric";
            }
            "modi";
            {
                "_digits";
                "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
                    "_type";
                "numeric";
            }
            "mong";
            {
                "_digits";
                "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
                    "_type";
                "numeric";
            }
            "mroo";
            {
                "_digits";
                "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
                    "_type";
                "numeric";
            }
            "mtei";
            {
                "_digits";
                "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
                    "_type";
                "numeric";
            }
            "mymr";
            {
                "_digits";
                "၀၁၂၃၄၅၆၇၈၉",
                    "_type";
                "numeric";
            }
            "mymrshan";
            {
                "_digits";
                "႐႑႒႓႔႕႖႗႘႙",
                    "_type";
                "numeric";
            }
            "mymrtlng";
            {
                "_digits";
                "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
                    "_type";
                "numeric";
            }
            "newa";
            {
                "_digits";
                "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
                    "_type";
                "numeric";
            }
            "nkoo";
            {
                "_digits";
                "߀߁߂߃߄߅߆߇߈߉",
                    "_type";
                "numeric";
            }
            "olck";
            {
                "_digits";
                "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
                    "_type";
                "numeric";
            }
            "orya";
            {
                "_digits";
                "୦୧୨୩୪୫୬୭୮୯",
                    "_type";
                "numeric";
            }
            "osma";
            {
                "_digits";
                "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
                    "_type";
                "numeric";
            }
            "roman";
            {
                "_rules";
                "roman-upper",
                    "_type";
                "algorithmic";
            }
            "romanlow";
            {
                "_rules";
                "roman-lower",
                    "_type";
                "algorithmic";
            }
            "saur";
            {
                "_digits";
                "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
                    "_type";
                "numeric";
            }
            "shrd";
            {
                "_digits";
                "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
                    "_type";
                "numeric";
            }
            "sind";
            {
                "_digits";
                "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
                    "_type";
                "numeric";
            }
            "sinh";
            {
                "_digits";
                "෦෧෨෩෪෫෬෭෮෯",
                    "_type";
                "numeric";
            }
            "sora";
            {
                "_digits";
                "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
                    "_type";
                "numeric";
            }
            "sund";
            {
                "_digits";
                "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
                    "_type";
                "numeric";
            }
            "takr";
            {
                "_digits";
                "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
                    "_type";
                "numeric";
            }
            "talu";
            {
                "_digits";
                "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
                    "_type";
                "numeric";
            }
            "taml";
            {
                "_rules";
                "tamil",
                    "_type";
                "algorithmic";
            }
            "tamldec";
            {
                "_digits";
                "௦௧௨௩௪௫௬௭௮௯",
                    "_type";
                "numeric";
            }
            "telu";
            {
                "_digits";
                "౦౧౨౩౪౫౬౭౮౯",
                    "_type";
                "numeric";
            }
            "thai";
            {
                "_digits";
                "๐๑๒๓๔๕๖๗๘๙",
                    "_type";
                "numeric";
            }
            "tibt";
            {
                "_digits";
                "༠༡༢༣༤༥༦༧༨༩",
                    "_type";
                "numeric";
            }
            "tirh";
            {
                "_digits";
                "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
                    "_type";
                "numeric";
            }
            "vaii";
            {
                "_digits";
                "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
                    "_type";
                "numeric";
            }
            "wara";
            {
                "_digits";
                "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
                    "_type";
                "numeric";
            }
        }
    }
}
{
  "main": {
    "he": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31.0.1"
        },
        "language": "he"
      },
      "numbers": {
        "defaultNumberingSystem": "latn",
        "otherNumberingSystems": {
          "native": "latn",
          "traditional": "hebr"
        },
        "minimumGroupingDigits": "1",
        "symbols-numberSystem-latn": {
          "decimal": ".",
          "group": ",",
          "list": ";",
          "percentSign": "%",
          "plusSign": "‎+",
          "minusSign": "‎-",
          "exponential": "E",
          "superscriptingExponent": "×",
          "perMille": "‰",
          "infinity": "∞",
          "nan": "NaN",
          "timeSeparator": ":"
        },
        "decimalFormats-numberSystem-latn": {
          "standard": "#,##0.###",
          "long": {
            "decimalFormat": {
              "1000-count-one": "‏0 אלף",
              "1000-count-two": "‏0 אלף",
              "1000-count-many": "‏0 אלף",
              "1000-count-other": "‏0 אלף",
              "10000-count-one": "‏00 אלף",
              "10000-count-two": "‏00 אלף",
              "10000-count-many": "‏00 אלף",
              "10000-count-other": "‏00 אלף",
              "100000-count-one": "‏000 אלף",
              "100000-count-two": "‏000 אלף",
              "100000-count-many": "‏000 אלף",
              "100000-count-other": "‏000 אלף",
              "1000000-count-one": "‏0 מיליון",
              "1000000-count-two": "‏0 מיליון",
              "1000000-count-many": "‏0 מיליון",
              "1000000-count-other": "‏0 מיליון",
              "10000000-count-one": "‏00 מיליון",
              "10000000-count-two": "‏00 מיליון",
              "10000000-count-many": "‏00 מיליון",
              "10000000-count-other": "‏00 מיליון",
              "100000000-count-one": "‏000 מיליון",
              "100000000-count-two": "‏000 מיליון",
              "100000000-count-many": "‏000 מיליון",
              "100000000-count-other": "‏000 מיליון",
              "1000000000-count-one": "‏0 מיליארד",
              "1000000000-count-two": "‏0 מיליארד",
              "1000000000-count-many": "‏0 מיליארד",
              "1000000000-count-other": "‏0 מיליארד",
              "10000000000-count-one": "‏00 מיליארד",
              "10000000000-count-two": "‏00 מיליארד",
              "10000000000-count-many": "‏00 מיליארד",
              "10000000000-count-other": "‏00 מיליארד",
              "100000000000-count-one": "‏000 מיליארד",
              "100000000000-count-two": "‏000 מיליארד",
              "100000000000-count-many": "‏000 מיליארד",
              "100000000000-count-other": "‏000 מיליארד",
              "1000000000000-count-one": "‏0 טריליון",
              "1000000000000-count-two": "‏0 טריליון",
              "1000000000000-count-many": "‏0 טריליון",
              "1000000000000-count-other": "‏0 טריליון",
              "10000000000000-count-one": "‏00 טריליון",
              "10000000000000-count-two": "‏00 טריליון",
              "10000000000000-count-many": "‏00 טריליון",
              "10000000000000-count-other": "‏00 טריליון",
              "100000000000000-count-one": "‏000 טריליון",
              "100000000000000-count-two": "‏000 טריליון",
              "100000000000000-count-many": "‏000 טריליון",
              "100000000000000-count-other": "‏000 טריליון"
            }
          },
          "short": {
            "decimalFormat": {
              "1000-count-one": "0K",
              "1000-count-two": "0K",
              "1000-count-many": "0K",
              "1000-count-other": "0K",
              "10000-count-one": "00K",
              "10000-count-two": "00K",
              "10000-count-many": "00K",
              "10000-count-other": "00K",
              "100000-count-one": "000K",
              "100000-count-two": "000K",
              "100000-count-many": "000K",
              "100000-count-other": "000K",
              "1000000-count-one": "0M",
              "1000000-count-two": "0M",
              "1000000-count-many": "0M",
              "1000000-count-other": "0M",
              "10000000-count-one": "00M",
              "10000000-count-two": "00M",
              "10000000-count-many": "00M",
              "10000000-count-other": "00M",
              "100000000-count-one": "000M",
              "100000000-count-two": "000M",
              "100000000-count-many": "000M",
              "100000000-count-other": "000M",
              "1000000000-count-one": "0B",
              "1000000000-count-two": "0B",
              "1000000000-count-many": "0B",
              "1000000000-count-other": "0B",
              "10000000000-count-one": "00B",
              "10000000000-count-two": "00B",
              "10000000000-count-many": "00B",
              "10000000000-count-other": "00B",
              "100000000000-count-one": "000B",
              "100000000000-count-two": "000B",
              "100000000000-count-many": "000B",
              "100000000000-count-other": "000B",
              "1000000000000-count-one": "0T",
              "1000000000000-count-two": "0T",
              "1000000000000-count-many": "0T",
              "1000000000000-count-other": "0T",
              "10000000000000-count-one": "00T",
              "10000000000000-count-two": "00T",
              "10000000000000-count-many": "00T",
              "10000000000000-count-other": "00T",
              "100000000000000-count-one": "000T",
              "100000000000000-count-two": "000T",
              "100000000000000-count-many": "000T",
              "100000000000000-count-other": "000T"
            }
          }
        },
        "scientificFormats-numberSystem-latn": {
          "standard": "#E0"
        },
        "percentFormats-numberSystem-latn": {
          "standard": "#,##0%"
        },
        "currencyFormats-numberSystem-latn": {
          "currencySpacing": {
            "beforeCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            },
            "afterCurrency": {
              "currencyMatch": "[:^S:]",
              "surroundingMatch": "[:digit:]",
              "insertBetween": " "
            }
          },
          "standard": "‏#,##0.00 ¤;‏-#,##0.00 ¤",
          "accounting": "#,##0.00 ¤",
          "short": {
            "standard": {
              "1000-count-one": "¤ 0K",
              "1000-count-two": "¤ 0K",
              "1000-count-many": "¤0K",
              "1000-count-other": "¤ 0K",
              "10000-count-one": "¤00K",
              "10000-count-two": "¤00K",
              "10000-count-many": "¤00K",
              "10000-count-other": "¤ 00K",
              "100000-count-one": "¤000K",
              "100000-count-two": "¤000K",
              "100000-count-many": "¤000K",
              "100000-count-other": "¤000K",
              "1000000-count-one": "¤0M",
              "1000000-count-two": "¤0M",
              "1000000-count-many": "¤0M",
              "1000000-count-other": "¤0M",
              "10000000-count-one": "¤00M",
              "10000000-count-two": "¤00M",
              "10000000-count-many": "¤00M",
              "10000000-count-other": "¤00M",
              "100000000-count-one": "¤000M",
              "100000000-count-two": "¤000M",
              "100000000-count-many": "¤000M",
              "100000000-count-other": "¤000M",
              "1000000000-count-one": "¤0B",
              "1000000000-count-two": "¤0B",
              "1000000000-count-many": "¤0B",
              "1000000000-count-other": "¤0B",
              "10000000000-count-one": "¤00B",
              "10000000000-count-two": "¤00B",
              "10000000000-count-many": "¤00B",
              "10000000000-count-other": "¤00B",
              "100000000000-count-one": "¤000B",
              "100000000000-count-two": "¤000B",
              "100000000000-count-many": "¤000B",
              "100000000000-count-other": "¤000B",
              "1000000000000-count-one": "¤0T",
              "1000000000000-count-two": "¤0T",
              "1000000000000-count-many": "¤0T",
              "1000000000000-count-other": "¤0T",
              "10000000000000-count-one": "¤00T",
              "10000000000000-count-two": "¤00T",
              "10000000000000-count-many": "¤00T",
              "10000000000000-count-other": "¤00T",
              "100000000000000-count-one": "¤000T",
              "100000000000000-count-two": "¤000T",
              "100000000000000-count-many": "¤000T",
              "100000000000000-count-other": "¤000T"
            }
          },
          "unitPattern-count-one": "{0} {1}",
          "unitPattern-count-two": "{0} {1}",
          "unitPattern-count-many": "{0} {1}",
          "unitPattern-count-other": "{0} {1}"
        },
        "miscPatterns-numberSystem-latn": {
          "atLeast": "⩾{0}+",
          "range": "{0}–{1}"
        },
        "minimalPairs": {
          "pluralMinimalPairs": "שנה",
          "pluralMinimalPairs": "שנתיים",
          "pluralMinimalPairs": "{0} שנה",
          "pluralMinimalPairs": "{0} שנים",
          "other": "פנה ימינה בפנייה ה-{0}"
        }
      }
    }
  }
}
{
    "main";
    {
        "he";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31.0.1";
                }
                "language";
                "he";
            }
            "numbers";
            {
                "defaultNumberingSystem";
                "latn",
                    "otherNumberingSystems";
                {
                    "native";
                    "latn",
                        "traditional";
                    "hebr";
                }
                "minimumGroupingDigits";
                "1",
                    "symbols-numberSystem-latn";
                {
                    "decimal";
                    ".",
                        "group";
                    ",",
                        "list";
                    ";",
                        "percentSign";
                    "%",
                        "plusSign";
                    "‎+",
                        "minusSign";
                    "‎-",
                        "exponential";
                    "E",
                        "superscriptingExponent";
                    "×",
                        "perMille";
                    "‰",
                        "infinity";
                    "∞",
                        "nan";
                    "NaN",
                        "timeSeparator";
                    ":";
                }
                "decimalFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0.###",
                        "long";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "‏0 אלף",
                                "1000-count-two";
                            "‏0 אלף",
                                "1000-count-many";
                            "‏0 אלף",
                                "1000-count-other";
                            "‏0 אלף",
                                "10000-count-one";
                            "‏00 אלף",
                                "10000-count-two";
                            "‏00 אלף",
                                "10000-count-many";
                            "‏00 אלף",
                                "10000-count-other";
                            "‏00 אלף",
                                "100000-count-one";
                            "‏000 אלף",
                                "100000-count-two";
                            "‏000 אלף",
                                "100000-count-many";
                            "‏000 אלף",
                                "100000-count-other";
                            "‏000 אלף",
                                "1000000-count-one";
                            "‏0 מיליון",
                                "1000000-count-two";
                            "‏0 מיליון",
                                "1000000-count-many";
                            "‏0 מיליון",
                                "1000000-count-other";
                            "‏0 מיליון",
                                "10000000-count-one";
                            "‏00 מיליון",
                                "10000000-count-two";
                            "‏00 מיליון",
                                "10000000-count-many";
                            "‏00 מיליון",
                                "10000000-count-other";
                            "‏00 מיליון",
                                "100000000-count-one";
                            "‏000 מיליון",
                                "100000000-count-two";
                            "‏000 מיליון",
                                "100000000-count-many";
                            "‏000 מיליון",
                                "100000000-count-other";
                            "‏000 מיליון",
                                "1000000000-count-one";
                            "‏0 מיליארד",
                                "1000000000-count-two";
                            "‏0 מיליארד",
                                "1000000000-count-many";
                            "‏0 מיליארד",
                                "1000000000-count-other";
                            "‏0 מיליארד",
                                "10000000000-count-one";
                            "‏00 מיליארד",
                                "10000000000-count-two";
                            "‏00 מיליארד",
                                "10000000000-count-many";
                            "‏00 מיליארד",
                                "10000000000-count-other";
                            "‏00 מיליארד",
                                "100000000000-count-one";
                            "‏000 מיליארד",
                                "100000000000-count-two";
                            "‏000 מיליארד",
                                "100000000000-count-many";
                            "‏000 מיליארד",
                                "100000000000-count-other";
                            "‏000 מיליארד",
                                "1000000000000-count-one";
                            "‏0 טריליון",
                                "1000000000000-count-two";
                            "‏0 טריליון",
                                "1000000000000-count-many";
                            "‏0 טריליון",
                                "1000000000000-count-other";
                            "‏0 טריליון",
                                "10000000000000-count-one";
                            "‏00 טריליון",
                                "10000000000000-count-two";
                            "‏00 טריליון",
                                "10000000000000-count-many";
                            "‏00 טריליון",
                                "10000000000000-count-other";
                            "‏00 טריליון",
                                "100000000000000-count-one";
                            "‏000 טריליון",
                                "100000000000000-count-two";
                            "‏000 טריליון",
                                "100000000000000-count-many";
                            "‏000 טריליון",
                                "100000000000000-count-other";
                            "‏000 טריליון";
                        }
                    }
                    "short";
                    {
                        "decimalFormat";
                        {
                            "1000-count-one";
                            "0K",
                                "1000-count-two";
                            "0K",
                                "1000-count-many";
                            "0K",
                                "1000-count-other";
                            "0K",
                                "10000-count-one";
                            "00K",
                                "10000-count-two";
                            "00K",
                                "10000-count-many";
                            "00K",
                                "10000-count-other";
                            "00K",
                                "100000-count-one";
                            "000K",
                                "100000-count-two";
                            "000K",
                                "100000-count-many";
                            "000K",
                                "100000-count-other";
                            "000K",
                                "1000000-count-one";
                            "0M",
                                "1000000-count-two";
                            "0M",
                                "1000000-count-many";
                            "0M",
                                "1000000-count-other";
                            "0M",
                                "10000000-count-one";
                            "00M",
                                "10000000-count-two";
                            "00M",
                                "10000000-count-many";
                            "00M",
                                "10000000-count-other";
                            "00M",
                                "100000000-count-one";
                            "000M",
                                "100000000-count-two";
                            "000M",
                                "100000000-count-many";
                            "000M",
                                "100000000-count-other";
                            "000M",
                                "1000000000-count-one";
                            "0B",
                                "1000000000-count-two";
                            "0B",
                                "1000000000-count-many";
                            "0B",
                                "1000000000-count-other";
                            "0B",
                                "10000000000-count-one";
                            "00B",
                                "10000000000-count-two";
                            "00B",
                                "10000000000-count-many";
                            "00B",
                                "10000000000-count-other";
                            "00B",
                                "100000000000-count-one";
                            "000B",
                                "100000000000-count-two";
                            "000B",
                                "100000000000-count-many";
                            "000B",
                                "100000000000-count-other";
                            "000B",
                                "1000000000000-count-one";
                            "0T",
                                "1000000000000-count-two";
                            "0T",
                                "1000000000000-count-many";
                            "0T",
                                "1000000000000-count-other";
                            "0T",
                                "10000000000000-count-one";
                            "00T",
                                "10000000000000-count-two";
                            "00T",
                                "10000000000000-count-many";
                            "00T",
                                "10000000000000-count-other";
                            "00T",
                                "100000000000000-count-one";
                            "000T",
                                "100000000000000-count-two";
                            "000T",
                                "100000000000000-count-many";
                            "000T",
                                "100000000000000-count-other";
                            "000T";
                        }
                    }
                }
                "scientificFormats-numberSystem-latn";
                {
                    "standard";
                    "#E0";
                }
                "percentFormats-numberSystem-latn";
                {
                    "standard";
                    "#,##0%";
                }
                "currencyFormats-numberSystem-latn";
                {
                    "currencySpacing";
                    {
                        "beforeCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                        "afterCurrency";
                        {
                            "currencyMatch";
                            "[:^S:]",
                                "surroundingMatch";
                            "[:digit:]",
                                "insertBetween";
                            " ";
                        }
                    }
                    "standard";
                    "‏#,##0.00 ¤;‏-#,##0.00 ¤",
                        "accounting";
                    "#,##0.00 ¤",
                        "short";
                    {
                        "standard";
                        {
                            "1000-count-one";
                            "¤ 0K",
                                "1000-count-two";
                            "¤ 0K",
                                "1000-count-many";
                            "¤0K",
                                "1000-count-other";
                            "¤ 0K",
                                "10000-count-one";
                            "¤00K",
                                "10000-count-two";
                            "¤00K",
                                "10000-count-many";
                            "¤00K",
                                "10000-count-other";
                            "¤ 00K",
                                "100000-count-one";
                            "¤000K",
                                "100000-count-two";
                            "¤000K",
                                "100000-count-many";
                            "¤000K",
                                "100000-count-other";
                            "¤000K",
                                "1000000-count-one";
                            "¤0M",
                                "1000000-count-two";
                            "¤0M",
                                "1000000-count-many";
                            "¤0M",
                                "1000000-count-other";
                            "¤0M",
                                "10000000-count-one";
                            "¤00M",
                                "10000000-count-two";
                            "¤00M",
                                "10000000-count-many";
                            "¤00M",
                                "10000000-count-other";
                            "¤00M",
                                "100000000-count-one";
                            "¤000M",
                                "100000000-count-two";
                            "¤000M",
                                "100000000-count-many";
                            "¤000M",
                                "100000000-count-other";
                            "¤000M",
                                "1000000000-count-one";
                            "¤0B",
                                "1000000000-count-two";
                            "¤0B",
                                "1000000000-count-many";
                            "¤0B",
                                "1000000000-count-other";
                            "¤0B",
                                "10000000000-count-one";
                            "¤00B",
                                "10000000000-count-two";
                            "¤00B",
                                "10000000000-count-many";
                            "¤00B",
                                "10000000000-count-other";
                            "¤00B",
                                "100000000000-count-one";
                            "¤000B",
                                "100000000000-count-two";
                            "¤000B",
                                "100000000000-count-many";
                            "¤000B",
                                "100000000000-count-other";
                            "¤000B",
                                "1000000000000-count-one";
                            "¤0T",
                                "1000000000000-count-two";
                            "¤0T",
                                "1000000000000-count-many";
                            "¤0T",
                                "1000000000000-count-other";
                            "¤0T",
                                "10000000000000-count-one";
                            "¤00T",
                                "10000000000000-count-two";
                            "¤00T",
                                "10000000000000-count-many";
                            "¤00T",
                                "10000000000000-count-other";
                            "¤00T",
                                "100000000000000-count-one";
                            "¤000T",
                                "100000000000000-count-two";
                            "¤000T",
                                "100000000000000-count-many";
                            "¤000T",
                                "100000000000000-count-other";
                            "¤000T";
                        }
                    }
                    "unitPattern-count-one";
                    "{0} {1}",
                        "unitPattern-count-two";
                    "{0} {1}",
                        "unitPattern-count-many";
                    "{0} {1}",
                        "unitPattern-count-other";
                    "{0} {1}";
                }
                "miscPatterns-numberSystem-latn";
                {
                    "atLeast";
                    "⩾{0}+",
                        "range";
                    "{0}–{1}";
                }
                "minimalPairs";
                {
                    "pluralMinimalPairs";
                    "שנה",
                        "pluralMinimalPairs";
                    "שנתיים",
                        "pluralMinimalPairs";
                    "{0} שנה",
                        "pluralMinimalPairs";
                    "{0} שנים",
                        "other";
                    "פנה ימינה בפנייה ה-{0}";
                }
            }
        }
    }
}
{
  "main": {
    "he": {
      "identity": {
        "version": {
          "_number": "$Revision: 13259 $",
          "_cldrVersion": "31.0.1"
        },
        "language": "he"
      },
      "dates": {
        "timeZoneNames": {
          "hourFormat": "‎+HH:mm;-HH:mm‎",
          "gmtFormat": "GMT{0}‎",
          "gmtZeroFormat": "GMT",
          "regionFormat": "שעון {0}",
          "regionFormat-type-daylight": "שעון {0} (קיץ)",
          "regionFormat-type-standard": "שעון {0} (חורף)",
          "fallbackFormat": "{1} ({0})",
          "zone": {
            "America": {
              "Adak": {
                "exemplarCity": "אדאק"
              },
              "Anchorage": {
                "exemplarCity": "אנקורג׳"
              },
              "Anguilla": {
                "exemplarCity": "אנגווילה"
              },
              "Antigua": {
                "exemplarCity": "אנטיגואה"
              },
              "Araguaina": {
                "exemplarCity": "אראגואינה"
              },
              "Argentina": {
                "Rio_Gallegos": {
                  "exemplarCity": "ריו גאייגוס"
                },
                "San_Juan": {
                  "exemplarCity": "סן חואן"
                },
                "Ushuaia": {
                  "exemplarCity": "אושוואיה"
                },
                "La_Rioja": {
                  "exemplarCity": "לה ריוחה"
                },
                "San_Luis": {
                  "exemplarCity": "סן לואיס"
                },
                "Salta": {
                  "exemplarCity": "סלטה"
                },
                "Tucuman": {
                  "exemplarCity": "טוקומן"
                }
              },
              "Aruba": {
                "exemplarCity": "ארובה"
              },
              "Asuncion": {
                "exemplarCity": "אסונסיון"
              },
              "Bahia": {
                "exemplarCity": "באהיה"
              },
              "Bahia_Banderas": {
                "exemplarCity": "באהיה בנדרס"
              },
              "Barbados": {
                "exemplarCity": "ברבדוס"
              },
              "Belem": {
                "exemplarCity": "בלם"
              },
              "Belize": {
                "exemplarCity": "בליז"
              },
              "Blanc-Sablon": {
                "exemplarCity": "בלאן-סבלון"
              },
              "Boa_Vista": {
                "exemplarCity": "בואה ויסטה"
              },
              "Bogota": {
                "exemplarCity": "בוגוטה"
              },
              "Boise": {
                "exemplarCity": "בויסי"
              },
              "Buenos_Aires": {
                "exemplarCity": "בואנוס איירס"
              },
              "Cambridge_Bay": {
                "exemplarCity": "קיימברידג׳ ביי"
              },
              "Campo_Grande": {
                "exemplarCity": "קמפו גרנדה"
              },
              "Cancun": {
                "exemplarCity": "קנקון"
              },
              "Caracas": {
                "exemplarCity": "קראקס"
              },
              "Catamarca": {
                "exemplarCity": "קטמרקה"
              },
              "Cayenne": {
                "exemplarCity": "קאיין"
              },
              "Cayman": {
                "exemplarCity": "קיימן"
              },
              "Chicago": {
                "exemplarCity": "שיקגו"
              },
              "Chihuahua": {
                "exemplarCity": "צ׳יוואווה"
              },
              "Coral_Harbour": {
                "exemplarCity": "אטיקוקן"
              },
              "Cordoba": {
                "exemplarCity": "קורדובה"
              },
              "Costa_Rica": {
                "exemplarCity": "קוסטה ריקה"
              },
              "Creston": {
                "exemplarCity": "קרסטון"
              },
              "Cuiaba": {
                "exemplarCity": "קויאבה"
              },
              "Curacao": {
                "exemplarCity": "קוראסאו"
              },
              "Danmarkshavn": {
                "exemplarCity": "דנמרקסהוון"
              },
              "Dawson": {
                "exemplarCity": "דוסון"
              },
              "Dawson_Creek": {
                "exemplarCity": "דוסון קריק"
              },
              "Denver": {
                "exemplarCity": "דנוור"
              },
              "Detroit": {
                "exemplarCity": "דטרויט"
              },
              "Dominica": {
                "exemplarCity": "דומיניקה"
              },
              "Edmonton": {
                "exemplarCity": "אדמונטון"
              },
              "Eirunepe": {
                "exemplarCity": "אירונפי"
              },
              "El_Salvador": {
                "exemplarCity": "אל סלבדור"
              },
              "Fort_Nelson": {
                "exemplarCity": "פורט נלסון"
              },
              "Fortaleza": {
                "exemplarCity": "פורטאלזה"
              },
              "Glace_Bay": {
                "exemplarCity": "גלייס ביי"
              },
              "Godthab": {
                "exemplarCity": "נואוק"
              },
              "Goose_Bay": {
                "exemplarCity": "גוס ביי"
              },
              "Grand_Turk": {
                "exemplarCity": "גרנד טורק"
              },
              "Grenada": {
                "exemplarCity": "גרנדה"
              },
              "Guadeloupe": {
                "exemplarCity": "גואדלופ"
              },
              "Guatemala": {
                "exemplarCity": "גואטמלה"
              },
              "Guayaquil": {
                "exemplarCity": "גואיאקיל"
              },
              "Guyana": {
                "exemplarCity": "גיאנה"
              },
              "Halifax": {
                "exemplarCity": "הליפקס"
              },
              "Havana": {
                "exemplarCity": "הוואנה"
              },
              "Hermosillo": {
                "exemplarCity": "הרמוסיו"
              },
              "Indiana": {
                "Vincennes": {
                  "exemplarCity": "וינסנס, אינדיאנה"
                },
                "Petersburg": {
                  "exemplarCity": "פיטרסבורג, אינדיאנה"
                },
                "Tell_City": {
                  "exemplarCity": "טל סיטי, אינדיאנה"
                },
                "Knox": {
                  "exemplarCity": "נוקס, אינדיאנה"
                },
                "Winamac": {
                  "exemplarCity": "וינמאק, אינדיאנה"
                },
                "Marengo": {
                  "exemplarCity": "מרנגו, אינדיאנה"
                },
                "Vevay": {
                  "exemplarCity": "ויוואיי, אינדיאנה"
                }
              },
              "Indianapolis": {
                "exemplarCity": "אינדיאנפוליס"
              },
              "Inuvik": {
                "exemplarCity": "אינוויק"
              },
              "Iqaluit": {
                "exemplarCity": "איקלואיט"
              },
              "Jamaica": {
                "exemplarCity": "ג׳מייקה"
              },
              "Jujuy": {
                "exemplarCity": "חוחוי"
              },
              "Juneau": {
                "exemplarCity": "ג׳ונו"
              },
              "Kentucky": {
                "Monticello": {
                  "exemplarCity": "מונטיצ׳לו, קנטאקי"
                }
              },
              "Kralendijk": {
                "exemplarCity": "קרלנדייק"
              },
              "La_Paz": {
                "exemplarCity": "לה פאס"
              },
              "Lima": {
                "exemplarCity": "לימה"
              },
              "Los_Angeles": {
                "exemplarCity": "לוס אנג׳לס"
              },
              "Louisville": {
                "exemplarCity": "לואיוויל"
              },
              "Lower_Princes": {
                "exemplarCity": "לואוור פרינסס קוורטר"
              },
              "Maceio": {
                "exemplarCity": "מסייאו"
              },
              "Managua": {
                "exemplarCity": "מנגואה"
              },
              "Manaus": {
                "exemplarCity": "מנאוס"
              },
              "Marigot": {
                "exemplarCity": "מריגו"
              },
              "Martinique": {
                "exemplarCity": "מרטיניק"
              },
              "Matamoros": {
                "exemplarCity": "מטמורוס"
              },
              "Mazatlan": {
                "exemplarCity": "מזטלן"
              },
              "Mendoza": {
                "exemplarCity": "מנדוזה"
              },
              "Menominee": {
                "exemplarCity": "מנומיני"
              },
              "Merida": {
                "exemplarCity": "מרידה"
              },
              "Metlakatla": {
                "exemplarCity": "מטלקטלה"
              },
              "Mexico_City": {
                "exemplarCity": "מקסיקו סיטי"
              },
              "Miquelon": {
                "exemplarCity": "מיקלון"
              },
              "Moncton": {
                "exemplarCity": "מונקטון"
              },
              "Monterrey": {
                "exemplarCity": "מונטריי"
              },
              "Montevideo": {
                "exemplarCity": "מונטווידאו"
              },
              "Montserrat": {
                "exemplarCity": "מונסראט"
              },
              "Nassau": {
                "exemplarCity": "נסאו"
              },
              "New_York": {
                "exemplarCity": "ניו יורק"
              },
              "Nipigon": {
                "exemplarCity": "ניפיגון"
              },
              "Nome": {
                "exemplarCity": "נום"
              },
              "Noronha": {
                "exemplarCity": "נורוניה"
              },
              "North_Dakota": {
                "Beulah": {
                  "exemplarCity": "ביולה, צפון דקוטה"
                },
                "New_Salem": {
                  "exemplarCity": "ניו סיילם, צפון דקוטה"
                },
                "Center": {
                  "exemplarCity": "סנטר, צפון דקוטה"
                }
              },
              "Ojinaga": {
                "exemplarCity": "אוג׳ינאגה"
              },
              "Panama": {
                "exemplarCity": "פנמה"
              },
              "Pangnirtung": {
                "exemplarCity": "פנגנירטונג"
              },
              "Paramaribo": {
                "exemplarCity": "פרמריבו"
              },
              "Phoenix": {
                "exemplarCity": "פיניקס"
              },
              "Port-au-Prince": {
                "exemplarCity": "פורט או פראנס"
              },
              "Port_of_Spain": {
                "exemplarCity": "פורט אוף ספיין"
              },
              "Porto_Velho": {
                "exemplarCity": "פורטו וליו"
              },
              "Puerto_Rico": {
                "exemplarCity": "פוארטו ריקו"
              },
              "Rainy_River": {
                "exemplarCity": "רייני ריבר"
              },
              "Rankin_Inlet": {
                "exemplarCity": "רנקין אינלט"
              },
              "Recife": {
                "exemplarCity": "רסיפה"
              },
              "Regina": {
                "exemplarCity": "רג׳ינה"
              },
              "Resolute": {
                "exemplarCity": "רזולוט"
              },
              "Rio_Branco": {
                "exemplarCity": "ריו ברנקו"
              },
              "Santa_Isabel": {
                "exemplarCity": "סנטה איסבל"
              },
              "Santarem": {
                "exemplarCity": "סנטרם"
              },
              "Santiago": {
                "exemplarCity": "סנטיאגו"
              },
              "Santo_Domingo": {
                "exemplarCity": "סנטו דומינגו"
              },
              "Sao_Paulo": {
                "exemplarCity": "סאו פאולו"
              },
              "Scoresbysund": {
                "exemplarCity": "סקורסביסונד"
              },
              "Sitka": {
                "exemplarCity": "סיטקה"
              },
              "St_Barthelemy": {
                "exemplarCity": "סנט ברתלמי"
              },
              "St_Johns": {
                "exemplarCity": "סנט ג׳ונס"
              },
              "St_Kitts": {
                "exemplarCity": "סנט קיטס"
              },
              "St_Lucia": {
                "exemplarCity": "סנט לוסיה"
              },
              "St_Thomas": {
                "exemplarCity": "סנט תומאס"
              },
              "St_Vincent": {
                "exemplarCity": "סנט וינסנט"
              },
              "Swift_Current": {
                "exemplarCity": "סוויפט קרנט"
              },
              "Tegucigalpa": {
                "exemplarCity": "טגוסיגלפה"
              },
              "Thule": {
                "exemplarCity": "תולה"
              },
              "Thunder_Bay": {
                "exemplarCity": "ת׳אנדר ביי"
              },
              "Tijuana": {
                "exemplarCity": "טיחואנה"
              },
              "Toronto": {
                "exemplarCity": "טורונטו"
              },
              "Tortola": {
                "exemplarCity": "טורטולה"
              },
              "Vancouver": {
                "exemplarCity": "ונקובר"
              },
              "Whitehorse": {
                "exemplarCity": "ווייטהורס"
              },
              "Winnipeg": {
                "exemplarCity": "וויניפג"
              },
              "Yakutat": {
                "exemplarCity": "יקוטאט"
              },
              "Yellowknife": {
                "exemplarCity": "ילונייף"
              }
            },
            "Atlantic": {
              "Azores": {
                "exemplarCity": "האיים האזוריים"
              },
              "Bermuda": {
                "exemplarCity": "ברמודה"
              },
              "Canary": {
                "exemplarCity": "האיים הקנריים"
              },
              "Cape_Verde": {
                "exemplarCity": "כף ורדה"
              },
              "Faeroe": {
                "exemplarCity": "פארו"
              },
              "Madeira": {
                "exemplarCity": "מדיירה"
              },
              "Reykjavik": {
                "exemplarCity": "רייקיאוויק"
              },
              "South_Georgia": {
                "exemplarCity": "דרום ג׳ורג׳יה"
              },
              "St_Helena": {
                "exemplarCity": "סנט הלנה"
              },
              "Stanley": {
                "exemplarCity": "סטנלי"
              }
            },
            "Europe": {
              "Amsterdam": {
                "exemplarCity": "אמסטרדם"
              },
              "Andorra": {
                "exemplarCity": "אנדורה"
              },
              "Astrakhan": {
                "exemplarCity": "אסטרחן"
              },
              "Athens": {
                "exemplarCity": "אתונה"
              },
              "Belgrade": {
                "exemplarCity": "בלגרד"
              },
              "Berlin": {
                "exemplarCity": "ברלין"
              },
              "Bratislava": {
                "exemplarCity": "ברטיסלבה"
              },
              "Brussels": {
                "exemplarCity": "בריסל"
              },
              "Bucharest": {
                "exemplarCity": "בוקרשט"
              },
              "Budapest": {
                "exemplarCity": "בודפשט"
              },
              "Busingen": {
                "exemplarCity": "ביזינגן"
              },
              "Chisinau": {
                "exemplarCity": "קישינב"
              },
              "Copenhagen": {
                "exemplarCity": "קופנהגן"
              },
              "Dublin": {
                "long": {
                  "daylight": "שעון קיץ אירלנד"
                },
                "exemplarCity": "דבלין"
              },
              "Gibraltar": {
                "exemplarCity": "גיברלטר"
              },
              "Guernsey": {
                "exemplarCity": "גרנזי"
              },
              "Helsinki": {
                "exemplarCity": "הלסינקי"
              },
              "Isle_of_Man": {
                "exemplarCity": "האי מאן"
              },
              "Istanbul": {
                "exemplarCity": "איסטנבול"
              },
              "Jersey": {
                "exemplarCity": "ג׳רזי"
              },
              "Kaliningrad": {
                "exemplarCity": "קלינינגרד"
              },
              "Kiev": {
                "exemplarCity": "קייב"
              },
              "Kirov": {
                "exemplarCity": "קירוב"
              },
              "Lisbon": {
                "exemplarCity": "ליסבון"
              },
              "Ljubljana": {
                "exemplarCity": "לובליאנה"
              },
              "London": {
                "long": {
                  "daylight": "שעון קיץ בריטניה"
                },
                "exemplarCity": "לונדון"
              },
              "Luxembourg": {
                "exemplarCity": "לוקסמבורג"
              },
              "Madrid": {
                "exemplarCity": "מדריד"
              },
              "Malta": {
                "exemplarCity": "מלטה"
              },
              "Mariehamn": {
                "exemplarCity": "מרייהאמן"
              },
              "Minsk": {
                "exemplarCity": "מינסק"
              },
              "Monaco": {
                "exemplarCity": "מונקו"
              },
              "Moscow": {
                "exemplarCity": "מוסקבה"
              },
              "Oslo": {
                "exemplarCity": "אוסלו"
              },
              "Paris": {
                "exemplarCity": "פריז"
              },
              "Podgorica": {
                "exemplarCity": "פודגוריצה"
              },
              "Prague": {
                "exemplarCity": "פראג"
              },
              "Riga": {
                "exemplarCity": "ריגה"
              },
              "Rome": {
                "exemplarCity": "רומא"
              },
              "Samara": {
                "exemplarCity": "סמרה"
              },
              "San_Marino": {
                "exemplarCity": "סן מרינו"
              },
              "Sarajevo": {
                "exemplarCity": "סרייבו"
              },
              "Simferopol": {
                "exemplarCity": "סימפרופול"
              },
              "Skopje": {
                "exemplarCity": "סקופיה"
              },
              "Sofia": {
                "exemplarCity": "סופיה"
              },
              "Stockholm": {
                "exemplarCity": "שטוקהולם"
              },
              "Tallinn": {
                "exemplarCity": "טאלין"
              },
              "Tirane": {
                "exemplarCity": "טירנה"
              },
              "Ulyanovsk": {
                "exemplarCity": "אוליאנובסק"
              },
              "Uzhgorod": {
                "exemplarCity": "אוז׳הורוד"
              },
              "Vaduz": {
                "exemplarCity": "ואדוץ"
              },
              "Vatican": {
                "exemplarCity": "הוותיקן"
              },
              "Vienna": {
                "exemplarCity": "וינה"
              },
              "Vilnius": {
                "exemplarCity": "וילנה"
              },
              "Volgograd": {
                "exemplarCity": "וולגוגרד"
              },
              "Warsaw": {
                "exemplarCity": "ורשה"
              },
              "Zagreb": {
                "exemplarCity": "זאגרב"
              },
              "Zaporozhye": {
                "exemplarCity": "זפורוז׳יה"
              },
              "Zurich": {
                "exemplarCity": "ציריך"
              }
            },
            "Africa": {
              "Abidjan": {
                "exemplarCity": "אביג׳אן"
              },
              "Accra": {
                "exemplarCity": "אקרה"
              },
              "Addis_Ababa": {
                "exemplarCity": "אדיס אבבה"
              },
              "Algiers": {
                "exemplarCity": "אלג׳יר"
              },
              "Asmera": {
                "exemplarCity": "אסמרה"
              },
              "Bamako": {
                "exemplarCity": "במאקו"
              },
              "Bangui": {
                "exemplarCity": "בנגואי"
              },
              "Banjul": {
                "exemplarCity": "בנג׳ול"
              },
              "Bissau": {
                "exemplarCity": "ביסאו"
              },
              "Blantyre": {
                "exemplarCity": "בלנטיר"
              },
              "Brazzaville": {
                "exemplarCity": "ברזוויל"
              },
              "Bujumbura": {
                "exemplarCity": "בוג׳ומבורה"
              },
              "Cairo": {
                "exemplarCity": "קהיר"
              },
              "Casablanca": {
                "exemplarCity": "קזבלנקה"
              },
              "Ceuta": {
                "exemplarCity": "סאוטה"
              },
              "Conakry": {
                "exemplarCity": "קונאקרי"
              },
              "Dakar": {
                "exemplarCity": "דקאר"
              },
              "Dar_es_Salaam": {
                "exemplarCity": "דאר א-סלאם"
              },
              "Djibouti": {
                "exemplarCity": "ג׳יבוטי"
              },
              "Douala": {
                "exemplarCity": "דואלה"
              },
              "El_Aaiun": {
                "exemplarCity": "אל עיון"
              },
              "Freetown": {
                "exemplarCity": "פריטאון"
              },
              "Gaborone": {
                "exemplarCity": "גבורונה"
              },
              "Harare": {
                "exemplarCity": "הרארה"
              },
              "Johannesburg": {
                "exemplarCity": "יוהנסבורג"
              },
              "Juba": {
                "exemplarCity": "ג׳ובה"
              },
              "Kampala": {
                "exemplarCity": "קמפאלה"
              },
              "Khartoum": {
                "exemplarCity": "חרטום"
              },
              "Kigali": {
                "exemplarCity": "קיגלי"
              },
              "Kinshasa": {
                "exemplarCity": "קינשסה"
              },
              "Lagos": {
                "exemplarCity": "לגוס"
              },
              "Libreville": {
                "exemplarCity": "ליברוויל"
              },
              "Lome": {
                "exemplarCity": "לומה"
              },
              "Luanda": {
                "exemplarCity": "לואנדה"
              },
              "Lubumbashi": {
                "exemplarCity": "לובומבאשי"
              },
              "Lusaka": {
                "exemplarCity": "לוסקה"
              },
              "Malabo": {
                "exemplarCity": "מלבו"
              },
              "Maputo": {
                "exemplarCity": "מאפוטו"
              },
              "Maseru": {
                "exemplarCity": "מסרו"
              },
              "Mbabane": {
                "exemplarCity": "אמבאבאנה"
              },
              "Mogadishu": {
                "exemplarCity": "מוגדישו"
              },
              "Monrovia": {
                "exemplarCity": "מונרוביה"
              },
              "Nairobi": {
                "exemplarCity": "ניירובי"
              },
              "Ndjamena": {
                "exemplarCity": "נג׳מנה"
              },
              "Niamey": {
                "exemplarCity": "ניאמיי"
              },
              "Nouakchott": {
                "exemplarCity": "נואקצ׳וט"
              },
              "Ouagadougou": {
                "exemplarCity": "וואגאדוגו"
              },
              "Porto-Novo": {
                "exemplarCity": "פורטו נובו"
              },
              "Sao_Tome": {
                "exemplarCity": "סאו טומה"
              },
              "Tripoli": {
                "exemplarCity": "טריפולי"
              },
              "Tunis": {
                "exemplarCity": "תוניס"
              },
              "Windhoek": {
                "exemplarCity": "וינדהוק"
              }
            },
            "Asia": {
              "Aden": {
                "exemplarCity": "עדן"
              },
              "Almaty": {
                "exemplarCity": "אלמאטי"
              },
              "Amman": {
                "exemplarCity": "עמאן"
              },
              "Anadyr": {
                "exemplarCity": "אנדיר"
              },
              "Aqtau": {
                "exemplarCity": "אקטאו"
              },
              "Aqtobe": {
                "exemplarCity": "אקטובה"
              },
              "Ashgabat": {
                "exemplarCity": "אשגבט"
              },
              "Baghdad": {
                "exemplarCity": "בגדד"
              },
              "Bahrain": {
                "exemplarCity": "בחריין"
              },
              "Baku": {
                "exemplarCity": "באקו"
              },
              "Bangkok": {
                "exemplarCity": "בנגקוק"
              },
              "Barnaul": {
                "exemplarCity": "ברנאול"
              },
              "Beirut": {
                "exemplarCity": "ביירות"
              },
              "Bishkek": {
                "exemplarCity": "בישקק"
              },
              "Brunei": {
                "exemplarCity": "ברוניי"
              },
              "Calcutta": {
                "exemplarCity": "קולקטה"
              },
              "Chita": {
                "exemplarCity": "צ׳יטה"
              },
              "Choibalsan": {
                "exemplarCity": "צ׳ויבלסן"
              },
              "Colombo": {
                "exemplarCity": "קולומבו"
              },
              "Damascus": {
                "exemplarCity": "דמשק"
              },
              "Dhaka": {
                "exemplarCity": "דאקה"
              },
              "Dili": {
                "exemplarCity": "דילי"
              },
              "Dubai": {
                "exemplarCity": "דובאי"
              },
              "Dushanbe": {
                "exemplarCity": "דושנבה"
              },
              "Gaza": {
                "exemplarCity": "עזה"
              },
              "Hebron": {
                "exemplarCity": "חברון"
              },
              "Hong_Kong": {
                "exemplarCity": "הונג קונג"
              },
              "Hovd": {
                "exemplarCity": "חובד"
              },
              "Irkutsk": {
                "exemplarCity": "אירקוטסק"
              },
              "Jakarta": {
                "exemplarCity": "ג׳קרטה"
              },
              "Jayapura": {
                "exemplarCity": "ג׳איאפורה"
              },
              "Jerusalem": {
                "exemplarCity": "ירושלים"
              },
              "Kabul": {
                "exemplarCity": "קאבול"
              },
              "Kamchatka": {
                "exemplarCity": "קמצ׳טקה"
              },
              "Karachi": {
                "exemplarCity": "קראצ׳י"
              },
              "Katmandu": {
                "exemplarCity": "קטמנדו"
              },
              "Khandyga": {
                "exemplarCity": "חנדיגה"
              },
              "Krasnoyarsk": {
                "exemplarCity": "קרסנויארסק"
              },
              "Kuala_Lumpur": {
                "exemplarCity": "קואלה לומפור"
              },
              "Kuching": {
                "exemplarCity": "קוצ׳ינג"
              },
              "Kuwait": {
                "exemplarCity": "כווית"
              },
              "Macau": {
                "exemplarCity": "מקאו"
              },
              "Magadan": {
                "exemplarCity": "מגדן"
              },
              "Makassar": {
                "exemplarCity": "מאקאסאר"
              },
              "Manila": {
                "exemplarCity": "מנילה"
              },
              "Muscat": {
                "exemplarCity": "מוסקט"
              },
              "Nicosia": {
                "exemplarCity": "ניקוסיה"
              },
              "Novokuznetsk": {
                "exemplarCity": "נובוקוזנטסק"
              },
              "Novosibirsk": {
                "exemplarCity": "נובוסיבירסק"
              },
              "Omsk": {
                "exemplarCity": "אומסק"
              },
              "Oral": {
                "exemplarCity": "אורל"
              },
              "Phnom_Penh": {
                "exemplarCity": "פנום פן"
              },
              "Pontianak": {
                "exemplarCity": "פונטיאנק"
              },
              "Pyongyang": {
                "exemplarCity": "פיונגיאנג"
              },
              "Qatar": {
                "exemplarCity": "קטאר"
              },
              "Qyzylorda": {
                "exemplarCity": "קיזילורדה"
              },
              "Rangoon": {
                "exemplarCity": "רנגון"
              },
              "Riyadh": {
                "exemplarCity": "ריאד"
              },
              "Saigon": {
                "exemplarCity": "הו צ׳י מין סיטי"
              },
              "Sakhalin": {
                "exemplarCity": "סחלין"
              },
              "Samarkand": {
                "exemplarCity": "סמרקנד"
              },
              "Seoul": {
                "exemplarCity": "סיאול"
              },
              "Shanghai": {
                "exemplarCity": "שנחאי"
              },
              "Singapore": {
                "exemplarCity": "סינגפור"
              },
              "Srednekolymsk": {
                "exemplarCity": "סרדנייקולימסק"
              },
              "Taipei": {
                "exemplarCity": "טאיפיי"
              },
              "Tashkent": {
                "exemplarCity": "טשקנט"
              },
              "Tbilisi": {
                "exemplarCity": "טביליסי"
              },
              "Tehran": {
                "exemplarCity": "טהרן"
              },
              "Thimphu": {
                "exemplarCity": "טהימפהו"
              },
              "Tokyo": {
                "exemplarCity": "טוקיו"
              },
              "Tomsk": {
                "exemplarCity": "טומסק"
              },
              "Ulaanbaatar": {
                "exemplarCity": "אולאאנבטאר"
              },
              "Urumqi": {
                "exemplarCity": "אורומקי"
              },
              "Ust-Nera": {
                "exemplarCity": "אוסט-נרה"
              },
              "Vientiane": {
                "exemplarCity": "האנוי"
              },
              "Vladivostok": {
                "exemplarCity": "ולדיווסטוק"
              },
              "Yakutsk": {
                "exemplarCity": "יקוטסק"
              },
              "Yekaterinburg": {
                "exemplarCity": "יקטרינבורג"
              },
              "Yerevan": {
                "exemplarCity": "ירוואן"
              }
            },
            "Indian": {
              "Antananarivo": {
                "exemplarCity": "אנטננריבו"
              },
              "Chagos": {
                "exemplarCity": "צ׳אגוס"
              },
              "Christmas": {
                "exemplarCity": "האי כריסטמס"
              },
              "Cocos": {
                "exemplarCity": "קוקוס"
              },
              "Comoro": {
                "exemplarCity": "קומורו"
              },
              "Kerguelen": {
                "exemplarCity": "קרגוולן"
              },
              "Mahe": {
                "exemplarCity": "מהא"
              },
              "Maldives": {
                "exemplarCity": "האיים המלדיביים"
              },
              "Mauritius": {
                "exemplarCity": "מאוריציוס"
              },
              "Mayotte": {
                "exemplarCity": "מאיוט"
              },
              "Reunion": {
                "exemplarCity": "ראוניון"
              }
            },
            "Australia": {
              "Adelaide": {
                "exemplarCity": "אדלייד"
              },
              "Brisbane": {
                "exemplarCity": "בריסביין"
              },
              "Broken_Hill": {
                "exemplarCity": "ברוקן היל"
              },
              "Currie": {
                "exemplarCity": "קרי"
              },
              "Darwin": {
                "exemplarCity": "דרווין"
              },
              "Eucla": {
                "exemplarCity": "יוקלה"
              },
              "Hobart": {
                "exemplarCity": "הוברט"
              },
              "Lindeman": {
                "exemplarCity": "לינדמן"
              },
              "Lord_Howe": {
                "exemplarCity": "אי הלורד האו"
              },
              "Melbourne": {
                "exemplarCity": "מלבורן"
              },
              "Perth": {
                "exemplarCity": "פרת׳"
              },
              "Sydney": {
                "exemplarCity": "סידני"
              }
            },
            "Pacific": {
              "Apia": {
                "exemplarCity": "אפיה"
              },
              "Auckland": {
                "exemplarCity": "אוקלנד"
              },
              "Bougainville": {
                "exemplarCity": "בוגנוויל"
              },
              "Chatham": {
                "exemplarCity": "צ׳אטהאם"
              },
              "Easter": {
                "exemplarCity": "אי הפסחא"
              },
              "Efate": {
                "exemplarCity": "אפטה"
              },
              "Enderbury": {
                "exemplarCity": "אנדרבורי"
              },
              "Fakaofo": {
                "exemplarCity": "פקאופו"
              },
              "Fiji": {
                "exemplarCity": "פיג׳י"
              },
              "Funafuti": {
                "exemplarCity": "פונפוטי"
              },
              "Galapagos": {
                "exemplarCity": "גלפאגוס"
              },
              "Gambier": {
                "exemplarCity": "איי גמבייה"
              },
              "Guadalcanal": {
                "exemplarCity": "גוודלקנאל"
              },
              "Guam": {
                "exemplarCity": "גואם"
              },
              "Honolulu": {
                "exemplarCity": "הונולולו"
              },
              "Johnston": {
                "exemplarCity": "ג׳ונסטון"
              },
              "Kiritimati": {
                "exemplarCity": "קיריטימאטי"
              },
              "Kosrae": {
                "exemplarCity": "קוסרה"
              },
              "Kwajalein": {
                "exemplarCity": "קוואג׳ליין"
              },
              "Majuro": {
                "exemplarCity": "מאג׳ורו"
              },
              "Marquesas": {
                "exemplarCity": "איי מרקיז"
              },
              "Midway": {
                "exemplarCity": "מידוויי"
              },
              "Nauru": {
                "exemplarCity": "נאורו"
              },
              "Niue": {
                "exemplarCity": "ניואה"
              },
              "Norfolk": {
                "exemplarCity": "נורפוק"
              },
              "Noumea": {
                "exemplarCity": "נומאה"
              },
              "Pago_Pago": {
                "exemplarCity": "פאגו פאגו"
              },
              "Palau": {
                "exemplarCity": "פלאו"
              },
              "Pitcairn": {
                "exemplarCity": "פיטקרן"
              },
              "Ponape": {
                "exemplarCity": "פונפיי"
              },
              "Port_Moresby": {
                "exemplarCity": "פורט מורסבי"
              },
              "Rarotonga": {
                "exemplarCity": "רארוטונגה"
              },
              "Saipan": {
                "exemplarCity": "סאיפאן"
              },
              "Tahiti": {
                "exemplarCity": "טהיטי"
              },
              "Tarawa": {
                "exemplarCity": "טאראווה"
              },
              "Tongatapu": {
                "exemplarCity": "טונגטאפו"
              },
              "Truk": {
                "exemplarCity": "צ׳וק"
              },
              "Wake": {
                "exemplarCity": "וייק"
              },
              "Wallis": {
                "exemplarCity": "ווליס"
              }
            },
            "Arctic": {
              "Longyearbyen": {
                "exemplarCity": "לונגיירבין"
              }
            },
            "Antarctica": {
              "Casey": {
                "exemplarCity": "קאסיי"
              },
              "Davis": {
                "exemplarCity": "דיוויס"
              },
              "DumontDUrville": {
                "exemplarCity": "דומון ד׳אורוויל"
              },
              "Macquarie": {
                "exemplarCity": "מקרי"
              },
              "Mawson": {
                "exemplarCity": "מוסון"
              },
              "McMurdo": {
                "exemplarCity": "מק-מרדו"
              },
              "Palmer": {
                "exemplarCity": "פאלמר"
              },
              "Rothera": {
                "exemplarCity": "רות׳רה"
              },
              "Syowa": {
                "exemplarCity": "סיוואה"
              },
              "Troll": {
                "exemplarCity": "טרול"
              },
              "Vostok": {
                "exemplarCity": "ווסטוק"
              }
            },
            "Etc": {
              "GMT": {
                "exemplarCity": "GMT"
              },
              "GMT1": {
                "exemplarCity": "GMT+1"
              },
              "GMT10": {
                "exemplarCity": "GMT+10"
              },
              "GMT11": {
                "exemplarCity": "GMT+11"
              },
              "GMT12": {
                "exemplarCity": "GMT+12"
              },
              "GMT2": {
                "exemplarCity": "GMT+2"
              },
              "GMT3": {
                "exemplarCity": "GMT+3"
              },
              "GMT4": {
                "exemplarCity": "GMT+4"
              },
              "GMT5": {
                "exemplarCity": "GMT+5"
              },
              "GMT6": {
                "exemplarCity": "GMT+6"
              },
              "GMT7": {
                "exemplarCity": "GMT+7"
              },
              "GMT8": {
                "exemplarCity": "GMT+8"
              },
              "GMT9": {
                "exemplarCity": "GMT+9"
              },
              "GMT-1": {
                "exemplarCity": "GMT-1"
              },
              "GMT-10": {
                "exemplarCity": "GMT-10"
              },
              "GMT-11": {
                "exemplarCity": "GMT-11"
              },
              "GMT-12": {
                "exemplarCity": "GMT-12"
              },
              "GMT-13": {
                "exemplarCity": "GMT-13"
              },
              "GMT-14": {
                "exemplarCity": "GMT-14"
              },
              "GMT-2": {
                "exemplarCity": "GMT-2"
              },
              "GMT-3": {
                "exemplarCity": "GMT-3"
              },
              "GMT-4": {
                "exemplarCity": "GMT-4"
              },
              "GMT-5": {
                "exemplarCity": "GMT-5"
              },
              "GMT-6": {
                "exemplarCity": "GMT-6"
              },
              "GMT-7": {
                "exemplarCity": "GMT-7"
              },
              "GMT-8": {
                "exemplarCity": "GMT-8"
              },
              "GMT-9": {
                "exemplarCity": "GMT-9"
              },
              "UTC": {
                "long": {
                  "standard": "זמן אוניברסלי מתואם"
                },
                "short": {
                  "standard": "UTC"
                },
                "exemplarCity": "UTC"
              },
              "Unknown": {
                "exemplarCity": "עיר לא ידועה"
              }
            }
          },
          "metazone": {
            "Afghanistan": {
              "long": {
                "standard": "שעון אפגניסטן"
              }
            },
            "Africa_Central": {
              "long": {
                "standard": "שעון מרכז אפריקה"
              }
            },
            "Africa_Eastern": {
              "long": {
                "standard": "שעון מזרח אפריקה"
              }
            },
            "Africa_Southern": {
              "long": {
                "standard": "שעון דרום אפריקה"
              }
            },
            "Africa_Western": {
              "long": {
                "generic": "שעון מערב אפריקה",
                "standard": "שעון מערב אפריקה (חורף)",
                "daylight": "שעון מערב אפריקה (קיץ)"
              }
            },
            "Alaska": {
              "long": {
                "generic": "שעון אלסקה",
                "standard": "שעון אלסקה (חורף)",
                "daylight": "שעון אלסקה (קיץ)"
              }
            },
            "Amazon": {
              "long": {
                "generic": "שעון אמזונס",
                "standard": "שעון אמזונס (חורף)",
                "daylight": "שעון אמזונס (קיץ)"
              }
            },
            "America_Central": {
              "long": {
                "generic": "שעון מרכז ארה״ב",
                "standard": "שעון מרכז ארה״ב (חורף)",
                "daylight": "שעון מרכז ארה״ב (קיץ)"
              }
            },
            "America_Eastern": {
              "long": {
                "generic": "שעון החוף המזרחי",
                "standard": "שעון החוף המזרחי (חורף)",
                "daylight": "שעון החוף המזרחי (קיץ)"
              }
            },
            "America_Mountain": {
              "long": {
                "generic": "שעון אזור ההרים בארה״ב",
                "standard": "שעון אזור ההרים בארה״ב (חורף)",
                "daylight": "שעון אזור ההרים בארה״ב (קיץ)"
              }
            },
            "America_Pacific": {
              "long": {
                "generic": "שעון מערב ארה״ב",
                "standard": "שעון מערב ארה״ב (חורף)",
                "daylight": "שעון מערב ארה״ב (קיץ)"
              }
            },
            "Anadyr": {
              "long": {
                "generic": "שעון אנדיר",
                "standard": "שעון רגיל אנדיר",
                "daylight": "שעון קיץ אנדיר"
              }
            },
            "Apia": {
              "long": {
                "generic": "שעון אפיה",
                "standard": "שעון אפיה (חורף)",
                "daylight": "שעון אפיה (קיץ)"
              }
            },
            "Arabian": {
              "long": {
                "generic": "שעון חצי האי ערב",
                "standard": "שעון חצי האי ערב (חורף)",
                "daylight": "שעון חצי האי ערב (קיץ)"
              }
            },
            "Argentina": {
              "long": {
                "generic": "שעון ארגנטינה",
                "standard": "שעון ארגנטינה (חורף)",
                "daylight": "שעון ארגנטינה (קיץ)"
              }
            },
            "Argentina_Western": {
              "long": {
                "generic": "שעון מערב ארגנטינה",
                "standard": "שעון מערב ארגנטינה (חורף)",
                "daylight": "שעון מערב ארגנטינה (קיץ)"
              }
            },
            "Armenia": {
              "long": {
                "generic": "שעון ארמניה",
                "standard": "שעון ארמניה (חורף)",
                "daylight": "שעון ארמניה (קיץ)"
              }
            },
            "Atlantic": {
              "long": {
                "generic": "שעון האוקיינוס האטלנטי",
                "standard": "שעון האוקיינוס האטלנטי (חורף)",
                "daylight": "שעון האוקיינוס האטלנטי (קיץ)"
              }
            },
            "Australia_Central": {
              "long": {
                "generic": "שעון מרכז אוסטרליה",
                "standard": "שעון מרכז אוסטרליה (חורף)",
                "daylight": "שעון מרכז אוסטרליה (קיץ)"
              }
            },
            "Australia_CentralWestern": {
              "long": {
                "generic": "שעון מרכז-מערב אוסטרליה",
                "standard": "שעון מרכז-מערב אוסטרליה (חורף)",
                "daylight": "שעון מרכז-מערב אוסטרליה (קיץ)"
              }
            },
            "Australia_Eastern": {
              "long": {
                "generic": "שעון מזרח אוסטרליה",
                "standard": "שעון מזרח אוסטרליה (חורף)",
                "daylight": "שעון מזרח אוסטרליה (קיץ)"
              }
            },
            "Australia_Western": {
              "long": {
                "generic": "שעון מערב אוסטרליה",
                "standard": "שעון מערב אוסטרליה (חורף)",
                "daylight": "שעון מערב אוסטרליה (קיץ)"
              }
            },
            "Azerbaijan": {
              "long": {
                "generic": "שעון אזרבייג׳אן",
                "standard": "שעון אזרבייג׳אן (חורף)",
                "daylight": "שעון אזרבייג׳אן (קיץ)"
              }
            },
            "Azores": {
              "long": {
                "generic": "שעון האיים האזוריים",
                "standard": "שעון האיים האזוריים (חורף)",
                "daylight": "שעון האיים האזוריים (קיץ)"
              }
            },
            "Bangladesh": {
              "long": {
                "generic": "שעון בנגלדש",
                "standard": "שעון בנגלדש (חורף)",
                "daylight": "שעון בנגלדש (קיץ)"
              }
            },
            "Bhutan": {
              "long": {
                "standard": "שעון בהוטן"
              }
            },
            "Bolivia": {
              "long": {
                "standard": "שעון בוליביה"
              }
            },
            "Brasilia": {
              "long": {
                "generic": "שעון ברזיליה",
                "standard": "שעון ברזיליה (חורף)",
                "daylight": "שעון ברזיליה (קיץ)"
              }
            },
            "Brunei": {
              "long": {
                "standard": "שעון ברוניי דארוסלאם"
              }
            },
            "Cape_Verde": {
              "long": {
                "generic": "שעון כף ורדה",
                "standard": "שעון כף ורדה (חורף)",
                "daylight": "שעון כף ורדה (קיץ)"
              }
            },
            "Chamorro": {
              "long": {
                "standard": "שעון צ׳אמורו"
              }
            },
            "Chatham": {
              "long": {
                "generic": "שעון צ׳טהאם",
                "standard": "שעון צ׳טהאם (חורף)",
                "daylight": "שעון צ׳טהאם (קיץ)"
              }
            },
            "Chile": {
              "long": {
                "generic": "שעון צ׳ילה",
                "standard": "שעון צ׳ילה (חורף)",
                "daylight": "שעון צ׳ילה (קיץ)"
              }
            },
            "China": {
              "long": {
                "generic": "שעון סין",
                "standard": "שעון סין (חורף)",
                "daylight": "שעון סין (קיץ)"
              }
            },
            "Choibalsan": {
              "long": {
                "generic": "שעון צ׳ויבלסן",
                "standard": "שעון צ׳ויבלסן (חורף)",
                "daylight": "שעון צ׳ויבלסן (קיץ)"
              }
            },
            "Christmas": {
              "long": {
                "standard": "שעון האי כריסטמס"
              }
            },
            "Cocos": {
              "long": {
                "standard": "שעון איי קוקוס"
              }
            },
            "Colombia": {
              "long": {
                "generic": "שעון קולומביה",
                "standard": "שעון קולומביה (חורף)",
                "daylight": "שעון קולומביה (קיץ)"
              }
            },
            "Cook": {
              "long": {
                "generic": "שעון איי קוק",
                "standard": "שעון איי קוק (חורף)",
                "daylight": "שעון איי קוק (מחצית הקיץ)"
              }
            },
            "Cuba": {
              "long": {
                "generic": "שעון קובה",
                "standard": "שעון קובה (חורף)",
                "daylight": "שעון קובה (קיץ)"
              }
            },
            "Davis": {
              "long": {
                "standard": "שעון דיוויס"
              }
            },
            "DumontDUrville": {
              "long": {
                "standard": "שעון דומון ד׳אורוויל"
              }
            },
            "East_Timor": {
              "long": {
                "standard": "שעון מזרח טימור"
              }
            },
            "Easter": {
              "long": {
                "generic": "שעון אי הפסחא",
                "standard": "שעון אי הפסחא (חורף)",
                "daylight": "שעון אי הפסחא (קיץ)"
              }
            },
            "Ecuador": {
              "long": {
                "standard": "שעון אקוודור"
              }
            },
            "Europe_Central": {
              "long": {
                "generic": "שעון מרכז אירופה",
                "standard": "שעון מרכז אירופה (חורף)",
                "daylight": "שעון מרכז אירופה (קיץ)"
              }
            },
            "Europe_Eastern": {
              "long": {
                "generic": "שעון מזרח אירופה",
                "standard": "שעון מזרח אירופה (חורף)",
                "daylight": "שעון מזרח אירופה (קיץ)"
              }
            },
            "Europe_Further_Eastern": {
              "long": {
                "standard": "שעון מינסק"
              }
            },
            "Europe_Western": {
              "long": {
                "generic": "שעון מערב אירופה",
                "standard": "שעון מערב אירופה (חורף)",
                "daylight": "שעון מערב אירופה (קיץ)"
              }
            },
            "Falkland": {
              "long": {
                "generic": "שעון איי פוקלנד",
                "standard": "שעון איי פוקלנד (חורף)",
                "daylight": "שעון איי פוקלנד (קיץ)"
              }
            },
            "Fiji": {
              "long": {
                "generic": "שעון פיג׳י",
                "standard": "שעון פיג׳י (חורף)",
                "daylight": "שעון פיג׳י (קיץ)"
              }
            },
            "French_Guiana": {
              "long": {
                "standard": "שעון גיאנה הצרפתית"
              }
            },
            "French_Southern": {
              "long": {
                "standard": "שעון הארצות הדרומיות והאנטארקטיות של צרפת"
              }
            },
            "Galapagos": {
              "long": {
                "standard": "שעון איי גלאפגוס"
              }
            },
            "Gambier": {
              "long": {
                "standard": "שעון איי גמבייה"
              }
            },
            "Georgia": {
              "long": {
                "generic": "שעון גאורגיה",
                "standard": "שעון גאורגיה (חורף)",
                "daylight": "שעון גאורגיה (קיץ)"
              }
            },
            "Gilbert_Islands": {
              "long": {
                "standard": "שעון איי גילברט"
              }
            },
            "GMT": {
              "long": {
                "standard": "שעון גריניץ׳‏"
              }
            },
            "Greenland_Eastern": {
              "long": {
                "generic": "שעון מזרח גרינלנד",
                "standard": "שעון מזרח גרינלנד (חורף)",
                "daylight": "שעון מזרח גרינלנד (קיץ)"
              }
            },
            "Greenland_Western": {
              "long": {
                "generic": "שעון מערב גרינלנד",
                "standard": "שעון מערב גרינלנד (חורף)",
                "daylight": "שעון מערב גרינלנד (קיץ)"
              }
            },
            "Gulf": {
              "long": {
                "standard": "שעון מדינות המפרץ"
              }
            },
            "Guyana": {
              "long": {
                "standard": "שעון גיאנה"
              }
            },
            "Hawaii_Aleutian": {
              "long": {
                "generic": "שעון האיים האלאוטיים הוואי",
                "standard": "שעון האיים האלאוטיים הוואי (חורף)",
                "daylight": "שעון האיים האלאוטיים הוואי (קיץ)"
              }
            },
            "Hong_Kong": {
              "long": {
                "generic": "שעון הונג קונג",
                "standard": "שעון הונג קונג (חורף)",
                "daylight": "שעון הונג קונג (קיץ)"
              }
            },
            "Hovd": {
              "long": {
                "generic": "שעון חובד",
                "standard": "שעון חובד (חורף)",
                "daylight": "שעון חובד (קיץ)"
              }
            },
            "India": {
              "long": {
                "standard": "שעון הודו"
              }
            },
            "Indian_Ocean": {
              "long": {
                "standard": "שעון האוקיינוס ההודי"
              }
            },
            "Indochina": {
              "long": {
                "standard": "שעון הודו-סין"
              }
            },
            "Indonesia_Central": {
              "long": {
                "standard": "שעון מרכז אינדונזיה"
              }
            },
            "Indonesia_Eastern": {
              "long": {
                "standard": "שעון מזרח אינדונזיה"
              }
            },
            "Indonesia_Western": {
              "long": {
                "standard": "שעון מערב אינדונזיה"
              }
            },
            "Iran": {
              "long": {
                "generic": "שעון איראן",
                "standard": "שעון איראן (חורף)",
                "daylight": "שעון איראן (קיץ)"
              }
            },
            "Irkutsk": {
              "long": {
                "generic": "שעון אירקוטסק",
                "standard": "שעון אירקוטסק (חורף)",
                "daylight": "שעון אירקוסטק (קיץ)"
              }
            },
            "Israel": {
              "long": {
                "generic": "שעון ישראל",
                "standard": "שעון ישראל (חורף)",
                "daylight": "שעון ישראל (קיץ)"
              }
            },
            "Japan": {
              "long": {
                "generic": "שעון יפן",
                "standard": "שעון יפן (חורף)",
                "daylight": "שעון יפן (קיץ)"
              }
            },
            "Kamchatka": {
              "long": {
                "generic": "שעון פטרופבלובסק-קמצ׳טסקי",
                "standard": "שעון רגיל פטרופבלובסק-קמצ׳טסקי",
                "daylight": "שעון קיץ פטרופבלובסק-קמצ׳טסקי"
              }
            },
            "Kazakhstan_Eastern": {
              "long": {
                "standard": "שעון מזרח קזחסטן"
              }
            },
            "Kazakhstan_Western": {
              "long": {
                "standard": "שעון מערב קזחסטן"
              }
            },
            "Korea": {
              "long": {
                "generic": "שעון קוריאה",
                "standard": "שעון קוריאה (חורף)",
                "daylight": "שעון קוריאה (קיץ)"
              }
            },
            "Kosrae": {
              "long": {
                "standard": "שעון קוסראה"
              }
            },
            "Krasnoyarsk": {
              "long": {
                "generic": "שעון קרסנויארסק",
                "standard": "שעון קרסנויארסק (חורף)",
                "daylight": "שעון קרסנויארסק (קיץ)"
              }
            },
            "Kyrgystan": {
              "long": {
                "standard": "שעון קירגיזסטן"
              }
            },
            "Line_Islands": {
              "long": {
                "standard": "שעון איי ליין"
              }
            },
            "Lord_Howe": {
              "long": {
                "generic": "שעון אי הלורד האו",
                "standard": "שעון אי הלורד האו (חורף)",
                "daylight": "שעון אי הלורד האו (קיץ)"
              }
            },
            "Macau": {
              "long": {
                "generic": "שעון מקאו",
                "standard": "שעון חורף מקאו",
                "daylight": "שעון קיץ מקאו"
              }
            },
            "Macquarie": {
              "long": {
                "standard": "שעון מקווארי"
              }
            },
            "Magadan": {
              "long": {
                "generic": "שעון מגדן",
                "standard": "שעון מגדן (חורף)",
                "daylight": "שעון מגדן (קיץ)"
              }
            },
            "Malaysia": {
              "long": {
                "standard": "שעון מלזיה"
              }
            },
            "Maldives": {
              "long": {
                "standard": "שעון האיים המלדיביים"
              }
            },
            "Marquesas": {
              "long": {
                "standard": "שעון איי מרקיז"
              }
            },
            "Marshall_Islands": {
              "long": {
                "standard": "שעון איי מרשל"
              }
            },
            "Mauritius": {
              "long": {
                "generic": "שעון מאוריציוס",
                "standard": "שעון מאוריציוס (חורף)",
                "daylight": "שעון מאוריציוס (קיץ)"
              }
            },
            "Mawson": {
              "long": {
                "standard": "שעון מאוסון"
              }
            },
            "Mexico_Northwest": {
              "long": {
                "generic": "שעון צפון-מערב מקסיקו",
                "standard": "שעון צפון-מערב מקסיקו (חורף)",
                "daylight": "שעון צפון-מערב מקסיקו (קיץ)"
              }
            },
            "Mexico_Pacific": {
              "long": {
                "generic": "שעון מערב מקסיקו",
                "standard": "שעון מערב מקסיקו (חורף)",
                "daylight": "שעון מערב מקסיקו (קיץ)"
              }
            },
            "Mongolia": {
              "long": {
                "generic": "שעון אולן בטור",
                "standard": "שעון אולן בטור (חורף)",
                "daylight": "שעון אולן בטור (קיץ)"
              }
            },
            "Moscow": {
              "long": {
                "generic": "שעון מוסקבה",
                "standard": "שעון מוסקבה (חורף)",
                "daylight": "שעון מוסקבה (קיץ)"
              }
            },
            "Myanmar": {
              "long": {
                "standard": "שעון מיאנמר"
              }
            },
            "Nauru": {
              "long": {
                "standard": "שעון נאורו"
              }
            },
            "Nepal": {
              "long": {
                "standard": "שעון נפאל"
              }
            },
            "New_Caledonia": {
              "long": {
                "generic": "שעון קלדוניה החדשה",
                "standard": "שעון קלדוניה החדשה (חורף)",
                "daylight": "שעון קלדוניה החדשה (קיץ)"
              }
            },
            "New_Zealand": {
              "long": {
                "generic": "שעון ניו זילנד",
                "standard": "שעון ניו זילנד (חורף)",
                "daylight": "שעון ניו זילנד (קיץ)"
              }
            },
            "Newfoundland": {
              "long": {
                "generic": "שעון ניופאונדלנד",
                "standard": "שעון ניופאונדלנד (חורף)",
                "daylight": "שעון ניופאונדלנד (קיץ)"
              }
            },
            "Niue": {
              "long": {
                "standard": "שעון ניואה"
              }
            },
            "Norfolk": {
              "long": {
                "standard": "שעון האי נורפוק"
              }
            },
            "Noronha": {
              "long": {
                "generic": "שעון פרננדו די נורוניה",
                "standard": "שעון פרננדו די נורוניה (חורף)",
                "daylight": "שעון פרננדו די נורוניה (קיץ)"
              }
            },
            "Novosibirsk": {
              "long": {
                "generic": "שעון נובוסיבירסק",
                "standard": "שעון נובוסיבירסק (חורף)",
                "daylight": "שעון נובוסיבירסק (קיץ)"
              }
            },
            "Omsk": {
              "long": {
                "generic": "שעון אומסק",
                "standard": "שעון אומסק (חורף)",
                "daylight": "שעון אומסק (קיץ)"
              }
            },
            "Pakistan": {
              "long": {
                "generic": "שעון פקיסטן",
                "standard": "שעון פקיסטן (חורף)",
                "daylight": "שעון פקיסטן (קיץ)"
              }
            },
            "Palau": {
              "long": {
                "standard": "שעון פלאו"
              }
            },
            "Papua_New_Guinea": {
              "long": {
                "standard": "שעון פפואה גיניאה החדשה"
              }
            },
            "Paraguay": {
              "long": {
                "generic": "שעון פרגוואי",
                "standard": "שעון פרגוואי (חורף)",
                "daylight": "שעון פרגוואי (קיץ)"
              }
            },
            "Peru": {
              "long": {
                "generic": "שעון פרו",
                "standard": "שעון פרו (חורף)",
                "daylight": "שעון פרו (קיץ)"
              }
            },
            "Philippines": {
              "long": {
                "generic": "שעון הפיליפינים",
                "standard": "שעון הפיליפינים (חורף)",
                "daylight": "שעון הפיליפינים (קיץ)"
              }
            },
            "Phoenix_Islands": {
              "long": {
                "standard": "שעון איי פיניקס"
              }
            },
            "Pierre_Miquelon": {
              "long": {
                "generic": "שעון סנט פייר ומיקלון",
                "standard": "שעון סנט פייר ומיקלון (חורף)",
                "daylight": "שעון סנט פייר ומיקלון (קיץ)"
              }
            },
            "Pitcairn": {
              "long": {
                "standard": "שעון פיטקרן"
              }
            },
            "Ponape": {
              "long": {
                "standard": "שעון פונאפי"
              }
            },
            "Pyongyang": {
              "long": {
                "standard": "שעון פיונגיאנג"
              }
            },
            "Reunion": {
              "long": {
                "standard": "שעון ראוניון"
              }
            },
            "Rothera": {
              "long": {
                "standard": "שעון רות׳רה"
              }
            },
            "Sakhalin": {
              "long": {
                "generic": "שעון סחלין",
                "standard": "שעון סחלין (חורף)",
                "daylight": "שעון סחלין (קיץ)"
              }
            },
            "Samara": {
              "long": {
                "generic": "שעון סמרה",
                "standard": "שעון רגיל סמרה",
                "daylight": "שעון קיץ סמרה"
              }
            },
            "Samoa": {
              "long": {
                "generic": "שעון סמואה",
                "standard": "שעון סמואה (חורף)",
                "daylight": "שעון סמואה (קיץ)"
              }
            },
            "Seychelles": {
              "long": {
                "standard": "שעון איי סיישל"
              }
            },
            "Singapore": {
              "long": {
                "standard": "שעון סינגפור"
              }
            },
            "Solomon": {
              "long": {
                "standard": "שעון איי שלמה"
              }
            },
            "South_Georgia": {
              "long": {
                "standard": "שעון דרום ג׳ורג׳יה"
              }
            },
            "Suriname": {
              "long": {
                "standard": "שעון סורינאם"
              }
            },
            "Syowa": {
              "long": {
                "standard": "שעון סייווה"
              }
            },
            "Tahiti": {
              "long": {
                "standard": "שעון טהיטי"
              }
            },
            "Taipei": {
              "long": {
                "generic": "שעון טאיפיי",
                "standard": "שעון טאיפיי (חורף)",
                "daylight": "שעון טאיפיי (קיץ)"
              }
            },
            "Tajikistan": {
              "long": {
                "standard": "שעון טג׳יקיסטן"
              }
            },
            "Tokelau": {
              "long": {
                "standard": "שעון טוקלאו"
              }
            },
            "Tonga": {
              "long": {
                "generic": "שעון טונגה",
                "standard": "שעון טונגה (חורף)",
                "daylight": "שעון טונגה (קיץ)"
              }
            },
            "Truk": {
              "long": {
                "standard": "שעון צ׳וק"
              }
            },
            "Turkmenistan": {
              "long": {
                "generic": "שעון טורקמניסטן",
                "standard": "שעון טורקמניסטן (חורף)",
                "daylight": "שעון טורקמניסטן (קיץ)"
              }
            },
            "Tuvalu": {
              "long": {
                "standard": "שעון טובאלו"
              }
            },
            "Uruguay": {
              "long": {
                "generic": "שעון אורוגוואי",
                "standard": "שעון אורוגוואי (חורף)",
                "daylight": "שעון אורוגוואי (קיץ)"
              }
            },
            "Uzbekistan": {
              "long": {
                "generic": "שעון אוזבקיסטן",
                "standard": "שעון אוזבקיסטן (חורף)",
                "daylight": "שעון אוזבקיסטן (קיץ)"
              }
            },
            "Vanuatu": {
              "long": {
                "generic": "שעון ונואטו",
                "standard": "שעון ונואטו (חורף)",
                "daylight": "שעון ונואטו (קיץ)"
              }
            },
            "Venezuela": {
              "long": {
                "standard": "שעון ונצואלה"
              }
            },
            "Vladivostok": {
              "long": {
                "generic": "שעון ולדיווסטוק",
                "standard": "שעון ולדיווסטוק (חורף)",
                "daylight": "שעון ולדיווסטוק (קיץ)"
              }
            },
            "Volgograd": {
              "long": {
                "generic": "שעון וולגוגרד",
                "standard": "שעון וולגוגרד (חורף)",
                "daylight": "שעון וולגוגרד (קיץ)"
              }
            },
            "Vostok": {
              "long": {
                "standard": "שעון ווסטוק"
              }
            },
            "Wake": {
              "long": {
                "standard": "שעון האי וייק"
              }
            },
            "Wallis": {
              "long": {
                "standard": "שעון וואליס ופוטונה"
              }
            },
            "Yakutsk": {
              "long": {
                "generic": "שעון יקוטסק",
                "standard": "שעון יקוטסק (חורף)",
                "daylight": "שעון יקוטסק (קיץ)"
              }
            },
            "Yekaterinburg": {
              "long": {
                "generic": "שעון יקטרינבורג",
                "standard": "שעון יקטרינבורג (חורף)",
                "daylight": "שעון יקטרינבורג (קיץ)"
              }
            }
          }
        }
      }
    }
  }
}
{
    "main";
    {
        "he";
        {
            "identity";
            {
                "version";
                {
                    "_number";
                    "$Revision: 13259 $",
                        "_cldrVersion";
                    "31.0.1";
                }
                "language";
                "he";
            }
            "dates";
            {
                "timeZoneNames";
                {
                    "hourFormat";
                    "‎+HH:mm;-HH:mm‎",
                        "gmtFormat";
                    "GMT{0}‎",
                        "gmtZeroFormat";
                    "GMT",
                        "regionFormat";
                    "שעון {0}",
                        "regionFormat-type-daylight";
                    "שעון {0} (קיץ)",
                        "regionFormat-type-standard";
                    "שעון {0} (חורף)",
                        "fallbackFormat";
                    "{1} ({0})",
                        "zone";
                    {
                        "America";
                        {
                            "Adak";
                            {
                                "exemplarCity";
                                "אדאק";
                            }
                            "Anchorage";
                            {
                                "exemplarCity";
                                "אנקורג׳";
                            }
                            "Anguilla";
                            {
                                "exemplarCity";
                                "אנגווילה";
                            }
                            "Antigua";
                            {
                                "exemplarCity";
                                "אנטיגואה";
                            }
                            "Araguaina";
                            {
                                "exemplarCity";
                                "אראגואינה";
                            }
                            "Argentina";
                            {
                                "Rio_Gallegos";
                                {
                                    "exemplarCity";
                                    "ריו גאייגוס";
                                }
                                "San_Juan";
                                {
                                    "exemplarCity";
                                    "סן חואן";
                                }
                                "Ushuaia";
                                {
                                    "exemplarCity";
                                    "אושוואיה";
                                }
                                "La_Rioja";
                                {
                                    "exemplarCity";
                                    "לה ריוחה";
                                }
                                "San_Luis";
                                {
                                    "exemplarCity";
                                    "סן לואיס";
                                }
                                "Salta";
                                {
                                    "exemplarCity";
                                    "סלטה";
                                }
                                "Tucuman";
                                {
                                    "exemplarCity";
                                    "טוקומן";
                                }
                            }
                            "Aruba";
                            {
                                "exemplarCity";
                                "ארובה";
                            }
                            "Asuncion";
                            {
                                "exemplarCity";
                                "אסונסיון";
                            }
                            "Bahia";
                            {
                                "exemplarCity";
                                "באהיה";
                            }
                            "Bahia_Banderas";
                            {
                                "exemplarCity";
                                "באהיה בנדרס";
                            }
                            "Barbados";
                            {
                                "exemplarCity";
                                "ברבדוס";
                            }
                            "Belem";
                            {
                                "exemplarCity";
                                "בלם";
                            }
                            "Belize";
                            {
                                "exemplarCity";
                                "בליז";
                            }
                            "Blanc-Sablon";
                            {
                                "exemplarCity";
                                "בלאן-סבלון";
                            }
                            "Boa_Vista";
                            {
                                "exemplarCity";
                                "בואה ויסטה";
                            }
                            "Bogota";
                            {
                                "exemplarCity";
                                "בוגוטה";
                            }
                            "Boise";
                            {
                                "exemplarCity";
                                "בויסי";
                            }
                            "Buenos_Aires";
                            {
                                "exemplarCity";
                                "בואנוס איירס";
                            }
                            "Cambridge_Bay";
                            {
                                "exemplarCity";
                                "קיימברידג׳ ביי";
                            }
                            "Campo_Grande";
                            {
                                "exemplarCity";
                                "קמפו גרנדה";
                            }
                            "Cancun";
                            {
                                "exemplarCity";
                                "קנקון";
                            }
                            "Caracas";
                            {
                                "exemplarCity";
                                "קראקס";
                            }
                            "Catamarca";
                            {
                                "exemplarCity";
                                "קטמרקה";
                            }
                            "Cayenne";
                            {
                                "exemplarCity";
                                "קאיין";
                            }
                            "Cayman";
                            {
                                "exemplarCity";
                                "קיימן";
                            }
                            "Chicago";
                            {
                                "exemplarCity";
                                "שיקגו";
                            }
                            "Chihuahua";
                            {
                                "exemplarCity";
                                "צ׳יוואווה";
                            }
                            "Coral_Harbour";
                            {
                                "exemplarCity";
                                "אטיקוקן";
                            }
                            "Cordoba";
                            {
                                "exemplarCity";
                                "קורדובה";
                            }
                            "Costa_Rica";
                            {
                                "exemplarCity";
                                "קוסטה ריקה";
                            }
                            "Creston";
                            {
                                "exemplarCity";
                                "קרסטון";
                            }
                            "Cuiaba";
                            {
                                "exemplarCity";
                                "קויאבה";
                            }
                            "Curacao";
                            {
                                "exemplarCity";
                                "קוראסאו";
                            }
                            "Danmarkshavn";
                            {
                                "exemplarCity";
                                "דנמרקסהוון";
                            }
                            "Dawson";
                            {
                                "exemplarCity";
                                "דוסון";
                            }
                            "Dawson_Creek";
                            {
                                "exemplarCity";
                                "דוסון קריק";
                            }
                            "Denver";
                            {
                                "exemplarCity";
                                "דנוור";
                            }
                            "Detroit";
                            {
                                "exemplarCity";
                                "דטרויט";
                            }
                            "Dominica";
                            {
                                "exemplarCity";
                                "דומיניקה";
                            }
                            "Edmonton";
                            {
                                "exemplarCity";
                                "אדמונטון";
                            }
                            "Eirunepe";
                            {
                                "exemplarCity";
                                "אירונפי";
                            }
                            "El_Salvador";
                            {
                                "exemplarCity";
                                "אל סלבדור";
                            }
                            "Fort_Nelson";
                            {
                                "exemplarCity";
                                "פורט נלסון";
                            }
                            "Fortaleza";
                            {
                                "exemplarCity";
                                "פורטאלזה";
                            }
                            "Glace_Bay";
                            {
                                "exemplarCity";
                                "גלייס ביי";
                            }
                            "Godthab";
                            {
                                "exemplarCity";
                                "נואוק";
                            }
                            "Goose_Bay";
                            {
                                "exemplarCity";
                                "גוס ביי";
                            }
                            "Grand_Turk";
                            {
                                "exemplarCity";
                                "גרנד טורק";
                            }
                            "Grenada";
                            {
                                "exemplarCity";
                                "גרנדה";
                            }
                            "Guadeloupe";
                            {
                                "exemplarCity";
                                "גואדלופ";
                            }
                            "Guatemala";
                            {
                                "exemplarCity";
                                "גואטמלה";
                            }
                            "Guayaquil";
                            {
                                "exemplarCity";
                                "גואיאקיל";
                            }
                            "Guyana";
                            {
                                "exemplarCity";
                                "גיאנה";
                            }
                            "Halifax";
                            {
                                "exemplarCity";
                                "הליפקס";
                            }
                            "Havana";
                            {
                                "exemplarCity";
                                "הוואנה";
                            }
                            "Hermosillo";
                            {
                                "exemplarCity";
                                "הרמוסיו";
                            }
                            "Indiana";
                            {
                                "Vincennes";
                                {
                                    "exemplarCity";
                                    "וינסנס, אינדיאנה";
                                }
                                "Petersburg";
                                {
                                    "exemplarCity";
                                    "פיטרסבורג, אינדיאנה";
                                }
                                "Tell_City";
                                {
                                    "exemplarCity";
                                    "טל סיטי, אינדיאנה";
                                }
                                "Knox";
                                {
                                    "exemplarCity";
                                    "נוקס, אינדיאנה";
                                }
                                "Winamac";
                                {
                                    "exemplarCity";
                                    "וינמאק, אינדיאנה";
                                }
                                "Marengo";
                                {
                                    "exemplarCity";
                                    "מרנגו, אינדיאנה";
                                }
                                "Vevay";
                                {
                                    "exemplarCity";
                                    "ויוואיי, אינדיאנה";
                                }
                            }
                            "Indianapolis";
                            {
                                "exemplarCity";
                                "אינדיאנפוליס";
                            }
                            "Inuvik";
                            {
                                "exemplarCity";
                                "אינוויק";
                            }
                            "Iqaluit";
                            {
                                "exemplarCity";
                                "איקלואיט";
                            }
                            "Jamaica";
                            {
                                "exemplarCity";
                                "ג׳מייקה";
                            }
                            "Jujuy";
                            {
                                "exemplarCity";
                                "חוחוי";
                            }
                            "Juneau";
                            {
                                "exemplarCity";
                                "ג׳ונו";
                            }
                            "Kentucky";
                            {
                                "Monticello";
                                {
                                    "exemplarCity";
                                    "מונטיצ׳לו, קנטאקי";
                                }
                            }
                            "Kralendijk";
                            {
                                "exemplarCity";
                                "קרלנדייק";
                            }
                            "La_Paz";
                            {
                                "exemplarCity";
                                "לה פאס";
                            }
                            "Lima";
                            {
                                "exemplarCity";
                                "לימה";
                            }
                            "Los_Angeles";
                            {
                                "exemplarCity";
                                "לוס אנג׳לס";
                            }
                            "Louisville";
                            {
                                "exemplarCity";
                                "לואיוויל";
                            }
                            "Lower_Princes";
                            {
                                "exemplarCity";
                                "לואוור פרינסס קוורטר";
                            }
                            "Maceio";
                            {
                                "exemplarCity";
                                "מסייאו";
                            }
                            "Managua";
                            {
                                "exemplarCity";
                                "מנגואה";
                            }
                            "Manaus";
                            {
                                "exemplarCity";
                                "מנאוס";
                            }
                            "Marigot";
                            {
                                "exemplarCity";
                                "מריגו";
                            }
                            "Martinique";
                            {
                                "exemplarCity";
                                "מרטיניק";
                            }
                            "Matamoros";
                            {
                                "exemplarCity";
                                "מטמורוס";
                            }
                            "Mazatlan";
                            {
                                "exemplarCity";
                                "מזטלן";
                            }
                            "Mendoza";
                            {
                                "exemplarCity";
                                "מנדוזה";
                            }
                            "Menominee";
                            {
                                "exemplarCity";
                                "מנומיני";
                            }
                            "Merida";
                            {
                                "exemplarCity";
                                "מרידה";
                            }
                            "Metlakatla";
                            {
                                "exemplarCity";
                                "מטלקטלה";
                            }
                            "Mexico_City";
                            {
                                "exemplarCity";
                                "מקסיקו סיטי";
                            }
                            "Miquelon";
                            {
                                "exemplarCity";
                                "מיקלון";
                            }
                            "Moncton";
                            {
                                "exemplarCity";
                                "מונקטון";
                            }
                            "Monterrey";
                            {
                                "exemplarCity";
                                "מונטריי";
                            }
                            "Montevideo";
                            {
                                "exemplarCity";
                                "מונטווידאו";
                            }
                            "Montserrat";
                            {
                                "exemplarCity";
                                "מונסראט";
                            }
                            "Nassau";
                            {
                                "exemplarCity";
                                "נסאו";
                            }
                            "New_York";
                            {
                                "exemplarCity";
                                "ניו יורק";
                            }
                            "Nipigon";
                            {
                                "exemplarCity";
                                "ניפיגון";
                            }
                            "Nome";
                            {
                                "exemplarCity";
                                "נום";
                            }
                            "Noronha";
                            {
                                "exemplarCity";
                                "נורוניה";
                            }
                            "North_Dakota";
                            {
                                "Beulah";
                                {
                                    "exemplarCity";
                                    "ביולה, צפון דקוטה";
                                }
                                "New_Salem";
                                {
                                    "exemplarCity";
                                    "ניו סיילם, צפון דקוטה";
                                }
                                "Center";
                                {
                                    "exemplarCity";
                                    "סנטר, צפון דקוטה";
                                }
                            }
                            "Ojinaga";
                            {
                                "exemplarCity";
                                "אוג׳ינאגה";
                            }
                            "Panama";
                            {
                                "exemplarCity";
                                "פנמה";
                            }
                            "Pangnirtung";
                            {
                                "exemplarCity";
                                "פנגנירטונג";
                            }
                            "Paramaribo";
                            {
                                "exemplarCity";
                                "פרמריבו";
                            }
                            "Phoenix";
                            {
                                "exemplarCity";
                                "פיניקס";
                            }
                            "Port-au-Prince";
                            {
                                "exemplarCity";
                                "פורט או פראנס";
                            }
                            "Port_of_Spain";
                            {
                                "exemplarCity";
                                "פורט אוף ספיין";
                            }
                            "Porto_Velho";
                            {
                                "exemplarCity";
                                "פורטו וליו";
                            }
                            "Puerto_Rico";
                            {
                                "exemplarCity";
                                "פוארטו ריקו";
                            }
                            "Rainy_River";
                            {
                                "exemplarCity";
                                "רייני ריבר";
                            }
                            "Rankin_Inlet";
                            {
                                "exemplarCity";
                                "רנקין אינלט";
                            }
                            "Recife";
                            {
                                "exemplarCity";
                                "רסיפה";
                            }
                            "Regina";
                            {
                                "exemplarCity";
                                "רג׳ינה";
                            }
                            "Resolute";
                            {
                                "exemplarCity";
                                "רזולוט";
                            }
                            "Rio_Branco";
                            {
                                "exemplarCity";
                                "ריו ברנקו";
                            }
                            "Santa_Isabel";
                            {
                                "exemplarCity";
                                "סנטה איסבל";
                            }
                            "Santarem";
                            {
                                "exemplarCity";
                                "סנטרם";
                            }
                            "Santiago";
                            {
                                "exemplarCity";
                                "סנטיאגו";
                            }
                            "Santo_Domingo";
                            {
                                "exemplarCity";
                                "סנטו דומינגו";
                            }
                            "Sao_Paulo";
                            {
                                "exemplarCity";
                                "סאו פאולו";
                            }
                            "Scoresbysund";
                            {
                                "exemplarCity";
                                "סקורסביסונד";
                            }
                            "Sitka";
                            {
                                "exemplarCity";
                                "סיטקה";
                            }
                            "St_Barthelemy";
                            {
                                "exemplarCity";
                                "סנט ברתלמי";
                            }
                            "St_Johns";
                            {
                                "exemplarCity";
                                "סנט ג׳ונס";
                            }
                            "St_Kitts";
                            {
                                "exemplarCity";
                                "סנט קיטס";
                            }
                            "St_Lucia";
                            {
                                "exemplarCity";
                                "סנט לוסיה";
                            }
                            "St_Thomas";
                            {
                                "exemplarCity";
                                "סנט תומאס";
                            }
                            "St_Vincent";
                            {
                                "exemplarCity";
                                "סנט וינסנט";
                            }
                            "Swift_Current";
                            {
                                "exemplarCity";
                                "סוויפט קרנט";
                            }
                            "Tegucigalpa";
                            {
                                "exemplarCity";
                                "טגוסיגלפה";
                            }
                            "Thule";
                            {
                                "exemplarCity";
                                "תולה";
                            }
                            "Thunder_Bay";
                            {
                                "exemplarCity";
                                "ת׳אנדר ביי";
                            }
                            "Tijuana";
                            {
                                "exemplarCity";
                                "טיחואנה";
                            }
                            "Toronto";
                            {
                                "exemplarCity";
                                "טורונטו";
                            }
                            "Tortola";
                            {
                                "exemplarCity";
                                "טורטולה";
                            }
                            "Vancouver";
                            {
                                "exemplarCity";
                                "ונקובר";
                            }
                            "Whitehorse";
                            {
                                "exemplarCity";
                                "ווייטהורס";
                            }
                            "Winnipeg";
                            {
                                "exemplarCity";
                                "וויניפג";
                            }
                            "Yakutat";
                            {
                                "exemplarCity";
                                "יקוטאט";
                            }
                            "Yellowknife";
                            {
                                "exemplarCity";
                                "ילונייף";
                            }
                        }
                        "Atlantic";
                        {
                            "Azores";
                            {
                                "exemplarCity";
                                "האיים האזוריים";
                            }
                            "Bermuda";
                            {
                                "exemplarCity";
                                "ברמודה";
                            }
                            "Canary";
                            {
                                "exemplarCity";
                                "האיים הקנריים";
                            }
                            "Cape_Verde";
                            {
                                "exemplarCity";
                                "כף ורדה";
                            }
                            "Faeroe";
                            {
                                "exemplarCity";
                                "פארו";
                            }
                            "Madeira";
                            {
                                "exemplarCity";
                                "מדיירה";
                            }
                            "Reykjavik";
                            {
                                "exemplarCity";
                                "רייקיאוויק";
                            }
                            "South_Georgia";
                            {
                                "exemplarCity";
                                "דרום ג׳ורג׳יה";
                            }
                            "St_Helena";
                            {
                                "exemplarCity";
                                "סנט הלנה";
                            }
                            "Stanley";
                            {
                                "exemplarCity";
                                "סטנלי";
                            }
                        }
                        "Europe";
                        {
                            "Amsterdam";
                            {
                                "exemplarCity";
                                "אמסטרדם";
                            }
                            "Andorra";
                            {
                                "exemplarCity";
                                "אנדורה";
                            }
                            "Astrakhan";
                            {
                                "exemplarCity";
                                "אסטרחן";
                            }
                            "Athens";
                            {
                                "exemplarCity";
                                "אתונה";
                            }
                            "Belgrade";
                            {
                                "exemplarCity";
                                "בלגרד";
                            }
                            "Berlin";
                            {
                                "exemplarCity";
                                "ברלין";
                            }
                            "Bratislava";
                            {
                                "exemplarCity";
                                "ברטיסלבה";
                            }
                            "Brussels";
                            {
                                "exemplarCity";
                                "בריסל";
                            }
                            "Bucharest";
                            {
                                "exemplarCity";
                                "בוקרשט";
                            }
                            "Budapest";
                            {
                                "exemplarCity";
                                "בודפשט";
                            }
                            "Busingen";
                            {
                                "exemplarCity";
                                "ביזינגן";
                            }
                            "Chisinau";
                            {
                                "exemplarCity";
                                "קישינב";
                            }
                            "Copenhagen";
                            {
                                "exemplarCity";
                                "קופנהגן";
                            }
                            "Dublin";
                            {
                                "long";
                                {
                                    "daylight";
                                    "שעון קיץ אירלנד";
                                }
                                "exemplarCity";
                                "דבלין";
                            }
                            "Gibraltar";
                            {
                                "exemplarCity";
                                "גיברלטר";
                            }
                            "Guernsey";
                            {
                                "exemplarCity";
                                "גרנזי";
                            }
                            "Helsinki";
                            {
                                "exemplarCity";
                                "הלסינקי";
                            }
                            "Isle_of_Man";
                            {
                                "exemplarCity";
                                "האי מאן";
                            }
                            "Istanbul";
                            {
                                "exemplarCity";
                                "איסטנבול";
                            }
                            "Jersey";
                            {
                                "exemplarCity";
                                "ג׳רזי";
                            }
                            "Kaliningrad";
                            {
                                "exemplarCity";
                                "קלינינגרד";
                            }
                            "Kiev";
                            {
                                "exemplarCity";
                                "קייב";
                            }
                            "Kirov";
                            {
                                "exemplarCity";
                                "קירוב";
                            }
                            "Lisbon";
                            {
                                "exemplarCity";
                                "ליסבון";
                            }
                            "Ljubljana";
                            {
                                "exemplarCity";
                                "לובליאנה";
                            }
                            "London";
                            {
                                "long";
                                {
                                    "daylight";
                                    "שעון קיץ בריטניה";
                                }
                                "exemplarCity";
                                "לונדון";
                            }
                            "Luxembourg";
                            {
                                "exemplarCity";
                                "לוקסמבורג";
                            }
                            "Madrid";
                            {
                                "exemplarCity";
                                "מדריד";
                            }
                            "Malta";
                            {
                                "exemplarCity";
                                "מלטה";
                            }
                            "Mariehamn";
                            {
                                "exemplarCity";
                                "מרייהאמן";
                            }
                            "Minsk";
                            {
                                "exemplarCity";
                                "מינסק";
                            }
                            "Monaco";
                            {
                                "exemplarCity";
                                "מונקו";
                            }
                            "Moscow";
                            {
                                "exemplarCity";
                                "מוסקבה";
                            }
                            "Oslo";
                            {
                                "exemplarCity";
                                "אוסלו";
                            }
                            "Paris";
                            {
                                "exemplarCity";
                                "פריז";
                            }
                            "Podgorica";
                            {
                                "exemplarCity";
                                "פודגוריצה";
                            }
                            "Prague";
                            {
                                "exemplarCity";
                                "פראג";
                            }
                            "Riga";
                            {
                                "exemplarCity";
                                "ריגה";
                            }
                            "Rome";
                            {
                                "exemplarCity";
                                "רומא";
                            }
                            "Samara";
                            {
                                "exemplarCity";
                                "סמרה";
                            }
                            "San_Marino";
                            {
                                "exemplarCity";
                                "סן מרינו";
                            }
                            "Sarajevo";
                            {
                                "exemplarCity";
                                "סרייבו";
                            }
                            "Simferopol";
                            {
                                "exemplarCity";
                                "סימפרופול";
                            }
                            "Skopje";
                            {
                                "exemplarCity";
                                "סקופיה";
                            }
                            "Sofia";
                            {
                                "exemplarCity";
                                "סופיה";
                            }
                            "Stockholm";
                            {
                                "exemplarCity";
                                "שטוקהולם";
                            }
                            "Tallinn";
                            {
                                "exemplarCity";
                                "טאלין";
                            }
                            "Tirane";
                            {
                                "exemplarCity";
                                "טירנה";
                            }
                            "Ulyanovsk";
                            {
                                "exemplarCity";
                                "אוליאנובסק";
                            }
                            "Uzhgorod";
                            {
                                "exemplarCity";
                                "אוז׳הורוד";
                            }
                            "Vaduz";
                            {
                                "exemplarCity";
                                "ואדוץ";
                            }
                            "Vatican";
                            {
                                "exemplarCity";
                                "הוותיקן";
                            }
                            "Vienna";
                            {
                                "exemplarCity";
                                "וינה";
                            }
                            "Vilnius";
                            {
                                "exemplarCity";
                                "וילנה";
                            }
                            "Volgograd";
                            {
                                "exemplarCity";
                                "וולגוגרד";
                            }
                            "Warsaw";
                            {
                                "exemplarCity";
                                "ורשה";
                            }
                            "Zagreb";
                            {
                                "exemplarCity";
                                "זאגרב";
                            }
                            "Zaporozhye";
                            {
                                "exemplarCity";
                                "זפורוז׳יה";
                            }
                            "Zurich";
                            {
                                "exemplarCity";
                                "ציריך";
                            }
                        }
                        "Africa";
                        {
                            "Abidjan";
                            {
                                "exemplarCity";
                                "אביג׳אן";
                            }
                            "Accra";
                            {
                                "exemplarCity";
                                "אקרה";
                            }
                            "Addis_Ababa";
                            {
                                "exemplarCity";
                                "אדיס אבבה";
                            }
                            "Algiers";
                            {
                                "exemplarCity";
                                "אלג׳יר";
                            }
                            "Asmera";
                            {
                                "exemplarCity";
                                "אסמרה";
                            }
                            "Bamako";
                            {
                                "exemplarCity";
                                "במאקו";
                            }
                            "Bangui";
                            {
                                "exemplarCity";
                                "בנגואי";
                            }
                            "Banjul";
                            {
                                "exemplarCity";
                                "בנג׳ול";
                            }
                            "Bissau";
                            {
                                "exemplarCity";
                                "ביסאו";
                            }
                            "Blantyre";
                            {
                                "exemplarCity";
                                "בלנטיר";
                            }
                            "Brazzaville";
                            {
                                "exemplarCity";
                                "ברזוויל";
                            }
                            "Bujumbura";
                            {
                                "exemplarCity";
                                "בוג׳ומבורה";
                            }
                            "Cairo";
                            {
                                "exemplarCity";
                                "קהיר";
                            }
                            "Casablanca";
                            {
                                "exemplarCity";
                                "קזבלנקה";
                            }
                            "Ceuta";
                            {
                                "exemplarCity";
                                "סאוטה";
                            }
                            "Conakry";
                            {
                                "exemplarCity";
                                "קונאקרי";
                            }
                            "Dakar";
                            {
                                "exemplarCity";
                                "דקאר";
                            }
                            "Dar_es_Salaam";
                            {
                                "exemplarCity";
                                "דאר א-סלאם";
                            }
                            "Djibouti";
                            {
                                "exemplarCity";
                                "ג׳יבוטי";
                            }
                            "Douala";
                            {
                                "exemplarCity";
                                "דואלה";
                            }
                            "El_Aaiun";
                            {
                                "exemplarCity";
                                "אל עיון";
                            }
                            "Freetown";
                            {
                                "exemplarCity";
                                "פריטאון";
                            }
                            "Gaborone";
                            {
                                "exemplarCity";
                                "גבורונה";
                            }
                            "Harare";
                            {
                                "exemplarCity";
                                "הרארה";
                            }
                            "Johannesburg";
                            {
                                "exemplarCity";
                                "יוהנסבורג";
                            }
                            "Juba";
                            {
                                "exemplarCity";
                                "ג׳ובה";
                            }
                            "Kampala";
                            {
                                "exemplarCity";
                                "קמפאלה";
                            }
                            "Khartoum";
                            {
                                "exemplarCity";
                                "חרטום";
                            }
                            "Kigali";
                            {
                                "exemplarCity";
                                "קיגלי";
                            }
                            "Kinshasa";
                            {
                                "exemplarCity";
                                "קינשסה";
                            }
                            "Lagos";
                            {
                                "exemplarCity";
                                "לגוס";
                            }
                            "Libreville";
                            {
                                "exemplarCity";
                                "ליברוויל";
                            }
                            "Lome";
                            {
                                "exemplarCity";
                                "לומה";
                            }
                            "Luanda";
                            {
                                "exemplarCity";
                                "לואנדה";
                            }
                            "Lubumbashi";
                            {
                                "exemplarCity";
                                "לובומבאשי";
                            }
                            "Lusaka";
                            {
                                "exemplarCity";
                                "לוסקה";
                            }
                            "Malabo";
                            {
                                "exemplarCity";
                                "מלבו";
                            }
                            "Maputo";
                            {
                                "exemplarCity";
                                "מאפוטו";
                            }
                            "Maseru";
                            {
                                "exemplarCity";
                                "מסרו";
                            }
                            "Mbabane";
                            {
                                "exemplarCity";
                                "אמבאבאנה";
                            }
                            "Mogadishu";
                            {
                                "exemplarCity";
                                "מוגדישו";
                            }
                            "Monrovia";
                            {
                                "exemplarCity";
                                "מונרוביה";
                            }
                            "Nairobi";
                            {
                                "exemplarCity";
                                "ניירובי";
                            }
                            "Ndjamena";
                            {
                                "exemplarCity";
                                "נג׳מנה";
                            }
                            "Niamey";
                            {
                                "exemplarCity";
                                "ניאמיי";
                            }
                            "Nouakchott";
                            {
                                "exemplarCity";
                                "נואקצ׳וט";
                            }
                            "Ouagadougou";
                            {
                                "exemplarCity";
                                "וואגאדוגו";
                            }
                            "Porto-Novo";
                            {
                                "exemplarCity";
                                "פורטו נובו";
                            }
                            "Sao_Tome";
                            {
                                "exemplarCity";
                                "סאו טומה";
                            }
                            "Tripoli";
                            {
                                "exemplarCity";
                                "טריפולי";
                            }
                            "Tunis";
                            {
                                "exemplarCity";
                                "תוניס";
                            }
                            "Windhoek";
                            {
                                "exemplarCity";
                                "וינדהוק";
                            }
                        }
                        "Asia";
                        {
                            "Aden";
                            {
                                "exemplarCity";
                                "עדן";
                            }
                            "Almaty";
                            {
                                "exemplarCity";
                                "אלמאטי";
                            }
                            "Amman";
                            {
                                "exemplarCity";
                                "עמאן";
                            }
                            "Anadyr";
                            {
                                "exemplarCity";
                                "אנדיר";
                            }
                            "Aqtau";
                            {
                                "exemplarCity";
                                "אקטאו";
                            }
                            "Aqtobe";
                            {
                                "exemplarCity";
                                "אקטובה";
                            }
                            "Ashgabat";
                            {
                                "exemplarCity";
                                "אשגבט";
                            }
                            "Baghdad";
                            {
                                "exemplarCity";
                                "בגדד";
                            }
                            "Bahrain";
                            {
                                "exemplarCity";
                                "בחריין";
                            }
                            "Baku";
                            {
                                "exemplarCity";
                                "באקו";
                            }
                            "Bangkok";
                            {
                                "exemplarCity";
                                "בנגקוק";
                            }
                            "Barnaul";
                            {
                                "exemplarCity";
                                "ברנאול";
                            }
                            "Beirut";
                            {
                                "exemplarCity";
                                "ביירות";
                            }
                            "Bishkek";
                            {
                                "exemplarCity";
                                "בישקק";
                            }
                            "Brunei";
                            {
                                "exemplarCity";
                                "ברוניי";
                            }
                            "Calcutta";
                            {
                                "exemplarCity";
                                "קולקטה";
                            }
                            "Chita";
                            {
                                "exemplarCity";
                                "צ׳יטה";
                            }
                            "Choibalsan";
                            {
                                "exemplarCity";
                                "צ׳ויבלסן";
                            }
                            "Colombo";
                            {
                                "exemplarCity";
                                "קולומבו";
                            }
                            "Damascus";
                            {
                                "exemplarCity";
                                "דמשק";
                            }
                            "Dhaka";
                            {
                                "exemplarCity";
                                "דאקה";
                            }
                            "Dili";
                            {
                                "exemplarCity";
                                "דילי";
                            }
                            "Dubai";
                            {
                                "exemplarCity";
                                "דובאי";
                            }
                            "Dushanbe";
                            {
                                "exemplarCity";
                                "דושנבה";
                            }
                            "Gaza";
                            {
                                "exemplarCity";
                                "עזה";
                            }
                            "Hebron";
                            {
                                "exemplarCity";
                                "חברון";
                            }
                            "Hong_Kong";
                            {
                                "exemplarCity";
                                "הונג קונג";
                            }
                            "Hovd";
                            {
                                "exemplarCity";
                                "חובד";
                            }
                            "Irkutsk";
                            {
                                "exemplarCity";
                                "אירקוטסק";
                            }
                            "Jakarta";
                            {
                                "exemplarCity";
                                "ג׳קרטה";
                            }
                            "Jayapura";
                            {
                                "exemplarCity";
                                "ג׳איאפורה";
                            }
                            "Jerusalem";
                            {
                                "exemplarCity";
                                "ירושלים";
                            }
                            "Kabul";
                            {
                                "exemplarCity";
                                "קאבול";
                            }
                            "Kamchatka";
                            {
                                "exemplarCity";
                                "קמצ׳טקה";
                            }
                            "Karachi";
                            {
                                "exemplarCity";
                                "קראצ׳י";
                            }
                            "Katmandu";
                            {
                                "exemplarCity";
                                "קטמנדו";
                            }
                            "Khandyga";
                            {
                                "exemplarCity";
                                "חנדיגה";
                            }
                            "Krasnoyarsk";
                            {
                                "exemplarCity";
                                "קרסנויארסק";
                            }
                            "Kuala_Lumpur";
                            {
                                "exemplarCity";
                                "קואלה לומפור";
                            }
                            "Kuching";
                            {
                                "exemplarCity";
                                "קוצ׳ינג";
                            }
                            "Kuwait";
                            {
                                "exemplarCity";
                                "כווית";
                            }
                            "Macau";
                            {
                                "exemplarCity";
                                "מקאו";
                            }
                            "Magadan";
                            {
                                "exemplarCity";
                                "מגדן";
                            }
                            "Makassar";
                            {
                                "exemplarCity";
                                "מאקאסאר";
                            }
                            "Manila";
                            {
                                "exemplarCity";
                                "מנילה";
                            }
                            "Muscat";
                            {
                                "exemplarCity";
                                "מוסקט";
                            }
                            "Nicosia";
                            {
                                "exemplarCity";
                                "ניקוסיה";
                            }
                            "Novokuznetsk";
                            {
                                "exemplarCity";
                                "נובוקוזנטסק";
                            }
                            "Novosibirsk";
                            {
                                "exemplarCity";
                                "נובוסיבירסק";
                            }
                            "Omsk";
                            {
                                "exemplarCity";
                                "אומסק";
                            }
                            "Oral";
                            {
                                "exemplarCity";
                                "אורל";
                            }
                            "Phnom_Penh";
                            {
                                "exemplarCity";
                                "פנום פן";
                            }
                            "Pontianak";
                            {
                                "exemplarCity";
                                "פונטיאנק";
                            }
                            "Pyongyang";
                            {
                                "exemplarCity";
                                "פיונגיאנג";
                            }
                            "Qatar";
                            {
                                "exemplarCity";
                                "קטאר";
                            }
                            "Qyzylorda";
                            {
                                "exemplarCity";
                                "קיזילורדה";
                            }
                            "Rangoon";
                            {
                                "exemplarCity";
                                "רנגון";
                            }
                            "Riyadh";
                            {
                                "exemplarCity";
                                "ריאד";
                            }
                            "Saigon";
                            {
                                "exemplarCity";
                                "הו צ׳י מין סיטי";
                            }
                            "Sakhalin";
                            {
                                "exemplarCity";
                                "סחלין";
                            }
                            "Samarkand";
                            {
                                "exemplarCity";
                                "סמרקנד";
                            }
                            "Seoul";
                            {
                                "exemplarCity";
                                "סיאול";
                            }
                            "Shanghai";
                            {
                                "exemplarCity";
                                "שנחאי";
                            }
                            "Singapore";
                            {
                                "exemplarCity";
                                "סינגפור";
                            }
                            "Srednekolymsk";
                            {
                                "exemplarCity";
                                "סרדנייקולימסק";
                            }
                            "Taipei";
                            {
                                "exemplarCity";
                                "טאיפיי";
                            }
                            "Tashkent";
                            {
                                "exemplarCity";
                                "טשקנט";
                            }
                            "Tbilisi";
                            {
                                "exemplarCity";
                                "טביליסי";
                            }
                            "Tehran";
                            {
                                "exemplarCity";
                                "טהרן";
                            }
                            "Thimphu";
                            {
                                "exemplarCity";
                                "טהימפהו";
                            }
                            "Tokyo";
                            {
                                "exemplarCity";
                                "טוקיו";
                            }
                            "Tomsk";
                            {
                                "exemplarCity";
                                "טומסק";
                            }
                            "Ulaanbaatar";
                            {
                                "exemplarCity";
                                "אולאאנבטאר";
                            }
                            "Urumqi";
                            {
                                "exemplarCity";
                                "אורומקי";
                            }
                            "Ust-Nera";
                            {
                                "exemplarCity";
                                "אוסט-נרה";
                            }
                            "Vientiane";
                            {
                                "exemplarCity";
                                "האנוי";
                            }
                            "Vladivostok";
                            {
                                "exemplarCity";
                                "ולדיווסטוק";
                            }
                            "Yakutsk";
                            {
                                "exemplarCity";
                                "יקוטסק";
                            }
                            "Yekaterinburg";
                            {
                                "exemplarCity";
                                "יקטרינבורג";
                            }
                            "Yerevan";
                            {
                                "exemplarCity";
                                "ירוואן";
                            }
                        }
                        "Indian";
                        {
                            "Antananarivo";
                            {
                                "exemplarCity";
                                "אנטננריבו";
                            }
                            "Chagos";
                            {
                                "exemplarCity";
                                "צ׳אגוס";
                            }
                            "Christmas";
                            {
                                "exemplarCity";
                                "האי כריסטמס";
                            }
                            "Cocos";
                            {
                                "exemplarCity";
                                "קוקוס";
                            }
                            "Comoro";
                            {
                                "exemplarCity";
                                "קומורו";
                            }
                            "Kerguelen";
                            {
                                "exemplarCity";
                                "קרגוולן";
                            }
                            "Mahe";
                            {
                                "exemplarCity";
                                "מהא";
                            }
                            "Maldives";
                            {
                                "exemplarCity";
                                "האיים המלדיביים";
                            }
                            "Mauritius";
                            {
                                "exemplarCity";
                                "מאוריציוס";
                            }
                            "Mayotte";
                            {
                                "exemplarCity";
                                "מאיוט";
                            }
                            "Reunion";
                            {
                                "exemplarCity";
                                "ראוניון";
                            }
                        }
                        "Australia";
                        {
                            "Adelaide";
                            {
                                "exemplarCity";
                                "אדלייד";
                            }
                            "Brisbane";
                            {
                                "exemplarCity";
                                "בריסביין";
                            }
                            "Broken_Hill";
                            {
                                "exemplarCity";
                                "ברוקן היל";
                            }
                            "Currie";
                            {
                                "exemplarCity";
                                "קרי";
                            }
                            "Darwin";
                            {
                                "exemplarCity";
                                "דרווין";
                            }
                            "Eucla";
                            {
                                "exemplarCity";
                                "יוקלה";
                            }
                            "Hobart";
                            {
                                "exemplarCity";
                                "הוברט";
                            }
                            "Lindeman";
                            {
                                "exemplarCity";
                                "לינדמן";
                            }
                            "Lord_Howe";
                            {
                                "exemplarCity";
                                "אי הלורד האו";
                            }
                            "Melbourne";
                            {
                                "exemplarCity";
                                "מלבורן";
                            }
                            "Perth";
                            {
                                "exemplarCity";
                                "פרת׳";
                            }
                            "Sydney";
                            {
                                "exemplarCity";
                                "סידני";
                            }
                        }
                        "Pacific";
                        {
                            "Apia";
                            {
                                "exemplarCity";
                                "אפיה";
                            }
                            "Auckland";
                            {
                                "exemplarCity";
                                "אוקלנד";
                            }
                            "Bougainville";
                            {
                                "exemplarCity";
                                "בוגנוויל";
                            }
                            "Chatham";
                            {
                                "exemplarCity";
                                "צ׳אטהאם";
                            }
                            "Easter";
                            {
                                "exemplarCity";
                                "אי הפסחא";
                            }
                            "Efate";
                            {
                                "exemplarCity";
                                "אפטה";
                            }
                            "Enderbury";
                            {
                                "exemplarCity";
                                "אנדרבורי";
                            }
                            "Fakaofo";
                            {
                                "exemplarCity";
                                "פקאופו";
                            }
                            "Fiji";
                            {
                                "exemplarCity";
                                "פיג׳י";
                            }
                            "Funafuti";
                            {
                                "exemplarCity";
                                "פונפוטי";
                            }
                            "Galapagos";
                            {
                                "exemplarCity";
                                "גלפאגוס";
                            }
                            "Gambier";
                            {
                                "exemplarCity";
                                "איי גמבייה";
                            }
                            "Guadalcanal";
                            {
                                "exemplarCity";
                                "גוודלקנאל";
                            }
                            "Guam";
                            {
                                "exemplarCity";
                                "גואם";
                            }
                            "Honolulu";
                            {
                                "exemplarCity";
                                "הונולולו";
                            }
                            "Johnston";
                            {
                                "exemplarCity";
                                "ג׳ונסטון";
                            }
                            "Kiritimati";
                            {
                                "exemplarCity";
                                "קיריטימאטי";
                            }
                            "Kosrae";
                            {
                                "exemplarCity";
                                "קוסרה";
                            }
                            "Kwajalein";
                            {
                                "exemplarCity";
                                "קוואג׳ליין";
                            }
                            "Majuro";
                            {
                                "exemplarCity";
                                "מאג׳ורו";
                            }
                            "Marquesas";
                            {
                                "exemplarCity";
                                "איי מרקיז";
                            }
                            "Midway";
                            {
                                "exemplarCity";
                                "מידוויי";
                            }
                            "Nauru";
                            {
                                "exemplarCity";
                                "נאורו";
                            }
                            "Niue";
                            {
                                "exemplarCity";
                                "ניואה";
                            }
                            "Norfolk";
                            {
                                "exemplarCity";
                                "נורפוק";
                            }
                            "Noumea";
                            {
                                "exemplarCity";
                                "נומאה";
                            }
                            "Pago_Pago";
                            {
                                "exemplarCity";
                                "פאגו פאגו";
                            }
                            "Palau";
                            {
                                "exemplarCity";
                                "פלאו";
                            }
                            "Pitcairn";
                            {
                                "exemplarCity";
                                "פיטקרן";
                            }
                            "Ponape";
                            {
                                "exemplarCity";
                                "פונפיי";
                            }
                            "Port_Moresby";
                            {
                                "exemplarCity";
                                "פורט מורסבי";
                            }
                            "Rarotonga";
                            {
                                "exemplarCity";
                                "רארוטונגה";
                            }
                            "Saipan";
                            {
                                "exemplarCity";
                                "סאיפאן";
                            }
                            "Tahiti";
                            {
                                "exemplarCity";
                                "טהיטי";
                            }
                            "Tarawa";
                            {
                                "exemplarCity";
                                "טאראווה";
                            }
                            "Tongatapu";
                            {
                                "exemplarCity";
                                "טונגטאפו";
                            }
                            "Truk";
                            {
                                "exemplarCity";
                                "צ׳וק";
                            }
                            "Wake";
                            {
                                "exemplarCity";
                                "וייק";
                            }
                            "Wallis";
                            {
                                "exemplarCity";
                                "ווליס";
                            }
                        }
                        "Arctic";
                        {
                            "Longyearbyen";
                            {
                                "exemplarCity";
                                "לונגיירבין";
                            }
                        }
                        "Antarctica";
                        {
                            "Casey";
                            {
                                "exemplarCity";
                                "קאסיי";
                            }
                            "Davis";
                            {
                                "exemplarCity";
                                "דיוויס";
                            }
                            "DumontDUrville";
                            {
                                "exemplarCity";
                                "דומון ד׳אורוויל";
                            }
                            "Macquarie";
                            {
                                "exemplarCity";
                                "מקרי";
                            }
                            "Mawson";
                            {
                                "exemplarCity";
                                "מוסון";
                            }
                            "McMurdo";
                            {
                                "exemplarCity";
                                "מק-מרדו";
                            }
                            "Palmer";
                            {
                                "exemplarCity";
                                "פאלמר";
                            }
                            "Rothera";
                            {
                                "exemplarCity";
                                "רות׳רה";
                            }
                            "Syowa";
                            {
                                "exemplarCity";
                                "סיוואה";
                            }
                            "Troll";
                            {
                                "exemplarCity";
                                "טרול";
                            }
                            "Vostok";
                            {
                                "exemplarCity";
                                "ווסטוק";
                            }
                        }
                        "Etc";
                        {
                            "GMT";
                            {
                                "exemplarCity";
                                "GMT";
                            }
                            "GMT1";
                            {
                                "exemplarCity";
                                "GMT+1";
                            }
                            "GMT10";
                            {
                                "exemplarCity";
                                "GMT+10";
                            }
                            "GMT11";
                            {
                                "exemplarCity";
                                "GMT+11";
                            }
                            "GMT12";
                            {
                                "exemplarCity";
                                "GMT+12";
                            }
                            "GMT2";
                            {
                                "exemplarCity";
                                "GMT+2";
                            }
                            "GMT3";
                            {
                                "exemplarCity";
                                "GMT+3";
                            }
                            "GMT4";
                            {
                                "exemplarCity";
                                "GMT+4";
                            }
                            "GMT5";
                            {
                                "exemplarCity";
                                "GMT+5";
                            }
                            "GMT6";
                            {
                                "exemplarCity";
                                "GMT+6";
                            }
                            "GMT7";
                            {
                                "exemplarCity";
                                "GMT+7";
                            }
                            "GMT8";
                            {
                                "exemplarCity";
                                "GMT+8";
                            }
                            "GMT9";
                            {
                                "exemplarCity";
                                "GMT+9";
                            }
                            "GMT-1";
                            {
                                "exemplarCity";
                                "GMT-1";
                            }
                            "GMT-10";
                            {
                                "exemplarCity";
                                "GMT-10";
                            }
                            "GMT-11";
                            {
                                "exemplarCity";
                                "GMT-11";
                            }
                            "GMT-12";
                            {
                                "exemplarCity";
                                "GMT-12";
                            }
                            "GMT-13";
                            {
                                "exemplarCity";
                                "GMT-13";
                            }
                            "GMT-14";
                            {
                                "exemplarCity";
                                "GMT-14";
                            }
                            "GMT-2";
                            {
                                "exemplarCity";
                                "GMT-2";
                            }
                            "GMT-3";
                            {
                                "exemplarCity";
                                "GMT-3";
                            }
                            "GMT-4";
                            {
                                "exemplarCity";
                                "GMT-4";
                            }
                            "GMT-5";
                            {
                                "exemplarCity";
                                "GMT-5";
                            }
                            "GMT-6";
                            {
                                "exemplarCity";
                                "GMT-6";
                            }
                            "GMT-7";
                            {
                                "exemplarCity";
                                "GMT-7";
                            }
                            "GMT-8";
                            {
                                "exemplarCity";
                                "GMT-8";
                            }
                            "GMT-9";
                            {
                                "exemplarCity";
                                "GMT-9";
                            }
                            "UTC";
                            {
                                "long";
                                {
                                    "standard";
                                    "זמן אוניברסלי מתואם";
                                }
                                "short";
                                {
                                    "standard";
                                    "UTC";
                                }
                                "exemplarCity";
                                "UTC";
                            }
                            "Unknown";
                            {
                                "exemplarCity";
                                "עיר לא ידועה";
                            }
                        }
                    }
                    "metazone";
                    {
                        "Afghanistan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון אפגניסטן";
                            }
                        }
                        "Africa_Central";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מרכז אפריקה";
                            }
                        }
                        "Africa_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח אפריקה";
                            }
                        }
                        "Africa_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דרום אפריקה";
                            }
                        }
                        "Africa_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב אפריקה",
                                    "standard";
                                "שעון מערב אפריקה (חורף)",
                                    "daylight";
                                "שעון מערב אפריקה (קיץ)";
                            }
                        }
                        "Alaska";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אלסקה",
                                    "standard";
                                "שעון אלסקה (חורף)",
                                    "daylight";
                                "שעון אלסקה (קיץ)";
                            }
                        }
                        "Amazon";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אמזונס",
                                    "standard";
                                "שעון אמזונס (חורף)",
                                    "daylight";
                                "שעון אמזונס (קיץ)";
                            }
                        }
                        "America_Central";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז ארה״ב",
                                    "standard";
                                "שעון מרכז ארה״ב (חורף)",
                                    "daylight";
                                "שעון מרכז ארה״ב (קיץ)";
                            }
                        }
                        "America_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון החוף המזרחי",
                                    "standard";
                                "שעון החוף המזרחי (חורף)",
                                    "daylight";
                                "שעון החוף המזרחי (קיץ)";
                            }
                        }
                        "America_Mountain";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אזור ההרים בארה״ב",
                                    "standard";
                                "שעון אזור ההרים בארה״ב (חורף)",
                                    "daylight";
                                "שעון אזור ההרים בארה״ב (קיץ)";
                            }
                        }
                        "America_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב ארה״ב",
                                    "standard";
                                "שעון מערב ארה״ב (חורף)",
                                    "daylight";
                                "שעון מערב ארה״ב (קיץ)";
                            }
                        }
                        "Anadyr";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אנדיר",
                                    "standard";
                                "שעון רגיל אנדיר",
                                    "daylight";
                                "שעון קיץ אנדיר";
                            }
                        }
                        "Apia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אפיה",
                                    "standard";
                                "שעון אפיה (חורף)",
                                    "daylight";
                                "שעון אפיה (קיץ)";
                            }
                        }
                        "Arabian";
                        {
                            "long";
                            {
                                "generic";
                                "שעון חצי האי ערב",
                                    "standard";
                                "שעון חצי האי ערב (חורף)",
                                    "daylight";
                                "שעון חצי האי ערב (קיץ)";
                            }
                        }
                        "Argentina";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ארגנטינה",
                                    "standard";
                                "שעון ארגנטינה (חורף)",
                                    "daylight";
                                "שעון ארגנטינה (קיץ)";
                            }
                        }
                        "Argentina_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב ארגנטינה",
                                    "standard";
                                "שעון מערב ארגנטינה (חורף)",
                                    "daylight";
                                "שעון מערב ארגנטינה (קיץ)";
                            }
                        }
                        "Armenia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ארמניה",
                                    "standard";
                                "שעון ארמניה (חורף)",
                                    "daylight";
                                "שעון ארמניה (קיץ)";
                            }
                        }
                        "Atlantic";
                        {
                            "long";
                            {
                                "generic";
                                "שעון האוקיינוס האטלנטי",
                                    "standard";
                                "שעון האוקיינוס האטלנטי (חורף)",
                                    "daylight";
                                "שעון האוקיינוס האטלנטי (קיץ)";
                            }
                        }
                        "Australia_Central";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז אוסטרליה",
                                    "standard";
                                "שעון מרכז אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מרכז אוסטרליה (קיץ)";
                            }
                        }
                        "Australia_CentralWestern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז-מערב אוסטרליה",
                                    "standard";
                                "שעון מרכז-מערב אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מרכז-מערב אוסטרליה (קיץ)";
                            }
                        }
                        "Australia_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מזרח אוסטרליה",
                                    "standard";
                                "שעון מזרח אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מזרח אוסטרליה (קיץ)";
                            }
                        }
                        "Australia_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב אוסטרליה",
                                    "standard";
                                "שעון מערב אוסטרליה (חורף)",
                                    "daylight";
                                "שעון מערב אוסטרליה (קיץ)";
                            }
                        }
                        "Azerbaijan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אזרבייג׳אן",
                                    "standard";
                                "שעון אזרבייג׳אן (חורף)",
                                    "daylight";
                                "שעון אזרבייג׳אן (קיץ)";
                            }
                        }
                        "Azores";
                        {
                            "long";
                            {
                                "generic";
                                "שעון האיים האזוריים",
                                    "standard";
                                "שעון האיים האזוריים (חורף)",
                                    "daylight";
                                "שעון האיים האזוריים (קיץ)";
                            }
                        }
                        "Bangladesh";
                        {
                            "long";
                            {
                                "generic";
                                "שעון בנגלדש",
                                    "standard";
                                "שעון בנגלדש (חורף)",
                                    "daylight";
                                "שעון בנגלדש (קיץ)";
                            }
                        }
                        "Bhutan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון בהוטן";
                            }
                        }
                        "Bolivia";
                        {
                            "long";
                            {
                                "standard";
                                "שעון בוליביה";
                            }
                        }
                        "Brasilia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ברזיליה",
                                    "standard";
                                "שעון ברזיליה (חורף)",
                                    "daylight";
                                "שעון ברזיליה (קיץ)";
                            }
                        }
                        "Brunei";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ברוניי דארוסלאם";
                            }
                        }
                        "Cape_Verde";
                        {
                            "long";
                            {
                                "generic";
                                "שעון כף ורדה",
                                    "standard";
                                "שעון כף ורדה (חורף)",
                                    "daylight";
                                "שעון כף ורדה (קיץ)";
                            }
                        }
                        "Chamorro";
                        {
                            "long";
                            {
                                "standard";
                                "שעון צ׳אמורו";
                            }
                        }
                        "Chatham";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צ׳טהאם",
                                    "standard";
                                "שעון צ׳טהאם (חורף)",
                                    "daylight";
                                "שעון צ׳טהאם (קיץ)";
                            }
                        }
                        "Chile";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צ׳ילה",
                                    "standard";
                                "שעון צ׳ילה (חורף)",
                                    "daylight";
                                "שעון צ׳ילה (קיץ)";
                            }
                        }
                        "China";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סין",
                                    "standard";
                                "שעון סין (חורף)",
                                    "daylight";
                                "שעון סין (קיץ)";
                            }
                        }
                        "Choibalsan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צ׳ויבלסן",
                                    "standard";
                                "שעון צ׳ויבלסן (חורף)",
                                    "daylight";
                                "שעון צ׳ויבלסן (קיץ)";
                            }
                        }
                        "Christmas";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האי כריסטמס";
                            }
                        }
                        "Cocos";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי קוקוס";
                            }
                        }
                        "Colombia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קולומביה",
                                    "standard";
                                "שעון קולומביה (חורף)",
                                    "daylight";
                                "שעון קולומביה (קיץ)";
                            }
                        }
                        "Cook";
                        {
                            "long";
                            {
                                "generic";
                                "שעון איי קוק",
                                    "standard";
                                "שעון איי קוק (חורף)",
                                    "daylight";
                                "שעון איי קוק (מחצית הקיץ)";
                            }
                        }
                        "Cuba";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קובה",
                                    "standard";
                                "שעון קובה (חורף)",
                                    "daylight";
                                "שעון קובה (קיץ)";
                            }
                        }
                        "Davis";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דיוויס";
                            }
                        }
                        "DumontDUrville";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דומון ד׳אורוויל";
                            }
                        }
                        "East_Timor";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח טימור";
                            }
                        }
                        "Easter";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אי הפסחא",
                                    "standard";
                                "שעון אי הפסחא (חורף)",
                                    "daylight";
                                "שעון אי הפסחא (קיץ)";
                            }
                        }
                        "Ecuador";
                        {
                            "long";
                            {
                                "standard";
                                "שעון אקוודור";
                            }
                        }
                        "Europe_Central";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מרכז אירופה",
                                    "standard";
                                "שעון מרכז אירופה (חורף)",
                                    "daylight";
                                "שעון מרכז אירופה (קיץ)";
                            }
                        }
                        "Europe_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מזרח אירופה",
                                    "standard";
                                "שעון מזרח אירופה (חורף)",
                                    "daylight";
                                "שעון מזרח אירופה (קיץ)";
                            }
                        }
                        "Europe_Further_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מינסק";
                            }
                        }
                        "Europe_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב אירופה",
                                    "standard";
                                "שעון מערב אירופה (חורף)",
                                    "daylight";
                                "שעון מערב אירופה (קיץ)";
                            }
                        }
                        "Falkland";
                        {
                            "long";
                            {
                                "generic";
                                "שעון איי פוקלנד",
                                    "standard";
                                "שעון איי פוקלנד (חורף)",
                                    "daylight";
                                "שעון איי פוקלנד (קיץ)";
                            }
                        }
                        "Fiji";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פיג׳י",
                                    "standard";
                                "שעון פיג׳י (חורף)",
                                    "daylight";
                                "שעון פיג׳י (קיץ)";
                            }
                        }
                        "French_Guiana";
                        {
                            "long";
                            {
                                "standard";
                                "שעון גיאנה הצרפתית";
                            }
                        }
                        "French_Southern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון הארצות הדרומיות והאנטארקטיות של צרפת";
                            }
                        }
                        "Galapagos";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי גלאפגוס";
                            }
                        }
                        "Gambier";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי גמבייה";
                            }
                        }
                        "Georgia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון גאורגיה",
                                    "standard";
                                "שעון גאורגיה (חורף)",
                                    "daylight";
                                "שעון גאורגיה (קיץ)";
                            }
                        }
                        "Gilbert_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי גילברט";
                            }
                        }
                        "GMT";
                        {
                            "long";
                            {
                                "standard";
                                "שעון גריניץ׳‏";
                            }
                        }
                        "Greenland_Eastern";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מזרח גרינלנד",
                                    "standard";
                                "שעון מזרח גרינלנד (חורף)",
                                    "daylight";
                                "שעון מזרח גרינלנד (קיץ)";
                            }
                        }
                        "Greenland_Western";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב גרינלנד",
                                    "standard";
                                "שעון מערב גרינלנד (חורף)",
                                    "daylight";
                                "שעון מערב גרינלנד (קיץ)";
                            }
                        }
                        "Gulf";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מדינות המפרץ";
                            }
                        }
                        "Guyana";
                        {
                            "long";
                            {
                                "standard";
                                "שעון גיאנה";
                            }
                        }
                        "Hawaii_Aleutian";
                        {
                            "long";
                            {
                                "generic";
                                "שעון האיים האלאוטיים הוואי",
                                    "standard";
                                "שעון האיים האלאוטיים הוואי (חורף)",
                                    "daylight";
                                "שעון האיים האלאוטיים הוואי (קיץ)";
                            }
                        }
                        "Hong_Kong";
                        {
                            "long";
                            {
                                "generic";
                                "שעון הונג קונג",
                                    "standard";
                                "שעון הונג קונג (חורף)",
                                    "daylight";
                                "שעון הונג קונג (קיץ)";
                            }
                        }
                        "Hovd";
                        {
                            "long";
                            {
                                "generic";
                                "שעון חובד",
                                    "standard";
                                "שעון חובד (חורף)",
                                    "daylight";
                                "שעון חובד (קיץ)";
                            }
                        }
                        "India";
                        {
                            "long";
                            {
                                "standard";
                                "שעון הודו";
                            }
                        }
                        "Indian_Ocean";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האוקיינוס ההודי";
                            }
                        }
                        "Indochina";
                        {
                            "long";
                            {
                                "standard";
                                "שעון הודו-סין";
                            }
                        }
                        "Indonesia_Central";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מרכז אינדונזיה";
                            }
                        }
                        "Indonesia_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח אינדונזיה";
                            }
                        }
                        "Indonesia_Western";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מערב אינדונזיה";
                            }
                        }
                        "Iran";
                        {
                            "long";
                            {
                                "generic";
                                "שעון איראן",
                                    "standard";
                                "שעון איראן (חורף)",
                                    "daylight";
                                "שעון איראן (קיץ)";
                            }
                        }
                        "Irkutsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אירקוטסק",
                                    "standard";
                                "שעון אירקוטסק (חורף)",
                                    "daylight";
                                "שעון אירקוסטק (קיץ)";
                            }
                        }
                        "Israel";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ישראל",
                                    "standard";
                                "שעון ישראל (חורף)",
                                    "daylight";
                                "שעון ישראל (קיץ)";
                            }
                        }
                        "Japan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון יפן",
                                    "standard";
                                "שעון יפן (חורף)",
                                    "daylight";
                                "שעון יפן (קיץ)";
                            }
                        }
                        "Kamchatka";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פטרופבלובסק-קמצ׳טסקי",
                                    "standard";
                                "שעון רגיל פטרופבלובסק-קמצ׳טסקי",
                                    "daylight";
                                "שעון קיץ פטרופבלובסק-קמצ׳טסקי";
                            }
                        }
                        "Kazakhstan_Eastern";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מזרח קזחסטן";
                            }
                        }
                        "Kazakhstan_Western";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מערב קזחסטן";
                            }
                        }
                        "Korea";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קוריאה",
                                    "standard";
                                "שעון קוריאה (חורף)",
                                    "daylight";
                                "שעון קוריאה (קיץ)";
                            }
                        }
                        "Kosrae";
                        {
                            "long";
                            {
                                "standard";
                                "שעון קוסראה";
                            }
                        }
                        "Krasnoyarsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קרסנויארסק",
                                    "standard";
                                "שעון קרסנויארסק (חורף)",
                                    "daylight";
                                "שעון קרסנויארסק (קיץ)";
                            }
                        }
                        "Kyrgystan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון קירגיזסטן";
                            }
                        }
                        "Line_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי ליין";
                            }
                        }
                        "Lord_Howe";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אי הלורד האו",
                                    "standard";
                                "שעון אי הלורד האו (חורף)",
                                    "daylight";
                                "שעון אי הלורד האו (קיץ)";
                            }
                        }
                        "Macau";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מקאו",
                                    "standard";
                                "שעון חורף מקאו",
                                    "daylight";
                                "שעון קיץ מקאו";
                            }
                        }
                        "Macquarie";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מקווארי";
                            }
                        }
                        "Magadan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מגדן",
                                    "standard";
                                "שעון מגדן (חורף)",
                                    "daylight";
                                "שעון מגדן (קיץ)";
                            }
                        }
                        "Malaysia";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מלזיה";
                            }
                        }
                        "Maldives";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האיים המלדיביים";
                            }
                        }
                        "Marquesas";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי מרקיז";
                            }
                        }
                        "Marshall_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי מרשל";
                            }
                        }
                        "Mauritius";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מאוריציוס",
                                    "standard";
                                "שעון מאוריציוס (חורף)",
                                    "daylight";
                                "שעון מאוריציוס (קיץ)";
                            }
                        }
                        "Mawson";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מאוסון";
                            }
                        }
                        "Mexico_Northwest";
                        {
                            "long";
                            {
                                "generic";
                                "שעון צפון-מערב מקסיקו",
                                    "standard";
                                "שעון צפון-מערב מקסיקו (חורף)",
                                    "daylight";
                                "שעון צפון-מערב מקסיקו (קיץ)";
                            }
                        }
                        "Mexico_Pacific";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מערב מקסיקו",
                                    "standard";
                                "שעון מערב מקסיקו (חורף)",
                                    "daylight";
                                "שעון מערב מקסיקו (קיץ)";
                            }
                        }
                        "Mongolia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אולן בטור",
                                    "standard";
                                "שעון אולן בטור (חורף)",
                                    "daylight";
                                "שעון אולן בטור (קיץ)";
                            }
                        }
                        "Moscow";
                        {
                            "long";
                            {
                                "generic";
                                "שעון מוסקבה",
                                    "standard";
                                "שעון מוסקבה (חורף)",
                                    "daylight";
                                "שעון מוסקבה (קיץ)";
                            }
                        }
                        "Myanmar";
                        {
                            "long";
                            {
                                "standard";
                                "שעון מיאנמר";
                            }
                        }
                        "Nauru";
                        {
                            "long";
                            {
                                "standard";
                                "שעון נאורו";
                            }
                        }
                        "Nepal";
                        {
                            "long";
                            {
                                "standard";
                                "שעון נפאל";
                            }
                        }
                        "New_Caledonia";
                        {
                            "long";
                            {
                                "generic";
                                "שעון קלדוניה החדשה",
                                    "standard";
                                "שעון קלדוניה החדשה (חורף)",
                                    "daylight";
                                "שעון קלדוניה החדשה (קיץ)";
                            }
                        }
                        "New_Zealand";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ניו זילנד",
                                    "standard";
                                "שעון ניו זילנד (חורף)",
                                    "daylight";
                                "שעון ניו זילנד (קיץ)";
                            }
                        }
                        "Newfoundland";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ניופאונדלנד",
                                    "standard";
                                "שעון ניופאונדלנד (חורף)",
                                    "daylight";
                                "שעון ניופאונדלנד (קיץ)";
                            }
                        }
                        "Niue";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ניואה";
                            }
                        }
                        "Norfolk";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האי נורפוק";
                            }
                        }
                        "Noronha";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פרננדו די נורוניה",
                                    "standard";
                                "שעון פרננדו די נורוניה (חורף)",
                                    "daylight";
                                "שעון פרננדו די נורוניה (קיץ)";
                            }
                        }
                        "Novosibirsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון נובוסיבירסק",
                                    "standard";
                                "שעון נובוסיבירסק (חורף)",
                                    "daylight";
                                "שעון נובוסיבירסק (קיץ)";
                            }
                        }
                        "Omsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אומסק",
                                    "standard";
                                "שעון אומסק (חורף)",
                                    "daylight";
                                "שעון אומסק (קיץ)";
                            }
                        }
                        "Pakistan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פקיסטן",
                                    "standard";
                                "שעון פקיסטן (חורף)",
                                    "daylight";
                                "שעון פקיסטן (קיץ)";
                            }
                        }
                        "Palau";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פלאו";
                            }
                        }
                        "Papua_New_Guinea";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פפואה גיניאה החדשה";
                            }
                        }
                        "Paraguay";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פרגוואי",
                                    "standard";
                                "שעון פרגוואי (חורף)",
                                    "daylight";
                                "שעון פרגוואי (קיץ)";
                            }
                        }
                        "Peru";
                        {
                            "long";
                            {
                                "generic";
                                "שעון פרו",
                                    "standard";
                                "שעון פרו (חורף)",
                                    "daylight";
                                "שעון פרו (קיץ)";
                            }
                        }
                        "Philippines";
                        {
                            "long";
                            {
                                "generic";
                                "שעון הפיליפינים",
                                    "standard";
                                "שעון הפיליפינים (חורף)",
                                    "daylight";
                                "שעון הפיליפינים (קיץ)";
                            }
                        }
                        "Phoenix_Islands";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי פיניקס";
                            }
                        }
                        "Pierre_Miquelon";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סנט פייר ומיקלון",
                                    "standard";
                                "שעון סנט פייר ומיקלון (חורף)",
                                    "daylight";
                                "שעון סנט פייר ומיקלון (קיץ)";
                            }
                        }
                        "Pitcairn";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פיטקרן";
                            }
                        }
                        "Ponape";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פונאפי";
                            }
                        }
                        "Pyongyang";
                        {
                            "long";
                            {
                                "standard";
                                "שעון פיונגיאנג";
                            }
                        }
                        "Reunion";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ראוניון";
                            }
                        }
                        "Rothera";
                        {
                            "long";
                            {
                                "standard";
                                "שעון רות׳רה";
                            }
                        }
                        "Sakhalin";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סחלין",
                                    "standard";
                                "שעון סחלין (חורף)",
                                    "daylight";
                                "שעון סחלין (קיץ)";
                            }
                        }
                        "Samara";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סמרה",
                                    "standard";
                                "שעון רגיל סמרה",
                                    "daylight";
                                "שעון קיץ סמרה";
                            }
                        }
                        "Samoa";
                        {
                            "long";
                            {
                                "generic";
                                "שעון סמואה",
                                    "standard";
                                "שעון סמואה (חורף)",
                                    "daylight";
                                "שעון סמואה (קיץ)";
                            }
                        }
                        "Seychelles";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי סיישל";
                            }
                        }
                        "Singapore";
                        {
                            "long";
                            {
                                "standard";
                                "שעון סינגפור";
                            }
                        }
                        "Solomon";
                        {
                            "long";
                            {
                                "standard";
                                "שעון איי שלמה";
                            }
                        }
                        "South_Georgia";
                        {
                            "long";
                            {
                                "standard";
                                "שעון דרום ג׳ורג׳יה";
                            }
                        }
                        "Suriname";
                        {
                            "long";
                            {
                                "standard";
                                "שעון סורינאם";
                            }
                        }
                        "Syowa";
                        {
                            "long";
                            {
                                "standard";
                                "שעון סייווה";
                            }
                        }
                        "Tahiti";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טהיטי";
                            }
                        }
                        "Taipei";
                        {
                            "long";
                            {
                                "generic";
                                "שעון טאיפיי",
                                    "standard";
                                "שעון טאיפיי (חורף)",
                                    "daylight";
                                "שעון טאיפיי (קיץ)";
                            }
                        }
                        "Tajikistan";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טג׳יקיסטן";
                            }
                        }
                        "Tokelau";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טוקלאו";
                            }
                        }
                        "Tonga";
                        {
                            "long";
                            {
                                "generic";
                                "שעון טונגה",
                                    "standard";
                                "שעון טונגה (חורף)",
                                    "daylight";
                                "שעון טונגה (קיץ)";
                            }
                        }
                        "Truk";
                        {
                            "long";
                            {
                                "standard";
                                "שעון צ׳וק";
                            }
                        }
                        "Turkmenistan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון טורקמניסטן",
                                    "standard";
                                "שעון טורקמניסטן (חורף)",
                                    "daylight";
                                "שעון טורקמניסטן (קיץ)";
                            }
                        }
                        "Tuvalu";
                        {
                            "long";
                            {
                                "standard";
                                "שעון טובאלו";
                            }
                        }
                        "Uruguay";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אורוגוואי",
                                    "standard";
                                "שעון אורוגוואי (חורף)",
                                    "daylight";
                                "שעון אורוגוואי (קיץ)";
                            }
                        }
                        "Uzbekistan";
                        {
                            "long";
                            {
                                "generic";
                                "שעון אוזבקיסטן",
                                    "standard";
                                "שעון אוזבקיסטן (חורף)",
                                    "daylight";
                                "שעון אוזבקיסטן (קיץ)";
                            }
                        }
                        "Vanuatu";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ונואטו",
                                    "standard";
                                "שעון ונואטו (חורף)",
                                    "daylight";
                                "שעון ונואטו (קיץ)";
                            }
                        }
                        "Venezuela";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ונצואלה";
                            }
                        }
                        "Vladivostok";
                        {
                            "long";
                            {
                                "generic";
                                "שעון ולדיווסטוק",
                                    "standard";
                                "שעון ולדיווסטוק (חורף)",
                                    "daylight";
                                "שעון ולדיווסטוק (קיץ)";
                            }
                        }
                        "Volgograd";
                        {
                            "long";
                            {
                                "generic";
                                "שעון וולגוגרד",
                                    "standard";
                                "שעון וולגוגרד (חורף)",
                                    "daylight";
                                "שעון וולגוגרד (קיץ)";
                            }
                        }
                        "Vostok";
                        {
                            "long";
                            {
                                "standard";
                                "שעון ווסטוק";
                            }
                        }
                        "Wake";
                        {
                            "long";
                            {
                                "standard";
                                "שעון האי וייק";
                            }
                        }
                        "Wallis";
                        {
                            "long";
                            {
                                "standard";
                                "שעון וואליס ופוטונה";
                            }
                        }
                        "Yakutsk";
                        {
                            "long";
                            {
                                "generic";
                                "שעון יקוטסק",
                                    "standard";
                                "שעון יקוטסק (חורף)",
                                    "daylight";
                                "שעון יקוטסק (קיץ)";
                            }
                        }
                        "Yekaterinburg";
                        {
                            "long";
                            {
                                "generic";
                                "שעון יקטרינבורג",
                                    "standard";
                                "שעון יקטרינבורג (חורף)",
                                    "daylight";
                                "שעון יקטרינבורג (קיץ)";
                            }
                        }
                    }
                }
            }
        }
    }
}

Date Format

Date format is a way of representing the start date, end date strings in different string format in the textbox.

By default, the DateRangePicker’s start and end date string format is based on the culture. You can also set the own
custom format by using the format property.

Once the date format property has been defined it will be common to all the cultures.

To know more about the date format standards, refer to the Internationalization Date Format section.

The following example demonstrates the DateRangePicker with the custom format (yyyy-MM-dd). Also, here the separator of the date values is changed to string “to”.

[Class-component]

import * as React from "react";
import * as ReactDOM from "react-dom";
//import the daterangepicker component
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
class App extends React.Component {
    render() {
        return <DateRangePickerComponent id="daterangepicker" format='yyyy-MM-dd' separator='to' placeholder='Select a range'/>;
    }
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the daterangepicker component
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
class App extends React.Component<{}, {}> {
    render() {
        return <DateRangePickerComponent id="daterangepicker"  format='yyyy-MM-dd' separator='to' placeholder='Select a range' />
    }
};
ReactDOM.render(<App />, document.getElementById('element'));

[Functional-component]

import * as React from "react";
import * as ReactDOM from "react-dom";
//import the daterangepicker component
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
function App() {
    return <DateRangePickerComponent id="daterangepicker" format='yyyy-MM-dd' separator='to' placeholder='Select a range'/>;
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the daterangepicker component
import { DateRangePickerComponent } from '@syncfusion/ej2-react-calendars';
function App() {
    return <DateRangePickerComponent id="daterangepicker"  format='yyyy-MM-dd' separator='to' placeholder='Select a range' />
};
ReactDOM.render(<App />, document.getElementById('element'));